[BACK]Return to cvsweb.cgi CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / cvsweb

Diff for /cvsweb/cvsweb.cgi between version 1.26 and 1.34

version 1.26, 1998/11/10 19:26:16 version 1.34, 1999/09/08 13:04:09
Line 28 
Line 28 
 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 # SUCH DAMAGE.  # SUCH DAMAGE.
 #  #
 # $fId: cvsweb.cgi,v 1.25 1998/08/24 16:41:42 wosch Exp $  # $FreeBSD: www/en/cgi/cvsweb.cgi,v 1.33 1999/09/06 07:02:40 peter Exp $
 #  #
   
   
Line 71  require 'cgi-style.pl';
Line 71  require 'cgi-style.pl';
   
 %mirrors = (  %mirrors = (
             'Germany', 'http://www.de.freebsd.org/cgi/cvsweb.cgi',              'Germany', 'http://www.de.freebsd.org/cgi/cvsweb.cgi',
               'Spain', 'http://www.es.freebsd.org/cgi/cvsweb.cgi',
               'California', 'http://www.freebsd.org/cgi/cvsweb.cgi',
             'Japan', 'http://www.jp.freebsd.org/cgi/cvsweb.cgi',              'Japan', 'http://www.jp.freebsd.org/cgi/cvsweb.cgi',
            );             );
   
Line 143  if (!-d $cvsroot) {
Line 145  if (!-d $cvsroot) {
         &fatal("500 Internal Error",'$CVSROOT not found!<P>The server on which the CVS tree lives is probably down.  Please try again in a few minutes.');          &fatal("500 Internal Error",'$CVSROOT not found!<P>The server on which the CVS tree lives is probably down.  Please try again in a few minutes.');
 }  }
   
   # Set up for FreeBSD repo options.
   $ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader';
   $ENV{'RCSINCEXC'}  = 'iFreeBSD';
   $ENV{'CVSROOT'}    = $cvsroot;
   
 {  {
     local(@foo, $i);      local(@foo, $i);
Line 153  if (!-d $cvsroot) {
Line 159  if (!-d $cvsroot) {
         }          }
     }      }
     if ($#foo > 1) {      if ($#foo > 1) {
         $intro .= "<p>\nThis script support the following CVS trees:\n";          $intro .= "<p>\nThis script supports the following CVS trees:\n";
         for($i = 0; $i <= $#foo; $i++) {          for($i = 0; $i <= $#foo; $i++) {
             $intro .= qq{<a href="$scriptname?cvsroot=$foo[$i]">} .              $intro .= qq{<a href="$scriptname?cvsroot=$foo[$i]">} .
                 ($CVSROOTdescr{$foo[$i]} ?                  ($CVSROOTdescr{$foo[$i]} ?
Line 327  sub htmlify {
Line 333  sub htmlify {
         $string =~ s/>/&gt;/g;          $string =~ s/>/&gt;/g;
   
         if ($pr) {          if ($pr) {
                 $string =~ s|\bpr(\W+[a-z]+/\W*)(\d+)|<A HREF=/cgi/query-pr.cgi?pr=$2>$&</A>|ig;                  $string =~ s!\b((pr[:#]?\s*#?)|((bin|conf|docs|gnu|i386|kern|misc|ports)\/))(\d+)\b!<A HREF=http://www.freebsd.org/cgi/query-pr.cgi?pr=\5>$&</A>!ig;
         }          }
   
         $string;          $string;
Line 427  sub checkout {
Line 433  sub checkout {
                 "Unexpected output from co: $_");                  "Unexpected output from co: $_");
         }          }
         $_ = <RCS>;          $_ = <RCS>;
         if (/^revision\s+$rev\s*$/) {          if ($rev eq ".") {
               # latest rev requested, don't check
           } elsif (/^revision\s+$rev\s*$/) {
             # As expected              # As expected
         } else {          } else {
             &fatal("500 Internal Error",              &fatal("500 Internal Error",
Line 721  sub dolog {
Line 729  sub dolog {
                 print " <i>(vendor branch)</i>";                  print " <i>(vendor branch)</i>";
             }              }
             print " <i>" . &ctime($date{$_}) . " UTC</i> by ";              print " <i>" . &ctime($date{$_}) . " UTC</i> by ";
             print "<i>" . $author{$_} . "</i>\n";              print "<i><a href=\"mailto:" . $author{$_} . "\@FreeBSD.org\">" . $author{$_} . "</a></i>\n";
             if ($revsym{$_}) {              if ($revsym{$_}) {
                 print "<BR>CVS Tags: <b>$revsym{$_}</b>";                  print "<BR>CVS Tags: <b>$revsym{$_}</b>";
             }              }

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.34

CVSweb