/[navidoc]/navidoc/config.py
ViewVC logotype

Diff of /navidoc/config.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.32 by humppake, Fri May 23 13:41:40 2003 UTC revision 1.33 by humppake, Fri May 23 13:42:06 2003 UTC
# Line 29  import os, navidoc.util.debug Line 29  import os, navidoc.util.debug
29    
30  #Environmental variable MPINPUTS should be relative to tmpdir,  #Environmental variable MPINPUTS should be relative to tmpdir,
31  #or be an absolute path.  #or be an absolute path.
32  os.putenv("MPINPUTS", "../../navidoc/navidoc/mp/")  os.putenv("MPINPUTS", "../navidoc/mp/")
33    
34    # base_url
35    base_rul = 'http://fenfire.org/'
36    
37  # midfix for generated files  # midfix for generated files
38  # don't change this, if you don't know what you are doing :)  # don't change this, if you don't know what you are doing :)
39  midfix = ''  midfix = ".gen"
   
 # base_url  
 base_url = 'http://himalia.it.jyu.fi/2003/seminars/nörtti/'  
 papers_directory = 'papers'  
40    
41  # settings for metapost  # global settings needed all around
42  mp_directory = '../nortti03/diagrams'  mp_directory = 'diagrams'
43  mp_generate = 1  mp_generate = 1
44  mp_eps_only = 0  mp_eps_only = 0
45  mp_context_menu = 1  mp_context_menu = 1
46    
 # settings for linking javadoc  
 # the search order is ascending, sudden death  
 linkpackages = {} # holder of packagenames, will members will be cleaned after every diagram  
 javadoc_directories = []  
 link_redirection = {}  
 docxx_directories = []  
   
47  # initializing dynamic settings  # initializing dynamic settings
48  # should be kept up-to-date in code  # should be kept up-to-date in code
49  # always when compiling ReST or diagrams  # always when compiling ReST or diagrams
# Line 60  input_filename = '' Line 52  input_filename = ''
52  output_filename = ''  output_filename = ''
53  link_base_directory = None # if different than working_directory  link_base_directory = None # if different than working_directory
54    
55    # settings for linking javadoc
56    # the search order is ascending, sudden death
57    linkpackages = {} # holder of packagenames, will members will be cleaned after every diagram
58    javadoc_directories = ['../libvob/doc/javadoc',
59                           '../storm/doc/javadoc',
60                           '../ffdoc/alph/doc/javadoc',
61                           '../fenfire/docs/javadoc',
62                           '../loom/doc/javadoc',
63                           '../navidoc/doc/javadoc'
64                           ]
65    link_redirection = {'navidoc': '../navidoc/doc',
66                        'libvob': '../libvob/doc',
67                        'storm': '../storm/doc',
68                        'alph': '../alph/doc',
69                        'fenfire': '../fenfire/docs',
70                        'loom': '../loom/doc',
71                        }
72    docxx_directories = ['../libvob/doc/docxx',
73                         '../storm/doc/docxx',
74                         '../alph/doc/docxx',
75                         '../fenfire/docs/docxx',
76                         '../loom/doc/docxx',
77                         '../navidoc/doc/docxx',
78                         ]
79    
80  # general debug filter  # general debug filter
81  dbg = navidoc.util.debug.DebugFilter()  dbg = navidoc.util.debug.DebugFilter()
82    
# Line 67  dbg = navidoc.util.debug.DebugFilter() Line 84  dbg = navidoc.util.debug.DebugFilter()
84  docutils = "./docutils.conf"  docutils = "./docutils.conf"
85    
86  # pegs will be sorted after their priority  # pegs will be sorted after their priority
87  pegboard_priorities = {}  pegboard_priorities = {'Current': 1,
88                           'Revising': 2,
89                           'Incomplete': 3,
90                           'Undefined': 4,
91                           'Accepted': 5,
92                           'Implemented': 6,
93                           'Rejected': 7,
94                           'Irrelevant': 8,
95                           }
96    
97  # authors and stakeholders to replace with nicknames  # authors and stakeholders to replace with nicknames
98  pegboard_authors = {}  pegboard_authors = {'Tuomas Lukka': 'tjl',
99                        'Tuomas J. Lukka': 'tjl',
100                        'Benja Fallenstein': 'benja',
101                        'Benja': 'benja',
102                        'Asko Soukka': 'humppake',
103                        'Matti Katila': 'mudyc',
104                        'Anton Feldmann': 'anton',
105                        'Tero Mäyränen': 'deetsay',
106                        'Marc Schiereck': 'dreevich',
107                        'Hermanni Hyytiälä': 'hemppah',
108                        'Antti_Juhani Kaijanaho': 'ibid',
109                        'Janne V. Kujala': 'jvk',
110                        'Janne Kujala': 'jvk',
111                        'Tuukka Hastrup': 'tuukkah',
112                        'Vesa Kaihlavirta': 'vegai',
113                        }
114    
115  # status for pegs without rst or with failing rst  # status for pegs without rst or with failing rst
116  pegboard_undefined = ''  pegboard_undefined = 'Undefined'

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26