[interchange-cvs] interchange - heins modified 2 files

interchange-core@interchange.redhat.com interchange-core@interchange.redhat.com
Sun Feb 17 21:08:01 2002


User:      heins
Date:      2002-02-18 02:07:03 GMT
Modified:  lib/Vend Config.pm Parse.pm
Log:
	* Add noRearrange to tagCanon, also remove hard-coded attr_list
	  noRearrange (relocated to the tag).

Revision  Changes    Path
2.39      +4 -2      interchange/lib/Vend/Config.pm


rev 2.39, prev_rev 2.38
Index: Config.pm
===================================================================
RCS file: /anon_cvs/repository/interchange/lib/Vend/Config.pm,v
retrieving revision 2.38
retrieving revision 2.39
diff -u -r2.38 -r2.39
--- Config.pm	18 Feb 2002 01:00:21 -0000	2.38
+++ Config.pm	18 Feb 2002 02:07:03 -0000	2.39
@@ -1,6 +1,6 @@
 # Vend::Config - Configure Interchange
 #
-# $Id: Config.pm,v 2.38 2002/02/18 01:00:21 mheins Exp $
+# $Id: Config.pm,v 2.39 2002/02/18 02:07:03 mheins Exp $
 #
 # Copyright (C) 1996-2001 Red Hat, Inc. <interchange@redhat.com>
 #
@@ -44,7 +44,7 @@
 use Vend::Parse;
 use Vend::Util;
 
-$VERSION = substr(q$Revision: 2.38 $, 10);
+$VERSION = substr(q$Revision: 2.39 $, 10);
 
 my %CDname;
 
@@ -3092,6 +3092,7 @@
 	interpolate		Interpolate
 	invalidatecache	InvalidateCache
 	isendanchor		isEndAnchor
+	norearrange		noRearrange
 	order			Order
 	posnumber		PosNumber
 	posroutine		PosRoutine
@@ -3119,6 +3120,7 @@
                 isEndAnchor 1
                 isOperator  1
                 ItemAction  1
+				noRearrange	1
                 OrderCheck  1
                 UserTag     1
 				! );



2.14      +3 -3      interchange/lib/Vend/Parse.pm


rev 2.14, prev_rev 2.13
Index: Parse.pm
===================================================================
RCS file: /anon_cvs/repository/interchange/lib/Vend/Parse.pm,v
retrieving revision 2.13
retrieving revision 2.14
diff -u -r2.13 -r2.14
--- Parse.pm	18 Feb 2002 01:00:21 -0000	2.13
+++ Parse.pm	18 Feb 2002 02:07:03 -0000	2.14
@@ -1,6 +1,6 @@
 # Vend::Parse - Parse Interchange tags
 # 
-# $Id: Parse.pm,v 2.13 2002/02/18 01:00:21 mheins Exp $
+# $Id: Parse.pm,v 2.14 2002/02/18 02:07:03 mheins Exp $
 #
 # Copyright (C) 1996-2001 Red Hat, Inc. <interchange@redhat.com>
 #
@@ -35,7 +35,7 @@
 
 @ISA = qw(Exporter Vend::Parser);
 
-$VERSION = substr(q$Revision: 2.13 $, 10);
+$VERSION = substr(q$Revision: 2.14 $, 10);
 
 @EXPORT = ();
 @EXPORT_OK = qw(find_matching_end);
@@ -302,7 +302,7 @@
 	$Initialized = $self;
 }
 
-my %noRearrange = qw/attr_list/;
+my %noRearrange = qw//;
 
 my %Documentation;
 use vars '%myRefs';