Skip to content

Commit

Permalink
Added .pairs (VMethod) functionality with tests
Browse files Browse the repository at this point in the history
Fixed quoted.t failing test
Version bump for testing release
  • Loading branch information
robertkrimen committed Jan 10, 2010
1 parent 871414c commit d715e67
Show file tree
Hide file tree
Showing 12 changed files with 597 additions and 481 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
version: 0.24_4
date: Saturday January 09 17:06:40 PST 2010
changes:
- added .pairs (VMethod) functionality with tests
- fixed quoted.t failing test

---
version: 0.24_3
date: Mon Jun 8 2009
Expand Down
4 changes: 4 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ all_from 'lib/Jemplate.pm';

#build_requires 'Directory::Scratch';

if (-e 'inc/.author') {
my $all_from = join '/', 'lib', split m/-/, name . '.pm';
`perldoc -tF $all_from > README` if ! -e 'README' || (stat $all_from)[9] > (stat 'README')[9];
}

requires 'Template' => '2.19';
requires 'File::Find::Rule' => '0.30';
Expand Down
12 changes: 9 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
VERSION
Version 0.24_4

NAME
Jemplate - JavaScript Templating with Template Toolkit

Expand Down Expand Up @@ -161,12 +164,13 @@ CURRENT SUPPORT
* [% LAST %]
* [% CLEAR %]
* [%# this is a comment %]
* [% MACRO name(param1, param2) BLOCK %] ... [% END %]

ALL of the string virtual functions are supported.

ALL of the array virtual functions are supported:

ALL of the hash virtual functions are supported (except for import):
ALL of the hash virtual functions are supported:

MANY of the standard filters are implemented.

Expand All @@ -185,8 +189,8 @@ BROWSER SUPPORT
All tests run 100% successful in the above browsers.

DEVELOPMENT
The bleeding edge code is available via Subversion at
http://svn.jemplate.net/repo/trunk/
The bleeding edge code is available via Git at
git://github.com/ingydotnet/jemplate.git

You can run the runtime tests directly from
http://svn.jemplate.net/repo/trunk/tests/run/index.html or from the
Expand Down Expand Up @@ -229,6 +233,8 @@ AUTHORS

Robert Krimen <[email protected]>

Nickolay Platonov <[email protected]>

COPYRIGHT
Copyright (c) 2006-2008. Ingy döt Net.

Expand Down
Loading

0 comments on commit d715e67

Please sign in to comment.