Diff for /doc/help/rebuildLabelHash.pl between versions 1.10 and 1.12

version 1.10, 2007/08/24 23:50:28 version 1.12, 2011/01/06 18:11:42
Line 104  foreach my $file ( glob("*.tex") ) { Line 104  foreach my $file ( glob("*.tex") ) {
     foreach my $ref ( $contents =~ /\\ref\{([^\}]*)\}/g ) {      foreach my $ref ( $contents =~ /\\ref\{([^\}]*)\}/g ) {
  if (!exists($fragmentLabels{$ref})   if (!exists($fragmentLabels{$ref})
     && $ref ne 'course.manual.access.hlp'      && $ref ne 'course.manual.access.hlp'
     && $ref ne 'author.manual.access.hlp') {      && $ref ne 'author.manual.access.hlp'
               && $ref ne 'domain.manual.access.hlp'
               && $ref ne 'course.manual.pdf'
               && $ref ne 'author.manual.pdf'
               && $ref ne 'domain.manual.pdf') {
     $error++;      $error++;
     print("***ERROR: ref $ref in $file doesn't exist in label hash. \n");      print("***ERROR: ref $ref in $file doesn't exist in label hash. \n");
  } else {   } else {
Line 114  foreach my $file ( glob("*.tex") ) { Line 118  foreach my $file ( glob("*.tex") ) {
 }  }
   
 use HTML::TokeParser;  use HTML::TokeParser;
 foreach my $manual ('course.manual.texxml','author.manual.texxml') {  foreach my $manual ('course.manual.texxml','author.manual.texxml','domain.manual.texxml') {
     my $p = HTML::TokeParser->new($path.'/'.$manual);      my $p = HTML::TokeParser->new($path.'/'.$manual);
     if (!-e $path.'/'.$manual) {      if (!-e $path.'/'.$manual) {
  $error++;   $error++;

Removed from v.1.10  
changed lines
  Added in v.1.12


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>