1 | ### $Id: config 515 2007-12-09 02:38:34Z 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 aliases used in copyright update |
---|
7 | [copyright-alias] |
---|
8 | # jdoe = John Doe |
---|
9 | jari = Jari Häkkinen |
---|
10 | peter = Peter Johansson |
---|
11 | |
---|
12 | ### Section for setting trac environment |
---|
13 | [trac] |
---|
14 | # If trac-root is set, svndigest will create anchors to the Trac page. |
---|
15 | # trac-root = http://trac.thep.lu.se/trac/svndigest/ |
---|
16 | trac-root = http://trac.thep.lu.se/trac/svndigest/ |
---|
17 | |
---|
18 | ### Section for setting dictionary for file names. |
---|
19 | ### Prior looking for file name pattern in section [codon], |
---|
20 | ### the file name may be translated according to the rules |
---|
21 | ### in this section. In default setting there is, for example, |
---|
22 | ### a rule to translate `<FILENAME>.in' to `<FILENAME>'. |
---|
23 | ### The format of the entries is: |
---|
24 | ### file-name-pattern = new-name |
---|
25 | ### Left hand side may contain wildcards (such as '*' and '?'). |
---|
26 | ### Right hand side may contain "$i", which will be replaced |
---|
27 | ### with the ith wild card in lhs string. |
---|
28 | [file-name-dictionary] |
---|
29 | *.in = $1 |
---|
30 | |
---|
31 | ### Section for setting parsing modes |
---|
32 | ### The format of the entries is: |
---|
33 | ### file-name-pattern = start-code : end-code |
---|
34 | ### The file-name-pattern may contain wildcards (such as '*' and '?'). |
---|
35 | ### String "<NEWLINE>" can be used for codons containing newline |
---|
36 | ### character: '\n' |
---|
37 | [parsing-codons] |
---|
38 | *.ac = # : <NEWLINE> ; dnl : <NEWLINE> |
---|
39 | *.am = # : <NEWLINE> ; dnl : <NEWLINE> |
---|
40 | *.m4 = # : <NEWLINE> ; dnl : <NEWLINE> |
---|
41 | *.c = // : <NEWLINE> ; /* : */ |
---|
42 | *.cc = // : <NEWLINE> ; /* : */ |
---|
43 | *.cpp = // : <NEWLINE> ; /* : */ |
---|
44 | *.cxx = // : <NEWLINE> ; /* : */ |
---|
45 | *.h = // : <NEWLINE> ; /* : */ |
---|
46 | *.hh = // : <NEWLINE> ; /* : */ |
---|
47 | *.hpp = // : <NEWLINE> ; /* : */ |
---|
48 | *.java = // : <NEWLINE> ; /* : */ |
---|
49 | *.pl = # : <NEWLINE> |
---|
50 | *.pm = # : <NEWLINE> |
---|
51 | *.sh = # : <NEWLINE> |
---|
52 | *config = # : <NEWLINE> |
---|
53 | bootstrap = # : <NEWLINE> |
---|
54 | Makefile = # : <NEWLINE> |
---|
55 | *.tex = % : <NEWLINE> |
---|
56 | *.m = % : <NEWLINE> |
---|
57 | *.jsp = <!-- : --> |
---|
58 | *.html = <%-- : --%> |
---|
59 | *.xml = <!-- : --> ; <!-- : --> |
---|
60 | *.xsl = <!-- : --> |
---|
61 | *.xsd = <!-- : --> |
---|
62 | *.xhtml = <!-- : --> |
---|
63 | *.shtml = <!-- : --> |
---|
64 | *.css = <!-- : --> |
---|
65 | *.rss = <!-- : --> |
---|
66 | *.sgml = <!-- : --> |
---|
67 | *.bat = <NEWLINE>REM : <NEWLINE> ; <NEWLINE>rem : <NEWLINE> |
---|