##// END OF EJS Templates
add checkpoint status to notebook header...
add checkpoint status to notebook header autosave is also there, but once the dirty flag is an event, this should stop having the date, and just become 'autosaved / unsaved changes'

File last commit:

r10440:77d92864
r10516:7cababc6
Show More
fabfile.py
25 lines | 675 B | text/x-python | PythonLexer
""" fabfile to prepare the notebook """
from fabric.api import local,lcd
from fabric.utils import abort
import os
static_dir = 'static'
components_dir = os.path.join(static_dir,'components')
def components():
"""install components with bower"""
with lcd(static_dir):
local('bower install')
def css(minify=True):
"""generate the css from less files"""
if minify not in ['True', 'False', True, False]:
abort('minify must be Boolean')
minify = (minify in ['True',True])
min_flag= '-x' if minify is True else ''
with lcd(static_dir):
local('lessc {min_flag} less/style.less css/style.min.css'.format(min_flag=min_flag))