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

Diff of /navidoc/config.py

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

revision 1.29 by humppake, Thu May 22 14:17:25 2003 UTC revision 1.30 by humppake, Fri May 23 08:35:54 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://www.nongnu.org/navidoc/'  
 papers_directory = 'papers'  
40    
41  # settings for metapost  # global settings needed all around
42  mp_directory = '../non-gnu/navidoc/diagrams'  mp_directory = 'diagrams'
43  mp_generate = 1  mp_generate = 1
44  mp_eps_only = 0  mp_eps_only = 0
45  mp_context_menu = 0  mp_context_menu = 1
46    mp_clip_rough_edges = 1
 # 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    
48  # initializing dynamic settings  # initializing dynamic settings
49  # should be kept up-to-date in code  # should be kept up-to-date in code
# Line 60  input_filename = '' Line 53  input_filename = ''
53  output_filename = ''  output_filename = ''
54  link_base_directory = None # if different than working_directory  link_base_directory = None # if different than working_directory
55    
56    # settings for linking javadoc
57    # the search order is ascending, sudden death
58    linkpackages = {} # holder of packagenames, will members will be cleaned after every diagram
59    javadoc_directories = ['../libvob/doc/javadoc',
60                           '../storm/doc/javadoc',
61                           '../ffdoc/alph/doc/javadoc',
62                           '../fenfire/docs/javadoc',
63                           '../loom/doc/javadoc',
64                           '../navidoc/doc/javadoc'
65                           ]
66    link_redirection = {'navidoc': '../navidoc/doc',
67                        'libvob': '../libvob/doc',
68                        'storm': '../storm/doc',
69                        'alph': '../alph/doc',
70                        'fenfire': '../fenfire/docs',
71                        'loom': '../loom/doc',
72                        }
73    docxx_directories = ['../libvob/doc/docxx',
74                         '../storm/doc/docxx',
75                         '../alph/doc/docxx',
76                         '../fenfire/docs/docxx',
77                         '../loom/doc/docxx',
78                         '../navidoc/doc/docxx',
79                         ]
80    
81  # general debug filter  # general debug filter
82  dbg = navidoc.util.debug.DebugFilter()  dbg = navidoc.util.debug.DebugFilter()
83    
# Line 67  dbg = navidoc.util.debug.DebugFilter() Line 85  dbg = navidoc.util.debug.DebugFilter()
85  docutils = "./docutils.conf"  docutils = "./docutils.conf"
86    
87  # pegs will be sorted after their priority  # pegs will be sorted after their priority
88  pegboard_priorities = {}  pegboard_priorities = {'Current': 1,
89                           'Revising': 2,
90                           'Incomplete': 3,
91                           'Undefined': 4,
92                           'Accepted': 5,
93                           'Implemented': 6,
94                           'Rejected': 7,
95                           'Irrelevant': 8,
96                           }
97    
98  # authors and stakeholders to replace with nicknames  # authors and stakeholders to replace with nicknames
99  pegboard_authors = {}  pegboard_authors = {'Tuomas Lukka': 'tjl',
100                        'Tuomas J. Lukka': 'tjl',
101                        'Benja Fallenstein': 'benja',
102                        'Benja': 'benja',
103                        'Asko Soukka': 'humppake',
104                        'Matti Katila': 'mudyc',
105                        'Anton Feldmann': 'anton',
106                        'Tero Mäyränen': 'deetsay',
107                        'Marc Schiereck': 'dreevich',
108                        'Hermanni Hyytiälä': 'hemppah',
109                        'Antti_Juhani Kaijanaho': 'ibid',
110                        'Janne V. Kujala': 'jvk',
111                        'Janne Kujala': 'jvk',
112                        'Tuukka Hastrup': 'tuukkah',
113                        'Vesa Kaihlavirta': 'vegai',
114                        }
115    
116  # status for pegs without rst or with failing rst  # status for pegs without rst or with failing rst
117  pegboard_undefined = ''  pegboard_undefined = 'Undefined'

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30

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