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

Annotation of cvsweb/ChangeLog, Revision 3.1

3.1     ! knu         1: 2001-01-12 08:42  knu
        !             2:
        !             3:        * cvsweb.cgi, cvsweb.conf-freebsd, cvsweb.conf-netbsd,
        !             4:        cvsweb.conf-openbsd: Clean up URI parser.
        !             5:
        !             6:        Workaround thttpd's buggy SCRIPT_NAME / PATH_INFO parser.
        !             7:
        !             8:        Requested by:   Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
        !             9:
        !            10:        Allow downloading a single port/pkgsrc in tarball by default.
        !            11:
        !            12: 2001-01-12 03:17  knu
        !            13:
        !            14:        * cvsweb.cgi, cvsweb.conf: D'oh, forgot to chomp the result of
        !            15:        `uname`.
        !            16:
        !            17:        Submitted by:   Christian Weisgerber <naddy@mips.inka.de>
        !            18:
        !            19: 2001-01-11 11:00  knu
        !            20:
        !            21:        * cvsweb.cgi, cvsweb.conf: Oops.
        !            22:
        !            23: 2001-01-11 10:52  knu
        !            24:
        !            25:        * cvsweb.cgi, cvsweb.conf, cvsweb.conf-freebsd, cvsweb.conf-netbsd,
        !            26:        cvsweb.conf-openbsd: Run "tar cf - ... | gzip -c" rather than "tar
        !            27:        zcf - ..." to avoid tar(1)'s automatic padding of nulls to align
        !            28:        with the block size, which is just garbage for a receiver.
        !            29:
        !            30:        Noted by:       Katsuyuki Komatsu <komatsu@sarion.co.jp>
        !            31:
        !            32:        Have $uname variable to hold the OS implementation name.
        !            33:
        !            34:        Move %CMD's initialization part to the beginning of cvsweb.conf so
        !            35:        it can use $uname and configure properly for the OS.
        !            36:
        !            37:        Wrap FreeBSD or OpenBSD specific features in conditional blocks
        !            38:        using $uname.
        !            39:
        !            40:        Fix some open() calls in good manners.
        !            41:
        !            42: 2001-01-05 09:00  knu
        !            43:
        !            44:        * cvsweb.cgi: Delete $ENV{PATH} before everything. (against -T
        !            45:        paranoia) It's nothing to worry since cvsweb.cgi always invokes
        !            46:        executables by full paths, though.
        !            47:
        !            48:        Correct the error messages regarding $command_path.
        !            49:
        !            50: 2001-01-03 17:57  knu
        !            51:
        !            52:        * cvsweb.cgi, cvsweb.conf: Don't rely on perl's $ENV{PATH} search.
        !            53:        Search commands for itself and specify them by full paths.
        !            54:
        !            55: 2001-01-03 11:55  knu
        !            56:
        !            57:        * README.knu, cvsweb.cgi: Don't forget to add $query to the URL
        !            58:        when redirecting.  Now module alias redirection and Attic
        !            59:        redirection work with all sticky variables preserved. (Previously
        !            60:        they didn't work against a non-default cvsroot)
        !            61:
        !            62:        Put a text field on each directory view that allows user to jump
        !            63:        directly to an arbitrary module, which can be specified either by a
        !            64:        full module/file path or by a module alias.
        !            65:
        !            66: 2001-01-03 08:34  knu
        !            67:
        !            68:        * README.knu, cvsweb.cgi, cvsweb.conf: List CVS repository entries
        !            69:        in the specified order, not alphabetical.
        !            70:
        !            71:        Now /usr/local/etc/cvsweb/ is the default directory for
        !            72:        configuration files.
        !            73:
        !            74: 2001-01-02 21:23  knu
        !            75:
        !            76:        * cvsweb.cgi, cvsweb.conf: Get cvsweb.cgi to run under perl -T.
        !            77:
        !            78:        Change perl command line:
        !            79:
        !            80:          Change perl5 to perl and just declare `require 5.000'.
        !            81:
        !            82:          Remove -s option that was intended for debug use.
        !            83:
        !            84:          Add -T option to perform security checks.
        !            85:
        !            86:        Change search paths for cvsweb.conf:
        !            87:
        !            88:          Don't adopt the value of $ENV{CVSWEB_CONFIG} that was intended
        !            89:        for
        !            90:          debug use.
        !            91:
        !            92:          Search the same directory that cvsweb.cgi is in instead of the
        !            93:          current directory.
        !            94:
        !            95:        Invoking `last' in `do { ... } while (0);' is wrong.  Change the
        !            96:        loop to `while (1) { ... last; }'.
        !            97:
        !            98:        Don't do chdir.  Instead, use tar(1)'s -C option and cvs(1)
        !            99:        export's -d option.
        !           100:
        !           101:        Explicitly define $ENV{PATH}.
        !           102:
        !           103:        Turn $allow_compress off by default so user can debug cvsweb.cgi
        !           104:        easily.
        !           105:
        !           106: 2001-01-02 08:15  knu
        !           107:
        !           108:        * cvsweb.cgi, cvsweb.conf, cvsweb.conf-freebsd, cvsweb.conf-netbsd,
        !           109:        cvsweb.conf-openbsd, cvsweb.conf-ruby: Add $prkeyword variable to
        !           110:        allow user to use (e.g.) `Bug' instead of `PR' as the bug report
        !           111:        identifier.
        !           112:
        !           113:        Add cvsweb.conf-{freebsd,openbsd,netbsd,ruby} files, and move
        !           114:        rather FreeBSD specific configuration values to
        !           115:        cvsweb.conf-freebsd.
        !           116:
        !           117:        Add a %funcline_regexp entry for Ruby. (*.rb)
        !           118:
        !           119: 2001-01-02 06:24  knu
        !           120:
        !           121:        * cvsweb.conf: Add `pending' to the list of PR categories.
        !           122:
        !           123: 2001-01-02 05:57  knu
        !           124:
        !           125:        * cvsweb.cgi: Reduce 'Use of uninitialized value' warnings.
        !           126:
        !           127:        Noticed by:     Wolfram Schneider <wosch@schneider.org>
        !           128:
        !           129: 2000-12-30 08:56  knu
        !           130:
        !           131:        * cvsweb.cgi: Oops, I forgot "cvs export" always need a -r/-D.
        !           132:        Specify -rHEAD when no tag/branch is defaulted.
        !           133:
        !           134: 2000-12-30 08:35  knu
        !           135:
        !           136:        * cvsweb.cgi, cvsweb.conf: Add $preformat_in_markup variable and
        !           137:        turn it off by default.  This option should be turned off when you
        !           138:        have files in the repository that are in a multibyte encoding which
        !           139:        uses HTML special characters ([<>&"]) as part of a multi-byte
        !           140:        character. (such as iso-2022-jp, ShiftJIS, etc.)  Otherwise those
        !           141:        files will get screwed up in markup.
        !           142:
        !           143:        Fix for those systems which tar(1)'s are not GNU tar(1).
        !           144:
        !           145:        - Add @@tar_options variable and make the --ignore-failed-read flag
        !           146:        optional.
        !           147:
        !           148:        - Use cvs export instead of cvs checkout, so the --exclude 'CVS'
        !           149:        flag isn't needed.
        !           150:
        !           151:        Noticed by:     Christian Weisgerber <naddy@mips.inka.de>
        !           152:
        !           153:        Fix for those systems which cvs(1)'s don't support -R option.
        !           154:        (Actually, only FreeBSD's and OpenBSD's cvs(1) support it)
        !           155:
        !           156:        - Add @@cvs_options and make the -R flag optional.
        !           157:
        !           158: 2000-12-29 22:29  knu
        !           159:
        !           160:        * cvsweb.cgi: Add charset to all text/* output, including diffs.
        !           161:
        !           162:        Submitted by:   Alexey Zelkin <phantom@cris.net>
        !           163:
        !           164: 2000-12-29 18:12  knu
        !           165:
        !           166:        * cvsweb.cgi: The use of `do "file"' is obsolete.  Use require
        !           167:        instead.
        !           168:
        !           169: 2000-12-29 17:47  knu
        !           170:
        !           171:        * cvsweb.cgi: Add the prototype declaration for hrefquote().
        !           172:
        !           173: 2000-12-29 03:17  knu
        !           174:
        !           175:        * README.knu: Mention automatic tarball generation feature.
        !           176:
        !           177: 2000-12-29 03:16  knu
        !           178:
        !           179:        * TODO.knu: Directory sorting was fixed at the same time that "show
        !           180:        only tags" feature was fixed.
        !           181:
        !           182: 2000-12-29 03:07  knu
        !           183:
        !           184:        * cvsweb.cgi: Specify --ignore-failed-read on invoking tar(1).
        !           185:
        !           186: 2000-12-29 02:49  knu
        !           187:
        !           188:        * cvsweb.cgi, cvsweb.conf: Add "automatic tarball generation"
        !           189:        feature.  You can check out a whole directory in gzipped tarball.
        !           190:
        !           191:        Obtained from:  Debian package: cvsweb_1.93-1
        !           192:
        !           193:        Allow space characters in file names. (not tested yet)
        !           194:
        !           195: 2000-12-18 13:25  knu
        !           196:
        !           197:        * TODO.knu, cvsweb.cgi: Revert MFZ: 1.103 -> 1.104 which introduced
        !           198:        a bogus bug.  As noone seems to need to use 0.X revisions, I'd just
        !           199:        drop it.  This should fix the "show only tags" feature.
        !           200:
        !           201: 2000-12-18 12:47  knu
        !           202:
        !           203:        * cvsweb.cgi: Silence the warnings.
        !           204:
        !           205: 2000-12-18 11:48  knu
        !           206:
        !           207:        * cvsweb.cgi: Add meta tags to prevent WWW robots from crawling
        !           208:        over the cvsweb.
        !           209:
        !           210:        Submitted by:   Wolfram Schneider <wolfram@schneider.org>
        !           211:
        !           212: 2000-12-08 00:11  knu
        !           213:
        !           214:        * cvsweb.cgi: Silence `Use of uninitialized value' warnings.
        !           215:        (again)
        !           216:
        !           217: 2000-12-07 03:20  knu
        !           218:
        !           219:        * TODO.knu: Mention "show only tags" feature breakage.
        !           220:
        !           221: 2000-12-07 03:19  knu
        !           222:
        !           223:        * cvsweb.cgi: Emit a rather better error message when a user
        !           224:        requests to check out a deleted file.
        !           225:
        !           226:        Pointed out by: Chris Faulhaber <jedgar@fxp.org>
        !           227:
        !           228:        Cut an out-of-date error message. (adding -R and -l options to the
        !           229:        cvs command line should have obsoleted it)
        !           230:
        !           231:        Optimize, clean up.
        !           232:
        !           233: 2000-11-23 04:26  knu
        !           234:
        !           235:        * cvsweb.cgi, cvsweb.conf: Add a new variable $charset to specify
        !           236:        the charset for HTML output.
        !           237:
        !           238:        Submitted by:   SADA Kenji <sada@bsdclub.org>
        !           239:
        !           240: 2000-11-05 00:32  knu
        !           241:
        !           242:        * cvsweb.cgi: Silence `Use of uninitialized value' warnings.
        !           243:
        !           244: 2000-11-03 02:36  knu
        !           245:
        !           246:        * README.knu: Mention cat.1 is hyperlinked as well as cat(1).
        !           247:
        !           248: 2000-11-03 02:34  knu
        !           249:
        !           250:        * cvsweb.cgi: MFZ: 1.104:
        !           251:
        !           252:        2000-11-02 07:05  hnordstrom
        !           253:
        !           254:                * cvsweb.cgi: Allow for 0.X versions. CVS accepts such
        !           255:        version
        !           256:                numbers in import -b even if not strictly legal...
        !           257:
        !           258: 2000-11-03 02:33  knu
        !           259:
        !           260:        * cvsweb.conf: Set the default diff type to unidiff for all
        !           261:        browsers, not only text-based ones.
        !           262:
        !           263: 2000-10-21 00:46  knu
        !           264:
        !           265:        * cvsweb.cgi: Always give options to click on a non-colored diff
        !           266:        _and_ a colored diff.
        !           267:
        !           268:        Requested by:   SO many people :>
        !           269:
        !           270: 2000-10-20 22:59  knu
        !           271:
        !           272:        * TODO.knu: Hyperlinking was properly fixed.
        !           273:
        !           274: 2000-10-20 21:28  knu
        !           275:
        !           276:        * TODO.knu, cvsweb.cgi: Fix htmllify so that <A href="...">...</A>
        !           277:        won't nest. :)
        !           278:
        !           279:        Do not show additional "(colored)" diff links when long colored
        !           280:        diff is the default.
        !           281:
        !           282:        Reduce the use of `.' operator that is known to be expensive.  Fix
        !           283:        indent, clean up.
        !           284:
        !           285: 2000-10-11 06:14  knu
        !           286:
        !           287:        * cvsweb.cgi: Introduce a new function: htmlquote().
        !           288:
        !           289:        Clean up hyperlink tags.    - Use &link() instead of <a
        !           290:        href="...">...</a>.    - Do urlencode() or htmlquote() as
        !           291:        appropriate.
        !           292:
        !           293: 2000-10-11 03:48  knu
        !           294:
        !           295:        * cvsweb.cgi: - Recognize "links" as another text mode browser.  -
        !           296:        Fix the revision links in the annotation view of a file.
        !           297:
        !           298:        Submitted by:   Christian Weisgerber <naddy@mips.inka.de>
        !           299:
        !           300: 2000-10-07 16:44  knu
        !           301:
        !           302:        * cvsweb.cgi: Fix &link() not to put a redundant trailing LF.
        !           303:
        !           304:        Improve manpage linking to support "foo.1" as well as "foo(1)".
        !           305:
        !           306: 2000-10-07 16:35  knu
        !           307:
        !           308:        * cvsweb.cgi: Fix screwups in the last commit.
        !           309:
        !           310:        Parse rlog's output explicitly.  Recognize 77 ='s as a file
        !           311:        separator, and 28 -'s as revision separator.
        !           312:
        !           313:        Submitted by:   Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
        !           314:
        !           315: 2000-10-03 04:07  knu
        !           316:
        !           317:        * cvsweb.cgi: Cleanup $barequery generation.  Undefine "my"
        !           318:        variables when they are done.
        !           319:
        !           320: 2000-10-01 05:10  knu
        !           321:
        !           322:        * cvsweb.cgi: Fix annotation bugs.    - Do not pass gzip'ed
        !           323:        directives to cvs. (it never worked, sigh)    - Fix mis-spacing.
        !           324:        Now it should look pretty well.
        !           325:
        !           326: 2000-10-01 03:48  knu
        !           327:
        !           328:        * INSTALL, cvsweb.cgi: Specify -R (Read-only mode) and -l (Do not
        !           329:        log in history) flags when doing a cvs annotation so that one does
        !           330:        not need to turn on the write permission on CVSROOT/history for the
        !           331:        user which httpd runs cvsweb.cgi as. (typically "nobody")
        !           332:
        !           333: 2000-10-01 03:27  knu
        !           334:
        !           335:        * cvsweb.cgi: Fix the comment to make how to set $config clear.
        !           336:
        !           337:        Inspired by:    "Dan Langille" <dan@langille.org>
        !           338:
        !           339: 2000-09-29 03:06  knu
        !           340:
        !           341:        * cvsweb.cgi: Trap errors in the configuration files on loading and
        !           342:        show error messages.  (Previously it failed silently)
        !           343:
        !           344:        Submitted by:   Sean Scarff <sean@pavilion.net>
        !           345:
        !           346: 2000-09-22 20:13  knu
        !           347:
        !           348:        * cvsweb.cgi, cvsweb.conf: Remove $backcolor and introduce
        !           349:        $body_tag_for_src to allow to set the foreground color.
        !           350:
        !           351:        Noticed by:     dcs@FreeBSD.org
        !           352:
        !           353: 2000-09-22 00:30  knu
        !           354:
        !           355:        * cvsweb.cgi: MFZ: 1.103.
        !           356:
        !           357: 2000-09-20 05:07  knu
        !           358:
        !           359:        * cvsweb.cgi: Follow tab-width/tabstop/ts directives when expanding
        !           360:        tabs into spaces.  Currently, only first 10 lines are scanned for
        !           361:        the directives.
        !           362:
        !           363: 2000-09-20 04:57  knu
        !           364:
        !           365:        * cvsweb.cgi: MFZ: 1.101.    - Fix a few bugs under mod_perl.    -
        !           366:        Use the Compress::Zlib module if available.    - Embed PDF files
        !           367:        inside the cvs markup view.
        !           368:
        !           369: 2000-09-20 03:35  knu
        !           370:
        !           371:        * cvsweb.cgi: s/ts/tabstop/ that I forgot to substitute in the last
        !           372:        update.
        !           373:
        !           374: 2000-09-12 02:11  knu
        !           375:
        !           376:        * cvsweb.cgi: Allow one to set the default diff type.
        !           377:
        !           378:        Inspired by:    Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
        !           379:
        !           380: 2000-09-10 20:54  knu
        !           381:
        !           382:        * cvsweb.cgi: Clean up spacedHtmlText().
        !           383:
        !           384: 2000-09-05 00:55  knu
        !           385:
        !           386:        * README.knu: Mention revision numbers hyperlinking in annotation.
        !           387:
        !           388: 2000-09-05 00:53  knu
        !           389:
        !           390:        * cvsweb.cgi: Get the revision numbers in annotation available as
        !           391:        hyperlinks.
        !           392:
        !           393:        Requested by:   Josef Karthauser <joe@pavilion.net>
        !           394:
        !           395: 2000-09-04 23:50  knu
        !           396:
        !           397:        * cvsweb.cgi: Fix previously introduced incorrect fix.
        !           398:        s/\s+\n$//; --> s/\s+$/\n/;
        !           399:
        !           400:        FreeBSD PR:     misc/20989 Submitted by:        Tony Finch
        !           401:        <dot@dotat.at>
        !           402:
        !           403: 2000-09-04 03:25  knu
        !           404:
        !           405:        * README.knu, cvsweb.cgi, cvsweb.conf: Introduce manpage
        !           406:        hyperlinking.
        !           407:
        !           408: 2000-09-04 02:33  knu
        !           409:
        !           410:        * cvsweb.cgi: Get all mail URLs and addresses as hyperlinks, not
        !           411:        just the first one.  (s/// --> s///g)
        !           412:
        !           413: 2000-08-25 18:01  knu
        !           414:
        !           415:        * cvsweb.cgi: Get side-by-side diff working when $showfunc is true,
        !           416:        noting that `-p' option of diff(1) can only be used with context
        !           417:        and unified diffs.
        !           418:
        !           419:        Submitted by:   Roger Hardiman <roger@cs.strath.ac.uk>
        !           420:
        !           421:        Allow to specify CVS tags or branch names (including `.' and
        !           422:        `HEAD') on cvs checkout.
        !           423:
        !           424:        e.g.    http://foo/cvsweb.cgi/bar/dood.c?rev=.
        !           425:        http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4
        !           426:        http://foo/cvsweb.cgi/bar/dood.c?rev=RELENG_4_1_0_RELEASE
        !           427:
        !           428:        Not for diff currently, as rcsdiff does not grok CVS tags.
        !           429:
        !           430:        Inspired by:    Folks at the FreeBSD cvs-all list.
        !           431:
        !           432:        Specify `-R' (turn on read-only repository mode) and `-l' (do not
        !           433:        log in the command history) on cvs checkout, so that one does not
        !           434:        need a write permission with the repository.
        !           435:
        !           436: 2000-08-25 00:53  knu
        !           437:
        !           438:        * cvsweb.cgi: MFZ 1.94.
        !           439:
        !           440: 2000-08-16 05:39  knu
        !           441:
        !           442:        * cvsweb.conf: Turn evil $hr_ignwhite off.
        !           443:
        !           444: 2000-08-15 17:35  knu
        !           445:
        !           446:        * cvsweb.cgi: Fix cvsweb.cgi's hidden bug:  s/\s+$//;  -->
        !           447:        s/\s+\n$//;
        !           448:
        !           449:        Whitespace cleanup.
        !           450:
        !           451: 2000-08-15 15:54  knu
        !           452:
        !           453:        * cvsweb.cgi: Declare prototypes and shut up warnings.
        !           454:
        !           455:        Remove redundant white space at the end of lines.
        !           456:
        !           457: 2000-08-14 03:58  knu
        !           458:
        !           459:        * cvsweb.cgi: Use cvsweb.conf* in the current directory when they
        !           460:        don't exist in /usr/local/etc/.
        !           461:
        !           462: 2000-08-01 21:42  knu
        !           463:
        !           464:        * cvsweb.cgi: #!/usr/bin/perl -> #!/usr/bin/perl5
        !           465:
        !           466: 2000-07-29 21:41  knu
        !           467:
        !           468:        * cvsweb.cgi: Resurrect $Revision$ tags of Zeller's version.
        !           469:
        !           470: 2000-07-29 21:10  knu
        !           471:
        !           472:        * cvsweb.cgi: Change $prcgi to include `?pr=' part for such as
        !           473:        NetBSD.
        !           474:
        !           475: 2000-07-29 21:04  knu
        !           476:
        !           477:        * cvsweb.conf: Change $prcgi to include `?pr=' part for such as
        !           478:        NetBSD.
        !           479:
        !           480: 2000-07-29 20:16  knu
        !           481:
        !           482:        * README.knu: Add an RCS tag.
        !           483:
        !           484: 2000-07-29 20:07  knu
        !           485:
        !           486:        * README.knu: Add README.knu to document the enhancements over
        !           487:        Zeller's version.
        !           488:
        !           489: 2000-07-29 18:24  knu
        !           490:
        !           491:        * cvsweb.cgi: Another STDERR bit. (I only did 1/2 previously..)
        !           492:
        !           493: 2000-07-29 06:38  knu
        !           494:
        !           495:        * cvsweb.cgi: D'oh.  Correct @stickyvars.
        !           496:
        !           497: 2000-07-29 04:38  knu
        !           498:
        !           499:        * cvsweb.cgi, cvsweb.conf: Output diffs in unidiff format for
        !           500:        text-based browsers. (by default)
        !           501:
        !           502:        Convert freebsd.org to FreeBSD.org.
        !           503:
        !           504: 2000-07-29 02:24  knu
        !           505:
        !           506:        * cvsweb.cgi: Merge From Zeller: 1.93   - Use CR LF in HTTP header.
        !           507:           - Redirect STDERR to /dev/null before executing rlog instead of
        !           508:        closing it.
        !           509:
        !           510: 2000-07-28 01:16  knu
        !           511:
        !           512:        * cvsweb.cgi, cvsweb.conf: Clean up.
        !           513:
        !           514:        Replace $hr_funout with $showfunc and always show function names if
        !           515:        defined.  (It has been only for human readable format until this
        !           516:        change)
        !           517:
        !           518: 2000-07-20 20:52  knu
        !           519:
        !           520:        * cvsweb.cgi: Allow to use `!!CVSROOTdescr!!' in $long_intro to
        !           521:        embed per CVSROOT description.
        !           522:
        !           523: 2000-07-20 20:14  knu
        !           524:
        !           525:        * cvsweb.conf: Make $hr_funout default.
        !           526:
        !           527: 2000-07-20 20:06  knu
        !           528:
        !           529:        * cvsweb.conf: Display my mail address instead of Zeller's.
        !           530:
        !           531: 2000-07-20 06:59  knu
        !           532:
        !           533:        * INSTALL, README, TODO, cvsweb.cgi, cvsweb.conf, icons/back.gif,
        !           534:        icons/dir.gif, icons/miniback.gif, icons/minidir.gif,
        !           535:        icons/minitext.gif, icons/text.gif: Start point.
        !           536:

CVSweb