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

Annotation of cvsweb/ChangeLog, Revision 3.5

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

CVSweb