[LON-CAPA-cvs] cvs: CVSROOT / loginfo.pl

albertel lon-capa-cvs@mail.lon-capa.org
Thu, 08 Apr 2004 20:20:01 -0000


albertel		Thu Apr  8 16:20:01 2004 EDT

  Modified files:              
    /CVSROOT	loginfo.pl 
  Log:
  - hide commits to foxr/londtest
  
  
Index: CVSROOT/loginfo.pl
diff -u CVSROOT/loginfo.pl:1.3 CVSROOT/loginfo.pl:1.4
--- CVSROOT/loginfo.pl:1.3	Fri Nov 15 11:34:16 2002
+++ CVSROOT/loginfo.pl	Thu Apr  8 16:20:01 2004
@@ -119,7 +119,11 @@
 
 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; }
+        if ($file =~ m|TexConvert/tt.dynamic|  ||
+	    $file =~ m|foxr/londtest| ) {
+		$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);