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

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

version 1.29, 1999/01/13 03:59:04 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.28 1999/01/01 02:42:36 hoek 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 327  sub htmlify {
Line 333  sub htmlify {
         $string =~ s/>/&gt;/g;          $string =~ s/>/&gt;/g;
   
         if ($pr) {          if ($pr) {
                 $string =~ s!\b((pr[:#]?\s*#?)|((bin|conf|docs|gnu|i386|kern|misc|ports)\/))(\d+)\b!<A HREF=/cgi/query-pr.cgi?pr=\5>$&</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 723  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.29  
changed lines
  Added in v.1.34

CVSweb