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

Annotation of cvsweb/cvsweb.conf, Revision 3.50

3.1       knu         1: # -*-perl-*-
                      2: # Configuration of cvsweb.cgi, the
                      3: # CGI interface to CVS Repositories.
                      4: #
                      5: # (c) 1998-1999 H. Zeller    <zeller@think.de>
                      6: #     1999      H. Nordstrom <hno@hem.passagen.se>
3.30      knu         7: #     2000-2002 A. MUSHA     <knu@FreeBSD.org>
3.48      scop        8: #     2002-2003 V. Skyttä    <scop@FreeBSD.org>
3.1       knu         9: #          based on work by Bill Fenner  <fenner@FreeBSD.org>
3.28      knu        10: #
3.30      knu        11: # $FreeBSD$
3.27      knu        12: # $Id: cvsweb.conf,v 3.29 2001/07/23 09:14:52 hzeller Exp $
3.28      knu        13: # $Idaemons: /home/cvs/cvsweb/cvsweb.conf,v 3.27 2001/08/01 09:48:39 knu Exp $
3.1       knu        14: #
                     15: ###
                     16:
3.19      knu        17: # Set the path for the following commands:
3.47      scop       18: #   cvs, rlog, rcsdiff
3.19      knu        19: #   gzip (if you enable $allow_compress)
3.47      scop       20: #   (g)tar, zip (if you enable $allow_tar)
3.42      scop       21: #   cvsgraph (if you enable $allow_graph)
3.19      knu        22: $command_path = '/bin:/usr/bin:/usr/local/bin';
                     23:
3.47      scop       24: # Search the above directories for each command (prefer gtar over tar).
3.48      scop       25: for (qw(cvs rlog rcsdiff gzip gtar zip cvsgraph enscript)) {
3.26      knu        26:        $CMD{$_} = search_path($_);
3.19      knu        27: }
3.47      scop       28: $CMD{tar}   = delete($CMD{gtar}) if $CMD{gtar};
                     29: $CMD{tar} ||= search_path('tar');
3.19      knu        30:
3.1       knu        31: ##############
                     32: # CVS Root
                     33: ##############
                     34: # CVSweb can handle several CVS-Repositories
                     35: # at once. Enter a short symbolic names and the
                     36: # full path of these repositories here.
                     37: # NOTE that the symbolic names may not contain
                     38: # whitespaces.
                     39: # Note, that cvsweb.cgi currently needs to have physical access
                     40: # to the CVS repository so :pserver:someone@xyz.com:/data/cvsroot
                     41: # won't work!
                     42:
3.17      knu        43: # 'symbolic_name' => ['name_to_display', 'path_to_the_actual_repository']
                     44: # Listed in the order specified:
                     45: @CVSrepositories = (
3.26      knu        46:        'local'   => ['Local Repository', '/home/cvs'],
                     47: #      'freebsd' => ['FreeBSD',          '/home/ncvs'],
                     48: #      'openbsd' => ['OpenBSD',          '/home/ncvs'],
                     49: #      'netbsd'  => ['NetBSD',           '/home/ncvs'],
                     50: #      'ruby'    => ['Ruby',             '/var/anoncvs/ruby'],
                     51: );
3.1       knu        52:
                     53: # This tree is enabled by default when
                     54: # you enter the page
3.26      knu        55: $cvstreedefault = $CVSrepositories[2 * 0];    # The first one
3.1       knu        56:
                     57: ##############
3.15      knu        58: # Bug tracking system options
                     59: # ("PR" means Problem Report, as in GNATS)
3.1       knu        60: ##############
3.15      knu        61: #@prcategories = qw(
3.26      knu        62: #    advocacy
                     63: #    alpha
                     64: #    bin
                     65: #    conf
                     66: #    docs
                     67: #    gnu
                     68: #    i386
                     69: #    kern
                     70: #    misc
                     71: #    pending
                     72: #    ports
                     73: #    sparc
                     74: #);
                     75:
