--- ../TWiki20040902/lib/TWiki/Store.pm 2004-07-22 10:43:40.000000000 +0200 +++ lib/TWiki/Store.pm 2005-09-09 06:30:44.000000000 +0200 @@ -572,7 +572,9 @@ } $theRev = "" unless( $theRev ); - $theRev =~ s/^1\.//o; + $theRev =~ s/r?1\.//o; # cut 'r' and major + # Fix for Codev.SecurityAlertExecuteCommandsWithRev + $theRev = "" unless( $theRev =~ s/.*?([0-9]+).*/$1/o ); $topicHandler = _getTopicHandler( $theWebName, $theTopic, $attachment ) if( ! $topicHandler ); my( $rcsOut, $rev, $date, $user, $comment ) = $topicHandler->getRevisionInfo( $theRev ); --- ../TWiki20040902/lib/TWiki/UI/RDiff.pm 2004-08-08 10:28:45.000000000 +0200 +++ lib/TWiki/UI/RDiff.pm 2005-09-09 06:33:13.000000000 +0200 @@ -409,6 +409,9 @@ if( ! $rev2 ) { $rev2 = 0; } $rev1 =~ s/r?1\.//go; # cut 'r' and major $rev2 =~ s/r?1\.//go; # cut 'r' and major + # Fix for Codev.SecurityAlertExecuteCommandsWithRev + $rev1 = $maxrev unless( $rev1 =~ s/.*?([0-9]+).*/$1/o ); + $rev2 = $maxrev unless( $rev2 =~ s/.*?([0-9]+).*/$1/o ); if( $rev1 < 1 ) { $rev1 = $maxrev; } if( $rev1 > $maxrev ) { $rev1 = $maxrev; } if( $rev2 < 1 ) { $rev2 = 1; } --- ../TWiki20040902/lib/TWiki/UI/Viewfile.pm 2004-05-29 08:51:35.000000000 +0200 +++ lib/TWiki/UI/Viewfile.pm 2005-09-09 06:35:59.000000000 +0200 @@ -43,6 +43,9 @@ my $fileName = $query->param( 'filename' ); my $rev = $query->param( 'rev' ) || ""; + $rev =~ s/r?1\.//o; # cut 'r' and major + # Fix for Codev.SecurityAlertExecuteCommandsWithRev + $rev = "" unless( $rev =~ s/.*?([0-9]+).*/$1/o ); return unless TWiki::UI::webExists( $webName, $topic ); --- ../TWiki20040902/lib/TWiki/UI/View.pm 2004-08-25 08:36:15.000000000 +0200 +++ lib/TWiki/UI/View.pm 2005-09-09 06:34:52.000000000 +0200 @@ -107,6 +107,8 @@ if( $rev ) { $rev =~ s/r?1\.//go; # cut 'r' and major + # Fix for Codev.SecurityAlertExecuteCommandsWithRev + $rev = $maxrev unless( $rev =~ s/.*?([0-9]+).*/$1/o ); if( $rev < 1 ) { $rev = 1; } if( $rev > $maxrev ) { $rev = $maxrev; } } else { --- ../TWiki20040902/lib/TWiki.pm 2004-11-20 06:31:53.000000000 +0100 +++ lib/TWiki.pm 2005-09-10 03:01:49.000000000 +0200 @@ -154,7 +154,7 @@ # =========================== # TWiki version: -$wikiversion = '02 Sep 2004 $Rev: 1742 $'; +$wikiversion = '03 Sep 2004 $Rev: 1742 $'; # =========================== # Key Global variables, required for writeDebug --- ../TWiki20040902/license.txt 2004-11-20 06:31:10.000000000 +0100 +++ license.txt 2005-09-10 03:04:46.000000000 +0200 @@ -1,4 +1,4 @@ -Copyright and License of TWiki, 02 Sep 2004 +Copyright and License of TWiki, 03 Sep 2004 ------------------------------------------- TWiki (TM) is copyrighted (C) 1999-2004 by Peter Thoeny, --- ../TWiki20040902/readme.txt 2004-11-20 06:37:33.000000000 +0100 +++ readme.txt 2005-09-10 03:05:03.000000000 +0200 @@ -5,7 +5,7 @@ TWiki Distribution ------------------ -Version: 02 Sep 2004 $Rev: 1742 $ +Version: 03 Sep 2004 $Rev: 1742 $ Release type: Production release This version is TWiki Release 01-Sep-2004 patched for --- ../TWiki20040902/TWikiDocumentation.html 2004-08-31 18:35:18.000000000 +0200 +++ TWikiDocumentation.html 2005-09-10 03:09:15.000000000 +0200 @@ -1,7 +1,7 @@