source: trunk/.svndigest/config @ 907

Last change on this file since 907 was 907, checked in by Peter Johansson, 14 years ago

Autoconf 2.63 is now required (closes #414).

refs #380. A first implementation of svndigest-copy-cache. It is is
written in M4sh. Autoconf compiles the source in
svndigest-copy-cache.as to svndigest-copy-cache.in, which in turn is
processed by config.status to replace some keywords such as PACKAGE
and friends. There is no docs and no test yet.

added *.as in config file

  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1### $Id: config 907 2009-11-29 15:33:19Z peter $
2### This file configures various behaviors for svndigest
3### The commented-out below are intended to demonstrate how to use
4### this file.
5
6### Section for setting behaviour of copyright update
7[copyright]
8# if true svndigest will warn if file has no copyright statement.
9missing-copyright-warning = no
10
11### Section for setting aliases used in copyright update
12[copyright-alias]
13# jdoe = John Doe
14jari = Jari Häkkinen
15peter = Peter Johansson
16
17### Section for author color in blame output
18[author-color]
19# jdoe = 000000
20jari = 0000aa
21peter = aa0000
22
23### Section for setting trac environment
24[trac]
25# If trac-root is set, svndigest will create anchors to the Trac page.
26# trac-root = http://dev.thep.lu.se/svndigest/
27trac-root = http://dev.thep.lu.se/svndigest/
28
29### Section for setting dictionary for file names.
30### Prior looking for file name pattern in section [parsing-codons],
31### the file name may be translated according to the rules
32### in this section. In default setting there is, for example,
33### a rule to translate `<FILENAME>.in' to `<FILENAME>'.
34### The format of the entries is:
35###    file-name-pattern = new-name
36### Left hand side may contain wildcards (such as '*' and '?').
37### Right hand side may contain "$i", which will be replaced
38### with the ith wild card in lhs string.
39[file-name-dictionary]
40*.in = $1
41
42### Section for setting parsing modes
43### The format of the entries is:
44###   file-name-pattern = "start-code" : "end-code"
45### The file-name-pattern may contain wildcards (such as '*' and '?').
46### String "\n" can be used for codons containing newline
47### character.
48[parsing-codons]
49*.ac = "#":"\n"  ;  "dnl":"\n"
50*.am = "#":"\n"
51*.m4 = "#":"\n"  ;  "dnl":"\n"
52*.as = "#":"\n"  ;  "dnl":"\n"
53*.c = "//":"\n"  ;  "/*":"*/"
54*.cc = "//":"\n"  ;  "/*":"*/"
55*.cpp = "//":"\n"  ;  "/*":"*/"
56*.cxx = "//":"\n"  ;  "/*":"*/"
57*.h = "//":"\n"  ;  "/*":"*/"
58*.hh = "//":"\n"  ;  "/*":"*/"
59*.hpp = "//":"\n"  ;  "/*":"*/"
60*.java = "//":"\n"  ;  "/*":"*/"
61*.pl = "#":"\n"
62*.pm = "#":"\n"
63*.sh = "#":"\n"
64*config = "#":"\n"
65bootstrap = "#":"\n"
66Makefile = "#":"\n"
67*.tex = "%":"\n"
68*.m = "%":"\n"
69*.jsp = "<!--":"-->"
70*.html = "<%--":"--%>"
71*.xml = "<!--":"-->"  ;  "<!--":"-->"
72*.xsl = "<!--":"-->"
73*.xsd = "<!--":"-->"
74*.xhtml = "<!--":"-->"
75*.shtml = "<!--":"-->"
76*.css = "<!--":"-->"
77*.rss = "<!--":"-->"
78*.sgml = "<!--":"-->"
79*.bat = "\nREM":"\n"  ;  "\nrem":"\n"
Note: See TracBrowser for help on using the repository browser.