aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2018-09-09 19:57:15 -0400
committerPaul Duncan <pabs@pablotron.org>2018-09-09 19:57:15 -0400
commit6381f2bd74ae28662d3449c6e948833f32b2754f (patch)
treee19de916646be706de9e186686d1d4ba1fbb6989
parenta22f6a55ae65ca3675f7c97a030560e91d5b4d1f (diff)
downloadluigi-template-6381f2bd74ae28662d3449c6e948833f32b2754f.tar.bz2
luigi-template-6381f2bd74ae28662d3449c6e948833f32b2754f.zip
js: upgrade version to 0.5.0, add documentation about luigi-compat.js
-rw-r--r--js/README.mkd29
-rw-r--r--js/luigi-compat.js1
-rw-r--r--js/luigi-template.js4
3 files changed, 32 insertions, 2 deletions
diff --git a/js/README.mkd b/js/README.mkd
index 423024b..27f2bd2 100644
--- a/js/README.mkd
+++ b/js/README.mkd
@@ -15,6 +15,17 @@ Features:
* Compatible: Works in browsers as old as IE9
* MIT-licensed
+Installation
+------------
+Minify `luigi-template.js` using your minifier of choice, and drop it
+into your source tree. I like [jsmin][], personally:
+
+ jsmin luigi-template.js > luigi-template.min.js
+
+*Note:* If you are upgrading from a pre-0.5.0 version of Luigi Template,
+be sure to include `luigi-compat.js` as well. See the *Changes in
+0.5.0* section below for details.
+
Usage
-----
A minimal template:
@@ -216,6 +227,23 @@ implementation of [Luigi Template][], written in [Mocha][] and [Chai].
To run the test suite, load `test/test.html` in a browser.
+Changes in 0.5.0
+----------------
+Version 0.5.0 of Luigi Template changes the namespace from
+`LuigiTemplate` to `Luigi`, which has the following effects:
+
+* old (0.4.x): `new LuigiTemplate(...)`, new (0.5): `new Luigi.Template(...)`
+* old (0.4.x): `LuigiTemplate.run(...)`, new: (0.5): `Luigi.run(...)`
+* old (0.4.x): `LuigiTemplate.VERSION`, new (0.5): `Luigi.VERSION`
+* old (0.4.x): `LuigiTemplate.FILTERS`, new: (0.5): `Luigi.FILTERS`
+* old (0.4.x): `new LuigiTemplate.Cache(...)`, new: (0.5): `Luigi.cache(...)` (recommended) or `new Luigi.Cache(...)`
+
+If you have an existing system that you cannot make changes to, you can
+include `luigi-compat.js` as a compatibility shim. Tests for the
+compatibility shim are available in `test/compat/`.
+
+*Note:* The compatibility shim will disappear in a future release.
+
Author
------
Paul Duncan ([pabs@pablotron.org][me])<br/>
@@ -245,6 +273,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[pipe]: https://en.wikipedia.org/wiki/Pipeline_(Unix)
+[jsmin]: https://www.crockford.com/javascript/jsmin.html
[Luigi Template]: https://github.com/pablotron/luigi-template
[me]: mailto:pabs@pablotron.org
[Mocha]: https://mochajs.org/
diff --git a/js/luigi-compat.js b/js/luigi-compat.js
index c4bcc1a..4c703d8 100644
--- a/js/luigi-compat.js
+++ b/js/luigi-compat.js
@@ -7,6 +7,7 @@
var LuigiTemplate = Luigi.Template;
LuigiTemplate.prototype.Cache = Luigi.Cache;
LuigiTemplate.run = Luigi.run;
+LuigiTemplate.VERSION = Luigi.VERSION;
LuigiTemplate.FILTERS = Luigi.FILTERS;
LuigiTemplate.Cache = Luigi.Cache;
LuigiTemplate.cache = Luigi.cache;
diff --git a/js/luigi-template.js b/js/luigi-template.js
index 8fcf646..1b7ca74 100644
--- a/js/luigi-template.js
+++ b/js/luigi-template.js
@@ -5,7 +5,7 @@
* @author Paul Duncan <pabs@pablotron.org>
* @license MIT
* @copyright 2010-2018 Paul Duncan (pabs@pablotron.org)
- * @version 0.4.2
+ * @version 0.5.0
*
*/
@@ -153,7 +153,7 @@ var Luigi = (function() {
/**
* Version of Luigi Template.
*/
- VERSION: '0.4.2',
+ VERSION: '0.5.0',
/**
* Default filter set.