summaryrefslogtreecommitdiffstats
path: root/nikola/plugins/task/build_less.py
diff options
context:
space:
mode:
authorLibravatarAgustin Henze <tin@sluc.org.ar>2013-11-20 16:58:50 -0300
committerLibravatarAgustin Henze <tin@sluc.org.ar>2013-11-20 16:58:50 -0300
commitca94afc07df55cb7fc6fe3b4f3011877b7881195 (patch)
treed81e1f275aa77545f33740723f307a83dde2e0b4 /nikola/plugins/task/build_less.py
parentf794eee787e9cde54e6b8f53e45d69c9ddc9936a (diff)
Imported Upstream version 6.2.1upstream/6.2.1
Diffstat (limited to 'nikola/plugins/task/build_less.py')
-rw-r--r--nikola/plugins/task/build_less.py99
1 files changed, 99 insertions, 0 deletions
diff --git a/nikola/plugins/task/build_less.py b/nikola/plugins/task/build_less.py
new file mode 100644
index 0000000..8889cbe
--- /dev/null
+++ b/nikola/plugins/task/build_less.py
@@ -0,0 +1,99 @@
+# -*- coding: utf-8 -*-
+
+# Copyright © 2012-2013 Roberto Alsina and others.
+
+# Permission is hereby granted, free of charge, to any
+# person obtaining a copy of this software and associated
+# documentation files (the "Software"), to deal in the
+# Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the
+# Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice
+# shall be included in all copies or substantial portions of
+# the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
+# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
+# OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+from __future__ import unicode_literals
+
+import codecs
+import glob
+import os
+import subprocess
+
+from nikola.plugin_categories import Task
+from nikola import utils
+
+
+class BuildLess(Task):
+ """Generate CSS out of LESS sources."""
+
+ name = "build_less"
+ sources_folder = "less"
+ sources_ext = ".less"
+ compiler_name = "lessc"
+
+ def gen_tasks(self):
+ """Generate CSS out of LESS sources."""
+
+ kw = {
+ 'cache_folder': self.site.config['CACHE_FOLDER'],
+ 'themes': self.site.THEMES,
+ }
+
+ # Find where in the theme chain we define the LESS targets
+ # There can be many *.less in the folder, but we only will build
+ # the ones listed in less/targets
+ targets_path = utils.get_asset_path(os.path.join(self.sources_folder, "targets"), self.site.THEMES)
+ try:
+ with codecs.open(targets_path, "rb", "utf-8") as inf:
+ targets = [x.strip() for x in inf.readlines()]
+ except Exception:
+ targets = []
+
+ for theme_name in kw['themes']:
+ src = os.path.join(utils.get_theme_path(theme_name), self.sources_folder)
+ for task in utils.copy_tree(src, os.path.join(kw['cache_folder'], self.sources_folder)):
+ task['basename'] = 'prepare_less_sources'
+ yield task
+
+ # Build targets and write CSS files
+ base_path = utils.get_theme_path(self.site.THEMES[0])
+ dst_dir = os.path.join(self.site.config['OUTPUT_FOLDER'], 'assets', 'css')
+ # Make everything depend on all sources, rough but enough
+ deps = glob.glob(os.path.join(
+ base_path,
+ self.sources_folder,
+ "*{0}".format(self.sources_ext)))
+
+ def compile_target(target, dst):
+ utils.makedirs(dst_dir)
+ src = os.path.join(kw['cache_folder'], self.sources_folder, target)
+ compiled = subprocess.check_output([self.compiler_name, src])
+ with open(dst, "wb+") as outf:
+ outf.write(compiled)
+
+ yield self.group_task()
+
+ for target in targets:
+ dst = os.path.join(dst_dir, target.replace(self.sources_ext, ".css"))
+ yield {
+ 'basename': self.name,
+ 'name': dst,
+ 'targets': [dst],
+ 'file_dep': deps,
+ 'task_dep': ['prepare_less_sources'],
+ 'actions': ((compile_target, [target, dst]), ),
+ 'uptodate': [utils.config_changed(kw)],
+ 'clean': True
+ }