[interchange-cvs] [SCM] Interchange branch, master, updated. d69ab85cb4262514236a96ca59b8c49516ee9646

Jon Jensen interchange-cvs at icdevgroup.org
Sat May 23 22:02:11 UTC 2009


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Interchange".

The branch, master has been updated
       via  d69ab85cb4262514236a96ca59b8c49516ee9646 (commit)
       via  2f7b94228c30334fc6d3b39abd885256694d937d (commit)
      from  ac13f8d625ddcb60d23cdd12d60e4d5f31043b16 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d69ab85cb4262514236a96ca59b8c49516ee9646
Author: Jon Jensen <jon at endpoint.com>
Date:   Sat May 23 16:01:48 2009 -0600

    Remove more CVS keywords from non-central files

commit 2f7b94228c30334fc6d3b39abd885256694d937d
Author: Jon Jensen <jon at endpoint.com>
Date:   Sat May 23 15:58:02 2009 -0600

    Remove email.tag that is an old version of standard UserTag/email.tag

-----------------------------------------------------------------------

Summary of changes and diff:
 MANIFEST                                           |    1 -
 eg/cvv2.svg                                        |    2 -
 eg/filter/calculated.filter                        |    2 -
 .../code/Widget/user_uploadhelper.widget           |    1 -
 eg/survey_wizard/email.tag                         |   49 --------------------
 eg/survey_wizard/survey_wizard.coretag             |    2 -
 eg/te                                              |    2 +-
 extensions/Interchange.pm                          |    2 -
 8 files changed, 1 insertions(+), 60 deletions(-)
 delete mode 100644 eg/survey_wizard/email.tag

diff --git a/MANIFEST b/MANIFEST
index 9579b6f..70ace73 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1062,7 +1062,6 @@ eg/pg83-implicit-casts.sql
 eg/reset_order_number
 eg/survey_graph.tag
 eg/survey_wizard/code/Widget/user_uploadhelper.widget
-eg/survey_wizard/email.tag
 eg/survey_wizard/pages/admin/overall.html
 eg/survey_wizard/pages/survey/standard.html
 eg/survey_wizard/survey_wizard.coretag
diff --git a/eg/cvv2.svg b/eg/cvv2.svg
index a28d37d..f543f47 100644
--- a/eg/cvv2.svg
+++ b/eg/cvv2.svg
@@ -2,8 +2,6 @@
 <!--
 File: cvv2.svg CVV2 images for the standard demo, part of the Interchange ecommerce platform.
 
-$Id: cvv2.svg,v 1.3 2007-08-09 13:40:53 pajamian Exp $
-
 Copyright (C) 2006-2007 Interchange Development Group.
 Copyright (C) 2006 Jure Kodzoman
 
diff --git a/eg/filter/calculated.filter b/eg/filter/calculated.filter
index 9d3f30d..430f5ba 100644
--- a/eg/filter/calculated.filter
+++ b/eg/filter/calculated.filter
@@ -5,8 +5,6 @@
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.  See the LICENSE file for details.
-# 
-# $Id: calculated.filter,v 1.3 2007-03-31 11:31:42 pajamian Exp $
 
 CodeDef calculated Filter
 CodeDef calculated Routine <<EOR
diff --git a/eg/survey_wizard/code/Widget/user_uploadhelper.widget b/eg/survey_wizard/code/Widget/user_uploadhelper.widget
index 0cdc7d1..c2edf02 100644
--- a/eg/survey_wizard/code/Widget/user_uploadhelper.widget
+++ b/eg/survey_wizard/code/Widget/user_uploadhelper.widget
@@ -17,7 +17,6 @@ sub {
 	
 	$::Scratch->{"user_upload_routine_$name"} = <<'EOU';
 [perl]
-# $Id: user_uploadhelper.widget,v 1.1 2005-04-12 19:17:03 mheins Exp $
 	my @uploads = grep /^user_upload_file_path:/, keys %$CGI;
 #Debug("Check uploads: " . join ",", @uploads);
 	return unless @uploads;
diff --git a/eg/survey_wizard/email.tag b/eg/survey_wizard/email.tag
deleted file mode 100644
index dadd2de..0000000
--- a/eg/survey_wizard/email.tag
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2002-2007 Interchange Development Group and others
-# 
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.  See the LICENSE file for details.
-# 
-# $Id: email.tag,v 1.3 2007-03-31 11:31:43 pajamian Exp $
-
-UserTag email Order       to subject reply from extra
-UserTag email hasEndTag
-UserTag email addAttr
-UserTag email Interpolate
-UserTag email Version     $Revision: 1.3 $
-UserTag email Routine     <<EOR
-sub {
-    my ($to, $subject, $reply, $from, $extra, $opt, $body) = @_;
-    my $ok = 0;
-    my @extra;
-
-    $subject = '<no subject>' unless defined $subject && $subject;
-
-    $reply = '' unless defined $reply;
-    $reply = "Reply-to: $reply\n" if $reply;
-	if (! $from) {
-		$from = $Vend::Cfg->{MailOrderTo};
-		$from =~ s/,.*//;
-	}
-	$extra =~ s/\s*$/\n/ if $extra;
-        $extra .= "From: $from\n" if $from;
-	@extra = grep /\S/, split(/\n/, $extra);
-
-    SEND: {
-            $ok = send_mail($to, $subject, $body, $reply, 0, @extra);
-    }
-
-    if (!$ok) {
-        logError("Unable to send mail using $Vend::Cfg->{'SendMailProgram'}\n" .
-            "To '$to'\n" .
-            "From '$from'\n" .
-            "With extra headers '$extra'\n" .
-            "With reply-to '$reply'\n" .
-            "With subject '$subject'\n" .
-            "And body:\n$body");
-    }
-
-	return $opt->{hide} ? '' : $ok;
-}
-EOR
diff --git a/eg/survey_wizard/survey_wizard.coretag b/eg/survey_wizard/survey_wizard.coretag
index 5f0cad8..3cfea9d 100644
--- a/eg/survey_wizard/survey_wizard.coretag
+++ b/eg/survey_wizard/survey_wizard.coretag
@@ -4,8 +4,6 @@
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.  See the LICENSE file for details.
-# 
-# $Id: survey_wizard.coretag,v 1.3 2007-03-31 11:31:43 pajamian Exp $
 
 UserTag  survey-wizard  Order     name
 UserTag  survey-wizard  AddAttr
diff --git a/eg/te b/eg/te
index 9656eec..4305c94 100755
--- a/eg/te
+++ b/eg/te
@@ -122,7 +122,7 @@ at http://www.fsf.org/copyleft/gpl.html for more details.
 
 =head1 VERSION
 
-$Id: te,v 2.13 2008-04-12 02:33:40 jon Exp $
+2008-04-12 02:33:40
 
 =head1 CHANGELOG
 
diff --git a/extensions/Interchange.pm b/extensions/Interchange.pm
index b0d329e..c711efc 100644
--- a/extensions/Interchange.pm
+++ b/extensions/Interchange.pm
@@ -1,7 +1,5 @@
 # Interchange.pm - Interchange access for Perl scripts
 #
-# $Id: Interchange.pm,v 1.6 2008-11-12 04:15:22 jon Exp $
-# 
 # Copyright (C) 2002-2008 Interchange Development Group
 # Copyright (C) 1996-2002 Red Hat, Inc.
 #


hooks/post-receive
-- 
Interchange



More information about the interchange-cvs mailing list