File: Changes

package info (click to toggle)
libhtml-template-pluggable-perl 0.22%2B~cs0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: perl: 541; makefile: 17
file content (79 lines) | stat: -rw-r--r-- 3,356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Revision history for HTML-Template-Pluggable

0.21    2022-05-04  Rhesa Rozendaal <rhesa@cpan.org>
        * fix all the test failures:
            * make number formatting test locale-independent
            * add back support for AUTOLOADed methods

0.20    2022-05-03  Rhesa Rozendaal <rhesa@cpan.org>
        * add prereq for CGI since this is no longer bundled
          with perl core
0.18    2009-12-26  Rhesa Rozendaal <rhesa@cpan.org>
        * fixed RT #40714 to the extent that H::T allows
        * fixed RT #49123 by checking can('AUTOLOAD')
        * imported CPAN history into git, and published on github

0.17    2007-05-15  Rhesa Rozendaal <rhesa@cpan.org>
        - ::Dot now handles exceptions on method calls differently:
        * if the option die_on_bad_params is on, it will rethrow the exception
        * if die_on_bad_params is off, it will emit a warning and produce no
          output for that param

0.16    2007-03-28  Rhesa Rozendaal <rhesa@cpan.org>
        - removed test dependency on CGI::Application

0.15    2006-03-28  Rhesa Rozendaal <rhesa@cpan.org>
        - argh! removed dependency on CAP::AutoRunmode from test suite

0.14    2006-03-27  Rhesa Rozendaal <rhesa@cpan.org>
        - bugfixes in ::Dot:
          - switched to using blessed() instead of UNIVERSAL::can as a function.
            this breaks with using a CGI object for versions older than 3.06,
            since CGI didn't have a working can() method.
          - made nested calls to the same object work, so you can now do:

              <tmpl_var t.greeting(t.name)>

          Both issues were reported by Dan Horne.

0.13    2005-10-04  Rhesa Rozendaal <rhesa@cpan.org>
        - bug fixes in ::Dot:
          - using obj.loop in a <tmpl_if> or <tmpl_var> now returns the
            number of elements; this is a slight incompatibility with
            H::T, but makes the if's work
          - single char method names in nested calls work properly now
        - added pod tests to improve kwalitee...

0.12    2005-08-26 Rhesa Rozendaal <rhesa@cpan.org>
        - added before_output hook

0.08	Wed Aug 17 02:30:37 CEST 2005  Rhesa Rozendaal <rhesa@cpan.org>
        - fixed bug with global_vars => 1
        - made sure all original HTML::Template tests pass with ::Pluggable
          and ::Dot

0.07    Tue Aug 16 16:19:50 CEST 2005  Rhesa Rozendaal <rhesa@cpan.org>
        - bug fix in tmpl_loop stuff. Only get array on final method call

0.06    Mon Aug 15 19:56:24 CEST 2005  Rhesa Rozendaal <rhesa@cpan.org>
        - implemented tmpl_loops in ::Dot!

0.05    Sun Aug 14 23:36:55 CEST 2005  Rhesa Rozendaal <rhesa@cpan.org>
        - Added tests against side effects (where avoidable). Extended the docs
          for ::Dot

        - renamed 'pre_param' trigger location to 'middle_param'

0.04    Sat Aug 13 03:09:54 CEST 2005  Rhesa Rozendaal <rhesa@cpan.org>
        - Thanks to Michael Graham, it's now possible to reference plain old
          tmpl_vars in argument lists

0.03    Fri Aug 12 16:16:29 CEST 2005  Rhesa Rozendaal <rhesa@cpan.org>
        - Added more docs to ::Dot, and more tests

0.02    Thu Aug 11 01:09:21 CEST 2005  Mark Stosberg <mark@summersault.com>
        -  minor doc formatting tweaks

0.01    Wed Aug 10 16:21:03 CEST 2005  Rhesa Rozendaal <rhesa@cpan.org>
        - Initial release on CPAN