Annotation of cvsweb/ChangeLog, Revision 3.173
3.22 knu 1: $FreeBSD$
3.92 scop 2:
3.172 scop 3: 2004-11-03 Ville Skyttä <scop@FreeBSD.org>
4:
3.173 ! scop 5: * Release 3.0.3.
! 6:
3.172 scop 7: * cvsweb.cgi (spacedHtmlText): Improve whitespace handling
8: when $hr_breakable is true, especially with String::Ediff.
9: [Submitted by: Bo Zou <bzou@atreus-systems.com> (modified)]
10:
3.171 scop 11: 2004-10-16 Ville Skyttä <scop@FreeBSD.org>
12:
13: * cvsweb.cgi: Extend the magic "." revision support so that it
14: takes the branch into account (if defined in the query string's
15: only_with_tag parameter). Applies to all download, view, and
16: annotate URLs.
17:
3.169 scop 18: 2004-10-15 Ville Skyttä <scop@FreeBSD.org>
3.168 scop 19:
3.170 scop 20: * cvsweb.cgi (navigateHeader): Support linking to log view's
21: branch/tag anchors.
22:
3.168 scop 23: * cvsweb.cgi, cvsweb.conf (DEBUG): New configuration parameter for
24: enabling more output to web server error log for troubleshooting.
25:
3.167 scop 26: 2004-08-20 Ville Skyttä <scop@FreeBSD.org>
27:
28: * Release 3.0.2.
29:
3.166 scop 30: 2004-08-11 Ville Skyttä <scop@FreeBSD.org>
31:
32: * cvsweb.cgi: Review and rework URI escaping.
33:
3.161 scop 34: 2004-08-10 Ville Skyttä <scop@FreeBSD.org>
35:
3.164 scop 36: * cvsweb.cgi: Send temporary HTTP redirects where appropriate
37: instead of always permanent ones.
38:
3.165 scop 39: * cvsweb.cgi: When submitting the options form in an Attic/ dir,
40: stay there, don't change to the parent dir.
41:
3.162 scop 42: * cvsweb.cgi: Ensure that CVSROOT/modules is always properly closed.
43:
3.163 scop 44: * cvsweb.cgi: Coding style and variable scoping improvements.
45:
3.161 scop 46: * cvsweb.conf (MIRRORS): Add example mirror configuration.
47:
3.159 scop 48: 2004-07-28 Ville Skyttä <scop@FreeBSD.org>
3.158 scop 49:
50: * cvsweb.cgi: Get rid of the $newpath and $pathinfo globals.
3.159 scop 51:
3.160 scop 52: * cvsweb.cgi: Don't use $&.
53:
3.159 scop 54: * cvsweb.cgi: Add a couple of table summaries.
3.158 scop 55:
3.156 scop 56: 2004-07-26 Ville Skyttä <scop@FreeBSD.org>
57:
3.157 scop 58: * cvsweb.cgi: Make Attic "stripping" regexps more strict in
59: order to not treat eg. "FooAttic" as Attic.
60:
3.156 scop 61: * cvsweb.conf (ICONS): Shorten default alt text for binaries
62: to [BIN] for better text-based browser experience.
63:
3.155 scop 64: 2004-07-24 Ville Skyttä <scop@FreeBSD.org>
65:
66: * cvsweb.cgi: Coding style and variable scoping improvements.
67:
3.154 scop 68: 2004-07-17 Ville Skyttä <scop@FreeBSD.org>
69:
70: * cvsweb.cgi, css/cvsweb.css: Combine CSS properties for all
71: diff lines into the "diff" class, change default diff colors for
72: better experience on non-highcolor displays, and use only generic
73: font families.
74:
3.152 scop 75: 2004-05-08 Ville Skyttä <scop@FreeBSD.org>
76:
3.153 scop 77: * Release 3.0.1.
78:
3.152 scop 79: * cvsweb.cgi: Include CVSHistory links for files from the log view.
80:
3.151 scop 81: 2004-05-05 Ville Skyttä <scop@FreeBSD.org>
82:
83: * cvsweb.cgi, cvsweb.conf: Light integration with CVSHistory.
84:
3.150 scop 85: 2004-04-24 Ville Skyttä <scop@FreeBSD.org>
86:
87: * cvsweb.cgi (flush_diff_rows): Fix HTML escaping problem in the
88: "PreChangeRemove" state.
89: [Submitted by: Mark A. Mankins <raider15@mankins.us>]
90:
3.148 scop 91: 2004-04-20 Ville Skyttä <scop@FreeBSD.org>
92:
93: * cvsweb.cgi: Resurrect the ability to link to the latest revision
94: of a file using ?rev=. and ?rev=HEAD.
95:
3.149 scop 96: * cvsweb.cgi (doGraphView): Make sure branch links from the graph
97: view contain only the target branch.
98:
3.146 scop 99: 2004-03-30 Ville Skyttä <scop@FreeBSD.org>
100:
101: * cvsweb.cgi: Allow revision numbers without dots (eg. "1").
102:
3.147 scop 103: * cvsweb.cgi (download_url): Fix download links for valid non-branch
104: revisions which contain 0's, for example "2.0.2.1".
105: Thanks to Jules <jules@zjuul.net> for the heads up.
106:
3.145 scop 107: 2004-03-17 Ville Skyttä <scop@FreeBSD.org>
108:
109: * cvsweb.conf (cvs_options): Remove -l as it's not available in
110: current stable or "feature" versions of cvs.
111:
3.144 scop 112: 2004-03-16 Ville Skyttä <scop@FreeBSD.org>
113:
114: * cvsweb.cgi (doAnnotate): Add CSS class for current revision lines.
115: * css/cvsweb.css (current-rev): New.
116: [Submitted by: Max Laier <max@love2party.net> (modified)]
117:
3.141 scop 118: 2004-02-27 Ville Skyttä <scop@FreeBSD.org>
119:
3.143 scop 120: * cvsweb.cgi: Always pass the -m (module) argument to cvsgraph(1).
121: That's the right thing to do and makes the graphing more robust
122: against unexpected cvsgraph.conf files. Also move some related
123: documentation from INSTALL to cvsweb.conf.
124: Thanks to Gernot W. Schmied and Jon Noack for the heads up.
125:
3.142 scop 126: * cvsweb.conf: Enscript regexp improvements: fix regexp for
127: Perl scripts [Submitted by: Stefan Moessler <moessler@getemed.de>
128: and Jon Noack <noackjr@alumni.rice.edu>], treat *.pac as JavaScript,
129: use Perl states instead of Makefile ones for Makefile.PL, other
130: documentation improvements.
3.141 scop 131:
3.140 scop 132: 2004-02-26 Ville Skyttä <scop@FreeBSD.org>
133:
134: * Release 3.0.0.
135:
3.138 scop 136: 2004-02-23 Ville Skyttä <scop@FreeBSD.org>
137:
3.139 scop 138: * cvsweb.cgi (doDiff): Don't pass -p or -F to rcsdiff(1) when
139: doing side by side diffs. diff(1) from diffutils < 2.8 does not
140: like that. Thanks to Jon Noack for the catch.
141:
3.138 scop 142: * cvsweb.conf: Improve $showfunc and %funcline_regexp documentation.
143:
3.135 scop 144: 2004-02-15 Ville Skyttä <scop@FreeBSD.org>
145:
3.137 scop 146: * Release 2.9.3 (beta).
147:
3.135 scop 148: * cvsweb.cgi (printLog): Don't turn off tag, diff etc linking
149: in markup view.
150: [Submitted by: Christopher Wolf <wolf@ti.com> (modified)]
151:
3.136 scop 152: * cvsweb.cgi (cvswebMarkup): Use "Revision" consistently, HTML
153: escape tag names also when $show_log_in_markup is turned off.
154:
3.130 scop 155: 2004-02-14 Ville Skyttä <scop@FreeBSD.org>
156:
157: * cvsweb.cgi (DIFFTYPES): Use width=168 in side by side diffs to
158: support 80 character line lengths.
159: [Submitted by: Christopher Wolf <wolf@ti.com>]
160:
3.131 scop 161: * cvsweb.cgi, cvsweb.css: Better control over line wrapping in the
162: directory view.
163: [Submitted by: Christopher Wolf <wolf@ti.com> (modified)]
164:
3.132 scop 165: * cvsweb.cgi, enscript/lang_cvsweb_diff.st: Use a separate Enscript
166: language file for diffs, and tune it for better diff readability.
167: [Submitted by: Christopher Wolf <wolf@ti.com> (modified)]
168:
3.133 scop 169: * cvsweb.cgi: Fix tarball/zip creation from non-toplevel dirs.
170: This was broken since revision 3.191 (FreeBSD-CVSweb 2.9.1).
3.134 scop 171: [Submitted by: Christopher Wolf <wolf@ti.com> (modified)]
172:
173: * cvsweb.cgi (doGraphView): Add a compatiblity kludge for the
174: client side image map markup to make it work eg. with Mozilla
175: based browsers. Thanks to Christopher Wolf for the catch.
3.133 scop 176:
3.123 scop 177: 2004-01-31 Ville Skyttä <scop@FreeBSD.org>
178:
3.129 scop 179: * Release 2.9.2 (beta).
180:
3.125 scop 181: * cvsweb.cgi: Rework handling of forbidden files. forbidden_module()
182: and @HideModules had nothing to do with modules in CVS terminology,
183: and the implementation was broken. forbidden() and @ForbiddenFiles
184: now affect directories as well.
185:
3.128 scop 186: * cvsweb.conf: Sample regexp improvements, remove @HideModules,
187: disable Apache logo by default.
3.125 scop 188:
3.123 scop 189: * cvsweb.cgi: Path canonicalization/portability improvements, makes
3.124 scop 190: @ForbiddenFiles more robust against not-too-paranoid regexps.
3.123 scop 191:
3.126 scop 192: * cvsweb.cgi: Hide CVSROOT directories only directly below the root.
193:
3.127 scop 194: * README, README.FreeBSD: Combine into README.
195:
3.116 scop 196: 2004-01-24 Ville Skyttä <scop@FreeBSD.org>
197:
3.117 scop 198: * cvsweb.cgi: Add support for per file type external diff commands.
199: [Submitted by: Bryce Nesbitt <bryce1@obviously.com> (modified)]
200:
201: * cvsweb.conf (DIFF_COMMANDS): New, to support the above.
202:
3.120 scop 203: * cvsweb.cgi: Avoid some warnings when HTMLifying diffs and doing
204: revisionless checkouts (ie. HEAD), improve diff linking for binary
205: files, fix "as text" links for non-text/plain text files, make
3.122 scop 206: search_path a bit more robust.
3.116 scop 207:
3.122 scop 208: * cvsweb.conf (command_path): Change to a list for portability.
209:
3.121 scop 210: * cvsweb.cgi: Clean up IPC::Run usage; get rid of timeouts, they
211: seem to cause more harm than good.
212:
3.115 scop 213: 2004-01-21 Ville Skyttä <scop@FreeBSD.org>
214:
215: * cvsweb.cgi: Use only_complete in MIME::Types initialization
216: to get only useful entries: smaller memory footprint.
217:
3.113 scop 218: 2004-01-15 Ville Skyttä <scop@FreeBSD.org>
219:
3.114 scop 220: * cvsweb.cgi: Review, clean up and speed up regular expression
221: usage. Also change a few globals to constants.
222:
3.113 scop 223: * cvsweb.conf: Remove the $checkout_magic configuration variable.
224: Support for it has been apparently broken since 2000-10-10 so
225: probably nobody will miss it.
226:
3.112 scop 227: 2004-01-11 Ville Skyttä <scop@FreeBSD.org>
228:
229: * cvsweb.cgi: Lots of improvements in download/view linking
230: wrt. MIME types and binary files, avoid logging the file
231: multiple times when doing a checkout.
232: (VERSION): Set to 2.9.2-dev.
233:
234: * css/cvsweb.css (display-link): New.
3.111 scop 235:
236: * cvsweb.conf (long_intro): Improve.
237:
238: 2004-01-10 Ville Skyttä <scop@FreeBSD.org>
3.110 scop 239:
240: * cvsweb.cgi (download_link): Get rid of the open-in-new-window
241: code altogether. The end user should decide, not the sysadmin.
242:
243: * cvsweb.conf: Remove now unused parameters $open_extern_window,
244: $extern_window_height, and $extern_window_width.
245:
3.108 scop 246: 2003-10-25 Ville Skyttä <scop@FreeBSD.org>
247:
248: * cvsweb.cgi (doCheckout): Fix checkout from paths where the
249: top level directory starts with a dot, improve error message.
250: [Submitted by: David O'Shea <dcoshea@hotmail.com>]
251:
3.109 scop 252: * cvsweb.cgi: General error handling and message improvements.
253: Avoid "cvs export" for unsupported tarball requests.
254:
3.104 scop 255: 2003-10-05 Ville Skyttä <scop@FreeBSD.org>
256:
3.107 scop 257: * Release 2.9.1 (beta).
258:
3.105 scop 259: * cvsweb.cgi: Show contents of README.cvs(.html) in the dir view
260: header if such a file is present in the directory.
261:
3.104 scop 262: * cvsweb.cgi (human_readable_diff): Add some links to markup view.
263:
3.106 scop 264: * INSTALL: Clean up and add instructions for upgrading from 2.0.x.
265:
3.103 scop 266: 2003-10-02 Ville Skyttä <scop@FreeBSD.org>
267:
268: * cvsweb.cgi: Improve markup, change to XHTML 1.0 Transitional.
269:
3.102 scop 270: 2003-09-26 Ville Skyttä <scop@FreeBSD.org>
271:
272: * cvsweb.cgi: Pulling in the huge CGI module only for the sake
273: of query string parsing isn't quite worth it. Revert to a
274: homebrew implementation, use URI::Escape and grok semicolons as
275: separators.
276:
3.101 scop 277: 2003-09-15 Ville Skyttä <scop@FreeBSD.org>
278:
279: * cvsweb.cgi (cvswebMarkup): Add line numbers support to
280: internal "preformat-in-markup" mode. Prefer enscript(1) over
281: it (if enabled).
282:
3.96 scop 283: 2003-09-14 Ville Skyttä <scop@FreeBSD.org>
284:
285: * cvsweb.cgi: Rewrite tarball/zip creation using IPC::Run,
286: now works with mod_perl. Improve error handling, allow .tgz
287: extension for tarballs.
288:
3.97 scop 289: * cvsweb.cgi: Don't show tarball/zip download links if the
290: commands for creating them aren't available.
291:
3.99 scop 292: * cvsweb.cgi: Strict input checking and laundering, needed
293: for running under Perl 5.8 with taint checks enabled (PR 52386).
294: Use the CGI module for input parsing.
295:
3.100 scop 296: * cvsweb.cgi: More use of File::Spec for portability.
297:
3.98 scop 298: * cvsweb.conf: Improve documentation and default settings.
299:
3.94 scop 300: 2003-09-07 Ville Skyttä <scop@FreeBSD.org>
301:
302: * cvsweb.cgi: Don't offer tarball/zip downloads for empty dirs.
303:
3.95 scop 304: * cvsweb.cgi, cvsweb.css: Redesign option forms, general
305: markup improvements.
306:
3.92 scop 307: 2003-09-06 Ville Skyttä <scop@FreeBSD.org>
308:
3.93 scop 309: * cvsweb.cgi: Get rid of mod_perl specific code.
310: It's not needed and will only cause trouble because of subtle
311: differences between mod_perl 1 and 2.
312:
3.92 scop 313: * cvsweb.cgi: Try to find and cd into a readable directory
314: before doing any cvs or rcs operations for better support for
315: non-readable cgi-bin directories.
316:
3.91 scop 317: 2003-08-12 Ville Skyttä <scop@FreeBSD.org>
318:
319: * cvsweb.cgi, cvsweb.css: Use String::Ediff for Emacs-style
320: human readable ediffs if available.
321: [Submitted by: Bo Zou <boxzou@yahoo.com> (modified)]
322:
3.90 scop 323: 2003-08-08 Ville Skyttä <scop@FreeBSD.org>
324:
325: * cvsweb.cgi: Use IPC::Run instead of IPC::Open2 and IO::Pipe
326: for better portablity (eg. for mod_perl 1.99+).
327:
3.87 scop 328: 2003-08-03 Ville Skyttä <scop@FreeBSD.org>
329:
330: * cvsweb.cgi: Baby steps in use of File::Spec (0.8+) for
331: better portability.
3.89 scop 332:
333: * cvsweb.cgi: Implement enscript-colored diffs
334:
335: * cvsweb.cgi (doDiff): Use rcsdiff_options.
3.88 scop 336:
337: * cvsweb.conf (rcsdiff_options): New.
3.87 scop 338:
3.86 scop 339: 2003-07-30 Ville Skyttä <scop@FreeBSD.org>
340:
341: * cvsweb.conf-freebsd (prcategories): Bring up to date.
342: [Submitted by: simon@FreeBSD.org]
343:
3.85 scop 344: 2003-07-20 Ville Skyttä <scop@FreeBSD.org>
345:
346: * cvsweb.cgi: Make $cvstreedefault optional in cvsweb.conf,
347: improve error messages and warnings.
348: * cvsweb.conf: Doc updates.
349:
3.83 scop 350: 2003-06-25 Ville Skyttä <scop@FreeBSD.org>
351:
352: * cvsweb.cgi: Rework MIME type discovery, now uses
353: MIME::Types(3) if it's available.
3.84 scop 354: (cvswebMarkup): Use height="100%" for <embed>.
3.83 scop 355: * cvsweb.conf: Doc update, comment out '*' from %MTYPES.
356: [Heads up by: Daniel Wallner <daniel.wallner@bredband.net>]
357:
3.81 scop 358: 2003-06-24 Ville Skyttä <scop@FreeBSD.org>
359:
360: * cvsweb.cgi: Don't try to rlog(1) unreadable files
361: [Submitted by: Bernd Groh <bgroh@redhat.com> (modified)]
362:
363: * cvsweb.cgi (doGraphView): Make it work with multiple roots.
364: [Submitted by: Christophe Kalt <kalt@taranis.org>]
365:
3.82 scop 366: * cvsweb.cgi: Show binary (-kb) files with a different icon,
367: show keyword expansion mode in log view.
368: * cvsweb.conf: Add binfile to %ICONS.
369: * icons/binary.gif: New.
370: [Submitted by: Paul Gelderblom <paulgelderblom@bigfoot.com>]
371:
3.79 scop 372: 2003-05-04 Ville Skyttä <scop@FreeBSD.org>
373:
374: * cvsweb.cgi (cvswebMarkup): Implement line number output.
375: [Submitted by: Roy Smith <roy@panix.com> (modified)]
376:
3.80 scop 377: * cvsweb.conf (DEFAULTVALUE): Don't show line numbers by default.
3.79 scop 378: * enscript/lang_cvsweb.st: Support for line numbers.
379: * css/cvsweb.css (src): Ditto.
380: * README.FreeBSD: Ditto.
381:
3.78 scop 382: 2003-05-01 Ville Skyttä <scop@FreeBSD.org>
383:
384: * cvsweb.cgi (cvswebMarkup): Syntax highlighting with GNU Enscript.
385: * cvsweb.conf (CMD): Search for enscript.
386: * cvsweb.conf (allow_enscript, enscript_options, enscript_types): New.
387: * enscript/lang_cvsweb.st: New.
388: [Submitted by: Neal Horman <neal@wanlink.com> (modified)]
389:
390: * INSTALL: Document GNU Enscript stuff.
391: * README.FreeBSD: Ditto.
392:
3.75 scop 393: 2003-04-27 Ville Skyttä <scop@FreeBSD.org>
394:
395: * cvsweb.cgi: Nuke $verbose and some undefinedness warnings.
3.77 scop 396: Handle text/vnd.viewcvs-markup for interoperability/easier
397: migration from ViewCVS.
398:
399: * cvsweb.cgi (fileSortCmp): Sort parent dir first, then Attic.
400:
401: * cvsweb.cgi (htmlify): Don't link "man pages" that contain only
402: numbers and punctuation.
403:
404: * cvsweb.cgi (doGraphView): Prevent cross site scripting in
405: CvsGraph maps, output HTML 4.
406:
407: * INSTALL: Minimum supported CvsGraph version is 1.4.0.
3.75 scop 408:
3.74 knu 409: 2003-02-11 Akinori MUSHA <knu@iDaemons.org>
410:
411: * cvsweb.cgi (htmlify): Improve man page linking. [Requested by:
412: Yoshihiko SARUMARU <mistral@imasy.or.jp>]
413:
3.72 scop 414: 2002-12-23 Ville Skyttä <scop@FreeBSD.org>
415:
416: * cvsweb.conf*, cvsweb.cgi: Use $^O instead of `uname`.
417: See the perlport(1) manual page for $^O values.
418:
419: * cvsweb.conf (CMD): Prefer gtar over tar.
420: (zip_options): Add -q to prevent zip(1) from trashing error logs.
421:
3.73 scop 422: * cvsweb.cgi: Get rid of unsafe environment variables.
423: [Submitted by: Paul Gelderblom <paul.gelderblom@lostboys.nl>]
424:
3.70 scop 425: 2002-12-21 Ville Skyttä <scop@FreeBSD.org>
426:
427: * cvsweb.conf (file_list_len): New configuration variable.
428:
3.71 scop 429: * cvsweb.cgi (getDirLogs): Use $file_list_len to handle dirs
430: with lots of files.
3.70 scop 431: [Submitted by: Peter Klausner <peter.klausner@systor.com> and
432: Tomas Novak <tnovak@atrey.karlin.mff.cuni.cz> (modified)]
3.71 scop 433:
434: * cvsweb.cgi: Add case (in)sensitive sort option for files.
435: [Submitted by: Paul Gelderblom <paul.gelderblom@lostboys.nl>]
3.70 scop 436:
3.69 scop 437: 2002-11-24 Ville Skyttä <scop@FreeBSD.org>
438:
439: * cvsweb.cgi: Use File::Temp for creating temporary stuff,
440: only dirs for now, bump minimum Perl version to 5.005_03.
441:
3.67 scop 442: 2002-11-16 Ville Skyttä <scop@FreeBSD.org>
443:
3.68 scop 444: * cvsweb.cgi: Move CSS to external file, HTML escaping fixes.
3.67 scop 445: * cvsweb.conf: New configuration variable: $cssurl
446: * css/cvsweb.css: New.
447:
3.66 scop 448: 2002-11-13 Ville Skyttä <scop@FreeBSD.org>
449:
450: * cvsweb.cgi: Implement CvsGraph integration.
451: Thanks to CvsGraph and ViewCVS folks for ideas.
452:
453: * cvsweb.conf (allow_cvsgraph, cvsgraph_config): New variables.
454: (ICONS): Add graph icon.
455:
456: * icons/minigraph.png: New.
457:
458: * INSTALL, README.FreeBSD, TODO.FreeBSD: CvsGraph update.
459:
3.64 scop 460: 2002-10-21 Ville Skyttä <scop@FreeBSD.org>
461:
462: * cvsweb.cgi: More CSS'ifications.
3.65 scop 463: (htmlify): Improve URL regexp.
464:
3.64 scop 465: * cvsweb.conf: Remove many options obsoleted by use of CSS,
466: they'll be customizable again when the CSS moves to an external
467: file.
468:
3.63 scop 469: 2002-09-23 Ville Skyttä <scop@FreeBSD.org>
470:
471: * cvsweb.conf (annotate_options): New config variable.
472: * cvsweb.cgi (doAnnotate): Use @annotate_options.
473: [Idea from: Debian bug tracking system (#117112)]
474:
3.60 scop 475: 2002-08-16 Ville Skyttä <scop@FreeBSD.org>
476:
3.61 scop 477: * cvsweb.cgi (doAnnotate): Make annotate work under mod_perl.
478:
3.62 scop 479: * cvsweb.cgi (html_footer): Output address only if it's set.
480: [Obtained from: NetBSD (modified)]
481:
3.60 scop 482: * cvsweb.conf: Add -u to cvs_options by default on NetBSD.
483: [Obtained from: NetBSD]
484:
3.58 scop 485: 2002-08-04 Ville Skyttä <scop@FreeBSD.org>
486:
487: * cvsweb.cgi: Made annotate work against a read only repository.
488: This implementation uses the global -n option to cvs(1) if
489: any of the annotate dirs is not writable. If all are, we don't
490: use -n since locking ensures consistent annotations.
491: While working with this, noticed that annotate didn't work under
492: mod_perl, nor does it after this change.
493:
3.59 scop 494: * cvsweb.cgi: Fix annotate HTML output.
495:
3.57 scop 496: 2002-08-03 Ville Skyttä <scop@FreeBSD.org>
497:
498: * cvsweb.cgi: Escape filenames in directory listings.
499: Re-indentation, whitespace cleanup.
500:
3.56 scop 501: 2002-07-30 Ville Skyttä <scop@FreeBSD.org>
502:
503: * INSTALL: Recommend cvs >= 1.11, typo fixes.
504:
505: * cvsweb.conf (cvs_options): Mention cvs < 1.11 '-l' bug.
506:
3.55 scop 507: 2002-07-23 Ville Skyttä <scop@FreeBSD.org>
508:
509: * cvsweb.cgi: Fix diffs between tags.
3.54 scop 510:
511: * cvsweb.cgi: Release as FreeBSD-CVSweb 2.0.5.
512:
3.53 scop 513: 2002-07-18 Ville Skyttä <scop@FreeBSD.org>
514:
515: * cvsweb.cgi (chooseMirror):
516: Cleanup, sort and reformat mirror listing, fix HTML.
517:
518: * cvsweb.cgi (chooseCVSRoot):
519: Fix duplicate accesskeys and id's in the "front" page.
520:
521: * cvsweb.cgi (download_link):
522: Fix typo in JavaScript download window parameter.
523:
3.52 scop 524: 2002-07-14 Ville Skyttä <scop@FreeBSD.org>
525:
526: * cvsweb.cgi (download_link): Include query string in JavaScript
527: download links in order to unbreak downloads from non-default
528: CVS roots.
529: [Submitted by: Yann Droneaud <ydroneaud@meuh.eu.org>]
530:
3.51 scop 531: 2002-07-10 Ville Skyttä <scop@FreeBSD.org>
532:
533: * cvsweb.cgi: Don't display @ForbiddenFiles in directory
534: listings; also make sure their logs are not accessible via direct
535: URLs.
536:
3.50 scop 537: 2002-07-09 Ville Skyttä <scop@FreeBSD.org>
538:
539: * cvsweb.cgi (fileSortCmp): Fix dir sort order breakage when
540: there are rogue files in the repository dir and the sort order
541: is not by file name.
542: [Submitted by: "Khachaturov, Vassilii" <vassilii@tarunz.org>]
543:
3.46 scop 544: 2002-07-06 Ville Skyttä <scop@FreeBSD.org>
545:
546: * cvsweb.conf (long_intro): Remove authors' email addresses.
547:
3.48 scop 548: * cvsweb.conf (cvs_options): Add -f; avoid reading ~/.cvsrc.
549:
3.47 scop 550: * cvsweb.cgi: Add some labels and access keys to form controls.
551:
3.49 scop 552: * cvsweb.cgi: Release as FreeBSD-CVSweb 2.0.4.
553:
3.44 scop 554: 2002-07-03 Ville Skyttä <scop@FreeBSD.org>
555:
556: * cvsweb.cgi: Remove an unused variable.
557:
3.45 scop 558: * README, cvsweb.cgi, cvsweb.conf:
559: Update various contact infos and links.
560:
3.41 scop 561: 2002-07-02 Ville Skyttä <scop@FreeBSD.org>
562:
563: * cvsweb.cgi (printLog): Remove extra <br> from first log message.
3.22 knu 564:
3.42 scop 565: * cvsweb.cgi: Variablize HTML metadata, add "generator".
566:
3.43 scop 567: * cvsweb.cgi: Close the CVSROOT/descriptions
568: filehandle after we're finished with it.
569:
3.34 knu 570: 2002-05-22 Akinori MUSHA <knu@iDaemons.org>
3.31 knu 571:
572: * cvsweb.cgi: Read configuration files with `do' instead of
573: `require' to unbreak mod_perl support.
3.32 knu 574: [Submitted by: "Khachaturov, Vassilii" <vassilii@tarunz.org>]
3.31 knu 575:
576: * cvsweb.cgi: Cosmetic fixes. Use and/or rather than &&/|| to
577: connect sentences.
578:
579: * cvsweb.cgi: Exit with -1 if exec() fails.
580:
3.33 knu 581: * cvsweb.cgi: Do not print a redundant `Diff' for rev.1.1.
582: [Submitted by: Ville Skyttä <ville.skytta@iki.fi>]
3.34 knu 583:
584: * cvsweb.cgi: Prevent cross-site scripting.
585: [Submitted by: Motoyuki Konno <motoyuki@bsdclub.org> (modified)]
3.33 knu 586:
3.35 knu 587: * cvsweb.cgi: Skip a possible `locked by' clause and extract a
588: revision number out of a log entry properly.
589: [Submitted by: "Khachaturov, Vassilii" <vassilii@tarunz.org>]
590:
3.36 knu 591: * cvsweb.cgi: Apply some HTML cleanups and use CSS instead of
592: ancient HTML 3/4 tags and attributes.
593: [Submitted by: Ville Skyttä <ville.skytta@iki.fi>]
594:
595: * cvsweb.cgi: Pass `use' features to import to make it more memory
596: efficient.
597: [Submitted by: Ville Skyttä <ville.skytta@iki.fi>]
598:
3.37 knu 599: * cvsweb.cgi: Add new configuration variables: $allow_log_extra,
600: $allow_dir_extra, and $allow_source_extra.
601: [Submitted by: "Khachaturov, Vassilii" <vassilii@tarunz.org>]
602:
3.38 knu 603: * cvsweb.cgi: Release as FreeBSD-cvsweb 2.0.2.
604:
3.39 knu 605: * cvsweb.cgi: Previous fixes against cross-site scripting
606: vulnerabilities were insufficient and buggy (error messages were
607: messed up). Revamp fatal() to HTML-quote automatically and fix
608: error message output.
609:
3.40 knu 610: * cvsweb.cgi: Release as FreeBSD-cvsweb 2.0.3.
611:
3.29 knu 612: 2002-05-11 Akinori MUSHA <knu@iDaemons.org>
613:
614: * cvsweb.cgi: There are no spaces at EOL in modern rlog output.
3.32 knu 615: [Submitted by: "Khachaturov, Vassilii" <vassilii@tarunz.org>]
3.29 knu 616:
3.30 knu 617: 2002-05-08 Motoyuki Konno <motoyuki@FreeBSD.org>
618:
619: * cvsweb.cgi: Fix a cross-site scripting vulnerablity.
620:
3.28 knu 621: 2002-05-07 Akinori MUSHA <knu@iDaemons.org>
622:
623: * cvsweb.conf-netbsd, cvsweb.conf-openbsd: NetBSD and OpenBSD
624: don't use $CVSHeader$ but $Id$.
625: [Submitted by: motoyuki@FreeBSD.org]
626:
627: * cvsweb.cgi: Work around a bug of cvs -p; expand symlinks in a
628: cvsroot.
629: [Submitted by: motoyuki@FreeBSD.org]
630:
631: * cvsweb.cgi: Fix parsing in 'tags' state.
3.32 knu 632: [Submitted by: "Khachaturov, Vassilii" <vassilii@tarunz.org>]
3.28 knu 633:
3.25 knu 634: 2002-04-11 Akinori MUSHA <knu@iDaemons.org>
635:
636: * cvsweb.cgi, cvsweb.conf: Perform an HTML cleanup.
3.27 knu 637: [Submitted by: Ville Skyttä <ville.skytta@iki.fi>]
3.25 knu 638:
3.26 knu 639: * cvsweb.cgi: Call this version FreeBSD-cvsweb 2.0.1.
640:
3.24 knu 641: 2002-04-05 Akinori MUSHA <knu@iDaemons.org>
642:
643: * INSTALL: Somehow description configuration doesn't work if you
644: put trailing /'s in module names, so fix the document for the
645: moment.
646: [Submitted by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>]
647:
648: 2002-02-06 Akinori MUSHA <knu@iDaemons.org>
649:
650: * cvsweb.cgi: Use TMPDIR instead of the hardcoded /tmp.
651:
652: * cvsweb.cgi: Never pass 'MAIN' to cvs(1). 'HEAD' is the valid
653: tag.
654:
3.22 knu 655: 2001-11-08 Akinori MUSHA <knu@iDaemons.org>
656:
657: * cvsweb.conf-freebsd: Allow downloading a tarball of a project
658: directory as well as a port directory.
3.20 knu 659:
3.23 knu 660: * cvsweb.cgi: Call this version FreeBSD-cvsweb 2.0.0.
661:
3.20 knu 662: 2001-10-11 Akinori MUSHA <knu@iDaemons.org>
3.21 knu 663:
664: * cvsweb.cgi, cvsweb.conf: Introduce optional output filter.
665: [Requested by: Shigeyuki Fukushima <shige@FreeBSD.org>]
3.20 knu 666:
667: * ChangeLog, README.knu, TODO.knu, cvsweb.cgi, cvsweb.conf,
668: cvsweb.conf-freebsd, cvsweb.conf-netbsd, cvsweb.conf-openbsd,
669: cvsweb.conf-ruby: Add FreeBSD tags and adjust my vendor tags.
670:
3.19 knu 671: 2001-10-08 Akinori MUSHA <knu@iDaemons.org>
672:
673: * cvsweb.cgi: Fix a bug where it produces wrong download links
674: when cvsweb.cgi is placed right under the document root.
675: [Reported by: Arnaud on EFnet]
676:
3.18 knu 677: 2001-08-01 Akinori MUSHA <knu@iDaemons.org>
678:
679: * cvsweb.cgi: perltidy -i=8 -t -pt=2 -bt=2 -sbt=2 -ci=4 -noll -sfs
680: -nasc -ce
681:
682: * cvsweb.conf, cvsweb.conf-freebsd, cvsweb.conf-netbsd,
683: cvsweb.conf-openbsd, cvsweb.conf-ruby: perltidy -i=8 -t -pt=2 -bt=2
684: -sbt=2 -ci=4 -noll -sfs -nasc -ce
685:
686: * cvsweb.cgi, cvsweb.conf: MFZ 1.111, but introduce @ForbiddenFiles
687: instead of @DissallowRead to forbid user to cvs
688: checkout/diff/annotate specified files.
689:
690: * cvsweb.cgi: MFZ 1.112: A couple of trivial fixes.
691:
3.17 knu 692: 2001-07-26 Akinori MUSHA <knu@iDaemons.org>
693:
694: * cvsweb.cgi: Chdir to TMPDIR so it works even when the cgi-bin
695: directory is unreadable.
696: [Submitted by: Dmitry Morozovsky <marck@rinet.ru>]
697:
698: * cvsweb.cgi: Let the module/path box appear and work properly
699: when there is only one repository.
700: [Submitted by: Dmitry Morozovsky <marck@rinet.ru>]
701:
3.15 knu 702: 2001-07-06 Akinori MUSHA <knu@iDaemons.org>
703:
704: * cvsweb.cgi, cvsweb.conf: Support "zip" as an additional
705: archiver.
706:
3.16 knu 707: * cvsweb.cgi: MFZ 1.110. But the bug had already been fixed in
708: knu-cvsweb.
709:
3.14 knu 710: 2001-06-22 Akinori MUSHA <knu@iDaemons.org>
711:
712: * cvsweb.cgi: Get rid of a potential "uninitialized variable
713: usage" warning.
714: [Submitted by: Bill Fenner <fenner@FreeBSD.org>]
715:
3.13 knu 716: 2001-06-08 Akinori MUSHA <knu@iDaemons.org>
717:
718: * cvsweb.cgi: MFZ 1.109. Preset the global variable the stores
719: the per file cvs info to avoid accumulating cruft under modperl.
720:
3.12 knu 721: 2001-06-05 Akinori MUSHA <knu@iDaemons.org>
722:
723: * cvsweb.cgi: Change "Previous Directory" to "Parent Directory".
724:
725: * cvsweb.cgi: Properly HTML-quote function names in the colored
726: diff view.
727: [Submitted by: Ian Whalley <ian@whalley.org>]
728:
3.11 knu 729: 2001-05-18 Akinori MUSHA <knu@iDaemons.org>
730:
731: * cvsweb.cgi: Avoid localizing @_ to make threaded Perl happy.
732: [FreeBSD PR: 26851]
733: [Submitted by: David Wolfskill <dhw@whistle.com>]
734:
3.9 knu 735: 2001-05-10 Akinori MUSHA <knu@iDaemons.org>
736:
3.10 knu 737: * cvsweb.cgi: Correct a link in the navigation header.
3.9 knu 738: [Submitted by: Tanaka Akira <akr@m17n.org>]
739:
3.8 knu 740: 2001-05-08 Akinori MUSHA <knu@iDaemons.org>
741:
742: * cvsweb.cgi: Fix a typo and get diff -F RE to really work.
743:
3.7 knu 744: 2001-04-25 Akinori MUSHA <knu@iDaemons.org>
3.4 knu 745:
3.7 knu 746: * cvsweb.conf: Introduce the new knu-cvsweb site:
747: http://www.idaemons.org/~knu/cvsweb/
748:
749: * ChangeLog: Update and reformat.
750:
751: 2001-03-28 02:20 knu
752:
753: * cvsweb.cgi: Re-fix the bogus fix for the previous
754: colons-in-a-filename problem.
755: [Noted by: Yar Tikhiy <yar@freebsd.org>]
756:
757: 2001-03-28 01:39 knu
758:
759: * cvsweb.cgi: Conform cvsweb-markup pages to HTML 4.0
760: Transitional.
761: [Submitted by: Will Andrews <will@physics.purdue.edu>]
762: [Validated by: http://validator.w3.org/]
3.4 knu 763:
3.7 knu 764: 2001-03-23 04:46 knu
3.4 knu 765:
3.6 knu 766: * cvsweb.cgi: MFZ: 1.106. Do closedir() properly.
767:
3.7 knu 768: 2001-03-23 04:36 knu
769:
770: * ChangeLog: Add a log missed on 2001-02-01.
771:
772: 2001-03-23 04:29 knu
773:
774: * ChangeLog: Encode colons in file names properly.
775: [FreeBSD PR: 25963]
776: [Submitted by: Marc van Woerkom <3d@FreeBSD.org>]
777:
778: 2001-03-23 04:27 knu
779:
780: * cvsweb.cgi: Encode colons in file names properly.
781: [FreeBSD PR: 25963]
782: [Submitted by: Marc van Woerkom <3d@FreeBSD.org>]
783:
784: 2001-02-02 06:39 knu
3.5 knu 785:
786: * cvsweb.cgi: Use a fixed-width font in the colored diff view.
3.7 knu 787: [Requested by: Julian Elischer <julian@elischer.org>]
3.5 knu 788:
3.7 knu 789: 2001-01-29 12:54 knu
3.3 knu 790:
791: * cvsweb.cgi: Remove an obsolete notice: CVSWEB_CONFIG is disused.
792: One leftover substitution: "cvs" -> $CMD{cvs}
793:
3.7 knu 794: 2001-01-14 18:04 knu
795:
796: * cvsweb.conf: s/at here/here/
797:
798: 2001-01-13 16:48 knu
3.2 knu 799:
3.7 knu 800: * ChangeLog, README.knu, TODO.knu, cvsweb.cgi, cvsweb.conf,
801: cvsweb.conf-freebsd, cvsweb.conf-netbsd, cvsweb.conf-openbsd,
802: cvsweb.conf-ruby: Add some knu-cvsweb info.
3.2 knu 803:
804: * cvsweb.cgi: MFZ: 1.105.
805:
806: * README.knu, TODO.knu, cvsweb.cgi, cvsweb.conf,
807: cvsweb.conf-freebsd, cvsweb.conf-netbsd, cvsweb.conf-openbsd,
808: cvsweb.conf-ruby: Change CVS tags: "Id" -> "Idaemons".
809:
3.7 knu 810: 2001-01-12 16:48 knu
811:
812: * ChangeLog: Add ChangeLog.
813:
3.1 knu 814: 2001-01-12 08:42 knu
815:
3.7 knu 816: * cvsweb.cgi: Clean up URI parser.
817:
818: * cvsweb.cgi: Workaround thttpd's buggy SCRIPT_NAME / PATH_INFO
819: parser.
820: [Requested by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>]
821:
822: * cvsweb.conf-freebsd, cvsweb.conf-netbsd, cvsweb.conf-openbsd:
3.1 knu 823: Allow downloading a single port/pkgsrc in tarball by default.
824:
825: 2001-01-12 03:17 knu
826:
827: * cvsweb.cgi, cvsweb.conf: D'oh, forgot to chomp the result of
828: `uname`.
3.7 knu 829: [Submitted by: Christian Weisgerber <naddy@mips.inka.de>]
3.1 knu 830:
831: 2001-01-11 11:00 knu
832:
833: * cvsweb.cgi, cvsweb.conf: Oops.
834:
835: 2001-01-11 10:52 knu
836:
837: * cvsweb.cgi, cvsweb.conf, cvsweb.conf-freebsd, cvsweb.conf-netbsd,
838: cvsweb.conf-openbsd: Run "tar cf - ... | gzip -c" rather than "tar
839: zcf - ..." to avoid tar(1)'s automatic padding of nulls to align
840: with the block size, which is just garbage for a receiver.
3.7 knu 841: [Noted by: Katsuyuki Komatsu <komatsu@sarion.co.jp>]
842:
843: * cvsweb.cgi: Have $uname variable to hold the OS implementation
844: name.
845:
846: * cvsweb.conf: Move %CMD's initialization part to the beginning of
847: cvsweb.conf so it can use $uname and configure properly for the
848: OS.
849:
850: * cvsweb.conf, cvsweb.conf-freebsd, cvsweb.conf-netbsd,
851: cvsweb.conf-openbsd: Wrap FreeBSD or OpenBSD specific features in
852: conditional blocks using $uname.
853:
854: * cvsweb.cgi: Fix some open() calls in good manners.
3.1 knu 855:
856: 2001-01-05 09:00 knu
857:
858: * cvsweb.cgi: Delete $ENV{PATH} before everything. (against -T
859: paranoia) It's nothing to worry since cvsweb.cgi always invokes
860: executables by full paths, though.
3.7 knu 861:
862: * cvsweb.cgi: Correct the error messages regarding $command_path.
3.1 knu 863:
864: 2001-01-03 17:57 knu
865:
3.7 knu 866: * cvsweb.cgi, cvsweb.conf: Don't rely on perl's $ENV{PATH} search.
3.1 knu 867: Search commands for itself and specify them by full paths.
868:
869: 2001-01-03 11:55 knu
870:
871: * README.knu, cvsweb.cgi: Don't forget to add $query to the URL
872: when redirecting. Now module alias redirection and Attic
873: redirection work with all sticky variables preserved. (Previously
874: they didn't work against a non-default cvsroot)
3.7 knu 875:
876: * cvsweb.cgi: Put a text field on each directory view that allows
877: user to jump directly to an arbitrary module, which can be
878: specified either by a full module/file path or by a module alias.
3.1 knu 879:
880: 2001-01-03 08:34 knu
881:
882: * README.knu, cvsweb.cgi, cvsweb.conf: List CVS repository entries
883: in the specified order, not alphabetical.
3.7 knu 884:
885: * README.knu, cvsweb.cgi, cvsweb.conf: Now /usr/local/etc/cvsweb/
886: is the default directory for configuration files.
3.1 knu 887:
888: 2001-01-02 21:23 knu
889:
890: * cvsweb.cgi, cvsweb.conf: Get cvsweb.cgi to run under perl -T.
3.7 knu 891:
892: * cvsweb.cgi: Change perl command line: Change perl5 to perl and
893: just declare `require 5.000'. Remove -s option that was intended
894: for debug use. Add -T option to perform security checks.
895:
896: * cvsweb.cgi: Change search paths for cvsweb.conf: Don't adopt the
897: value of $ENV{CVSWEB_CONFIG} that was intended for debug use.
898: Search the same directory that cvsweb.cgi is in instead of the
899: current directory.
900:
901: * cvsweb.cgi: Invoking `last' in `do { ... } while (0);' is wrong.
902: Change the loop to `while (1) { ... last; }'.
903:
904: * cvsweb.cgi, cvsweb.conf: Don't do chdir. Instead, use tar(1)'s
905: -C option and cvs(1) export's -d option.
906:
907: * cvsweb.cgi: Explicitly define $ENV{PATH}.
908:
909: * cvsweb.conf: Turn $allow_compress off by default so user can
910: debug cvsweb.cgi easily.
3.1 knu 911:
912: 2001-01-02 08:15 knu
913:
3.7 knu 914: * cvsweb.cgi: Add $prkeyword variable to allow user to use (e.g.)
915: `Bug' instead of `PR' as the bug report identifier.
916:
917: * cvsweb.conf, cvsweb.conf-freebsd, cvsweb.conf-netbsd,
918: cvsweb.conf-openbsd, cvsweb.conf-ruby: Add
919: cvsweb.conf-{freebsd,openbsd,netbsd,ruby} files, and move rather
920: FreeBSD specific configuration values to cvsweb.conf-freebsd.
921:
922: * cvsweb.conf: Add a %funcline_regexp entry for Ruby. (*.rb)
3.1 knu 923:
924: 2001-01-02 06:24 knu
925:
926: * cvsweb.conf: Add `pending' to the list of PR categories.
927:
928: 2001-01-02 05:57 knu
929:
930: * cvsweb.cgi: Reduce 'Use of uninitialized value' warnings.
3.7 knu 931: [Noticed by: Wolfram Schneider <wosch@schneider.org>]
3.1 knu 932:
933: 2000-12-30 08:56 knu
934:
3.7 knu 935: * cvsweb.cgi: Oops, I forgot "cvs export" always need a -r/-D.
3.1 knu 936: Specify -rHEAD when no tag/branch is defaulted.
937:
938: 2000-12-30 08:35 knu
939:
940: * cvsweb.cgi, cvsweb.conf: Add $preformat_in_markup variable and
941: turn it off by default. This option should be turned off when you
942: have files in the repository that are in a multibyte encoding which
943: uses HTML special characters ([<>&"]) as part of a multi-byte
944: character. (such as iso-2022-jp, ShiftJIS, etc.) Otherwise those
945: files will get screwed up in markup.
3.7 knu 946:
947: * cvsweb.conf: Fix for those systems which tar(1)'s are not GNU
948: tar(1): Add @tar_options variable and make the
949: --ignore-failed-read flag optional. Use cvs export instead of cvs
950: checkout, so the --exclude 'CVS' flag isn't needed.
951: [Noticed by: Christian Weisgerber <naddy@mips.inka.de>]
952:
953: * cvsweb.conf: Fix for those systems which cvs(1)'s don't support
954: -R option (Actually, only FreeBSD's and OpenBSD's cvs(1) support
955: it): Add @cvs_options and make the -R flag optional.
3.1 knu 956:
957: 2000-12-29 22:29 knu
958:
959: * cvsweb.cgi: Add charset to all text/* output, including diffs.
3.7 knu 960: [Submitted by: Alexey Zelkin <phantom@cris.net>]
3.1 knu 961:
962: 2000-12-29 18:12 knu
963:
964: * cvsweb.cgi: The use of `do "file"' is obsolete. Use require
965: instead.
966:
967: 2000-12-29 17:47 knu
968:
969: * cvsweb.cgi: Add the prototype declaration for hrefquote().
970:
971: 2000-12-29 03:17 knu
972:
973: * README.knu: Mention automatic tarball generation feature.
974:
975: 2000-12-29 03:16 knu
976:
3.7 knu 977: * TODO.knu: Directory sorting was fixed at the same time that
978: "show only tags" feature was fixed.
3.1 knu 979:
980: 2000-12-29 03:07 knu
981:
982: * cvsweb.cgi: Specify --ignore-failed-read on invoking tar(1).
983:
984: 2000-12-29 02:49 knu
985:
986: * cvsweb.cgi, cvsweb.conf: Add "automatic tarball generation"
987: feature. You can check out a whole directory in gzipped tarball.
3.7 knu 988: [Obtained from: Debian package: cvsweb_1.93-1]
989:
990: * cvsweb.cgi: Allow space characters in file names. (not tested
991: yet)
3.1 knu 992:
993: 2000-12-18 13:25 knu
994:
995: * TODO.knu, cvsweb.cgi: Revert MFZ: 1.103 -> 1.104 which introduced
996: a bogus bug. As noone seems to need to use 0.X revisions, I'd just
997: drop it. This should fix the "show only tags" feature.
998:
999: 2000-12-18 12:47 knu
1000:
1001: * cvsweb.cgi: Silence the warnings.
1002:
1003: 2000-12-18 11:48 knu
1004:
1005: * cvsweb.cgi: Add meta tags to prevent WWW robots from crawling
1006: over the cvsweb.
3.7 knu 1007: [Submitted by: Wolfram Schneider <wolfram@schneider.org>]
3.1 knu 1008:
1009: 2000-12-08 00:11 knu
1010:
1011: * cvsweb.cgi: Silence `Use of uninitialized value' warnings.
1012: (again)
1013:
1014: 2000-12-07 03:20 knu
1015:
1016: * TODO.knu: Mention "show only tags" feature breakage.
1017:
1018: 2000-12-07 03:19 knu
1019:
1020: * cvsweb.cgi: Emit a rather better error message when a user
1021: requests to check out a deleted file.
3.7 knu 1022: [Pointed out by: Chris Faulhaber <jedgar@fxp.org>]
1023:
1024: * cvsweb.cgi: Cut an out-of-date error message. (adding -R and -l
1025: options to the cvs command line should have obsoleted it)
1026:
1027: * cvsweb.cgi: Optimize, clean up.
3.1 knu 1028:
1029: 2000-11-23 04:26 knu
1030:
1031: * cvsweb.cgi, cvsweb.conf: Add a new variable $charset to specify
1032: the charset for HTML output.
3.7 knu 1033: [Submitted by: SADA Kenji <sada@bsdclub.org>]
3.1 knu 1034:
1035: 2000-11-05 00:32 knu
1036:
1037: * cvsweb.cgi: Silence `Use of uninitialized value' warnings.
1038:
1039: 2000-11-03 02:36 knu
1040:
1041: * README.knu: Mention cat.1 is hyperlinked as well as cat(1).
1042:
1043: 2000-11-03 02:34 knu
1044:
3.7 knu 1045: * cvsweb.cgi: MFZ: 1.104: ("Allow for 0.X versions. CVS accepts
1046: such version numbers in import -b even if not strictly legal...")
3.1 knu 1047:
1048: 2000-11-03 02:33 knu
1049:
1050: * cvsweb.conf: Set the default diff type to unidiff for all
1051: browsers, not only text-based ones.
1052:
1053: 2000-10-21 00:46 knu
1054:
1055: * cvsweb.cgi: Always give options to click on a non-colored diff
1056: _and_ a colored diff.
3.7 knu 1057: [Requested by: SO many people :>]
3.1 knu 1058:
1059: 2000-10-20 22:59 knu
1060:
1061: * TODO.knu: Hyperlinking was properly fixed.
1062:
1063: 2000-10-20 21:28 knu
1064:
1065: * TODO.knu, cvsweb.cgi: Fix htmllify so that <A href="...">...</A>
1066: won't nest. :)
3.7 knu 1067:
1068: * cvsweb.cgi: Do not show additional "(colored)" diff links when
1069: long colored diff is the default.
1070:
1071: * cvsweb.cgi: Reduce the use of `.' operator that is known to be
1072: expensive. Fix indent, clean up.
3.1 knu 1073:
1074: 2000-10-11 06:14 knu
1075:
1076: * cvsweb.cgi: Introduce a new function: htmlquote().
3.7 knu 1077:
1078: * cvsweb.cgi: Clean up hyperlink tags.
1079:
1080: * cvsweb.cgi: Use &link() instead of <a href="...">...</a>.
1081:
1082: * cvsweb.cgi: Do urlencode() or htmlquote() as appropriate.
3.1 knu 1083:
1084: 2000-10-11 03:48 knu
1085:
1086: * cvsweb.cgi: - Recognize "links" as another text mode browser. -
1087: Fix the revision links in the annotation view of a file.
3.7 knu 1088: [Submitted by: Christian Weisgerber <naddy@mips.inka.de>]
3.1 knu 1089:
1090: 2000-10-07 16:44 knu
1091:
1092: * cvsweb.cgi: Fix &link() not to put a redundant trailing LF.
3.7 knu 1093:
1094: * cvsweb.cgi: Improve manpage linking to support "foo.1" as well
1095: as "foo(1)".
3.1 knu 1096:
1097: 2000-10-07 16:35 knu
1098:
1099: * cvsweb.cgi: Fix screwups in the last commit.
3.7 knu 1100:
1101: * cvsweb.cgi: Parse rlog's output explicitly. Recognize 77 ='s as
1102: a file separator, and 28 -'s as revision separator.
1103: [Submitted by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>]
3.1 knu 1104:
1105: 2000-10-03 04:07 knu
1106:
1107: * cvsweb.cgi: Cleanup $barequery generation. Undefine "my"
1108: variables when they are done.
1109:
1110: 2000-10-01 05:10 knu
1111:
3.7 knu 1112: * cvsweb.cgi: Fix annotation bugs.
1113:
1114: * cvsweb.cgi: Do not pass gzip'ed directives to cvs. (it never
1115: worked, sigh)
1116:
1117: * cvsweb.cgi: Fix mis-spacing. Now it should look pretty well.
3.1 knu 1118:
1119: 2000-10-01 03:48 knu
1120:
1121: * INSTALL, cvsweb.cgi: Specify -R (Read-only mode) and -l (Do not
1122: log in history) flags when doing a cvs annotation so that one does
1123: not need to turn on the write permission on CVSROOT/history for the
1124: user which httpd runs cvsweb.cgi as. (typically "nobody")
1125:
1126: 2000-10-01 03:27 knu
1127:
1128: * cvsweb.cgi: Fix the comment to make how to set $config clear.
3.7 knu 1129: [Inspired by: "Dan Langille" <dan@langille.org>]
3.1 knu 1130:
1131: 2000-09-29 03:06 knu
1132:
1133: * cvsweb.cgi: Trap errors in the configuration files on loading and
1134: show error messages. (Previously it failed silently)
3.7 knu 1135: [Submitted by: Sean Scarff <sean@pavilion.net>]
3.1 knu 1136:
1137: 2000-09-22 20:13 knu
1138:
1139: * cvsweb.cgi, cvsweb.conf: Remove $backcolor and introduce
1140: $body_tag_for_src to allow to set the foreground color.
3.7 knu 1141: [Noticed by: dcs@FreeBSD.org]
3.1 knu 1142:
1143: 2000-09-22 00:30 knu
1144:
1145: * cvsweb.cgi: MFZ: 1.103.
1146:
1147: 2000-09-20 05:07 knu
1148:
3.7 knu 1149: * cvsweb.cgi: Follow tab-width/tabstop/ts directives when
1150: expanding tabs into spaces. Currently, only first 10 lines are
1151: scanned for the directives.
3.1 knu 1152:
1153: 2000-09-20 04:57 knu
1154:
3.7 knu 1155: * cvsweb.cgi: MFZ: 1.101.
1156:
1157: * cvsweb.cgi: Fix a few bugs under mod_perl.
1158:
1159: * cvsweb.cgi: Use the Compress::Zlib module if available.
1160:
1161: * cvsweb.cgi: Embed PDF files inside the cvs markup view.
3.1 knu 1162:
1163: 2000-09-20 03:35 knu
1164:
3.7 knu 1165: * cvsweb.cgi: s/ts/tabstop/ that I forgot to substitute in the
1166: last update.
3.1 knu 1167:
1168: 2000-09-12 02:11 knu
1169:
1170: * cvsweb.cgi: Allow one to set the default diff type.
3.7 knu 1171: [Inspired by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>]
3.1 knu 1172:
1173: 2000-09-10 20:54 knu
1174:
1175: * cvsweb.cgi: Clean up spacedHtmlText().
1176:
1177: 2000-09-05 00:55 knu
1178:
1179: * README.knu: Mention revision numbers hyperlinking in annotation.
1180:
1181: 2000-09-05 00:53 knu
1182:
1183: * cvsweb.cgi: Get the revision numbers in annotation available as
1184: hyperlinks.
3.7 knu 1185: [Requested by: Josef Karthauser <joe@pavilion.net>]
3.1 knu 1186:
1187: 2000-09-04 23:50 knu
1188:
3.7 knu 1189: * cvsweb.cgi: Fix previously introduced incorrect fix.
3.1 knu 1190: s/\s+\n$//; --> s/\s+$/\n/;
3.7 knu 1191: [FreeBSD PR: misc/20989]
1192: [Submitted by: Tony Finch <dot@dotat.at>]
3.1 knu 1193:
1194: 2000-09-04 03:25 knu
1195:
1196: * README.knu, cvsweb.cgi, cvsweb.conf: Introduce manpage
1197: hyperlinking.
1198:
1199: 2000-09-04 02:33 knu
1200:
1201: * cvsweb.cgi: Get all mail URLs and addresses as hyperlinks, not
1202: just the first one. (s/// --> s///g)
1203:
1204: 2000-08-25 18:01 knu
1205:
1206: * cvsweb.cgi: Get side-by-side diff working when $showfunc is true,
1207: noting that `-p' option of diff(1) can only be used with context
1208: and unified diffs.
3.7 knu 1209: [Submitted by: Roger Hardiman <roger@cs.strath.ac.uk>]
1210:
1211: * cvsweb.cgi: Allow to specify CVS tags or branch names (including
1212: `.' and `HEAD') on cvs checkout.
1213: (e.g. http://foo/cvsweb.cgi/bar/dood.c?rev=.
1214: http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4
1215: http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4_1_0_RELEASE)
3.1 knu 1216: Not for diff currently, as rcsdiff does not grok CVS tags.
3.7 knu 1217: [Inspired by: Folks at the FreeBSD cvs-all list.]
1218:
1219: * cvsweb.cgi: Specify `-R' (turn on read-only repository mode) and
1220: `-l' (do not log in the command history) on cvs checkout, so that
1221: one does not need a write permission with the repository.
3.1 knu 1222:
1223: 2000-08-25 00:53 knu
1224:
1225: * cvsweb.cgi: MFZ 1.94.
1226:
1227: 2000-08-16 05:39 knu
1228:
1229: * cvsweb.conf: Turn evil $hr_ignwhite off.
1230:
1231: 2000-08-15 17:35 knu
1232:
3.7 knu 1233: * cvsweb.cgi: Fix cvsweb.cgi's hidden bug: s/\s+$//; -->
3.1 knu 1234: s/\s+\n$//;
3.7 knu 1235:
3.1 knu 1236: Whitespace cleanup.
1237:
1238: 2000-08-15 15:54 knu
1239:
1240: * cvsweb.cgi: Declare prototypes and shut up warnings.
3.7 knu 1241:
1242: * cvsweb.cgi: Remove redundant white space at the end of lines.
3.1 knu 1243:
1244: 2000-08-14 03:58 knu
1245:
1246: * cvsweb.cgi: Use cvsweb.conf* in the current directory when they
1247: don't exist in /usr/local/etc/.
1248:
1249: 2000-08-01 21:42 knu
1250:
1251: * cvsweb.cgi: #!/usr/bin/perl -> #!/usr/bin/perl5
1252:
1253: 2000-07-29 21:41 knu
1254:
1255: * cvsweb.cgi: Resurrect $Revision$ tags of Zeller's version.
1256:
1257: 2000-07-29 21:10 knu
1258:
1259: * cvsweb.cgi: Change $prcgi to include `?pr=' part for such as
1260: NetBSD.
1261:
1262: 2000-07-29 21:04 knu
1263:
1264: * cvsweb.conf: Change $prcgi to include `?pr=' part for such as
1265: NetBSD.
1266:
1267: 2000-07-29 20:16 knu
1268:
1269: * README.knu: Add an RCS tag.
1270:
1271: 2000-07-29 20:07 knu
1272:
1273: * README.knu: Add README.knu to document the enhancements over
1274: Zeller's version.
1275:
1276: 2000-07-29 18:24 knu
1277:
1278: * cvsweb.cgi: Another STDERR bit. (I only did 1/2 previously..)
1279:
1280: 2000-07-29 06:38 knu
1281:
1282: * cvsweb.cgi: D'oh. Correct @stickyvars.
1283:
1284: 2000-07-29 04:38 knu
1285:
3.7 knu 1286: * cvsweb.cgi: Output diffs in unidiff format for text-based
1287: browsers. (by default)
1288:
1289: * cvsweb.conf: Convert freebsd.org to FreeBSD.org.
3.1 knu 1290:
1291: 2000-07-29 02:24 knu
1292:
3.7 knu 1293: * cvsweb.cgi: Merge From Zeller: 1.93
1294:
1295: * cvsweb.cgi: Use CR LF in HTTP header.
1296:
1297: * cvsweb.cgi: Redirect STDERR to /dev/null before executing rlog
1298: instead of closing it.
3.1 knu 1299:
1300: 2000-07-28 01:16 knu
1301:
1302: * cvsweb.cgi, cvsweb.conf: Clean up.
3.7 knu 1303:
1304: * cvsweb.cgi, cvsweb.conf: Replace $hr_funout with $showfunc and
1305: always show function names if defined. (It has been only for
1306: human readable format until this change)
3.1 knu 1307:
1308: 2000-07-20 20:52 knu
1309:
1310: * cvsweb.cgi: Allow to use `!!CVSROOTdescr!!' in $long_intro to
1311: embed per CVSROOT description.
1312:
1313: 2000-07-20 20:14 knu
1314:
1315: * cvsweb.conf: Make $hr_funout default.
1316:
1317: 2000-07-20 20:06 knu
1318:
1319: * cvsweb.conf: Display my mail address instead of Zeller's.
1320:
1321: 2000-07-20 06:59 knu
1322:
1323: * INSTALL, README, TODO, cvsweb.cgi, cvsweb.conf, icons/back.gif,
1324: icons/dir.gif, icons/miniback.gif, icons/minidir.gif,
1325: icons/minitext.gif, icons/text.gif: Start point.
1326:
CVSweb