X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-documentation.py;h=1a66689371506fc59d0c4c180bb28e5af8757914;hb=aeca29acb29d62c57663786dd8b9eba7fcc959a6;hp=0614bef2694d993fd88ea4d216f4ae48a4baee78;hpb=47e07d0898e6edc0f21a137167276a083b1d9c8f;p=dygraphs.git diff --git a/generate-documentation.py b/generate-documentation.py index 0614bef..1a66689 100755 --- a/generate-documentation.py +++ b/generate-documentation.py @@ -2,8 +2,9 @@ # Generate docs/options.html -import json import glob +import json +import os import re import sys @@ -30,6 +31,7 @@ docs = json.loads(js) # Go through the tests and find uses of each option. for opt in docs: docs[opt]['tests'] = [] + docs[opt]['gallery'] = [] # This is helpful for differentiating uses of options like 'width' and 'height' # from appearances of identically-named options in CSS. @@ -47,20 +49,32 @@ def find_braces(txt): level -= 1 return out -# Find text followed by a colon. These won't all be options, but those that -# have the same name as a Dygraph option probably will be. -prop_re = re.compile(r'\b([a-zA-Z0-9]+) *:') -tests = debug_tests or glob.glob('tests/*.html') -for test_file in tests: - braced_html = find_braces(file(test_file).read()) - if debug_tests: - print braced_html - - ms = re.findall(prop_re, braced_html) - for opt in ms: - if debug_tests: print '\n'.join(ms) - if opt in docs and test_file not in docs[opt]['tests']: - docs[opt]['tests'].append(test_file) +def search_files(type, files): + # Find text followed by a colon. These won't all be options, but those that + # have the same name as a Dygraph option probably will be. + prop_re = re.compile(r'\b([a-zA-Z0-9]+) *:') + for test_file in files: + if os.path.isfile(test_file): # Basically skips directories + text = file(test_file).read() + + # Hack for slipping past gallery demos that have title in their attributes + # so they don't appear as reasons for the demo to have 'title' options. + if type == "gallery": + idx = text.find("function(") + if idx >= 0: + text = text[idx:] + braced_html = find_braces(text) + if debug_tests: + print braced_html + + ms = re.findall(prop_re, braced_html) + for opt in ms: + if debug_tests: print '\n'.join(ms) + if opt in docs and test_file not in docs[opt][type]: + docs[opt][type].append(test_file) + +search_files("tests", glob.glob("tests/*.html")) +search_files("gallery", glob.glob("gallery/*.js")) #TODO add grep "Gallery.register\(" if debug_tests: sys.exit(0) @@ -110,10 +124,6 @@ for label in sorted(labels): print '
  • %s\n' % (label, label) print '\n\n\n' -def name(f): - """Takes 'tests/demo.html' -> 'demo'""" - return f.replace('tests/', '').replace('.html', '') - print """

    Options Reference

    @@ -138,6 +148,20 @@ print """

    And, without further ado, here's the complete list of options:

    """ + +def test_name(f): + """Takes 'tests/demo.html' -> 'demo'""" + return f.replace('tests/', '').replace('.html', '') + +def gallery_name(f): + """Takes 'gallery/demo.js' -> 'demo'""" + return f.replace('gallery/', '').replace('.js', '') + +def urlify_gallery(f): + """Takes 'gallery/demo.js' -> 'demo'""" + return f.replace('gallery/', 'gallery/#g/').replace('.js', '') + + for label in sorted(labels): print '

    %s

    \n' % (label, label) @@ -149,7 +173,14 @@ for label in sorted(labels): examples_html = 'NONE' else: examples_html = ' '.join( - '
    %s' % (f, name(f)) for f in tests) + '%s' % (f, test_name(f)) for f in tests) + + gallery = opt['gallery'] + if not gallery: + gallery_html = 'NONE' + else: + gallery_html = ' '.join( + '%s' % (urlify_gallery(f), gallery_name(f)) for f in gallery) if 'parameters' in opt: parameters = opt['parameters'] @@ -164,17 +195,19 @@ for label in sorted(labels): print """
    %(name)s
    - %(desc)s
    +

    %(desc)s

    Type: %(type)s
    %(parameters)s - Default: %(default)s
    - Examples: %(examples_html)s
    + Default: %(default)s

    + Gallery Samples: %(gallery_html)s
    + Other Examples: %(examples_html)s

    """ % { 'name': opt_name, 'type': opt['type'], 'parameters': parameters_html, 'default': opt['default'], 'desc': opt['description'], - 'examples_html': examples_html} + 'examples_html': examples_html, + 'gallery_html': gallery_html} print """