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

Annotation of cvsweb/ChangeLog, Revision 3.3

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

CVSweb