##// END OF EJS Templates
bash completion: ipython <tab> shows only subcmds...
bash completion: ipython <tab> shows only subcmds If a partial filename, or an flag or option argument is invoked, those completions will still take place, but by default, to aid the user in the discovery of subcommands, pressing tab immediately after ipython will list *only* the subcommands as possible completions

File last commit:

r11337:901b8f0e
r13569:53c89a60
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