コード例 #1
0
ファイル: timekp.py プロジェクト: reader1000/timekeeper
def list_job_ids():
    """Parses list argument and fires the list categories action"""
    joblist = backend.list_all_jobs_ids()
    tkutil.print_job_ids(joblist)
コード例 #2
0
ファイル: timekp.py プロジェクト: reader1000/timekeeper
def search_job_ids(search_words):
    """Parses search arguments and fires the search job category action"""
    joblist = backend.search_jobs_for_ids(search_words)
    tkutil.print_job_ids(joblist)
コード例 #3
0
ファイル: timekp.py プロジェクト: reader1000/timekeeper
def search_job_ids(search_words):
    """Parses search arguments and fires the search job category action"""
    joblist = backend.search_jobs_for_ids(search_words)
    tkutil.print_job_ids(joblist)
コード例 #4
0
ファイル: timekp.py プロジェクト: reader1000/timekeeper
def list_job_ids():
    """Parses list argument and fires the list categories action"""
    joblist = backend.list_all_jobs_ids()
    tkutil.print_job_ids(joblist)