File: Changes

package info (click to toggle)
libtext-microtemplate-perl 0.20-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 284 kB
  • ctags: 138
  • sloc: perl: 1,655; makefile: 2
file content (72 lines) | stat: -rw-r--r-- 1,872 bytes parent folder | download
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
Revision history for Perl extension Text::MicroTemplate

0.20
	- [bugfix] '?# comment' was not working (by bokutin)

0.19
	- fix unexpected behavior (though is not a bug, see https://github.com/kazuho/p5-text-microtemplate/pull/6)

0.18
	- added accessor: Text::MicroTemplate::File->include_path

0.17
	- detects absolute paths using File::Spec->file_name_is_absolute (win32 compatibility fix)

0.16
	- treat filenames starting with "/" as absolute paths
	- support lines like "? =pod"
	- fix documentation issues

0.15
	- [bugfix] fix degradation in the optimazition introduced in 0.14 that caused compound lines within template to be miscompiled

0.14
	- optimization (concatenate multi-line string constants at compile time)

0.13
	- suppress syntax error when last expression within an entire template includes a comment (by typester)

0.12
	- the last token in a template line was dropped if it was "false" when evaluated in boolean context
	- suppress warning on render_mt("") (by typester)

0.11
	- add vim syntax files (by kan & walf443)
	- fix example in POD (by tokuhirom)
	- skip some tests on perl < 5.8.3 (by tokuhirom)

0.10
	- optimization (thanks to gfx, cached mode is now faster than HT::Pro !)

0.09
	- bugfix: ' was encoded to &#39 (semicolon missing)

0.08
	- Fixed Text::MicroTemplate::File memory leaks (thanks to miyagawa-san)

0.07
	- added overload q{""} to Text::MicroTemplate::EncodedString
	- better open_layer parameter handling at constructer

0.06
	- added "use 5.00800".
	  We don't want to mention older perl =(

0.05
	- add wrapper_file and filter functions

0.04
	- add Text::MicroTemplate::File

0.03
	- parameters passed using @_
	- friendly warning messages
	- package name can be set when building renderers

0.02
	- add render_mt and build_mt, remove as_html
	- more tests and docs
	- better error message

0.01
	- initial release