Diff for /loncom/interface/londocs.pm between versions 1.86 and 1.88

version 1.86, 2003/10/08 17:34:33 version 1.88, 2003/10/22 21:41:11
Line 138  sub dumpcourse { Line 138  sub dumpcourse {
 # Do the dumping  # Do the dumping
  unless ($outhash{'home_'.$ENV{'form.authorspace'}}) { return ''; }   unless ($outhash{'home_'.$ENV{'form.authorspace'}}) { return ''; }
  my ($ca,$cd)=split(/\@/,$ENV{'form.authorspace'});   my ($ca,$cd)=split(/\@/,$ENV{'form.authorspace'});
  $r->print('<h3>Copying Files</h3>');   $r->print('<h3>'.&mt('Copying Files').'</h3>');
  my $title=$ENV{'form.authorfolder'};   my $title=$ENV{'form.authorfolder'};
  $title=~s/[^\w\/]+/\_/g;   $title=~s/[^\w\/]+/\_/g;
  my %replacehash=();   my %replacehash=();
Line 396  sub entryline { Line 396  sub entryline {
             $foldertitle=&Apache::lontexconvert::msgtexconverted($4);              $foldertitle=&Apache::lontexconvert::msgtexconverted($4);
             $renametitle=$4;              $renametitle=$4;
             $title='<i>'.&Apache::lonlocal::locallocaltime($1).'</i> '.              $title='<i>'.&Apache::lonlocal::locallocaltime($1).'</i> '.
                 &Apache::loncommon::plainname($2,$3).': <br>'.                  &Apache::loncommon::plainname($2,$3).': <br />'.
  $foldertitle;   $foldertitle;
  }   }
     $renametitle=~s/\&quot\;/\\\"/g;      $renametitle=~s/\&quot\;/\\\"/g;
Line 490  sub checkonthis { Line 490  sub checkonthis {
   my $result=&Apache::lonnet::repcopy(    my $result=&Apache::lonnet::repcopy(
                               &Apache::lonnet::filelocation('',$url));                                &Apache::lonnet::filelocation('',$url));
           if ($result==OK) {            if ($result==OK) {
              $r->print('<font color="green">ok</font>');               $r->print('<font color="green">'.&mt('ok').'</font>');
              $r->rflush();               $r->rflush();
              &Apache::lonnet::countacc($url);               &Apache::lonnet::countacc($url);
              $url=~/\.(\w+)$/;               $url=~/\.(\w+)$/;
Line 511  sub checkonthis { Line 511  sub checkonthis {
                      ($Apache::lonxml::warningcount)) {                       ($Apache::lonxml::warningcount)) {
      if ($Apache::lonxml::errorcount) {       if ($Apache::lonxml::errorcount) {
                         $r->print('<font color="red"><b>'.                          $r->print('<font color="red"><b>'.
   $Apache::lonxml::errorcount.' error(s)</b></font> ');    $Apache::lonxml::errorcount.' '.
     &mt('error(s)').'</b></font> ');
                      }                       }
      if ($Apache::lonxml::warningcount) {       if ($Apache::lonxml::warningcount) {
                         $r->print('<font color="blue">'.                          $r->print('<font color="blue">'.
Line 519  sub checkonthis { Line 520  sub checkonthis {
   &mt('warning(s)').'</font>');    &mt('warning(s)').'</font>');
                      }                       }
                  } else {                   } else {
                      $r->print('<font color="green">ok</font>');                       $r->print('<font color="green">'.&mt('ok').'</font>');
                  }                   }
                  $r->rflush();                   $r->rflush();
              }               }
Line 587  sub checkversions { Line 588  sub checkversions {
        my $monthsel='';         my $monthsel='';
        my $weeksel='';         my $weeksel='';
        my $daysel='';         my $daysel='';
          my $allsel='';
        if ($ENV{'form.timerange'}==-1) {         if ($ENV{'form.timerange'}==-1) {
    $seltext='since start of course';     $seltext='since start of course';
            $startsel='selected';             $startsel='selected';
Line 602  sub checkversions { Line 604  sub checkversions {
        } elsif ($ENV{'form.timerange'}==86400) {         } elsif ($ENV{'form.timerange'}==86400) {
            $seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')';             $seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
            $daysel='selected';             $daysel='selected';
          } elsif ($ENV{'form.timerange'} eq 'all') {
      $allsel='all';
        }         }
        my %lt=&Apache::lonlocal::texthash         my %lt=&Apache::lonlocal::texthash
       ('st' => 'Since Start of Course',        ('st' => 'Version changes since start of Course',
        'lm' => 'Last Month',         'lm' => 'Version changes since last Month',
        'lw' => 'Last Week',         'lw' => 'Version changes since last Week',
        'sy' => 'Since Yesterday',         'sy' => 'Version changes since Yesterday',
        'di' => 'Display',                 'al' => 'All Resources',
          'sd' => 'Display',
                'cc' => 'Content changed',                 'cc' => 'Content changed',
        'fi' => 'File',         'fi' => 'File',
        'md' => 'Modification Date',         'md' => 'Modification Date',
        've' => 'Version',                 'mr' => 'Most recently published Version',
          've' => 'Version used in Course',
                  'vu' => 'Set Version to be used in Course', 
        'di' => 'Differences');         'di' => 'Differences');
        $r->print(<<ENDHEADERS);         $r->print(<<ENDHEADERS);
 <form action="/adm/coursedocs" method="post">  <form action="/adm/coursedocs" method="post">
 <select name="timerange">  <select name="timerange">
   <option value='all' $allsel>$lt{'al'}</option>
 <option value="-1" $startsel>$lt{'st'}</option>  <option value="-1" $startsel>$lt{'st'}</option>
 <option value="2592000" $monthsel>$lt{'lm'}</option>  <option value="2592000" $monthsel>$lt{'lm'}</option>
 <option value="604800" $weeksel>$lt{'lw'}</option>  <option value="604800" $weeksel>$lt{'lw'}</option>
 <option value="86400" $daysel>$lt{'sy'}</option>  <option value="86400" $daysel>$lt{'sy'}</option>
 </select>  </select>
 <input type="submit" name="versions" value="$lt{'di'}" />  <input type="submit" name="versions" value="$lt{'sd'}" />
 </form>  </form>
 <h3>$lt{'cc'} $seltext</h3>  <h3>$lt{'cc'} $seltext</h3>
 <table border="2">  <table border="2">
 <tr>  <tr>
 <th>$lt{'fi'}</th><th>$lt{'md'}</th>  <th>$lt{'fi'}</th><th>$lt{'md'}</th><th>$lt{'mr'}</th>
 <th>$lt{'ve'}</th><th>$lt{'di'}</th></tr>  <th>$lt{'ve'}</th><th>$lt{'vu'}</th><th>$lt{'di'}</th></tr>
 ENDHEADERS  ENDHEADERS
        foreach (keys %changes) {         foreach (keys %changes) {
   if ($changes{$_}>$starttime) {    if ($changes{$_}>$starttime) {
Line 638  ENDHEADERS Line 646  ENDHEADERS
              $r->print(               $r->print(
                  '<tr><td><a href="'.$linkurl.'" target="cat">'.$linkurl.                   '<tr><td><a href="'.$linkurl.'" target="cat">'.$linkurl.
                  '</a></td><td>'.                   '</a></td><td>'.
                  &Apache::lonlocal::locallocaltime($changes{$_}).'</td><td>'.$currentversion.'</td>'.                   &Apache::lonlocal::locallocaltime($changes{$_}).
        '<td>');                        '</td><td><font size="+2">'.
          $currentversion.'</font></td><td><font size="+2">');
   # Used in course
        my $usedversion=$hash{'version_'.$linkurl};
        if ($usedversion) {
    $r->print($usedversion);
        } else {
    $r->print($currentversion);
        }
        $r->print('</font></td><td>');
   # Set version
        $r->print(&Apache::loncommon::select_form($usedversion,
          'set_version_'.$linkurl,
                                  ('' => '',
                                 'current' => 'current',
                                  map {$_,$_} (1..$currentversion))));
        $r->print('</td><td>');
              my $lastold=1;               my $lastold=1;
              for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {               for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {
                  my $url=$root.'.'.$prevvers.'.'.$extension;                   my $url=$root.'.'.$prevvers.'.'.$extension;
Line 658  ENDHEADERS Line 682  ENDHEADERS
                     $r->print(' <a href="/adm/diff?filename='.                      $r->print(' <a href="/adm/diff?filename='.
                             &Apache::lonnet::clutter($root.'.'.$extension).                              &Apache::lonnet::clutter($root.'.'.$extension).
                             '&versionone='.$prevvers.                              '&versionone='.$prevvers.
      '">Diffs</a>');       '">'.&mt('Diffs').'</a>');
                  }                   }
                  $r->print('<br />');                   $r->print('<br />');
              }               }
Line 877  ENDNEWSCRIPT Line 901  ENDNEWSCRIPT
 # -----------------------------------------------------------------------------  # -----------------------------------------------------------------------------
     if ($allowed) {      if ($allowed) {
        my $dumpbut=&dumpbutton();         my $dumpbut=&dumpbutton();
          my %lt=&Apache::lonlocal::texthash(
    'vc' => 'Verify Content',
    'cv' => 'Check/Set Resource Versions',
     );
        $r->print(<<ENDCOURSEVERIFY);         $r->print(<<ENDCOURSEVERIFY);
 <form name="renameform" method="post" action="/adm/coursedocs">  <form name="renameform" method="post" action="/adm/coursedocs">
 <input type="hidden" name="title" />  <input type="hidden" name="title" />
Line 890  ENDNEWSCRIPT Line 918  ENDNEWSCRIPT
 <form action="/adm/coursedocs" method="post" name="courseverify">  <form action="/adm/coursedocs" method="post" name="courseverify">
 <table bgcolor="#AAAAAA" width="100%" cellspacing="4" cellpadding="4">  <table bgcolor="#AAAAAA" width="100%" cellspacing="4" cellpadding="4">
 <tr><td bgcolor="#DDDDCC">  <tr><td bgcolor="#DDDDCC">
 <input type="submit" name="verify" value="Verify Content" />  <input type="submit" name="verify" value="$lt{'vc'}" />
 </td><td bgcolor="#DDDDCC">  </td><td bgcolor="#DDDDCC">
 <input type="submit" name="versions" value="Check Resource Versions" />  <input type="submit" name="versions" value="$lt{'cv'}" />
 $dumpbut  $dumpbut
 </td></tr></table>  </td></tr></table>
 </form>  </form>

Removed from v.1.86  
changed lines
  Added in v.1.88


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