コード例 #1
0
def sources(is_stable=False):
    '''
    Create the sources archives
    '''
    builder = BuilderSources(is_stable=tobool(is_stable))
    builder.build()
コード例 #2
0
def sources_clear():
    '''
    Remove the sources archives.
    '''
    builder = BuilderSources()
    builder.clear()
コード例 #3
0
ファイル: tasks.py プロジェクト: Jenyay/outwiker
def sources(c, is_stable=False):
    '''
    Create the sources archives
    '''
    builder = BuilderSources(c, is_stable=is_stable)
    builder.build()
コード例 #4
0
ファイル: fabfile.py プロジェクト: Jenyay/outwiker
def sources_clear():
    '''
    Remove the sources archives.
    '''
    builder = BuilderSources()
    builder.clear()
コード例 #5
0
ファイル: fabfile.py プロジェクト: Jenyay/outwiker
def sources(is_stable=False):
    '''
    Create the sources archives
    '''
    builder = BuilderSources(is_stable=tobool(is_stable))
    builder.build()
コード例 #6
0
def sources_clear():
    """
    Remove the sources archives.
    """
    builder = BuilderSources()
    builder.clear()
コード例 #7
0
def sources():
    """
    Create the sources archives.
    """
    builder = BuilderSources()
    builder.build()