Custom circle tweaks:
[dygraphs.git] / generate-documentation.py
CommitLineData
db071c3e 1#!/usr/bin/env python
ea910bfa
RK
2
3# Generate docs/options.html
4
0e37f8e5
DV
5import json
6import glob
7import re
d1d19c3e
DV
8import sys
9
10# Set this to the path to a test file to get debug output for just that test
11# file. Can be helpful to figure out why a test is not being shown for a
12# particular option.
13debug_tests = [] # [ 'tests/zoom.html' ]
0e37f8e5 14
88b1e052 15# Pull options reference JSON out of dygraph.js
0e37f8e5
DV
16js = ''
17in_json = False
730852d8 18for line in file('dygraph-options-reference.js'):
0e37f8e5
DV
19 if '<JSON>' in line:
20 in_json = True
21 elif '</JSON>' in line:
22 in_json = False
23 elif in_json:
49302d65
RK
24 if line.endswith("\\\n"): # hacked in line continuation support with trailing \.
25 line = line[:-2]
0e37f8e5
DV
26 js += line
27
28# TODO(danvk): better errors here.
29assert js
30docs = json.loads(js)
31
32# Go through the tests and find uses of each option.
33for opt in docs:
34 docs[opt]['tests'] = []
35
88b1e052
DV
36# This is helpful for differentiating uses of options like 'width' and 'height'
37# from appearances of identically-named options in CSS.
0e37f8e5
DV
38def find_braces(txt):
39 """Really primitive method to find text inside of {..} braces.
40 Doesn't work if there's an unmatched brace in a string, e.g. '{'. """
41 out = ''
42 level = 0
43 for char in txt:
44 if char == '{':
45 level += 1
46 if level >= 1:
47 out += char
48 if char == '}':
49 level -= 1
50 return out
51
88b1e052
DV
52# Find text followed by a colon. These won't all be options, but those that
53# have the same name as a Dygraph option probably will be.
d1d19c3e
DV
54prop_re = re.compile(r'\b([a-zA-Z0-9]+) *:')
55tests = debug_tests or glob.glob('tests/*.html')
56for test_file in tests:
0e37f8e5 57 braced_html = find_braces(file(test_file).read())
d1d19c3e
DV
58 if debug_tests:
59 print braced_html
60
0e37f8e5
DV
61 ms = re.findall(prop_re, braced_html)
62 for opt in ms:
d1d19c3e 63 if debug_tests: print '\n'.join(ms)
0e37f8e5
DV
64 if opt in docs and test_file not in docs[opt]['tests']:
65 docs[opt]['tests'].append(test_file)
66
d1d19c3e
DV
67if debug_tests: sys.exit(0)
68
a38e9336
DV
69# Extract a labels list.
70labels = []
71for nu, opt in docs.iteritems():
72 for label in opt['labels']:
73 if label not in labels:
74 labels.append(label)
75
b5bdd85b 76print """<!DOCTYPE HTML>
a38e9336
DV
77<html>
78<head>
79 <title>Dygraphs Options Reference</title>
5af2de24 80 <link rel="stylesheet" href="style.css">
a38e9336
DV
81 <style type="text/css">
82 p.option {
83 padding-left: 25px;
5af2de24 84 }
b5bdd85b
RK
85 div.parameters {
86 padding-left: 15px;
87 }
5af2de24
DV
88 #nav {
89 position: fixed;
90 }
91 #content {
a38e9336
DV
92 max-width: 800px;
93 }
94 </style>
95</head>
96<body>
97"""
98
5af2de24 99print """
b5bdd85b 100<div id='nav'>
5af2de24
DV
101<h2>Dygraphs</h2>
102<ul>
103 <li><a href="index.html">Home</a>
104 <li><a href="data.html">Data Formats</a></li>
105 <li><a href="annotations.html">Annotations</a></li>
106</ul>
107<h2>Options Reference</h2>
108<ul>
109 <li><a href="#usage">Usage</a>
110"""
a38e9336
DV
111for label in sorted(labels):
112 print ' <li><a href="#%s">%s</a>\n' % (label, label)
5af2de24 113print '</ul>\n</div>\n\n'
a38e9336 114
0e37f8e5 115def name(f):
88b1e052 116 """Takes 'tests/demo.html' -> 'demo'"""
0e37f8e5
DV
117 return f.replace('tests/', '').replace('.html', '')
118
5af2de24 119print """
b5bdd85b 120<div id='content'>
5af2de24
DV
121<h2>Options Reference</h2>
122<p>Dygraphs tries to do a good job of displaying your data without any further configuration. But inevitably, you're going to want to tinker. Dygraphs provides a rich set of options for configuring its display and behavior.</p>
123
b5bdd85b
RK
124<a name="usage"></a><h3>Usage</h3>
125<p>You specify options in the third parameter to the dygraphs constructor:</p>
5af2de24
DV
126<pre>g = new Dygraph(div,
127 data,
128 {
129 option1: value1,
130 option2: value2,
131 ...
132 });
133</pre>
134
b5bdd85b 135<p>After you've created a Dygraph, you can change an option by calling the <code>updateOptions</code> method:</p>
5af2de24
DV
136<pre>g.updateOptions({
137 new_option1: value1,
138 new_option2: value2
139 });
140</pre>
5af2de24
DV
141<p>And, without further ado, here's the complete list of options:</p>
142"""
a38e9336 143for label in sorted(labels):
5af2de24 144 print '<a name="%s"><h3>%s</h3>\n' % (label, label)
a38e9336
DV
145
146 for opt_name in sorted(docs.keys()):
147 opt = docs[opt_name]
148 if label not in opt['labels']: continue
149 tests = opt['tests']
150 if not tests:
151 examples_html = '<font color=red>NONE</font>'
152 else:
153 examples_html = ' '.join(
154 '<a href="%s">%s</a>' % (f, name(f)) for f in tests)
155
b5bdd85b
RK
156 if 'parameters' in opt:
157 parameters = opt['parameters']
158 parameters_html = '\n'.join("<i>%s</i>: %s<br/>" % (p[0], p[1]) for p in parameters)
159 parameters_html = "\n <div class='parameters'>\n%s</div>" % (parameters_html);
160 else:
161 parameters_html = ''
162
5af2de24
DV
163 if not opt['type']: opt['type'] = '(missing)'
164 if not opt['default']: opt['default'] = '(missing)'
165 if not opt['description']: opt['description'] = '(missing)'
166
a38e9336 167 print """
b5bdd85b 168 <div class='option'><a name="%(name)s"></a><b>%(name)s</b><br/>
a38e9336 169 %(desc)s<br/>
b5bdd85b
RK
170 <i>Type: %(type)s</i><br/>%(parameters)s
171 <i>Default: %(default)s</i><br/>
a38e9336 172 Examples: %(examples_html)s<br/>
b5bdd85b 173 <br/></div>
a38e9336
DV
174 """ % { 'name': opt_name,
175 'type': opt['type'],
b5bdd85b 176 'parameters': parameters_html,
a38e9336
DV
177 'default': opt['default'],
178 'desc': opt['description'],
179 'examples_html': examples_html}
0e37f8e5 180
0e37f8e5 181
5af2de24 182print """
b5bdd85b
RK
183<a name="point_properties"></a><h3>Point Properties</h3>
184Some callbacks take a point argument. Its properties are:<br/>
185<ul>
186<li>xval/yval: The data coordinates of the point (with dates/times as millis since epoch)</li>
187<li>canvasx/canvasy: The canvas coordinates at which the point is drawn.</li>
188<li>name: The name of the data series to which the point belongs</li>
189</ul>
5af2de24
DV
190</div>
191</body>
192</html>
193"""
194
a38e9336
DV
195# This page was super-helpful:
196# http://jsbeautifier.org/