コード例 #1
0
ファイル: references.py プロジェクト: pierrelux/mathnotes
def hints():
    return jsonify(zoteroapi.hints())
コード例 #2
0
ファイル: references.py プロジェクト: pierrelux/mathnotes
def typeahead_hints():
    hints = zoteroapi.hints()
    hints['items'] = map(to_typeahead, hints['items'])
    return jsonify(hints)