-
Notifications
You must be signed in to change notification settings - Fork 5
/
synopsis.py.in
25 lines (21 loc) · 877 Bytes
/
synopsis.py.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Synopsis configuration file for Fresco
from Synopsis.Config import Base
top_srcdir = '@top_srcdir@'
class Config(Base):
class Formatter(Base.Formatter):
class SXR(Base.Formatter.HTML):
stylesheet = 'manual.css'
pages=['DirBrowse', 'FilePages', 'XRefPages']
toc_out = 'sxrPrague.toc'
file_layout = 'Synopsis.Formatter.HTML.FileLayout.NestedFileLayout'
default_toc = 'XRefPages'
base_dir = top_srcdir
start_dir = top_srcdir
exclude_globs = ['CVS', '.cvsignore', 'autom4te.cache']
class XRefPages:
xref_file = 'data.xref'
class FilePages (Base.Formatter.HTML.FilePages):
toc_from = 'XRefPages'
file_path = top_srcdir+'/%s'
links_path = 'sxr_data/%s'
modules = {'SXR' : SXR}