[llvm-commits] CVS: llvm-www/cvsweb/cvsweb.conf
Chris Lattner
lattner at cs.uiuc.edu
Mon Nov 7 23:09:42 PST 2005
Changes in directory llvm-www/cvsweb:
cvsweb.conf updated: 1.1 -> 1.2
---
Log message:
customize this, make it work better on our machine
---
Diffs of the changes: (+12 -33)
cvsweb.conf | 45 ++++++++++++---------------------------------
1 files changed, 12 insertions(+), 33 deletions(-)
Index: llvm-www/cvsweb/cvsweb.conf
diff -u llvm-www/cvsweb/cvsweb.conf:1.1 llvm-www/cvsweb/cvsweb.conf:1.2
--- llvm-www/cvsweb/cvsweb.conf:1.1 Mon Nov 7 21:08:15 2005
+++ llvm-www/cvsweb/cvsweb.conf Tue Nov 8 01:09:31 2005
@@ -9,7 +9,7 @@
# based on work by Bill Fenner <fenner at FreeBSD.org>
#
# $FreeBSD: projects/cvsweb/cvsweb.conf,v 1.36.2.3 2002/09/23 05:30:17 scop Exp $
-# $Id: cvsweb.conf,v 1.1 2005/11/08 03:08:15 lattner Exp $
+# $Id: cvsweb.conf,v 1.2 2005/11/08 07:09:31 lattner Exp $
# $Idaemons: /home/cvs/cvsweb/cvsweb.conf,v 1.27 2001/08/01 09:48:39 knu Exp $
#
###
@@ -18,7 +18,7 @@
# uname, cvs, rlog, rcsdiff
# gzip (if you enable $allow_compress)
# tar, rm, zip (if you enable $allow_tar)
-$command_path = '/usr/bin:/usr/dcs/software/supported/bin';
+$command_path = '/usr/bin:/bin:/usr/dcs/software/supported/bin';
# Search the above directories for each command
for (qw(uname cvs rlog rcsdiff gzip tar rm zip)) {
@@ -121,7 +121,7 @@
# hidecvsroot: Don't show the CVSROOT directory
# 1 Hide CVSROOT directory
# 0 Show CVSROOT directory
- "hidecvsroot" => "0",
+ "hidecvsroot" => "1",
# hidenonreadable: Don't show entries which cannot be read
# 1 Hide non-readable entries
@@ -140,13 +140,13 @@
$body_tag_for_src = '<body text="#000000" bgcolor="#eeeeee">';
# Wanna have a logo on the page ?
-$logo = '<p><img src="/icons/apache_pb.gif" alt="Powered by Apache"></p>';
+$logo = ''; #<p><a href="http://llvm.org/">LLVM Web Page</a></p>';
# The title of the Page on startup. This will be put inside a <h1> tag.
$defaulttitle = "LLVM CVS Repository";
# The address is shown on the footer. This will be put inside a <address> tag.
-$address = '<span style="font-size: smaller">FreeBSD-CVSweb <<a href="mailto:freebsd-cvsweb at FreeBSD.org">freebsd-cvsweb at FreeBSD.org</a>></span>';
+$address = '<span style="font-size: smaller">LLVM CVSweb <<a href="mailto:llvmdev at cs.uiuc.edu">llvmdev at cs.uiuc.edu</a>></span>';
# color of navigation Header for
# diffs and annotations
@@ -154,34 +154,13 @@
$long_intro = <<EOT;
<p>
-This is a WWW interface for CVS Repositories.
-You can browse the file hierarchy by picking directories
-(which have slashes after them, <i>e.g.</i>, <b>src/</b>).
-If you pick a file, you will see the revision history
-for that file.
-Selecting a revision number will download that revision of
-the file. There is a link at each revision to display
-diffs between that revision and the previous one, and
-a form at the bottom of the page that allows you to
-display diffs between arbitrary revisions.
+This is the LLVM CVS WWW interface. "llvm" is the main LLVM distribution,
+"llvm-gcc" is the C/C++ front-end, "llvm-test" is the LLVM coverage test suite,
+and the rest are various projects built around LLVM.
</p>
<p>
-This script has been written by Bill Fenner and improved by Henner Zeller,
-Henrik Nordström, and Ken Coar, then Akinori MUSHA brought it
-back to FreeBSD community and made further improvements; it is covered
-by <a
-href="http://www.opensource.org/licenses/bsd-license.html">The BSD Licence</a>.
-</p>
-<p>
-If you would like to use this CGI script on your own web server and
-CVS tree, download the latest version from <URL:<a
-href="http://www.FreeBSD.org/projects/cvsweb.html">http://www.FreeBSD.org/projects/cvsweb.html</a>>.
-</p>
-<p>
-Feel free to send any patches, suggestions and comments to the FreeBSD-CVSweb
-mailing list at
-<<a
-href="mailto:freebsd-cvsweb\@FreeBSD.org">freebsd-cvsweb\@FreeBSD.org</a>>.
+This script is powered by
+<a href="mailto:freebsd-cvsweb\@FreeBSD.org">FreeBSD-CVSweb</a>.
</p>
EOT
@@ -212,7 +191,7 @@
# the length to which the last logentry should
# be truncated when shown in the directory view
-$shortLogLen = 80;
+$shortLogLen = 100;
# Show author of last change
$show_author = 1;
@@ -495,7 +474,7 @@
# For cvs versions prior to 1.11, the '-l' option doesn't work; If you want
# working checkouts with an older cvs version, you'll have to make sure that
# the cvsweb user can read and write to CVSROOT/history.
- at cvs_options = qw(-lf);
+ at cvs_options = qw(-f);
push @cvs_options, '-R' if ($uname eq 'FreeBSD' || $uname eq 'OpenBSD');
push @cvs_options, '-u' if ($uname eq 'NetBSD');
More information about the llvm-commits
mailing list