3.15      knu        76: #
                     77: #$prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=%s";
                     78: #
                     79: #$prkeyword = "PR";
3.1       knu        80:
                     81: ##############
3.15      knu        82: # Manual gateway
3.8       knu        83: ##############
3.26      knu        84: $mancgi =
                     85:     "http://www.FreeBSD.org/cgi/man.cgi?apropos=0&sektion=%s&query=%s&manpath=FreeBSD+5.0-current&format=html";
3.1       knu        86:
                     87: ##############
                     88: # Defaults for UserSettings
                     89: ##############
                     90: %DEFAULTVALUE = (
3.26      knu        91:
                     92:        # sortby: File sort order
                     93:        #   file   Sort by filename
                     94:        #   rev    Sort by revision number
                     95:        #   date   Sort by commit date
                     96:        #   author Sort by author
                     97:        #   log    Sort by log message
                     98:        "sortby" => "file",
                     99:
3.46      scop      100:        # ignorecase: ignore case in sorts (filenames, authors, log messages)
                    101:        #   0      Honour case
                    102:        #   1      Ignore case
                    103:        "ignorecase" => "0",
                    104:
3.26      knu       105:        # hideattic: Hide or show files in Attic
                    106:        #   1      Hide files in Attic
                    107:        #   0      Show files in Attic
                    108:        "hideattic" => "1",
                    109:
                    110:        # logsort: Sort order for CVS logs
                    111:        #   date   Sort revisions by date
                    112:        #   rev    Sort revision by revision number
                    113:        #   cvs    Don't sort them. Same order as CVS/RCS shows them.
                    114:        "logsort" => "date",
                    115:
                    116:        # f:     Default diff format
                    117:        #   h      Human readable
                    118:        #   u      Unified diff
                    119:        #   c      Context diff
                    120:        #   s      Side by side
                    121:        "f" => "u",
                    122:
                    123:        # hidecvsroot: Don't show the CVSROOT directory
                    124:        #   1      Hide CVSROOT directory
                    125:        #   0      Show CVSROOT directory
                    126:        "hidecvsroot" => "0",
                    127:
                    128:        # hidenonreadable: Don't show entries which cannot be read
                    129:        #   1      Hide non-readable entries
                    130:        #   0      Show non-readable entries
                    131:        "hidenonreadable" => "1",
3.49      scop      132:
                    133:        # ln: Show line numbers in HTMLized views
                    134:        #   1      Show line numbers
                    135:        #   0      Don't show line numbers
                    136:        "ln" => "0",
3.1       knu       137: );
                    138:
                    139: ##############
                    140: # some layout stuff
                    141: ##############
                    142:
                    143: # Wanna have a logo on the page ?
3.30      knu       144: $logo = '<p><img src="/icons/apache_pb.gif" alt="Powered by Apache"></p>';
3.1       knu       145:
3.34      scop      146: # The title of the Page on startup.  This will be put inside a <h1> tag.
3.1       knu       147: $defaulttitle = "CVS Repository";
                    148:
3.34      scop      149: # The address is shown on the footer.  This will be put inside a <address> tag.
                    150: $address = '<span style="font-size: smaller">FreeBSD-CVSweb &lt;<a href="mailto:freebsd-cvsweb@FreeBSD.org">freebsd-cvsweb@FreeBSD.org</a>&gt;</span>';
3.1       knu       151:
                    152: $long_intro = <<EOT;
                    153: <p>
                    154: This is a WWW interface for CVS Repositories.
                    155: You can browse the file hierarchy by picking directories
                    156: (which have slashes after them, <i>e.g.</i>, <b>src/</b>).
                    157: If you pick a file, you will see the revision history
                    158: for that file.
                    159: Selecting a revision number will download that revision of
                    160: the file.  There is a link at each revision to display
                    161: diffs between that revision and the previous one, and
                    162: a form at the bottom of the page that allows you to
                    163: display diffs between arbitrary revisions.
                    164: </p>
                    165: <p>
