diff options
author | martti <martti@pkgsrc.org> | 2001-10-15 17:25:09 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2001-10-15 17:25:09 +0000 |
commit | cc077f6a973e291eac6822e270536392e203271f (patch) | |
tree | 57d03ea6742b50b6cc8e415c8b02e0b472c74a7b /www/cvsweb | |
parent | 485b9b34d5d1863099c4e8d7d09131284e71c495 (diff) | |
download | pkgsrc-cc077f6a973e291eac6822e270536392e203271f.tar.gz |
Updated cvsweb to version 1.112. Changes since 1.93:
- Fixed all prototypes
- Add prototypes to work with newer perl version
- By default, thwart access to files named 'passwd' and '.cvspass'
(configurable in cvsweb.conf). This avoids security problems with
naive configuration
- diff "Attic" redirect bugfix
- Preset the global variable the stores the per file cvs info to avoid
accumulating cruft under modperl
- Avoid warning about uninitialized value if displaying a particular
branch only
- Allow for 0.X versions
- Fix the PRINTF tie method, this messed up the annotate display
- Implement gzip compressed output by using the Compress::Zlib module
- View Adobe Acrobat .pdf files embedded in the cvs markup view
Diffstat (limited to 'www/cvsweb')
-rw-r--r-- | www/cvsweb/Makefile | 4 | ||||
-rw-r--r-- | www/cvsweb/distinfo | 8 | ||||
-rw-r--r-- | www/cvsweb/patches/patch-aa | 17 |
3 files changed, 10 insertions, 19 deletions
diff --git a/www/cvsweb/Makefile b/www/cvsweb/Makefile index ed4a1f1cf40..237e1c62c18 100644 --- a/www/cvsweb/Makefile +++ b/www/cvsweb/Makefile @@ -1,8 +1,8 @@ # -# $NetBSD: Makefile,v 1.3 2001/07/13 07:09:25 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2001/10/15 17:25:09 martti Exp $ # -DISTNAME= cvsweb-1.93 +DISTNAME= cvsweb-1.112 CATEGORIES= net MASTER_SITES= http://stud.fh-heilbronn.de/~zeller/download/ diff --git a/www/cvsweb/distinfo b/www/cvsweb/distinfo index 8e1ea9d7b0d..78b698f8a6f 100644 --- a/www/cvsweb/distinfo +++ b/www/cvsweb/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2001/04/24 13:25:29 kim Exp $ +$NetBSD: distinfo,v 1.4 2001/10/15 17:25:10 martti Exp $ -SHA1 (cvsweb-1.93.tar.gz) = 89e53ca7585cd626973ee2935e62598f566f2d22 -Size (cvsweb-1.93.tar.gz) = 35906 bytes -SHA1 (patch-aa) = 0fa750ba1b3bf25cdc72260d0ab8765483c76664 +SHA1 (cvsweb-1.112.tar.gz) = 4dc996712c365f064a8b8d26a69b3df083ecac0a +Size (cvsweb-1.112.tar.gz) = 37239 bytes +SHA1 (patch-aa) = 318c11abe236a6c5d49cf013817da6849b2855da diff --git a/www/cvsweb/patches/patch-aa b/www/cvsweb/patches/patch-aa index 919a3c7d225..ace0a500130 100644 --- a/www/cvsweb/patches/patch-aa +++ b/www/cvsweb/patches/patch-aa @@ -1,19 +1,10 @@ -$NetBSD: patch-aa,v 1.2 2001/04/24 13:25:30 kim Exp $ +$NetBSD: patch-aa,v 1.3 2001/10/15 17:25:10 martti Exp $ ---- cvsweb.cgi.orig Thu Jul 27 13:42:28 2000 -+++ cvsweb.cgi Tue Apr 24 09:21:42 2001 +--- cvsweb.cgi.orig Mon Oct 15 13:45:06 2001 ++++ cvsweb.cgi Mon Oct 15 13:48:30 2001 @@ -1,4 +1,4 @@ --#!/usr/bin/perl -ws +-#!/usr/bin/perl -wsT +#!/usr/bin/perl -s # # cvsweb - a CGI interface to CVS trees. # -@@ -2051,7 +2051,7 @@ - print "</SELECT>\n"; - $diffrev = $revdisplayorder[0]; - $diffrev = $input{"r2"} if (defined($input{"r2"})); -- print "<INPUT TYPE=\"TEXT\" SIZE=\"$inputTextSize\" NAME=\"tr2\" VALUE=\"$diffrev\" onChange='docuement.diff_select.r2.selectedIndex=0'>\n"; -+ print "<INPUT TYPE=\"TEXT\" SIZE=\"$inputTextSize\" NAME=\"tr2\" VALUE=\"$diffrev\" onChange='document.diff_select.r2.selectedIndex=0'>\n"; - print "<BR>Type of Diff should be a "; - printDiffSelect(); - print "<INPUT TYPE=SUBMIT VALUE=\" Get Diffs \">\n"; |