Exemple #1
0
def compile_theme(theme_id=None):
    """Compiles a theme."""
    output_dir = path(mkdtemp())
    if theme_id is None:
        themes = ThemeManager.themes().values()
    else:
        themes = [ThemeManager.theme(theme_id)]

    with (indent(2)):
        puts(colored.yellow("Using %s as the temporary path." % output_dir))
        puts(colored.yellow("Compiling %s themes." % len(themes)))

        for theme in themes:
            temp_theme_output_path = path(output_dir / theme.id).normpath()
            theme_output_path = (
                theme.static_root /
                ('stylesheets/%s_precompiled.css' % theme.id)).normpath()

            puts(
                colored.cyan("Compiling theme %s to %s" %
                             (theme.id, theme_output_path)))
            with indent(4):
                puts("Copying content to %s" % temp_theme_output_path)
                theme.copy_all_content(temp_theme_output_path)

                puts("Compiling...")
                convert_less(temp_theme_output_path / 'stylesheets/%s.less' %
                             theme.id,
                             theme_output_path,
                             minify=True)
                puts(colored.green("Done.", bold=True))
Exemple #2
0
def compile_theme(theme_id=None):
    """Compiles a theme."""
    output_dir = path(mkdtemp())
    if theme_id is None:
        themes = ThemeManager.themes().values()
    else:
        themes = [ThemeManager.theme(theme_id)]

    with(indent(2)):
        puts(colored.yellow("Using %s as the temporary path." % output_dir))
        puts(colored.yellow("Compiling %s themes." % len(themes)))

        for theme in themes:
            temp_theme_output_path = path(output_dir / theme.id).normpath()
            theme_output_path = (theme.static_root / ('stylesheets/%s_precompiled.css' % theme.id)).normpath()

            puts(colored.cyan("Compiling theme %s to %s" % (theme.id, theme_output_path)))
            with indent(4):
                puts("Copying content to %s" % temp_theme_output_path)
                theme.copy_all_content(temp_theme_output_path)

                puts("Compiling...")
                convert_less(temp_theme_output_path / 'stylesheets/%s.less' % theme.id,
                             theme_output_path,
                             minify=True)
                puts(colored.green("Done.", bold=True))
Exemple #3
0
def list_theme():
    """List all available Engineer themes."""
    themes = ThemeManager.themes()
    col1, col2 = map(max, zip(*[(len(t.id) + 2, len(t.root_path) + 2) for t in themes.itervalues()]))

    themes = ThemeManager.themes_by_finder()
    for finder in sorted(themes.iterkeys()):
        if len(themes[finder]) > 0:
            puts("%s: " % finder)
            for theme in sorted(themes[finder], key=lambda _: _.id):
                with indent(4):
                    puts(
                        columns(
                            [colored.cyan("%s:" % theme.id), col1],
                            [colored.white(theme.root_path, bold=True), col2]
                        )
                    )
Exemple #4
0
def list_theme():
    """List all available Engineer themes."""
    themes = ThemeManager.themes()
    col1, col2 = map(
        max,
        zip(*[(len(t.id) + 2, len(t.root_path) + 2)
              for t in themes.itervalues()]))

    themes = ThemeManager.themes_by_finder()
    for finder in sorted(themes.iterkeys()):
        if len(themes[finder]) > 0:
            puts("%s: " % finder)
            for theme in sorted(themes[finder], key=lambda _: _.id):
                with indent(4):
                    puts(
                        columns(
                            [colored.cyan("%s:" % theme.id), col1],
                            [colored.white(theme.root_path, bold=True), col2]))