3.33      scop      166: This script has been written by Bill Fenner and improved by Henner Zeller,
                    167: Henrik Nordstr&ouml;m, and Ken Coar, then Akinori MUSHA brought it
3.22      knu       168: back to FreeBSD community and made further improvements; it is covered
3.33      scop      169: by <a
                    170: href="http://www.opensource.org/licenses/bsd-license.html">The BSD Licence</a>.
3.1       knu       171: </p>
                    172: <p>
                    173: If you would like to use this CGI script on your own web server and
3.33      scop      174: CVS tree, download the latest version from &lt;URL:<a
                    175: href="http://www.FreeBSD.org/projects/cvsweb.html">http://www.FreeBSD.org/projects/cvsweb.html</a>&gt;.
3.1       knu       176: </p>
                    177: <p>
3.33      scop      178: Feel free to send any patches, suggestions and comments to the FreeBSD-CVSweb
                    179: mailing list at
                    180: &lt;<a
                    181: href="mailto:freebsd-cvsweb\@FreeBSD.org">freebsd-cvsweb\@FreeBSD.org</a>&gt;.
3.1       knu       182: </p>
                    183: EOT
                    184:
                    185: $short_instruction = <<EOT;
                    186: <p>
                    187: Click on a directory to enter that directory. Click on a file to display
3.32      scop      188: its revision history and to get a chance to display diffs between revisions.
3.1       knu       189: </p>
                    190: EOT
                    191:
3.42      scop      192: # Icons for the web UI.  If ICON-URL is empty, the TEXT representation is
                    193: # used.  If you do not want to have a tool tip for an icon, set TEXT empty.
                    194: # The width and height of the icon allow the browser to correctly display
                    195: # the table while still loading the icons.  If these icons are too large,
                    196: # check out the "mini" versions in the icons/ directory; they have a
                    197: # width/height of 16/16.
3.26      knu       198:
3.42      scop      199: my $iconsdir = '/icons';
                    200:
                    201: # format:             TEXT       ICON-URL                  width height
3.26      knu       202: %ICONS = (
3.42      scop      203:           back  => [('[BACK]',  "$iconsdir/back.gif",      20,   22)],
                    204:           dir   => [('[DIR]',   "$iconsdir/dir.gif",       20,   22)],
                    205:           file  => [('[TXT]',   "$iconsdir/text.gif",      20,   22)],
                    206:           graph => [('[GRAPH]', "$iconsdir/minigraph.png", 16,   16)],
3.26      knu       207: );
3.15      knu       208: undef $iconsdir;
3.1       knu       209:
3.43      scop      210: # An URL where to find the CSS.
                    211: $cssurl = '/css/cvsweb.css';
                    212:
3.1       knu       213: # the length to which the last logentry should
                    214: # be truncated when shown in the directory view
                    215: $shortLogLen = 80;
                    216:
                    217: # Show author of last change
                    218: $show_author = 1;
                    219:
                    220: ##############
                    221: # table view for directories
                    222: ##############
                    223:
3.40      scop      224: # Cell padding for directory table
3.1       knu       225: $tablepadding = 2;
                    226:
                    227: #
                    228: # Modules in the repository that should not be displayed, either by default
                    229: # nor by explicit path specification.
                    230: #
3.27      knu       231: @HideModules = (
                    232: #      "^my/secret/module",
                    233: );
                    234:
                    235: #
                    236: # Files matching these pathnames shouldn't be checked out with cvsweb,
                    237: # since they may contain sensitive information. Simple file name based
                    238: # filter. Often, the CVSROOT/passwd is exposed and some people tend
                    239: # to check in their .cvspass, though this is a bad idea. These files
                    240: # shouldn't be readable by default. Thanks to Damian Gryski to point
                    241: # this out.
