コード例 #1
0
ファイル: commands.py プロジェクト: pombredanne/wajig
def newdetail(args):
    """Display detailed descriptions of newly-available packages

    This produces the same output as 'wajig new --verbose'"""
    util.newly_available(verbose=True)
コード例 #2
0
ファイル: commands.py プロジェクト: pombredanne/wajig
def new(args):
    """Display newly-available packages"""
    util.newly_available(args.verbose)
コード例 #3
0
ファイル: commands.py プロジェクト: pombredanne/wajig
def describenew(args):
    """Display one-line descriptions of newly-available packages

    This produces the same output as 'wajig new'"""
    util.newly_available()
コード例 #4
0
ファイル: commands.py プロジェクト: timonegk/wajig
def newdetail(args):
    """Display detailed descriptions of newly-available packages

    This produces the same output as 'wajig new --verbose'
    """
    util.newly_available(verbose=True)
コード例 #5
0
ファイル: commands.py プロジェクト: timonegk/wajig
def new(args):
    """Display newly-available packages"""
    util.newly_available(args.verbose)
コード例 #6
0
ファイル: commands.py プロジェクト: timonegk/wajig
def describenew(args):
    """Display one-line descriptions of newly-available packages

    This produces the same output as 'wajig new'
    """
    util.newly_available()