source: .svndigest/config

Last change on this file was 3113, checked in by Jari Häkkinen, 8 years ago

Make svndigest ignore branches directory structure

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1### $Id: config 3113 2015-02-04 17:23:52Z 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 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
23tags = svndigest:ignore
24branches = svndigest:ignore
25
26### Section for setting trac environment
27[trac]
28# If trac-root is set, svndigest will create anchors to the Trac page.
29# trac-root = http://trac.thep.lu.se/svndigest/
30trac-root = http://baseplugins.thep.lu.se/
31
32### Section for setting dictionary for file names.
33### Prior looking for file name pattern in section [codon],
34### the file name may be translated according to the rules
35### in this section. In default setting there is, for example,
36### a rule to translate `<FILENAME>.in' to `<FILENAME>'.
37### The format of the entries is:
38###    file-name-pattern = new-name
39### Left hand side may contain wildcards (such as '*' and '?').
40### Right hand side may contain "$i", which will be replaced
41### with the ith wild card in lhs string.
42[file-name-dictionary]
43*.in = $1
44
45### Section for setting parsing modes
46### The format of the entries is:
47###   file-name-pattern = "start-code" : "end-code"
48### The file-name-pattern may contain wildcards (such as '*' and '?').
49### String "\n" can be used for codons containing newline
50### character.
51[parsing-codons]
52*.ac = "#":"\n"  ;  "dnl":"\n"
53*.am = "#":"\n"  ;  "dnl":"\n"
54*.m4 = "#":"\n"  ;  "dnl":"\n"
55*.c = "//":"\n"  ;  "/*":"*/"
56*.cc = "//":"\n"  ;  "/*":"*/"
57*.cpp = "//":"\n"  ;  "/*":"*/"
58*.cxx = "//":"\n"  ;  "/*":"*/"
59*.h = "//":"\n"  ;  "/*":"*/"
60*.hh = "//":"\n"  ;  "/*":"*/"
61*.hpp = "//":"\n"  ;  "/*":"*/"
62*.java = "//":"\n"  ;  "/*":"*/"
63*.pl = "#":"\n"
64*.pm = "#":"\n"
65*.sh = "#":"\n"
66*config = "#":"\n"
67bootstrap = "#":"\n"
68Makefile = "#":"\n"
69*.tex = "%":"\n"
70*.m = "%":"\n"
71*.jsp = "<!--":"-->"
72*.html = "<%--":"--%>"
73*.xml = "<!--":"-->"  ;  "<!--":"-->"
74*.xsl = "<!--":"-->"
75*.xsd = "<!--":"-->"
76*.xhtml = "<!--":"-->"
77*.shtml = "<!--":"-->"
78*.css = "<!--":"-->"
79*.rss = "<!--":"-->"
80*.sgml = "<!--":"-->"
81*.bat = "\nREM":"\n"  ;  "\nrem":"\n"
Note: See TracBrowser for help on using the repository browser.