3.36      scop      242: # Note that this affects only files, not directories.
3.27      knu       243: @ForbiddenFiles = (
                    244:        "^CVSROOT/passwd\$",   # CVSROOT/passwd should not be cvs add'ed, though
                    245:        "/\\.cvspass\$",       # Ditto.  Just in case.
                    246: );
3.1       knu       247:
                    248: #
                    249: # Use CVSROOT/CVSROOT/descriptions for describing the directories/modules
                    250: # See INSTALL section 8
                    251: #
                    252: $use_descriptions = 0;
                    253:
                    254: ##############
                    255: # Human Readable Diff
                    256: ##############
                    257:
                    258: # (c) 1998 H. Zeller <zeller@think.de>
                    259: #
                    260: # Generates two columns of color encoded
                    261: # diff; much like xdiff or emacs-ediff mode.
                    262: #
                    263: # The diff-stuff is a piece of code I once made for
                    264: # cvs2html which is under GPL,
                    265: # see http://www.sslug.dk/cvs2html
                    266: # (c) 1997/98 Peter Toft <pto@sslug.imm.dtu.dk>
                    267: #
                    268: # some parameters to screw:
                    269: ##
                    270:
                    271: # make lines breakable so that the columns do not
                    272: # exceed the width of the browser
                    273: $hr_breakable = 1;
                    274:
3.4       knu       275: # give out function names in diffs
3.1       knu       276: # this just makes sense if we have C-files, otherwise
                    277: # diff's heuristic doesn't work well ..
                    278: # ( '-p' option to diff)
3.4       knu       279: $showfunc = 1;
3.1       knu       280:
                    281: # For each pair of regexps, files that match the first regexp will be diff'ed
                    282: # with an '-F' option with the second regexp.
3.4       knu       283: %funcline_regexp = (
3.26      knu       284:        "\\.(4th|fr)\$" => "\\(^\\|[ \t]\\): ",
                    285:        "\\.rb\$"       => "^[\t ]*\\(class\\|module\\|def\\) ",
                    286: );
3.1       knu       287:
                    288: # ignore whitespaces for human readable diffs
                    289: # (indendation and stuff ..)
                    290: # ( '-w' option to diff)
3.7       knu       291: $hr_ignwhite = 0;
3.1       knu       292:
                    293: # ignore diffs which are caused by
                    294: # keyword-substitution like $Id - Stuff
                    295: # ( '-kk' option to rcsdiff)
                    296: $hr_ignkeysubst = 1;
                    297:
                    298: # the width of the textinput of the
                    299: # request-diff-form
                    300: $inputTextSize = 12;
                    301:
                    302: ##############
                    303: # Mime Types
                    304: ##############
                    305:
                    306: # mapping to mimetypes to help
                    307: # cvsweb to guess the correct mime-type on
                    308: # checkout; you can use the mime.types from
                    309: # apache here:
                    310: $mime_types = '/usr/local/etc/apache/mime.types';
                    311:
                    312: # quick mime-type lookup; maps file-suffices to
                    313: # mime-types for displaying checkouts in the browser.
3.40      scop      314: # Further MimeTypes will be found in the
3.1       knu       315: # file $mime_types (apache style mime.types - file)
                    316: # - add common mappings here for faster lookup
                    317: %MTYPES = (
3.26      knu       318:        "html"  => "text/html",
                    319:        "shtml" => "text/html",
                    320:        "gif"   => "image/gif",
                    321:        "jpeg"  => "image/jpeg",
                    322:        "jpg"   => "image/jpeg",
                    323:        "png"   => "image/png",
                    324:        "xpm"   => "image/xpm",
                    325:        "*"     => "text/plain",
                    326: );
3.11      knu       327:
                    328: # Charset for HTML output
3.13      knu       329: $charset = '';
3.26      knu       330:
3.13      knu       331: # e.g.
                    332: #$charset = $where =~ m,/ru[/_-], ? 'koi8-r'
                    333: #  : $where =~ m,/zh[/_-], ? 'big5'
                    334: #  : $where =~ m,/ja[/_-], ? 'x-euc-jp'
                    335: #  : $where =~ m,/ko[/_-], ? 'x-euc-kr'
                    336: #  : 'iso-8859-1';
