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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#!/usr/bin/env python
#
# doc-generator.py
#
# Generates HTML documentation from the parsed spec using Cheetah templates.
#
# Copyright (C) 2009 Collabora Ltd.
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or (at
# your option) any later version.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# Authors: Davyd Madeley <davyd.madeley@collabora.co.uk>
#
import sys
import os
import os.path
import shutil
try:
from Cheetah.Template import Template
except ImportError, e:
print >> sys.stderr, e
print >> sys.stderr, "Install `python-cheetah'?"
sys.exit(-1)
import specparser
# one day, OptionParser
allow_externals = False
if '--allow-externals' in sys.argv:
allow_externals = True
sys.argv.remove('--allow-externals')
program, spec_file, output_path, project, namespace = sys.argv
template_path = os.path.join(os.path.dirname(program), '../doc/templates')
# make the output path
try:
os.mkdir(output_path)
except OSError:
pass
# copy in the static files
static = [ 'style.css',
'jquery.min.js',
'ui-icons_222222_256x240.png',
'magic.js',
'favicon.png'
]
for s in static:
shutil.copy(os.path.join(template_path, s), output_path)
def load_template(filename):
try:
file = open(os.path.join(template_path, filename))
template_def = file.read()
file.close()
except IOError, e:
print >> sys.stderr, "Could not load template file `%s'" % filename
print >> sys.stderr, e
sys.exit(-1)
return template_def
spec = specparser.parse(spec_file, namespace, allow_externals=allow_externals)
# write out HTML files for each of the interfaces
# Not using render_template here to avoid recompiling it n times.
namespace = { 'spec': spec }
template_def = load_template('interface.html')
t = Template(template_def, namespaces = [namespace])
for interface in spec.interfaces:
namespace['interface'] = interface
# open the output file
out = open(os.path.join(output_path, '%s.html'
% interface.name_for_bindings), 'w')
print >> out, unicode(t).encode('utf-8')
out.close()
def render_template(name, namespaces, target=None):
if target is None:
target = name
namespace = { 'spec': spec }
template_def = load_template(name)
t = Template(template_def, namespaces=namespaces)
out = open(os.path.join(output_path, target), 'w')
print >> out, unicode(t).encode('utf-8')
out.close()
namespaces = { 'spec': spec }
if len(spec.generic_types) > 0:
render_template('generic-types.html', namespaces)
if len(spec.errors) > 0:
render_template('errors.html', namespaces)
render_template('interfaces.html', namespaces)
render_template('fullindex.html', namespaces)
dh_namespaces = { 'spec': spec, 'name': project }
render_template('devhelp.devhelp2', dh_namespaces,
target=('%s.devhelp2' % project))
# write out the TOC last, because this is the file used as the target in the
# Makefile.
render_template('index.html', namespaces)
|