[LON-CAPA-cvs] cvs: CVSROOT / loginfo.pl
albertel
lon-capa-cvs@mail.lon-capa.org
Fri, 15 Nov 2002 16:34:16 -0000
albertel Fri Nov 15 11:34:16 2002 EDT
Modified files:
/CVSROOT loginfo.pl
Log:
- no longer should show diffs for the modules/TeXconvert/tt.dynamic directories
Index: CVSROOT/loginfo.pl
diff -u CVSROOT/loginfo.pl:1.2 CVSROOT/loginfo.pl:1.3
--- CVSROOT/loginfo.pl:1.2 Fri Nov 15 11:25:20 2002
+++ CVSROOT/loginfo.pl Fri Nov 15 11:34:16 2002
@@ -94,7 +94,6 @@
while (<FC>) {
chop;
my ($file, $old, $new) = split(",");
- if ($file =~ m|TexConvert/tt.dynamic|) { next; }
if($old eq "NONE") {
push @added_files, $file;
} elsif($new eq "NONE") {
@@ -120,6 +119,7 @@
foreach my $info (@modified_files_info) {
my ($file, $old, $new) = @$info;
+ if ($file =~ m|TexConvert/tt.dynamic|) { $diffmsg='Diffs for '.$file.' not shown.'."\n";next; }
open(LOG, "$cvs -Qn rdiff -r $old -r $new -u $file|") || die;
while(<LOG>) { s/\r\n/\n/; $diffmsg .= $_; }
close(LOG);