[LON-CAPA-cvs] cvs: doc /loncapafiles loncapafiles.lpml loncom/build Makefile filecompare.pl lpml_parse.pl loncom/dns_checksums 2.10.1.tab

raeburn raeburn at source.lon-capa.org
Mon Jun 9 01:14:24 EDT 2014


raeburn		Mon Jun  9 05:14:24 2014 EDT

  Added files:                 
    /loncom/dns_checksums	2.10.1.tab 

  Modified files:              
    /loncom/build	lpml_parse.pl filecompare.pl Makefile 
    /doc/loncapafiles	loncapafiles.lpml 
  Log:
  - Bug 6535
    - For 2.10.1 -> 2.11.0 transition inhibit generation of unwanted WARNINGS
      (and lpmlsave files) for cases where 2.10.1 was installed recently (and
      hence files have recent timestamps), by storing old release number
      in /etc/loncapa-release.prev and then doing sha1-based checksum comparison
      with checksums for files in dns_checksums/2.10.1.tab
  
  
-------------- next part --------------
Index: loncom/build/lpml_parse.pl
diff -u loncom/build/lpml_parse.pl:1.60 loncom/build/lpml_parse.pl:1.61
--- loncom/build/lpml_parse.pl:1.60	Fri Jan 27 23:50:57 2012
+++ loncom/build/lpml_parse.pl	Mon Jun  9 05:14:12 2014
@@ -12,7 +12,7 @@
 # The LearningOnline Network with CAPA
 # lpml_parse.pl - Linux Packaging Markup Language parser
 #
-# $Id: lpml_parse.pl,v 1.60 2012/01/27 23:50:57 raeburn Exp $
+# $Id: lpml_parse.pl,v 1.61 2014/06/09 05:14:12 raeburn Exp $
 #
 # Written by Scott Harrison, codeharrison at yahoo.com
 #
@@ -1230,6 +1230,7 @@
     my @tokeninfo=@_;
     $file=''; $source=''; $target=''; $categoryname=''; $description='';
     $note=''; $build=''; $status=''; $dependencies=''; $installscript='';
+    $buildlink = '';
     my $text=&trim($parser->get_text('/file'));
     my $buildtest;
     $file_count++;
@@ -1323,8 +1324,9 @@
 		}
 		return $result;
 	    }
