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

Diff for /cvsweb/cvsweb.cgi between version 1.21 and 1.35

version 1.21, 1998/07/23 09:42:40 version 1.35, 1999/09/17 18:56:44
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$  # $FreeBSD: www/en/cgi/cvsweb.cgi,v 1.34 1999/09/08 13:04:09 peter Exp $
 #  #
   
   
Line 62  require 'cgi-style.pl';
Line 62  require 'cgi-style.pl';
 %CVSROOT = (  %CVSROOT = (
             'freebsd', '/home/ncvs',              'freebsd', '/home/ncvs',
             'learn', '/c/learncvs',              'learn', '/c/learncvs',
             'mozilla', '/a/mozilla-cvs',  
             );              );
   
 %CVSROOTdescr = (  %CVSROOTdescr = (
             'freebsd', 'FreeBSD',              'freebsd', 'FreeBSD',
             'learn', 'Learn',              'learn', 'Learn',
             'mozilla', 'Mozilla FreeBSD',  
             );              );
   
   %mirrors = (
               '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',
              );
   
 $cvstreedefault = 'freebsd';  $cvstreedefault = 'freebsd';
 $cvstree = $cvstreedefault;  $cvstree = $cvstreedefault;
 $cvsroot = $CVSROOT{"$cvstree"} || "/home/ncvs";  $cvsroot = $CVSROOT{"$cvstree"} || "/home/ncvs";
Line 140  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);
     local($scriptname) = $ENV{'SCRIPT_NAME'};      local($scriptname) = $ENV{'SCRIPT_NAME'};
     foreach (keys %CVSROOT) {      foreach (sort keys %CVSROOT) {
         if (-d $CVSROOT{$_}) {          if (-d $CVSROOT{$_}) {
             push(@foo, $_);              push(@foo, $_);
         }          }
     }      }
     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 161  if (!-d $cvsroot) {
Line 170  if (!-d $cvsroot) {
 }  }
   
   
   {
       local(@mirrors) = sort keys %mirrors;;
       if ($#mirrors >= 0) {
           $intro .= "<p>\nThis script is mirrored in:\n";
           local($m);
           for($m = 0; $m <= $#mirrors; $m++) {
               $intro .= qq(<a href="$mirrors{$mirrors[$m]}">$mirrors[$m]</a>);
               $intro .= ',' if $m != $#mirrors;
               $intro .= "\n";
           }
       }
   }
   
   
 if (-d $fullname) {  if (-d $fullname) {
         opendir(DIR, $fullname) || &fatal("404 Not Found","$where: $!");          opendir(DIR, $fullname) || &fatal("404 Not Found","$where: $!");
         @dir = readdir(DIR);          @dir = readdir(DIR);
Line 173  if (-d $fullname) {
Line 196  if (-d $fullname) {
             print $shortinstr;              print $shortinstr;
         }          }
         print "<p>";          print "<p>";
         print "Current CVS tree: <b>$cvstree</b><br>\n"          print "Current CVS tree: <b>",
             if $cvstree ne $cvstreedefault;                  ($CVSROOTdescr{"$cvstree"} ? $CVSROOTdescr{"$cvstree"} :
                           $cvstree), "</b><br>\n";
         print "Current directory: <b>/$where</b>\n";          print "Current directory: <b>/$where</b>\n";
         print "<P><HR NOSHADE>\n";          print "<P><HR NOSHADE>\n";
         # Using <MENU> in this manner violates the HTML2.0 spec but          # Using <MENU> in this manner violates the HTML2.0 spec but
Line 309  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 409  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",

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.35

CVSweb