##// END OF EJS Templates
fixing broken links from recent changes....
fixing broken links from recent changes. After fixing operating system path changes in previous commits, many links needed to be adjusted to direct to the correct URL.

File last commit:

r11337:901b8f0e
r13033:73885466
Show More
fabfile.py
33 lines | 1.1 KiB | text/x-python | PythonLexer
Matthias BUSSONNIER
migrate from make to fabric
r9299 """ fabfile to prepare the notebook """
from fabric.api import local,lcd
from fabric.utils import abort
import os
MinRK
add IPython-only CSS...
r11337 pjoin = os.path.join
Matthias BUSSONNIER
migrate from make to fabric
r9299 static_dir = 'static'
MinRK
remove unused components...
r10523 components_dir = os.path.join(static_dir, 'components')
Matthias BUSSONNIER
migrate from make to fabric
r9299
MinRK
add IPython-only CSS...
r11337
Brian E. Granger
Splitting notebook.less into separate files.
r10730 def css(minify=True, verbose=False):
Matthias BUSSONNIER
migrate from make to fabric
r9299 """generate the css from less files"""
MinRK
add IPython-only CSS...
r11337 for name in ('style', 'ipython'):
source = pjoin('style', "%s.less" % name)
target = pjoin('style', "%s.min.css" % name)
_compile_less(source, target, minify, verbose)
Brian E. Granger
Adding files that I mised in the last commit.
r10713
Brian E. Granger
Splitting notebook.less into separate files.
r10730 def _to_bool(b):
if not b in ['True', 'False', True, False]:
abort('boolean expected, got: %s' % b)
return (b in ['True', True])
def _compile_less(source, target, minify=True, verbose=False):
MinRK
add IPython-only CSS...
r11337 """Compile a less file by source and target relative to static_dir"""
Brian E. Granger
Splitting notebook.less into separate files.
r10730 minify = _to_bool(minify)
verbose = _to_bool(verbose)
min_flag = '-x' if minify is True else ''
ver_flag = '--verbose' if verbose is True else ''
MinRK
use less from components
r10526 lessc = os.path.join('components', 'less.js', 'bin', 'lessc')
Matthias BUSSONNIER
migrate from make to fabric
r9299 with lcd(static_dir):
Brian E. Granger
Splitting notebook.less into separate files.
r10730 local('{lessc} {min_flag} {ver_flag} {source} {target}'.format(**locals()))
Matthias BUSSONNIER
migrate from make to fabric
r9299