-            my $bflag='-b1';
-            $bflag='-b3' if (($dependencies or $buildlink) or 
+            my $bflag='-b5';
+            $bflag='-b3' if ($buildlink);
+            $bflag='-b6' if (($dependencies) or
                              ($categoryname eq 'pdf manual'));
 	    if ($tokeninfo[2]{type} eq 'private') {
 		return <<END;
@@ -1662,11 +1664,12 @@
 # -------------------------------------------------------- Format build section
 sub format_buildlink {
     my @tokeninfo=@_;
-    $buildlink='';
     my $text=&trim($parser->get_text('/buildlink'));
     if ($text) {
 	$parser->get_tag('/buildlink');
 	$buildlink=$sourceroot.'/'.$text;
+    } else {
+        $buildlink='';
     }
     return '';
 }
@@ -1684,12 +1687,13 @@
 # ------------------------------------------------- Format dependencies section
 sub format_dependencies {
     my @tokeninfo=@_;
-    #$dependencies='';
     my $text=&trim($parser->get_text('/dependencies'));
     if ($text) {
 	$parser->get_tag('/dependencies');
 	$dependencies=join(';',((map {s/^\s*//;s/\s$//;$_} split(/\;/,$text)),$dependencies));
 	$dependencies=~s/;$//;
+    } else {
+        $dependencies='';
     }
     return '';
 }
Index: loncom/build/filecompare.pl
diff -u loncom/build/filecompare.pl:1.14 loncom/build/filecompare.pl:1.15
--- loncom/build/filecompare.pl:1.14	Fri Jul  2 22:04:50 2004
+++ loncom/build/filecompare.pl	Mon Jun  9 05:14:12 2014
@@ -3,7 +3,7 @@
 # The LearningOnline Network with CAPA
 # filecompare.pl - script used to help probe and compare file statistics
 #
-# $Id: filecompare.pl,v 1.14 2004/07/02 22:04:50 albertel Exp $
+# $Id: filecompare.pl,v 1.15 2014/06/09 05:14:12 raeburn Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -77,6 +77,8 @@
    N=2: same as N=1 except without md5sum
    N=3: md5sum=same --> 1; age<0 --> 2
    N=4: cvstime>0 --> 2
+   N=5: md5sum=same --> 1; cvstime<0 and sha1sum from dns_checksums=different --> 2;
+   N=6: md5sum=same --> 1; age<0 and sha1sum from dns_checksums=different --> 2;   
 
 The third way to pass arguments is set by the -s flag.
 filecompare.pl -s SOURCE=[source] TARGET=[target] MODE=[mode] LOC1 LOC2
@@ -103,6 +105,7 @@
 #   size similarity (bytes)
 #   line count difference
 #   number of different lines
+#   sha1sum similarity to checksum for same file in installed version
 #
 # Quantities of comparison:
 #   existence (no,yes); other values become 'n/a'
@@ -112,10 +115,11 @@
 #   size similarity (byte difference)
 #   line count difference (integer)
 #   number of different lines (integer)
+#   sha1sum ("same" or "different") 
 
 # ---------------------------------------------------------------- Dependencies
 # implementing from unix command line (assuming bash)
-# md5sum, diff, wc -l
+# md5sum, diff, wc -l, sha1sum
 
 # ---------------------------------------------- Process command line arguments
 # Flags (before file/dir names):
@@ -240,6 +244,7 @@
          'size'=>(sub {print 'size: '. at _[0];return;}),
          'lines'=>(sub {print 'lines: '. at _[0];return;}),
          'diffs'=>(sub {print 'diffs: '. at _[0];return;}),
+         'sha1sum'=>(sub {print 'sha1sum: '. at _[0];return;}),
 );
 
 my %MEASURE=(
@@ -275,6 +280,31 @@
 			my $rv2=`diff $file1 $file2 | grep '^>' | wc -l`;
 			chop $rv2; $rv2=~s/^\s+//; $rv2=~s/\s+$//;
 			return ($rv1,$rv2); } ),
+         'sha1sum'=>( sub { my ($file1,$file2)=@_;
+                          if (open(my $fh,"</etc/loncapa-release.prev")) {
+                              my $loncaparev = <$fh>;
+                              close($fh);
+                              chomp($loncaparev);
+                              $loncaparev =~ s/^\QLON-CAPA release \E//;
+                              $loncaparev =~ s/\-\d{8}$//;
+                              my ($rv1)=split(/ /,`sha1sum $file2`); chomp $rv1;
+                              my $checksum;
+                              if ($loncaparev eq 'CVS_HEAD') {
+                                  return ($rv1,$checksum);
+                              }
+                              elsif (open(my $fh,"<../../loncom/dns_checksums/$loncaparev.tab")) {
+                                  while (<$fh>) {
+                                      chomp();
+                                      if (/^\Q$file2\E,[\d\.]+,(\w+)$/) {
+                                          $checksum = $1;
+                                          last;
+                                      }
+                                  }
+                                  close($fh);
+                                  return ($rv1,$checksum);
+                              }
+                          }
+                          return('n/a','n/a'); }),
 );
 
 FLOOP: foreach my $file (@files) {
@@ -290,7 +320,7 @@
     }
     my ($existence1,$existence2)=&{$MEASURE{'existence'}}($file1,$file2);
     my $existence=$existence1.':'.$existence2;
-    my ($cvstime,$md5sum,$age,$size,$lines,$diffs);
+    my ($cvstime,$md5sum,$age,$size,$lines,$diffs,$sha1sum);
     if ($existence1 eq 'no' or $existence2 eq 'no') {
         $md5sum='n/a';
         $age='n/a';
@@ -298,14 +328,28 @@
         $size='n/a';
         $lines='n/a';
         $diffs='n/a';
+        $sha1sum='n/a';
     }
     else {
 	if ($buildmode) {
 	    my ($cvstime1,$cvstime2)=&{$MEASURE{'cvstime'}}($file1,$file2);
 	    $cvstime=$cvstime1-$cvstime2;
-	}
+            my ($sha1sumfile,$checksum) = &{$MEASURE{'sha1sum'}}($file1,$file2); 
+            $sha1sum='n/a';
+            unless ($checksum eq 'n/a') {
+                if ($sha1sumfile && $checksum) { 
+                    if ($sha1sumfile eq $checksum) {
+                        $sha1sum='same';
+                    }
+                    else {
+                        $sha1sum='different';
+                    }
+                }
+	    }
+        }
 	else {
 	    $cvstime='n/a';
+            $sha1sum='n/a';
 	}
         my ($age1,$age2)=&{$MEASURE{'age'}}($file1,$file2);
         $age=$age1-$age2;
@@ -468,6 +512,39 @@
 	    exit(0);
 	}
     }
+    elsif ($buildmode==5) { # -b5
+        if ($md5sum eq 'same') {
+            exit(1);
+        }
+        elsif ($cvstime<0) {
+            if ($sha1sum eq 'same') {
+                exit(0);
+            }
+            else {
+                exit(2);
+            }
+        }
+        else {
+            exit(0);
+        }
+    }
+    elsif ($buildmode==6) { # -b6
+        if ($md5sum eq 'same') {
+            exit(1);
+        }
+        elsif ($age<0) {
+            if ($sha1sum eq 'same') {
+                exit(0);
+            }
+            else {
+                exit(2);
+            }
+        }
+        else {
+            exit(0);
+        }
+    }
+
     if ($showflag) {
 	print "$file";
 	if ($verbose==1) {
@@ -479,12 +556,15 @@
 	    print &{$OUTPUT{'age'}}($age);
 	    print "\t";
 	    print &{$OUTPUT{'md5sum'}}($md5sum);
+            print "\t";
+            print &{$OUTPUT{'sha1sum'}}($sha1sum);
 	    print "\t";
 	    print &{$OUTPUT{'size'}}($size);
 	    print "\t";
 	    print &{$OUTPUT{'lines'}}($lines);
 	    print "\t";
 	    print &{$OUTPUT{'diffs'}}($diffs);
+            
 	}
 	print "\n";
     }
Index: loncom/build/Makefile
diff -u loncom/build/Makefile:1.206 loncom/build/Makefile:1.207
--- loncom/build/Makefile:1.206	Tue Oct 29 21:01:16 2013
+++ loncom/build/Makefile	Mon Jun  9 05:14:12 2014
@@ -1,6 +1,6 @@
 # The LearningOnline Network with CAPA
 
-# $Id: Makefile,v 1.206 2013/10/29 21:01:16 raeburn Exp $
+# $Id: Makefile,v 1.207 2014/06/09 05:14:12 raeburn Exp $
 
 # TYPICAL USAGE of this Makefile is primarily for two targets:
 # "make build" and "make install".
@@ -566,6 +566,9 @@
 	sed -i "s/\x08\x08*/.../g" WARNINGS
 VERSION:
 	install -d $(TARGET)/etc
+	if (test -e /etc/loncapa-release); then \
+		cp -p -v /etc/loncapa-release /etc/loncapa-release.prev; \
+	fi
 	echo -n "LON-CAPA release $(VERSION)-" > $(TARGET)/etc/loncapa-release
 	date +"%Y%m%d" >> $(TARGET)/etc/loncapa-release
 	install -d $(TARGET)/home/httpd/html/lon-status
Index: doc/loncapafiles/loncapafiles.lpml
diff -u doc/loncapafiles/loncapafiles.lpml:1.893 doc/loncapafiles/loncapafiles.lpml:1.894
--- doc/loncapafiles/loncapafiles.lpml:1.893	Sat Jun  7 19:13:46 2014
+++ doc/loncapafiles/loncapafiles.lpml	Mon Jun  9 05:14:23 2014
@@ -2,7 +2,7 @@
  "http://lpml.sourceforge.net/DTD/lpml.dtd">
 <!-- loncapafiles.lpml -->
 
-<!-- $Id: loncapafiles.lpml,v 1.893 2014/06/07 19:13:46 raeburn Exp $ -->
+<!-- $Id: loncapafiles.lpml,v 1.894 2014/06/09 05:14:23 raeburn Exp $ -->
 
 <!--
 
@@ -1705,9 +1705,10 @@
 <description>
 Files containing version numbers and checksums for most LON-CAPA perl modules,
 perl scripts, cgi scripts, daemons, and a configuration file in each
-LON-CAPA release, starting with 2.11.0.RC1
+LON-CAPA release, starting with 2.10.1
 </description>
 <filenames>
+2.10.1.tab;
 2.11.0.RC1.tab;
 2.11.0.RC2.tab;
 2.11.0.RC3.tab;

Index: loncom/dns_checksums/2.10.1.tab
+++ loncom/dns_checksums/2.10.1.tab
2.10.1
/etc/httpd/conf/loncapa_apache.conf,1.192.2.4,f3ad20393fb2ce92954afb0b76697b2b67a61b21
/etc/httpd/conf/mime.types,1.4,2e923151bb4d94b60ad9dda8ffbb5794a0b7e89f
/etc/httpd/conf/startup.pl,1.34.12.1,13e89b3921ff393e9ce0127944a75aaeb6c41a4f
/etc/httpd/conf/rewrites/loncapa_rewrite_on.conf,1.1,5190acaa0fc71a99b6714beb37e1a5aa2691c481
/etc/httpd/conf/rewrites/loncapa_rewrite_off.conf,1.1,548861065b5f1a584211624ed762e50492ba593c
/home/httpd/cgi-bin/CHECKRPMS,1.16,77af460217be820474a6d37988141ba65dccae97
/home/httpd/cgi-bin/barcode.png,1.12,57bb6c59faa8f28283e9a33fb978d96b076a1ecb
/home/httpd/cgi-bin/clusterstatus.pl,1.27,c614444ed78bc4c3b5a5ab9a377214feffdf158e
/home/httpd/cgi-bin/convertjme.pl,1.15,420382c67b70d5ce14964a07894230683b048326
/home/httpd/cgi-bin/decompress.pl,1.17,db36adcea7aa44f6326a92741549ca87e2ab2146
/home/httpd/cgi-bin/gradesubmission.pl,1.2,074dafb6e227a9bbd16974b0ee9c92d0fd4dda04
/home/httpd/cgi-bin/graph.png,1.35,da6d261cc74007bd3455c1e9460ec0c951baedf7
/home/httpd/cgi-bin/imagechoice.pl,1.4,6ac898517eb16c8e1a04b520b402b541f548c791
/home/httpd/cgi-bin/listdomconfig.pl,1.1,e52fc1bb8f4c5661208da446ee61ad0f3b556e2f
/home/httpd/cgi-bin/loncron.pl,1.7,03a1a7449621d189fa1667fd3f773551a1b57222
/home/httpd/cgi-bin/lonversions.pl,1.6,c9b4d86b4e37604c7ed580b7c5756371442e50d0
/home/httpd/cgi-bin/metadata_harvest.pl,1.5,df5d7dfd5a393f849786ee21bb6416d026224dd7
/home/httpd/cgi-bin/metadata_keywords.pl,1.9,7bb64b80cea7ed879c47aa16999af3d2f79a6a18
/home/httpd/cgi-bin/multidownload.pl,1.38,33dd3320490e21ba7c2334f3260841d863f9d419
/home/httpd/cgi-bin/perltest.pl,1.12,b07a9ac628b880f2f6d0bbe1de2e76c8a9fe36c0
/home/httpd/cgi-bin/ping.pl,1.9,a5e1b6c063cd9efe98bcb6fbbc995ffcb35622e2
/home/httpd/cgi-bin/plot.gif,1.13,733769f532d2c1145ae43a27943a1f1fd306f273
/home/httpd/cgi-bin/plot.png,1.13,733769f532d2c1145ae43a27943a1f1fd306f273
/home/httpd/cgi-bin/printout.pl,1.146.4.2,f7f6599c9f495a2b8d4380d99ab03318b4b6c4f2
/home/httpd/cgi-bin/sampleexternal.pl,1.2,495274e0326c652e1a54d8dbae36016413785e75
/home/httpd/cgi-bin/takeoffline.pl,1.6,768ecf0916ada5c1a2887513667c4f89240ce773
/home/httpd/cgi-bin/takeonline.pl,1.4,acc1d3251acffbcd56d32c325a483d0e41bf3d76
/home/httpd/cgi-bin/translator.pl,1.1,f4cfdc404b86637c962b437733578a03ebbe504e
/home/httpd/cgi-bin/userstatus.pl,1.20,b5d8240dac9c315e278a19ab9ebf457e04fa1db6
/home/httpd/html/adm/about.html,1.34,ccb729848cec0083c53d413382a5a083d89b0948
/home/httpd/html/adm/loginproblems.html,1.12,8fe4db9b6e8c67bdf1d1bc5b40ad177bd6d0a113
/home/httpd/html/adm/notfound.html,1.4,7935f259c287c0a00ee26f01ddfb7cbc157547b2
/home/httpd/html/adm/unauthorized.html,1.3,1c11a3d6914d113aec864e3605a54eee558905d0
/home/httpd/html/adm/help/searchcat.html,1.3,3aceeda13e2887c5c8fd830b22ec5793b2748ce2
/home/httpd/html/adm/help/tex/author.manual.access.tex,1.13,877bc0f73ec83e9d517c62a3f2f3b1927a3e93cd
/home/httpd/html/adm/help/tex/course.manual.access.tex,1.26,c1bc4efb4091d0fc71b8f6db0b610d4a7ac660d1
/home/httpd/html/adm/help/tex/domain.manual.access.tex,1.12,8464f4e4e573c7eb12f0513e0723db4955fa68a0
/home/httpd/html/adm/help/author.manual.ps,1.13,18ab46655cfb3a34675fa316e3bbac1ae6461768
/home/httpd/html/adm/help/author.manual.pdf,1.13,cc0bc974fcda939512af750d4cbd6ccb64b58dee
/home/httpd/html/adm/help/course.manual.ps,1.26,87ca0372d948a9a85663c83b720d0e402f139b81
/home/httpd/html/adm/help/course.manual.pdf,1.26,3344006360b5d8994f692b9926a947248fc11b20
/home/httpd/html/adm/help/domain.manual.ps,1.12,ee43e46b134cd849368bb7387d71ef43fbde36e1
/home/httpd/html/adm/help/domain.manual.pdf,1.12,5f70524763c232462875eaf6259fce9553469e1f
/home/httpd/html/adm/help/ext_examples.html,1.1,b24feb89837b94d17265e16fb77edee65492af59
/home/httpd/html/adm/help/ext_examples.html.meta,1.1,7294828192e7ba38509a97e03e215755b0741d98
/home/httpd/html/adm/help/ext_examples.library,1.2,c81a9e0bdc4df237e5f05a89b48a5ae2ced01a9c
/home/httpd/html/adm/help/ext_examples.library.meta,1.1,70a1249b5e052263662cfb739a27193e66dbdc49
/home/httpd/html/adm/help/ext_examples.problem,1.1,e861c9ffc0566c31815b997045e74dd905ef0ffc
/home/httpd/html/adm/help/ext_examples.problem.meta,1.1,dbe1afdc5517ee3473d7c07f3fa4e39249671073
/home/httpd/html/adm/helper/course.initialization.helper,1.31,e5fa5953a2b6ab8f12cd785694b03e451d9c7645
/home/httpd/html/adm/helper/newslot.helper,1.27,86d753145b6aa573643e6cab76607416820e1fb1
/home/httpd/html/adm/helper/parameter.helper,1.19,199664af3c2c726c95a09b3d6fded5202b116163
/home/httpd/html/adm/helper/resettimes.helper,1.8,4040abe3737a1a0e8988768a1d1ed131f75859c7
/home/httpd/html/adm/rat/parameter.html,1.59.2.1,956214952f4a79e4c1011952ac2ca6d7c64475b9
/home/httpd/html/adm/rat/rat.html,1.6,4e5cd1ece20b7c7bcf8a8aa5419062f242585a1f
/home/httpd/html/adm/rat/map.html,1.1,3113806f8bf7657dc3ae3f226303f9c5b334e2df
/home/httpd/html/adm/rat/empty.html,1.2,261add6c40fe9cb447b7d2d688e438705cdc58f1
/home/httpd/html/adm/rat/loading.html,1.1,c6b5096bde4552468eb08a777dec66082ab61b0d
/home/httpd/html/res/adm/includes/default_assesscalc,1.7,6211e86d801825d64f6f5e01c57cc5f2d2e496ec
/home/httpd/html/res/adm/includes/default_studentcalc,1.2,d83108e74acef147d4d1377577bef113c4cfbead
/home/httpd/html/res/adm/includes/default_classcalc,1.3,dd9e33140ded9780131bc0ef5a71e46e3f013d5d
/home/httpd/html/res/adm/includes/default_homework.lcpm,1.152.2.2,4c1546e11504fc15fc9f7ac7a4f90c94575d7142
/home/httpd/html/res/adm/includes/lectureonline.lcpm,1.2,842fe84059dc1f6dc982d550caf92c979b0fedc1
/home/httpd/html/res/adm/includes/ratcode.js,1.13.2.1,ce37f213ff2486b489f742bec1edad1c3c6a5365
/home/httpd/html/res/adm/pages/menu.html,1.128,ac5bffdb6dcd052cbb5f7928ee76e4ed1ce52b62
/home/httpd/html/res/lib/templates/DropBox.problem,1.18,f4817fc9ef63f12811cfe806dd44ae4cc6b549a0
/home/httpd/html/res/lib/templates/DropBox.problem.meta,1.11,afc94db06b1604665583573f97c9138aac3ab1ed
/home/httpd/html/res/lib/templates/simpleproblem.problem,1.12,4f5f1541e7610412558439591794df3350f0e5c0
/home/httpd/html/res/lib/templates/simpleproblem.problem.meta,1.7,582c7ce40645f315d1a7a9b4e18f26a95cb0a288
/home/httpd/lib/perl/AlgParser.pm,1.18,b28c4ff2ce23a8be6f821ca15e8a3f156edd73ca
/home/httpd/lib/perl/Apache/Spreadsheet.pm,1.81,b0fd78bcd2ea3a834e5f22098cf7ce647d4845fa
/home/httpd/lib/perl/Apache/admannotations.pm,1.35,42ea6cce1fba22bd8cae3aafeeb41f5cc15458dd
/home/httpd/lib/perl/Apache/admbookmarks.pm,1.38,8db2910381345e61e11777f12539c84ee87b6e34
/home/httpd/lib/perl/Apache/assesscalc.pm,1.58,2c05163943cf12f922ac6f2b172177fe64cc3ef4
/home/httpd/lib/perl/Apache/blockedaccess.pm,1.3,4ee73df0413faacb7a82b17fc5bb67067b826052
/home/httpd/lib/perl/Apache/bridgetask.pm,1.257,acc84b58607d4a8075f14399d0517e724b422aa8
/home/httpd/lib/perl/Apache/caparesponse.pm,1.248,c596bd7e17174b17e558b05e44eed3195b156681
/home/httpd/lib/perl/Apache/checkauthen.pm,1.12,3771545701a66e2c35696dd605110486a3006478
/home/httpd/lib/perl/Apache/chemresponse.pm,1.87,db8ca4291f0c81e29602ab32adb14fda5f85d4a3
/home/httpd/lib/perl/Apache/classcalc.pm,1.29,4d4fbf7e297ff42e41a973670cefadd5d5670799
/home/httpd/lib/perl/Apache/coursecatalog.pm,1.58.4.8,3715a8f6a1fd3b530cf6ca7a75bbc5b1325810d2
/home/httpd/lib/perl/Apache/courseclassifier.pm,1.14,1f2a8074cef646f33b1cb35f0d1be4ae2bd93786
/home/httpd/lib/perl/Apache/courseprefs.pm,1.28.2.10,1f1ab7500d7a15ed0c27ef093f45dfb5589549bd
/home/httpd/lib/perl/Apache/createaccount.pm,1.40.2.5,26a2506aa4b481acc36625e3a100aef113f296ea
/home/httpd/lib/perl/Apache/domainprefs.pm,1.138.2.13,50f4423dc805081e4bb1c36ea06b84a2ed13a15c
/home/httpd/lib/perl/Apache/domainstatus.pm,1.4,0b56bcf40ce95e8ace2d96c1731f6861863a05fa
/home/httpd/lib/perl/Apache/drawimage.pm,1.10,cee975e8248e9159994c823391b4615aa350e9d9
/home/httpd/lib/perl/Apache/edit.pm,1.135,81033f4dfef8af182ffa91c6cf91f780e307c328
/home/httpd/lib/perl/Apache/entities.pm,1.19,54a653f8a1c8c011b491de63039afba5562b37be
/home/httpd/lib/perl/Apache/essayresponse.pm,1.114,16c8b0b6a2b56395201592c06f766bfed542a901
/home/httpd/lib/perl/Apache/externalresponse.pm,1.19,6c75093451c4e3d4f7434417c17406ac31397064
/home/httpd/lib/perl/Apache/functionplotresponse.pm,1.68,4f74118f574c5817986a7f9e6ba8d31baaab7b25
/home/httpd/lib/perl/Apache/grades.pm,1.596.2.12,3f20311052278874a37e04df3275755e28f515ce
/home/httpd/lib/perl/Apache/groupboards.pm,1.14,584184bcc619083f3eddecc4df74303aca97fad1
/home/httpd/lib/perl/Apache/grouproster.pm,1.8,71dfb3f443aa759b2271d0a0826bfec1046c6e81
/home/httpd/lib/perl/Apache/groupsort.pm,1.66,cbfe88e8ed638973eb8043672662f01e178f273d
/home/httpd/lib/perl/Apache/hint.pm,1.77,d720fd947b55a00cadb148bf8357b04f3b852265
/home/httpd/lib/perl/Apache/imagechoice.pm,1.17,8dc26d32e072d86802d71efd0947002727c14126
/home/httpd/lib/perl/Apache/imageresponse.pm,1.100,a1e3e5b7f49331ee12d9df3b1055585f694b29d3
/home/httpd/lib/perl/Apache/imsexport.pm,1.7,54f2bd9c19b75d3aa2af66c78d5af4ce7cea76c0
/home/httpd/lib/perl/Apache/imsimport.pm,1.33,2a129138a0c31a9834c7cad88930d7d271bfabda
/home/httpd/lib/perl/Apache/imsimportdocs.pm,1.29,1e06c3281008602861bb1229f3cdf1e3bea2a088
/home/httpd/lib/perl/Apache/imsprocessor.pm,1.48,be419f5f40183f91f151393cb5e345a3e20e42e2
/home/httpd/lib/perl/Apache/inputtags.pm,1.271.2.9,2299ca0c25d8c0165df60a60ecf8e97930b1e0f2
/home/httpd/lib/perl/Apache/languagetags.pm,1.2,2c251b3611c40b600250b78764e11e1b995606ee
/home/httpd/lib/perl/Apache/localize.pm,1.2,5412e40c084a5b91ecb30c2d44b9f99c0647c9e1
/home/httpd/lib/perl/Apache/localize/ar.pm,1.21,0d376afa82ec193ff1c64b1bbac3f023ba01425c
/home/httpd/lib/perl/Apache/localize/de.pm,1.385.2.19,ce3a477cecd15ee63ebb7541d3b059ee67f575fb
/home/httpd/lib/perl/Apache/localize/es.pm,1.68,08e22578987318b30bed4f3a78ad608e5e07d693
/home/httpd/lib/perl/Apache/localize/fa.pm,1.18,616988d8202ca72af79e989afcc74703dfdb7d8c
/home/httpd/lib/perl/Apache/localize/fr.pm,1.22,eb091462dd9a83ac4d338b5a24b47f9c828baef6
/home/httpd/lib/perl/Apache/localize/ja.pm,1.25,99aef84c0271ff3ac3148f16186f75a16f989fb2
/home/httpd/lib/perl/Apache/localize/pt.pm,1.59,e9312a4d96d3894e4dc6944a44211e9f82e44059
/home/httpd/lib/perl/Apache/localize/ru.pm,1.63,d4aea3d5506642169a76a094ffb3fecd972974fd
/home/httpd/lib/perl/Apache/localize/tr.pm,1.18,ce623807d531030021d3564e937aebb844635f79
/home/httpd/lib/perl/Apache/localize/x_chef.pm,1.4,e601d9a0ba7e047dd759f30168ad36b82706036b
/home/httpd/lib/perl/Apache/localize/zh.pm,1.106,f12452b5d9699f0438cbb61464cecd4f50d8cb1c
/home/httpd/lib/perl/Apache/lonaboutme.pm,1.147,2aa49b569b99de5362ec002b452fc410d5942e55
/home/httpd/lib/perl/Apache/lonacc.pm,1.136,f36b1c177784068f9b68dd9a61297039f67e7267
/home/httpd/lib/perl/Apache/lonambiguous.pm,1.23,8451b01c93a3c2ee16da6894bdce14ec9b2f3628
/home/httpd/lib/perl/Apache/lonannounce.pm,1.82,969152795e89c4699b0c83c19d8e346da6dedc3d
/home/httpd/lib/perl/Apache/lonauth.pm,1.101.8.9,b9c72573e11eef495e6f951c5b377854f75207f4
/home/httpd/lib/perl/Apache/lonblockingstatus.pm,1.7,f309df93057b2bd79fca679a445e10b2ebace4d4
/home/httpd/lib/perl/Apache/lonbulletin.pm,1.63,916ac256c34ea7e82d60b3d362a4d244fb475cc3
/home/httpd/lib/perl/Apache/loncacc.pm,1.51,8533be378d57f71262850ea78729d518fae2dbbc
/home/httpd/lib/perl/Apache/loncapagrade.pm,1.7,e7af8cc5693608812a8d1260f40f388924586ad2
/home/httpd/lib/perl/Apache/loncfile.pm,1.106.2.1,7eb407eb6befbb4e01227b5bbb9f680b0c52be95
/home/httpd/lib/perl/Apache/lonchat.pm,1.20,6847c9b7bdec6861dee47288bdefb0d5ad746418
/home/httpd/lib/perl/Apache/lonchatfetch.pm,1.38,2b1661e96a388710b4e5f4d3ad98795c6b0ded6b
/home/httpd/lib/perl/Apache/loncleanup.pm,1.11,4c320a5feca22b69ae12ee5a389d8eeed6ddee56
/home/httpd/lib/perl/Apache/lonclonecourse.pm,1.7,640ffd907186ebbbd5e6e411d077828e8bbc79c2
/home/httpd/lib/perl/Apache/loncommon.pm,1.948.2.33,b070fddf162630375342a67fb8caa1312a7b5eb0
/home/httpd/lib/perl/Apache/loncommunicate.pm,1.46,86c0396ddc2428f8e272e97636b4789a4957e621
/home/httpd/lib/perl/Apache/lonconfigsettings.pm,1.15.2.2,f7820a25129230f04824fc47ce4110f6cc6ad702
/home/httpd/lib/perl/Apache/lonconstruct.pm,1.35,1b80b2e3ab6874d3b77a980f753afb5e9d8a4aba
/home/httpd/lib/perl/Apache/loncorrectproblemplot.pm,1.24,baff45ee808c83b38826524f88db71869e347e37
/home/httpd/lib/perl/Apache/loncoursedata.pm,1.193,5845ffa790669753fc6edaddf2c9136703fbcc57
/home/httpd/lib/perl/Apache/loncoursegroups.pm,1.112,f1a6a195c242702d854911662d313326a0018db6
/home/httpd/lib/perl/Apache/loncoursequeueadmin.pm,1.28,fc39c11ad322bf9d3425856ec12f84ebbb61ad89
/home/httpd/lib/perl/Apache/loncreatecourse.pm,1.145,d1763691f28bdab8803b24d0001b3cd2d4fb0f79
/home/httpd/lib/perl/Apache/loncreateuser.pm,1.358,df794bf3215298708727b25a3b202b0cff427143
/home/httpd/lib/perl/Apache/loncss.pm,1.9,9cddcb9422ad7d4e78a33783205600cd48526159
/home/httpd/lib/perl/Apache/londatecheck.pm,1.12,2e1e7ae8c7602e2d8b2312bbe631b43466ba05e5
/home/httpd/lib/perl/Apache/londefdef.pm,1.415.4.6,cc6078619f5f630680bfac2f2a415d56cf08ebfd
/home/httpd/lib/perl/Apache/londiff.pm,1.28.2.1,50a70ac2f308f50eb674bb52d50741a9f2f49db9
/home/httpd/lib/perl/Apache/londns.pm,1.1,5eb621b07873aa4ab108a4b1e21a9d858675372d
/home/httpd/lib/perl/Apache/londocs.pm,1.434.2.4,ef58a3f57adaa412d94f0922befc2519a3c923fc
/home/httpd/lib/perl/Apache/lonenc.pm,1.24,efb2b46fdb2c148edbc34f5da476a151969677b7
/home/httpd/lib/perl/Apache/lonencurl.pm,1.4,be6ae5309cb2c7edb17cbf365947988f9e384218
/home/httpd/lib/perl/Apache/lonerrorhandler.pm,1.23,fc9bb05cd2760f8c709fb8bdec96006b0b0e0305
/home/httpd/lib/perl/Apache/lonevaluate.pm,1.29,63c64d2209cd054a160f1e3e555679073c7dc170
/home/httpd/lib/perl/Apache/lonfeedback.pm,1.290.2.7,8fed4bd0aa1706c43ffd7d4907060f8af98b4aaa
/home/httpd/lib/perl/Apache/longradinganalysis.pm,1.10,d0a658147379e378aecf97ec18572544cd6c89a5
/home/httpd/lib/perl/Apache/longroup.pm,1.27,524295dfb3b638704af6ad85af953d026e52891f
/home/httpd/lib/perl/Apache/longroupchat.pm,1.10,807c82307804fe1a16cc32a74ac9485131b924e1
/home/httpd/lib/perl/Apache/lonhelp.pm,1.40,b5c68d0962c9174e7944efa5802032477628016a
/home/httpd/lib/perl/Apache/lonhelper.pm,1.180.2.3,14fa60c6dd2da0538e8faca5868cdbe73ea2c57c
/home/httpd/lib/perl/Apache/lonhelpmenu.pm,1.39,52cbc347377c41cc0149e9338d954bdd2a01c93b
/home/httpd/lib/perl/Apache/lonhomework.pm,1.317.4.4,d5e7599bdaaf8a40a7e9c45324cb770af01c43a2
/home/httpd/lib/perl/Apache/lonhtmlcommon.pm,1.285.2.3,c714fb71984cf6e086f35e0f88d9a7d7dfd55e90
/home/httpd/lib/perl/Apache/lonindexer.pm,1.207,6369280c10bd88e7763023c06206112c3d951e17
/home/httpd/lib/perl/Apache/lonipcheck.pm,1.1,f946bff2aaa26a2563fade3da19d61cb110a6203
/home/httpd/lib/perl/Apache/lonlatextable.pm,1.4,b3e1cabbddcb2a63a57d00f08bfdca9202f826f5
/home/httpd/lib/perl/Apache/lonlocal.pm,1.63,1a7e5c4e68553b41eb6579869d49503d673289c5
/home/httpd/lib/perl/Apache/lonlocalize.pm,1.1,afff37cbe9d42bb25d6f098eb9d17b68000958cf
/home/httpd/lib/perl/Apache/lonlogin.pm,1.148,562cfa6a3d923116d8b8230d0f7ac3c023fadc19
/home/httpd/lib/perl/Apache/lonlogout.pm,1.42.2.2,4fe2f27a4017c577e350eadee46eaab1d25ca6dc
/home/httpd/lib/perl/Apache/lonmainmenu.pm,1.8,048f1099ebf7409bf180fff22e0a33b98233d07e
/home/httpd/lib/perl/Apache/lonmanagekeys.pm,1.25,8dc3416218cc4a52b4183c5eaa4679ad0f3e98ce
/home/httpd/lib/perl/Apache/lonmaxima.pm,1.29,06221141ef25781efd3093dc9466005def89166a
/home/httpd/lib/perl/Apache/lonmenu.pm,1.315.2.15,7934d7209f5f1d1dea19eed419112feeeece827f
/home/httpd/lib/perl/Apache/lonmeta.pm,1.240,9de248c41f642add18ce950b616018b9377c7be3
/home/httpd/lib/perl/Apache/lonmodifycourse.pm,1.59,b04661a13c8c8963ace6b05c0f2a1ed2563007e6
/home/httpd/lib/perl/Apache/lonmsg.pm,1.232,6121e745254a0dcd9632dcd00a3fa8265e68ba32
/home/httpd/lib/perl/Apache/lonmsgdisplay.pm,1.157,af0c03c99cc1dc7955ef6d14bcdedaa97a747fe2
/home/httpd/lib/perl/Apache/lonmysql.pm,1.39,f03ed6ec05489a20a0e8a6188f71b6169beccd31
/home/httpd/lib/perl/Apache/lonnavdisplay.pm,1.13.4.4,f158d36d471d2790899874400c518a43250e55e5
/home/httpd/lib/perl/Apache/lonnavmaps.pm,1.444.2.7,eb77eb88e6fb0d2e610c91362e08b6c2f26f2ad1
/home/httpd/lib/perl/Apache/lonnet.pm,1.1056.4.33,4aa6ca7207736a4e2382ba8e08797d04dc8afae3
/home/httpd/lib/perl/Apache/lonnotify.pm,1.38,4bf412ab32d153a50df2d983d0ad0106be1a0a6e
/home/httpd/lib/perl/Apache/lonpage.pm,1.95,4616abfb579f7cef9e57820c5c14da2d6a0f3c18
/home/httpd/lib/perl/Apache/lonpageflip.pm,1.79.6.1,cff408104fdb6cf05b364f99c108cb458aeeb2c3
/home/httpd/lib/perl/Apache/lonparmset.pm,1.505.2.1,e1ee9a3b4d2bd029bddb0c14a0ce8f33961e93d5
/home/httpd/lib/perl/Apache/lonpdfupload.pm,1.20,d41f2ceb198f5b6db08d65ed1a65ebb88747f115
/home/httpd/lib/perl/Apache/lonpercentage.pm,1.12,0548f3ee8cde877a5472ce4fa46530ae9e76b75d
/home/httpd/lib/perl/Apache/lonpickauthor.pm,1.2,ee7550a70995b8f8ba6cbbd38d80fca3eee8503e
/home/httpd/lib/perl/Apache/lonpickcode.pm,1.15,059c2d7f98ab50e1af5e99eb4e7ba5479c8392d8
/home/httpd/lib/perl/Apache/lonpickcourse.pm,1.103,e2dde76e48a0752b6525eb087148ac22211b7355
/home/httpd/lib/perl/Apache/lonpickstudent.pm,1.30,2b65b99b271f49922b027e956181abad60fb7fc5
/home/httpd/lib/perl/Apache/lonpickuser.pm,1.5,c47f5081194ae82d75a64170a95d02accf1fb00b
/home/httpd/lib/perl/Apache/lonplot.pm,1.152,72ca132bf588868df28764a9123bf685d09c4cf8
/home/httpd/lib/perl/Apache/lonpopulate.pm,1.68,6dd25f2854c97eb78f6a992346deb501fa7a34e8
/home/httpd/lib/perl/Apache/lonpreferences.pm,1.186.2.8,4e1fecea8b31221652a291f68c2d90adc4261fea
/home/httpd/lib/perl/Apache/lonprintout.pm,1.583.2.5,b0dc2b7db97da7e74edfeca690cf6b9238c7949b
/home/httpd/lib/perl/Apache/lonproblemanalysis.pm,1.139,fe9894c5ee092ce3a9bd6aa94e4c3c01d6bcdf15
/home/httpd/lib/perl/Apache/lonproblemstatistics.pm,1.118,5daab564ac3a97dce829b7751fdf7292470b2714
/home/httpd/lib/perl/Apache/lonpubdir.pm,1.125.4.1,b668d790e64185ec18e3db92b35cda74eabc344c
/home/httpd/lib/perl/Apache/lonpublisher.pm,1.267.2.1,590cb316ac0656e0a3f638a263732025b0d2bba3
/home/httpd/lib/perl/Apache/lonquickgrades.pm,1.49,9b6a498614c29a7b438f70e0bbcdd986bb1750d0
/home/httpd/lib/perl/Apache/lonr.pm,1.10,286ceb503dd26ef05624cdb34a7d5402d5a2b6f6
/home/httpd/lib/perl/Apache/lonracc.pm,1.23,0ff0df41aa604f2cd02eff52658533c525d463b2
/home/httpd/lib/perl/Apache/lonratedt.pm,1.98,1fdea6cfc9a980bc9d7bd43b7d984fd644207199
/home/httpd/lib/perl/Apache/lonratmenu.pm,1.15,f6cd899c320ad020825730a62f1a845deb73b8b3
/home/httpd/lib/perl/Apache/lonratparms.pm,1.28,50aa7165926d0c3f692b22a151d321be6ce739a2
/home/httpd/lib/perl/Apache/lonratsrv.pm,1.41,39d8097bee4fc6bf9eab7e76a2120c0a5f080ec1
/home/httpd/lib/perl/Apache/lonremote.pm,1.34,71db2975d2831e2016b235bd49d9c3f50a5ad1a8
/home/httpd/lib/perl/Apache/lonrep.pm,1.14,51213be6624cdbe1ab65aca25e536962c4158bdb
/home/httpd/lib/perl/Apache/lonrequestcourse.pm,1.63,cf615c018e465a56d6320164d952a0a9673e96c6
/home/httpd/lib/perl/Apache/lonretrieve.pm,1.42.2.1,c9d9fcfaee30fe326ad082adf71c1ec4c71c15a2
/home/httpd/lib/perl/Apache/lonrights.pm,1.30,f03459de4119b99bf5de40e5d685b799af1b6a82
/home/httpd/lib/perl/Apache/lonroles.pm,1.256.2.6,6ddcb305bd8c5a84f2d4211afa1bf2ed7f21905b
/home/httpd/lib/perl/Apache/lonrss.pm,1.49,b80f0fdb56997c6d7e2d6f606ddd017d1d3b8541
/home/httpd/lib/perl/Apache/lonsearchcat.pm,1.324,fac60eb654c236921e26c9e357658f28a41bd545
/home/httpd/lib/perl/Apache/lonselstudent.pm,1.14,17f5558ca9bd2f50a75e08de8ea23bd81664cec6
/home/httpd/lib/perl/Apache/lonsequence.pm,1.40,14cbaed14e89efe5685926555a2b957d989f37d7
/home/httpd/lib/perl/Apache/lonsimplepage.pm,1.98,22d20f802d47a70ef51366d9bb869e1c5c8983b1
/home/httpd/lib/perl/Apache/lonsimpleproblemedit.pm,1.32,fe7c9db9e70c41589f6d52791d0723a321b08214
/home/httpd/lib/perl/Apache/lonsource.pm,1.24,996fe3900c5fce5da13f3d04f17dd09639d98847
/home/httpd/lib/perl/Apache/lonspeller.pm,1.17,2b55f6309d4ca0a9f7140fd037c59674d17b0894
/home/httpd/lib/perl/Apache/lonspreadsheet.pm,1.55.6.1,db9f64db3449fda3625ca85af6c97a5d7b04feba
/home/httpd/lib/perl/Apache/lonstathelpers.pm,1.63,70afa214216b2ab0990516dc3fdb4e60a38bc5d1
/home/httpd/lib/perl/Apache/lonstatistics.pm,1.153,a3989aacc46b6e3d0141f82c385f514175b3fe96
/home/httpd/lib/perl/Apache/lonstatusacc.pm,1.7,ee624c2ceb31260df343a4c7dfe2d81bd976584c
/home/httpd/lib/perl/Apache/lonstudentassessment.pm,1.162,e5645cdb78dd655cb565b973a7d9d6cab670d403
/home/httpd/lib/perl/Apache/lonstudentsubmissions.pm,1.63.2.3,7c8c4d125015ed763595d37757dfb231cec1a293
/home/httpd/lib/perl/Apache/lonsubmissiontimeanalysis.pm,1.31,9eac4150f88fad535d64affbf7944d7d8af6a556
/home/httpd/lib/perl/Apache/lonsupportreq.pm,1.66,2c949b3539d7575005fd1255ee9c600861362725
/home/httpd/lib/perl/Apache/lonsurveyreports.pm,1.24,ae137529d3e5c0bee91eaaca10bc35cac1066056
/home/httpd/lib/perl/Apache/lonsyllabus.pm,1.111,306f64df8daaf35dd24d0ba867501f8cc1fbb7e7
/home/httpd/lib/perl/Apache/lontable.pm,1.21,e0bc923b98a5c86e1d763cf59fd6fe3a80b7cf4f
/home/httpd/lib/perl/Apache/lontemplate.pm,1.43.4.1,d514f7948596e09cb7f4a8a2b257b593af0eb4a5
/home/httpd/lib/perl/Apache/lontest.pm,1.22,b3ef6b9060d3769b482c937724444e0a58a0efdf
/home/httpd/lib/perl/Apache/lontex.pm,1.13,7a82161facdf9f037adcbfe5960a4be3aaebf43a
/home/httpd/lib/perl/Apache/lontexconvert.pm,1.108,1e6ae60c3808023a61a0c8aac5258f6fd2c867a1
/home/httpd/lib/perl/Apache/lontokacc.pm,1.19,1357274f5bf030dc9ef647c841f0e662299c8b0e
/home/httpd/lib/perl/Apache/lontrackstudent.pm,1.32,3036fb055251e7bc8d69ca5cd319ea448f7d3c28
/home/httpd/lib/perl/Apache/lontrans.pm,1.13,4bbafecb5f5bfdca9b42ef783915a3885159fa9d
/home/httpd/lib/perl/Apache/lonunauthorized.pm,1.13.2.2,ef3747643ccb52d593a0bf835002fa7e4e691e81
/home/httpd/lib/perl/Apache/lonupload.pm,1.53.2.1,5c077792cac3072d0fa92defe0888f2367f51adc
/home/httpd/lib/perl/Apache/lonuploadedacc.pm,1.15,36cc7c95ca48fc6c74e317f4d949ba63f831dd49
/home/httpd/lib/perl/Apache/lonuploadrep.pm,1.11,326e9ff09afb940a9a38114c9ad107f2bc7fc33c
/home/httpd/lib/perl/Apache/lonuserstate.pm,1.137.2.1,c38a7f97ba9b187afaf6bd81b6a5cebdc5870968
/home/httpd/lib/perl/Apache/lonuserutils.pm,1.136,09f1dc4745442d69a5b34b66bf79316136ed124b
/home/httpd/lib/perl/Apache/lonviewclasslist.pm,1.13,4cf2549fa85ddb1c1edbd3e9c6340e5edec9f547
/home/httpd/lib/perl/Apache/lonwhatsnew.pm,1.101.2.1,f14332efc69b470c2b125d282efb8f209b2fdb23
/home/httpd/lib/perl/Apache/lonwrapper.pm,1.40,660f2563d4191f81967c9c4dba2cc53a44745a9e
/home/httpd/lib/perl/Apache/lonxml.pm,1.505.2.7,aae24ae16dfc0ea10d1288680ac96290ccef1c17
/home/httpd/lib/perl/Apache/matchresponse.pm,1.81.2.1,b1fad78b664521efc6fa22332aea37de4de86829
/home/httpd/lib/perl/Apache/migrateuser.pm,1.16,fcd894dcf7a1a7b04a768be05d143592639a1889
/home/httpd/lib/perl/Apache/optionresponse.pm,1.173.2.2,c3c0ce5203f28315e4d54ac36bf4ab016e9d2490
/home/httpd/lib/perl/Apache/outputtags.pm,1.57,54fe6c69670778c5c8586dc9c208d580efea57e2
/home/httpd/lib/perl/Apache/portfolio.pm,1.232,561c12eb253b67c10ef9dcdba9c7bd3f07ece619
/home/httpd/lib/perl/Apache/publiccheck.pm,1.19,8b97465c9d9486d799a7cbb0b4e63bc6876db667
/home/httpd/lib/perl/Apache/radiobuttonresponse.pm,1.148.2.1,f003a359b8b882758bb36e200933dcdb15639a06
/home/httpd/lib/perl/Apache/randomlabel.pm,1.95,880a1d2da75c9ab276a234d4c278750901c8acd6
/home/httpd/lib/perl/Apache/randomlylabel.pm,1.31,f028fe7b84580d866337c6be7d4c8cb545fa4e0c
/home/httpd/lib/perl/Apache/rankresponse.pm,1.64,f1e8509f07ff8bf19fc46957ae1df92075a5c113
/home/httpd/lib/perl/Apache/resetpw.pm,1.23.2.2,32b45673b7ecf86a5c5aa18fffd1d5ae978ff532
/home/httpd/lib/perl/Apache/response.pm,1.221.2.2,48d33363d2b0f4b154af89a4664d83d45a59cb2e
/home/httpd/lib/perl/Apache/restrictedaccess.pm,1.8,77b8a6e54fb1cbd5c111077ece2a44110df948fe
/home/httpd/lib/perl/Apache/run.pm,1.60,a9f34d8bac7e83b9be6ce3a8276ae342d2432155
/home/httpd/lib/perl/Apache/scripttag.pm,1.151,9fe716d114c7315a886ea4848094a4fdad61a955
/home/httpd/lib/perl/Apache/selfenroll.pm,1.25,5400e179bb5359f1f10ecfa089a7675738a47af9
/home/httpd/lib/perl/Apache/simpleauthen.pm,1.2,c7aaab641b31ec23392cc59000c06ae9017daf3a
/home/httpd/lib/perl/Apache/slotrequest.pm,1.110,bd2327f7d9e123cd4e1f161b2f33c92f373e29f2
/home/httpd/lib/perl/Apache/structuretags.pm,1.465.2.14,7fa5fe7d011fdcfad5963fb401de42624a18b8e2
/home/httpd/lib/perl/Apache/studentcalc.pm,1.45,56c8c19ea92af3874c7c0b180faa0f25929698cd
/home/httpd/lib/perl/Apache/style.pm,1.22,4b89903ace9c562726614abbcaff408fc12987d4
/home/httpd/lib/perl/Apache/switchserver.pm,1.28.2.4,6804a30a0f68b030e6df0ef274d27c23893bd0c5
/home/httpd/lib/perl/Apache/testbankimport.pm,1.30,1a5c8bc6251474e4980e19da3263f35e5b34987d
/home/httpd/lib/perl/HTML/LCParser.pm,1.2,d8c80dca68c300254d162dc159c4c31739affd20
/home/httpd/lib/perl/LONCAPA.pm,1.31,f91d824a8690ebdd9cc3407fcac99bd5d359eedb
/home/httpd/lib/perl/LONCAPA/ConfigFileEdit.pm,1.4,557c8df56791147bf1cbf46670da0b46bef5f279
/home/httpd/lib/perl/LONCAPA/Configuration.pm,1.14,e2e2fd9bd1e36310a6672c4cef1fb112d144ff29
/home/httpd/lib/perl/LONCAPA/Enrollment.pm,1.43,575c87ceadc3532c0193cd27168c4828654a32a3
/home/httpd/lib/perl/LONCAPA/Firewall.pm,1.11,3bede51e0d212b0faaf7115e50035172d41464d4
/home/httpd/lib/perl/LONCAPA/HashIterator.pm,1.2,b7f8eee1af94c1a30b0d3f75f759808b9b8a7687
/home/httpd/lib/perl/LONCAPA/LondConnection.pm,1.52,e5602c6ba335fe0d66210e5d9b89caab994d4c83
/home/httpd/lib/perl/LONCAPA/LondTransaction.pm,1.9,b3bdce763bbcc98bdacf4ef63075335b380c486d
/home/httpd/lib/perl/LONCAPA/Queue.pm,1.4,9a96f28d4843cd12e45c0f10e87cc7bb005c2de9
/home/httpd/lib/perl/LONCAPA/Stack.pm,1.4,d6c0c4d6a25143fd2bbc5538824aa51574059c11
/home/httpd/lib/perl/LONCAPA/batchcreatecourse.pm,1.36,2957b95423acfac235007c48847d9f08aab53bde
/home/httpd/lib/perl/LONCAPA/lonauthcgi.pm,1.9,3f11452e107caa8ca3bb51f3745a0577e86dfacd
/home/httpd/lib/perl/LONCAPA/loncgi.pm,1.12,f578ba74ffa03f8a1010690ee77ce82bd9ef1efa
/home/httpd/lib/perl/LONCAPA/lonlocal.pm,1.7,2c29fe15e28ae2826a90d5b34ec90b25ec3a29b1
/home/httpd/lib/perl/LONCAPA/lonmetadata.pm,1.33,c16f43ab528d19af53380ad1378a5be7df4db36b
/home/httpd/lib/perl/LONCAPA/lonssl.pm,1.10,719b9399ebfab8065730bb989a5762aaf9ff3a36
/home/httpd/lib/perl/LONCAPA/map.pm,1.13,c8ab6fb4be67aaa800f61088ab6f081ece52cbcd
/home/httpd/lib/perl/Safe.pm,1.9,bc686b10767ff4a6a31df6ed11055c87266e186e
/home/httpd/lib/perl/localauth-std.pm,1.7,f4ffd24e54ee67e4c052982acffdd54ad097327d
/home/httpd/lib/perl/localenroll-std.pm,1.42,cbc4922bdb3ec82aaf52f2575cce9c0fc57a6841
/home/httpd/lib/perl/localstudentphoto-std.pm,1.7,1f527d7bdc33f13d18aad49b3cef1a1696b4f97a
/home/httpd/lib/perl/loncapa_cron-std,1.20,08e96ca9305d345e3729766e8b13e72cc3fde8bc
/home/httpd/lonTabs/addid.tab,1.24,7dbdf4612bc290c2ca991ffb50bad536a46d3f3f
/home/httpd/lonTabs/filecategories.tab,1.2,e7bf81d8d2dd36bea35301414b17d29b5c919e44
/home/httpd/lonTabs/filetypes.tab,1.37,058c0fb8ac36c0818fd0f968272ccf2b94c7eb33
/home/httpd/lonTabs/insertlist.xml,1.24.2.1,52097fcb39eaa7c1a188b9b3eb40fcefdea0f384
/home/httpd/lonTabs/language.tab,1.22,6e3561e483e9ec22b3ad85cca996b49c7bd51bd7
/home/httpd/lonTabs/mydesk.tab,1.126.2.5,9c72c0a0973ccc52a3be7599491ab050a42ea377
/home/httpd/lonTabs/packages.tab,1.62.2.1,5c3f0b3b6b5e2479270509a3df73ceeec752dfcb
/home/httpd/lonTabs/roles.tab,1.60,4b4fdc9b100d7be579c624ba393e254eb3090afd
/home/httpd/lonTabs/rolesplain.tab,1.41,45bd969daac14f8a663e31f229d08a6be1f29648
/home/httpd/lonTabs/releaseslist.xml,1.3,efc2df5d567c4d481feab2a13b0db0fcec93a238
/home/httpd/perl/Autocreate.pl,1.19,a0136164912faf2f0cc21dc5f4aefa392eb7bf4f
/home/httpd/perl/Autoenroll.pl,1.32,2204ff41969632c1f829abb7d983145f18cb8d7e
/home/httpd/perl/Autoupdate.pl,1.19,22f1b3a20fa7da21708d65a646245eb0fa0b8971
/home/httpd/perl/CrGenerate.pl,1.9,a20f78db3e189011d02772a0f1301e19698b50e8
/home/httpd/perl/CrGrant.pl,1.6,251f41bd3e53d04a6f0a13b3201c7b78c755a93f
/home/httpd/perl/apachereload,1.7,921aa672a63598caee9a8855347cf13369fedc33
/home/httpd/perl/archive_old_files.pl,1.3,4902d25f949f3a9dba0ccd7c61054d8121e99ece
/home/httpd/perl/cleanup_database.pl,1.7,f6a55bfc0230c531d41869e136faf56a0b7895ee
/home/httpd/perl/cleanup_file_caches.pl,1.5,d41fa8557ef4064b15270a1f695c896f16d19a69
/home/httpd/perl/debug/clean_db.pl,1.5,a6d96c1efe9d6732ce48f397288ff154ac0ad63c
/home/httpd/perl/debug/dump_db.pl,1.8,f880a5d61c5e899d71d5485e7c942bd32d203bdc
/home/httpd/perl/debug/escape.pl,1.2,e4b1fba5595e5e38ef34e1b4404cd81752d3ea59
/home/httpd/perl/debug/excise_from_db.pl,1.3,b0e10251e46bebef3461636fe1147fda548a5362
/home/httpd/perl/debug/login_count.pl,1.9,cd27518c0709a98a4fc1520bd48064dc9bf9e117
/home/httpd/perl/debug/modify_config_files.pl,1.12,b3373e5dc6a86100004e08a738e0909308155b0e
/home/httpd/perl/debug/seed_accesscount.pl,1.5,1b95da57d87bf4a42cc4c43335a0cfc7263c8ef1
/home/httpd/perl/debug/testkerberos.pl,1.2,0be61b6f6ecff6487d12370ccce2e21b5532d772
/home/httpd/perl/debug/unescape.pl,1.2,4be0a49f5af8714b2b3caf349fdc44617817f837
/home/httpd/perl/debug/updateclasslist.pl,1.3,81014516cf39355a3ef806c45ddddfca75af8195
/home/httpd/perl/debug/user_login_count.pl,1.3,0a3a8441aaa1bdf8bd340f91674d8489a6df1aec
/home/httpd/perl/distprobe,1.20,b5ba9c841e8dbc36dcbce2299d76476ceb4e078b
/home/httpd/perl/lchtmldir,1.22,d1dee750fc1a5e90b0cf9b0abf329d594b5efcb3
/home/httpd/perl/lchttpdlogs,1.1,705ba1dd9dc5c05c4ac3cba4ae8d57a0848dba0b
/home/httpd/perl/lcinstallfile,1.5,cf0424c319dcdc376256616539ab74b8afa62fa6
/home/httpd/perl/lciptables,1.6,db2f8ba4b4faca106a31269f6ca98bba20f9f53e
/home/httpd/perl/lcnfsoff,1.4,e8ac95e6b8e63ebf5966a6adcd61b4c7746d143c
/home/httpd/perl/lcnfson,1.6,819c1df52787008f043bc5d4355aa437a9168614
/home/httpd/perl/lcpasswd,1.22,8177b5e14048233385ce3aa533557c315b3e4161
/home/httpd/perl/lcuseradd,1.41,ec2487665940c312557778011078670e96c4773f
/home/httpd/perl/lcuserdel,1.16,6882842c8e034f3a11fd7fa3d1b95c3c44a56036
/home/httpd/perl/loncnew,1.100,1ea735502c435d7fa9eefdcc5bc6483548a6e092
/home/httpd/perl/loncron,1.95,a70e578ee13f0a9861d58889b05fdda9cbce1751
/home/httpd/perl/lond,1.467.2.6,e3074c3e0ea00c0de768f2596b096186efcc3f11
/home/httpd/perl/lonmaxima,1.40,2ef28cdbf8c668903a0b0a4432c72b559c4d9c4b
/home/httpd/perl/lonmemcached,1.7,1aa57476b2bbc326f2b2af402a5f63ef627f38dc
/home/httpd/perl/lonr,1.6,114de8a26ccd7bc2141ef922803a8efe20289b22
/home/httpd/perl/lonsql,1.90,6406d601298b567267ea06b3bf651da0bb6624fc
/home/httpd/perl/modify_config_files.pl,1.12,b3373e5dc6a86100004e08a738e0909308155b0e
/home/httpd/perl/parse_activity_log.pl,1.24,5472f1c046b7b9ab032bfd03b131e50f6ec7f76e
/home/httpd/perl/pwchange,1.10,2782dc0cf53d5ffb5a616479ae5e1ae9a22468af
/home/httpd/perl/refresh_courseids_db.pl,1.10,cacd4e5559e34f40f72d3f8e8c4e8e4329266cf4
/home/httpd/perl/searchcat.pl,1.78,233a56699a47dc1ea2b9ba65ac7f80e59325dd72
/home/httpd/perl/seed_accesscount.pl,1.5,1b95da57d87bf4a42cc4c43335a0cfc7263c8ef1
/usr/local/loncapa/bin/CHECKRPMS,1.16,77af460217be820474a6d37988141ba65dccae97


More information about the LON-CAPA-cvs mailing list