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

Annotation of cvsweb/ChangeLog, Revision 3.2

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

CVSweb