예제 #1
0
파일: ui.py 프로젝트: alexdelin/shorthand
def show_browse_page():
    server = ShorthandServer(current_app.config['config_path'])

    toc = server.get_toc()
    return render_template('browse.j2',
                           toc=json.dumps(toc),
                           static_content=static_content)
예제 #2
0
파일: api.py 프로젝트: alexdelin/shorthand
def get_toc_data():
    server = ShorthandServer(current_app.config['config_path'])
    return json.dumps(server.get_toc())