From 98dd9360e398ea939422317419abcf44c269be65 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 28 Feb 2012 20:34:21 -0500 Subject: (1) Use phony %.min.js files (2) copyright headers in d3.*.js (3) Makefile! ---- Due to our support of free software, we have two (uncommon) requirements for .min.js files: 1. They preserve the header comments; for license-identification 2. They can be created with free software; a free minifier, SaaS does not count. The only viable way to do this is to use django's compress.py, which requires the Google Closure Compiler, (or use the closure-compiler directly), which is not (yet) packaged for Parabola. So, for now just copy the *.js to *.min.js in order to avoid having to change URLs to temporarily point to the non-minified versions until we can properly minify them. ---- Add copyright headers to d3.js files, which by default ship without the copyright included in the file, despite being free software. ---- Create a Makefile that automatically does this. It fetches the d3 and jquery .js files, adds the copyright headers to the d3.*.js files, and then copies .js files to .min.js files. --- media/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 media/.gitignore (limited to 'media/.gitignore') diff --git a/media/.gitignore b/media/.gitignore new file mode 100644 index 00000000..f747f163 --- /dev/null +++ b/media/.gitignore @@ -0,0 +1 @@ +.d3 -- cgit v1.2.3-2-g168b