X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2FMakefile;h=b0faac45cfcbd687308af47facda71d3cdfb097a;hb=45695d787ec5074e6cbe547b73fb6e760f0d0a71;hp=08495360c48ff16a65329f1b0c7973f6b50d3e4b;hpb=9538989e9bb086213b8bc6b45ae2fc9cd79d7e30;p=mkws-moved-to-github.git diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 0849536..b0faac4 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -17,7 +17,7 @@ JQUERY_UI_URL= http://code.jquery.com/ui/1.10.3/jquery-ui.js #JQUERY_UI_URL= http://code.jquery.com/ui/1.8.0/jquery-ui.min.js MKWS_JS= mkws-complete.js -PZ2API_JS= ../../../libjs-pz2/pz2api.1.js +PZ2API_JS= ../../../pazpar2/js/pz2.js PZ2API_GIT= ssh://git.indexdata.com:222/home/git/pub/libjs-pz2 DOCS = README.html README.odt README.pdf \ @@ -34,19 +34,23 @@ pz2api-git-checkout: ( cd $$(dirname $$(dirname ${PZ2API_JS})); git clone ${PZ2API_GIT} ); \ fi -mkws-js ${MKWS_JS}: ${PZ2API_JS} mkws.js +mkws-js ${MKWS_JS}: mkws.js handlebars-v1.1.2.js @if ! test -e ${PZ2API_JS}; then \ echo "The pazpar2 JS file ${PZ2API_JS} does not exists."; \ echo "Did you checked out the source from the git repo?"; \ echo "Please run: make pz2api-git-checkout"; \ exit 1; \ - fi \ + fi ( echo "/* created at: $$(date)"; \ echo " mkws.js GIT id: $$(git log mkws.js | head -n 1 | perl -npe 's,\S+\s+,,') */"; \ curl -sSf ${JQUERY_URL} | perl -npe 's,sourceMappingURL=jquery.*map,,'; \ - cat ../../../libjs-pz2/pz2api.1.js mkws.js ) > ${MKWS_JS}.new + cat handlebars-v1.1.2.js; \ + cat ${PZ2API_JS} mkws.js ) > ${MKWS_JS}.new mv -f ${MKWS_JS}.new ${MKWS_JS} +handlebars-v1.1.2.js: + curl -sSf http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v1.1.2.js -o $@ + distclean: clean clean: rm -f ${MKWS_JS} $(DOCS) @@ -62,9 +66,12 @@ help: # For a description of pandoc's markdown format, see: # http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html --> +# for older pandoc (<1.9) run first: +# perl -i.bak -npe 's/"(Authors|Subjects)": "(.*?)"/"$1": "test"/' tools/htdocs/whitepaper.markdown +# %.html: %.markdown rm -f $@ - pandoc --standalone -c mkws-doc.css $< -o $@ + pandoc --standalone --toc -c mkws-doc.css $< | sed '/^$//d' > $@ chmod ugo-w $@ %.odt: %.markdown @@ -72,6 +79,9 @@ help: pandoc --standalone $< -o $@ chmod ugo-w $@ +# ### In order to compile the whitepaper, which has tables, to PDF, +# you will need to install the Debian package +# texlive-latex-recommended %.pdf: %.markdown rm -f $@ pandoc --standalone $< -o $@