3.29      knu       337:
                    338: # Output filter
                    339: $output_filter = '';
                    340:
                    341: # e.g.
                    342: ## unify/convert Japanese code into EUC-JP
                    343: #$output_filter= '/usr/local/bin/nkf -e';
3.1       knu       344:
                    345: ##############
                    346: # Misc
                    347: ##############
3.50    ! scop      348: # Allow annotation of files.  See also @annotate_options below.
3.1       knu       349: $allow_annotate = 1;
                    350:
                    351: # allow pretty-printed version of files
                    352: $allow_markup = 1;
                    353:
3.31      knu       354: # allow extra hlink formatting (such as PR xrefs) in logs
                    355: $allow_log_extra = 1; # default: enabled
                    356:
                    357: # allow extra hlink formatting (such as PR xrefs) in directories
                    358: $allow_dir_extra = 1;
                    359:
                    360: # allow extra hlink formatting in source code/formatted diff views
                    361: $allow_source_extra = 1;
                    362:
3.1       knu       363: # allow compression with gzip
                    364: # of output if the Browser accepts
                    365: # it (HTTP_ACCEPT_ENCODING=gzip)
                    366: # [make sure to have gzip in the path]
3.16      knu       367: $allow_compress = 0;
3.1       knu       368:
                    369: # Make use of javascript functions.
                    370: # This way you can select one of your CVSroot
                    371: # without pressing 'Go' (.. if you do have more
                    372: # than one CVSROOT defined)
                    373: $use_java_script = 1;
                    374:
                    375: # open Download-Links in another window
                    376: $open_extern_window = 1;
                    377:
                    378: # The size of this extern window; this size option
                    379: # needs use_java_script to be defined
                    380: # just comment them if you don't want to have a fixed
                    381: # size
                    382: #$extern_window_width = 600;
                    383: #$extern_window_height = 440;
                    384:
                    385: # Edit Options
                    386: # Enable form to edit your options (hideattic,sortbydate)
                    387: # this isn't necessary if you've $dirtable defined 'cause
                    388: # this allows editing of all your options more intuitive
                    389: $edit_option_form = (not $dirtable);
                    390:
                    391: # If you have files which automatically refers to other files
                    392: # (such as HTML) then this allows you to browse the checked
                    393: # out files as if outside CVS.
                    394: $checkout_magic = 1;
                    395:
                    396: # Show last changelog message for sub directories
                    397: # The current implementation makes many assumptions and may show the
                    398: # incorrect file at some times. The main assumption is that the last
                    399: # modified file has the newest filedate. But some CVS operations
                    400: # touches the file without even when a new version is't checked in,
                    401: # and TAG based browsing essientially puts this out of order, unless
                    402: # the last checkin was on the same tag as you are viewing.
                    403: # Enable this if you like the feature, but don't rely on correct results.
                    404: $show_subdir_lastmod = 0;
                    405:
                    406: # Show CVS log when viewing file contents
                    407: $show_log_in_markup = 1;
                    408:
3.13      knu       409: # Preformat when viewing file contents.  This should be turned off
                    410: # when you have files in the repository that are in a multibyte
                    411: # encoding which uses HTML special characters ([<>&"]) as part of a
                    412: # multi-byte character. (such as iso-2022-jp, ShiftJIS, etc.)
                    413: # Otherwise those files will get screwed up in markup.
                    414: $preformat_in_markup = '';
                    415:
