Using twitter bootstrap for more consistent looks for Hydra
This commit is contained in:
@ -6,8 +6,9 @@ STATIC = \
|
||||
FLOT = flot-0.6.zip
|
||||
TABLESORTER = jquery.tablesorter.zip
|
||||
JQUERY = jquery-ui-1.8.5.custom.zip
|
||||
BOOTSTRAP = bootstrap.zip
|
||||
|
||||
ZIPS = $(FLOT) $(TABLESORTER) $(JQUERY)
|
||||
ZIPS = $(FLOT) $(TABLESORTER) $(JQUERY) $(BOOTSTRAP)
|
||||
|
||||
EXTRA_DIST = $(TEMPLATES) $(STATIC) $(ZIPS)
|
||||
|
||||
@ -17,6 +18,7 @@ nobase_hydra_DATA = $(EXTRA_DIST)
|
||||
all:
|
||||
mkdir -p $(srcdir)/static/js
|
||||
unzip -u -d $(srcdir)/static/js/jquery $(JQUERY)
|
||||
unzip -u -d $(srcdir)/static $(BOOTSTRAP)
|
||||
rm -rf $(srcdir)/static/js/tablesorter
|
||||
unzip -u -d $(srcdir)/static/js $(TABLESORTER)
|
||||
unzip -u -d $(srcdir)/static/js $(FLOT)
|
||||
@ -24,3 +26,5 @@ all:
|
||||
install-data-local: $(ZIPS)
|
||||
mkdir -p $(hydradir)/static/js
|
||||
cp -prvd $(srcdir)/static/js/* $(hydradir)/static/js
|
||||
mkdir -p $(hydradir)/static/bootstrap
|
||||
cp -prvd $(srcdir)/static/bootstrap/* $(hydradir)/static/bootstrap
|
||||
|
Reference in New Issue
Block a user