source: .svndigest/config @ 976

Last change on this file since 976 was 687, checked in by Jari Häkkinen, 15 years ago

Recovering svndigest config file.

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