3.1       knu       416: # Tabstop used to expand tabs in colored diffs. If undefined then
                    417: # tabs are always expanded to 8 spaces.
                    418: $tabstop = 8;
                    419:
                    420: # if you wish to display absolute times in your local timezone,
                    421: # then define mytz and fill in the strings for your standard and
                    422: # daylight time. Note that you must also make sure the system
                    423: # timezone is correctly set.
                    424: # @mytz=("EST", "EDT");
                    425:
                    426: # cvsweb is friendly to caches by indicating a suitable
                    427: # last-modified timestamp. Doing this uses slightly more
                    428: # CPU so you might want to disable it if you have a slow
                    429: # server
                    430: $use_moddate = 1;
                    431:
3.12      knu       432: # Allows downloading a tarball of the current directory if set.
                    433: # Bear in mind that this allows downloading a tarball of your entire
                    434: # repository, which can take a lot of time and disk space to create!
                    435: # If you enable this, you may need to make sure that cvsweb can write to
                    436: # CVSROOT/val-tags, due to a bug in cvs.
                    437: $allow_tar = '';
3.42      scop      438:
                    439: # Allows graphical representations of file logs with CvsGraph if set.
                    440: $allow_cvsgraph = $CMD{cvsgraph} ? 1 : 0;
                    441:
3.45      scop      442: # Maximum number of filenames to pass to rlog(1) in one command.
                    443: # If you see "Failed to spawn GNU rlog" errors with directories containing
                    444: # lots of files, experiment by setting this to different values and see if
                    445: # the error still occurs.  A good value to start from would be eg. 200.
                    446: # Just comment this out if you're not bitten by the problem.
                    447: #$file_list_len = 200;
                    448:
3.42      scop      449: # Path to the CvsGraph configuration file.  Only used if $allow_cvsgraph
                    450: # is true.  Leave this empty or comment it out to make cvsgraph(1) use its
                    451: # default configuration file.
                    452: #$cvsgraph_config = "/etc/cvsgraph.conf";
3.13      knu       453:
                    454: # Options to pass to tar(1).
3.15      knu       455: @tar_options = qw();
3.26      knu       456:
3.13      knu       457: # e.g. @tar_options = qw(--ignore-failed-read);
                    458: #      GNU tar has some useful options against unexpected errors.
3.47      scop      459: #      Other useful options include "--owner=0" and "--group=0", see
                    460: #      the tar(1) (or gtar(1)) manpage for details.
3.13      knu       461:
3.19      knu       462: # Options to pass to gzip(1) when compressing a tarball to download.
                    463: @gzip_options = qw();
3.26      knu       464:
3.19      knu       465: # e.g. @gzip_options = qw(-3);
3.25      knu       466: #      Try lower compression level than 6 (default) if you want faster
                    467: #      compression, or higher, for better compression.
                    468:
                    469: # Options to pass to zip(1) when compressing a zip archive to download.
3.47      scop      470: @zip_options = qw(-q);
3.26      knu       471:
3.25      knu       472: # e.g. @zip_options = qw(-3);
3.19      knu       473: #      Try lower compression level than 6 (default) if you want faster
3.21      knu       474: #      compression, or higher, for better compression.
3.19      knu       475:
3.13      knu       476: # Options to pass to cvs(1).
3.37      scop      477: # For cvs versions prior to 1.11, the '-l' option doesn't work; If you want
                    478: # working checkouts with an older cvs version, you'll have to make sure that
                    479: # the cvsweb user can read and write to CVSROOT/history.
3.35      scop      480: @cvs_options = qw(-lf);
3.19      knu       481:
3.47      scop      482: push @cvs_options, '-R' if ($^O eq 'freebsd' || $^O eq 'openbsd');
                    483: push @cvs_options, '-u' if ($^O eq 'netbsd');
3.26      knu       484:
3.19      knu       485: #      Only FreeBSD's and OpenBSD's cvs(1) supports -R (read only access
                    486: #      mode) option, which considerably speeds up checkouts over NFS.
3.38      scop      487: #      A similar effect is provided by -u on NetBSD.
3.12      knu       488:
3.39      scop      489: # Options to pass to the 'cvs annotate' command, usually the normal
                    490: # @cvs_options are good enough here.
                    491: @annotate_options = @cvs_options;
                    492:
                    493: #      To make annotate work against a read only repository, add -n, e.g.:
                    494: #      @annotate_options = (@cvs_options, '-n');
