1 | ### $Id: config 1373 2011-06-09 10:26:15Z jari $$ |
---|
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 | dominic = Dominic Oyeniran |
---|
10 | enell = Johan Enell |
---|
11 | jari = Jari Häkkinen |
---|
12 | martin = Martin Svensson |
---|
13 | mattias = Mattias Ohlsson |
---|
14 | mbayer = Micha Bayer |
---|
15 | nicklas = Nicklas Nordborg |
---|
16 | peter = Peter Johansson |
---|
17 | |
---|
18 | ### Section for overriding svn properties. |
---|
19 | ### The format is the same as for section auto-props in subversion |
---|
20 | ### config file |
---|
21 | [svn-props] |
---|
22 | # COPYING = svndigest:ignore |
---|
23 | tags = svndigest:ignore |
---|
24 | |
---|
25 | ### Section for setting trac environment |
---|
26 | [trac] |
---|
27 | # If trac-root is set, svndigest will create anchors to the Trac page. |
---|
28 | # trac-root = http://trac.thep.lu.se/svndigest/ |
---|
29 | trac-root = http://baseplugins.thep.lu.se/ |
---|
30 | |
---|
31 | ### Section for setting dictionary for file names. |
---|
32 | ### Prior looking for file name pattern in section [codon], |
---|
33 | ### the file name may be translated according to the rules |
---|
34 | ### in this section. In default setting there is, for example, |
---|
35 | ### a rule to translate `<FILENAME>.in' to `<FILENAME>'. |
---|
36 | ### The format of the entries is: |
---|
37 | ### file-name-pattern = new-name |
---|
38 | ### Left hand side may contain wildcards (such as '*' and '?'). |
---|
39 | ### Right hand side may contain "$i", which will be replaced |
---|
40 | ### with the ith wild card in lhs string. |
---|
41 | [file-name-dictionary] |
---|
42 | *.in = $1 |
---|
43 | |
---|
44 | ### Section for setting parsing modes |
---|
45 | ### The format of the entries is: |
---|
46 | ### file-name-pattern = "start-code" : "end-code" |
---|
47 | ### The file-name-pattern may contain wildcards (such as '*' and '?'). |
---|
48 | ### String "\n" can be used for codons containing newline |
---|
49 | ### character. |
---|
50 | [parsing-codons] |
---|
51 | *.ac = "#":"\n" ; "dnl":"\n" |
---|
52 | *.am = "#":"\n" ; "dnl":"\n" |
---|
53 | *.m4 = "#":"\n" ; "dnl":"\n" |
---|
54 | *.c = "//":"\n" ; "/*":"*/" |
---|
55 | *.cc = "//":"\n" ; "/*":"*/" |
---|
56 | *.cpp = "//":"\n" ; "/*":"*/" |
---|
57 | *.cxx = "//":"\n" ; "/*":"*/" |
---|
58 | *.h = "//":"\n" ; "/*":"*/" |
---|
59 | *.hh = "//":"\n" ; "/*":"*/" |
---|
60 | *.hpp = "//":"\n" ; "/*":"*/" |
---|
61 | *.java = "//":"\n" ; "/*":"*/" |
---|
62 | *.pl = "#":"\n" |
---|
63 | *.pm = "#":"\n" |
---|
64 | *.sh = "#":"\n" |
---|
65 | *config = "#":"\n" |
---|
66 | bootstrap = "#":"\n" |
---|
67 | Makefile = "#":"\n" |
---|
68 | *.tex = "%":"\n" |
---|
69 | *.m = "%":"\n" |
---|
70 | *.jsp = "<!--":"-->" |
---|
71 | *.html = "<%--":"--%>" |
---|
72 | *.xml = "<!--":"-->" ; "<!--":"-->" |
---|
73 | *.xsl = "<!--":"-->" |
---|
74 | *.xsd = "<!--":"-->" |
---|
75 | *.xhtml = "<!--":"-->" |
---|
76 | *.shtml = "<!--":"-->" |
---|
77 | *.css = "<!--":"-->" |
---|
78 | *.rss = "<!--":"-->" |
---|
79 | *.sgml = "<!--":"-->" |
---|
80 | *.bat = "\nREM":"\n" ; "\nrem":"\n" |
---|