[interchange-cvs] interchange - jon modified code/UI_Tag/version.coretag

interchange-cvs at icdevgroup.org interchange-cvs at icdevgroup.org
Mon Sep 19 10:32:17 EDT 2005


User:      jon
Date:      2005-09-19 14:32:17 GMT
Modified:  code/UI_Tag version.coretag
Log:
Trivialities: Correct indenting, and simplify array creation.

Revision  Changes    Path
1.11      +23 -23    interchange/code/UI_Tag/version.coretag


rev 1.11, prev_rev 1.10
Index: version.coretag
===================================================================
RCS file: /var/cvs/interchange/code/UI_Tag/version.coretag,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -u -r1.10 -r1.11
--- version.coretag	9 Sep 2005 04:04:09 -0000	1.10
+++ version.coretag	19 Sep 2005 14:32:17 -0000	1.11
@@ -1,13 +1,13 @@
 # Copyright 2002 Interchange Development Group (http://www.icdevgroup.org/)
 # Licensed under the GNU GPL v2. See file LICENSE for details.
-# $Id: version.coretag,v 1.10 2005/09/09 04:04:09 jon Exp $
+# $Id: version.coretag,v 1.11 2005/09/19 14:32:17 jon Exp $
 
 UserTag version Order      extended
 UserTag version attrAlias  module_test modtest
 UserTag version attrAlias  moduletest modtest
 UserTag version attrAlias  require modtest
 UserTag version addAttr
-UserTag version Version    $Revision: 1.10 $
+UserTag version Version    $Revision: 1.11 $
 UserTag version Routine    <<EOR
 sub {
 	return $::VERSION unless shift;
@@ -133,7 +133,7 @@
 	}
 
 	if($opt->{modules}) {
-		my @wanted = (qw/
+		my @wanted = qw/
 			Archive::Tar
 			Archive::Zip
 			Bundle::LWP
@@ -153,29 +153,29 @@
 			Tie::ShadowHash
 			Tie::Watch
 			URI::URL
-		/);
+		/;
 		my %l_than;
 		my %g_than;
 		my %info = (
-				'Archive::Tar' => q{Only needed for supplementary UserTag definitions.},
-				'Archive::Zip' => q{Only needed for supplementary UserTag definitions.},
-				'Bundle::LWP' => q{Certain parts of these modules (URI::URL and MIME::Base64) are required for Interchange's internal HTTP server. Also, Business::UPS, for calculating shipping, requires this.},
-				'Business::UPS' => q{Enables lookup of shipping costs directly from www.ups.com. Requires Bundle::LWP.},
-				'Compress::Zlib' => q{Only needed for supplementary UserTag definitions.},
-				'Crypt::SSLeay' => q{Payment interface links via HTTPS/SSL.},
-				'DBI' => q{Most people want to use SQL with Interchange, and this is a requirement.  You will also need the appropriate DBD module, i.e. DBD::mysql to support MySQL.},
-				'Digest::MD5' => q{IMPORTANT: cache keys and other search-related functions will not work.},
-				'Image::Size' => q{Optional but recommended for [image ...] tag.},
-				'LWP::Simple'  => q{External UPS lookup and other internet-related functions will not work.},
-				'MIME::Base64' => q{Provides HTTP services for internal HTTP server and basic authentication.},
-				'Safe::Hole' => q{IMPORTANT: SQL and some tags will not work in embedded Perl.},
-				'Set::Crontab' => q{Used by HouseKeepingCron task scheduler.},
-				'Spreadsheet::ParseExcel' => q{Allows upload of XLS spreadsheets for database import in the UI.},
-				'Spreadsheet::WriteExcel' => q{Allows output of XLS spreadsheets for database export in the UI.},
-				'Storable' => q{Session and search storage will be slower.},
-				'Tie::ShadowHash' => q{Needed for PreFork mode of Interchange, prevents permanent write of configuration.},
-				'Tie::Watch' => q{Minor: cannot set watch points in catalog.cfg.},
-				'URI::URL' => q{Provides HTTP primitives for internal HTTP server.},
+			'Archive::Tar' => q{Only needed for supplementary UserTag definitions.},
+			'Archive::Zip' => q{Only needed for supplementary UserTag definitions.},
+			'Bundle::LWP' => q{Certain parts of these modules (URI::URL and MIME::Base64) are required for Interchange's internal HTTP server. Also, Business::UPS, for calculating shipping, requires this.},
+			'Business::UPS' => q{Enables lookup of shipping costs directly from www.ups.com. Requires Bundle::LWP.},
+			'Compress::Zlib' => q{Only needed for supplementary UserTag definitions.},
+			'Crypt::SSLeay' => q{Payment interface links via HTTPS/SSL.},
+			'DBI' => q{Most people want to use SQL with Interchange, and this is a requirement.  You will also need the appropriate DBD module, i.e. DBD::mysql to support MySQL.},
+			'Digest::MD5' => q{IMPORTANT: cache keys and other search-related functions will not work.},
+			'Image::Size' => q{Optional but recommended for [image ...] tag.},
+			'LWP::Simple'  => q{External UPS lookup and other internet-related functions will not work.},
+			'MIME::Base64' => q{Provides HTTP services for internal HTTP server and basic authentication.},
+			'Safe::Hole' => q{IMPORTANT: SQL and some tags will not work in embedded Perl.},
+			'Set::Crontab' => q{Used by HouseKeepingCron task scheduler.},
+			'Spreadsheet::ParseExcel' => q{Allows upload of XLS spreadsheets for database import in the UI.},
+			'Spreadsheet::WriteExcel' => q{Allows output of XLS spreadsheets for database export in the UI.},
+			'Storable' => q{Session and search storage will be slower.},
+			'Tie::ShadowHash' => q{Needed for PreFork mode of Interchange, prevents permanent write of configuration.},
+			'Tie::Watch' => q{Minor: cannot set watch points in catalog.cfg.},
+			'URI::URL' => q{Provides HTTP primitives for internal HTTP server.},
 		);
 		foreach my $name (@wanted) {
 			no strict 'refs';








More information about the interchange-cvs mailing list