示例#1
0
def analyze(foreign_id=None):
    """Re-analyze documents in the given source (or throughout)."""
    if foreign_id:
        source = Source.by_foreign_id(foreign_id)
        if source is None:
            raise ValueError("No such source: %r" % foreign_id)
        analyze_source.delay(source.id)
    else:
        for source in Source.all():
            analyze_source.delay(source.id)
示例#2
0
文件: manage.py 项目: andkamau/aleph
def analyze(foreign_id=None):
    """Re-analyze documents in the given source (or throughout)."""
    if foreign_id:
        source = Source.by_foreign_id(foreign_id)
        if source is None:
            raise ValueError("No such source: %r" % foreign_id)
        analyze_source.delay(source.id)
    else:
        for source in Source.all():
            analyze_source.delay(source.id)
示例#3
0
def sources():
    """List all sources."""
    for source in Source.all():
        print source.id, source.foreign_id, source.label
示例#4
0
文件: manage.py 项目: andkamau/aleph
def sources():
    """List all sources."""
    for source in Source.all():
        print source.id, source.foreign_id, source.label
示例#5
0
def index():
    pager = Pager(Source.all(ids=authz.sources(authz.READ)))
    return jsonify(pager)