3.48      scop      495:
                    496:
                    497: # Enables syntax highlighting using GNU Enscript if set.
                    498: # You will need GNU Enscript version 1.6.2 or newer for this to work.
                    499: #$allow_enscript = $CMD{enscript} ? 1 : 0;
                    500:
                    501: # Options to pass to enscript(1).
                    502: # Do not set the -q, --language, -o and --highlight options here.
                    503: # Most useful styles are probably emacs, emacs_verbose and msvc.
                    504: @enscript_options = qw(--style=emacs --color=1);
                    505:
                    506: # Enscript highlight rule to filename regex mappings.  The set of useful
                    507: # mappings depends on what highlight rules the system has installed.
                    508: %enscript_types =
                    509:   (
                    510:    'ada'          => qr/\.ad(s|b|a)$/o,
                    511:    'asm'          => qr/\.[Ss]$/o,
                    512:    'awk'          => qr/\.awk$/o,
                    513:    'bash'         => qr/\.(bash(_profile|rc)|inputrc)$/o,
                    514:    'c'            => qr/\.(c|h)$/o,
                    515:    'changelog'    => qr/^changelog$/io,
                    516:    'cpp'          => qr/\.(c\+\+|C|H|cpp|cc|cxx)$/o,
                    517:    'csh'          => qr/\.(csh(rc)?|log(in|out)|history)$/o,
                    518:    'elisp'        => qr/\.e(l|macs)$/o,
                    519:    'fortran'      => qr/\.[fF]$/o,
                    520:    'haskell'      => qr/\.(l?h|l?g)s$/o,
                    521:    'html'         => qr/\.x?html?$/o,
                    522:    'idl'          => qr/\.idl$/o,
                    523:    'inf'          => qr/\.inf$/io,
                    524:    'java'         => qr/\.java$/o,
                    525:    'javascript'   => qr/\.js$/o,
                    526:    'ksh'          => qr/\.ksh$/o,
                    527:    'm4'           => qr/\.m4$/o,
                    528:    'makefile'     => qr/((GNU)?[Mm]akefile.*|\.(ma?ke?|am)$)/o,
                    529:    'matlab'       => qr/\.m$/o,
                    530:    'nroff'        => qr/\.man$/o,
                    531:    'pascal'       => qr/\.p(as|p)?$/io,
                    532:    'perl'         => qr/\.p(m|(er?)l)$/io,
                    533:    'postscript'   => qr/\.e?ps$/io,
                    534:    'python'       => qr/\.py$/o,
                    535:    'rfc'          => qr/\b((rfc|draft)\..*\.txt)$/o,
                    536:    'scheme'       => qr/\.(scm|scheme)$/o,
                    537:    'sh'           => qr/\.sh$/o,
                    538:    'skill'        => qr/\.il$/o,
                    539:    'sql'          => qr/\.sql$/o,
                    540:    'states'       => qr/\.st$/o,
                    541:    'synopsys'     => qr/\.s(cr|yn(th)?)$/o,
                    542:    'tcl'          => qr/\.tcl$/o,
                    543:    'tcsh'         => qr/\.tcshrc$/o,
                    544:    'tex'          => qr/\.tex$/o,
                    545:    'vba'          => qr/\.vba$/o,
                    546:    'verilog'      => qr/\.(v|vh)$/o,
                    547:    'vhdl'         => qr/\.vhdl?$/o,
                    548:    'vrml'         => qr/\.wrl$/o,
                    549:    'wmlscript'    => qr/\.wmls(cript)?$/o,
                    550:    'zsh'          => qr/\.(zsh(env|rc)|z(profile|log(in|out)))$/o,
                    551:   );
3.39      scop      552:
3.12      knu       553: 1;
3.26      knu       554:
3.1       knu       555: #EOF

CVSweb