replace Makefile.PL with dist.ini
[catagits/HTML-Zoom.git] / Changes
CommitLineData
44c29eb6 10.009008_01 2013-02-28
2
3 - remove_from_attribute and related helpers (remove_class, add_class)
4
4c6b4429 5 - Several patches for incorrect functionality (thanks to Jim Miner &
6 stratman@gmail.com) :-
7
8 - Don't throw away leading PCDATA in $text, in _hacky_tag_parser().
9 This is important so we can use from_html and replace_content to
10 insert fragments with or without markup into templates.
11
12 - Fix matching against attribute value "0" (zero) or "" (empty).
13
14 - Fix parsing of selectors matching against attribute value "" (empty).
15 (This does not fix parsing of single-quoted attribute values.)
16
170.009007 2013-02-24
18 - Remove long form ( name, value ) for attributes to set_attribute / add_attribute
19 to allow future enhancements (selector in options).
20
a5d7c5f6 210.009006 2011-05-20
268f2c35 22 - Add DESTROY method to fix test failures / warnings in perl >= 5.13.1
23
60d640ca 240.009005 2011-05-12
25
619fe6fe 26 - Perforce escaping of meta-characters in selectors and test (rafl)
94a3ddd9 27 - New Feature: HTML::Zoom will autoload FilterBuilder functions so that
28 you can avoid a bit of boilerplate in method calls. Now you can replace:
29
30 $z->select('div')->replace_content("Hello World");
31
32 With:
33
34 $z->replace_content(div => "Hello World");
35
36 - Lots of changes to FilterBuilder so that functionality matched the docs
37 better, improved the docs and added tests for documented functions to
38 avoid future regressions.
39
627cd566 40 - add / to excluded characters in attribute names to correctly parse <br/>
94a3ddd9 41 - add transform_attribute method (rbuels)
abc91e12 42
32b28501 430.009004 2011-02-14
44
c2d3257f 45 - Large chunks of documentation improvements from jnareb
46 - apply_if method from ocharles
47 - selector improvements and bugfixes (jnareb, mst)
81f6079f 48
8628f51e 490.009003 2010-10-12
1cf03540 50
c2d3257f 51 - mst is an idiot and forgot to add strictures.pm as a dependency
1cf03540 52
8628f51e 530.009002 2010-10-12
cdf6da6d 54
627cd566 55 - Added support for more selector syntax support including:
c2d3257f 56 element#id
57 element.class
58 element[attr=foo]
59 element[attr*=foo]
60 element[attr~=foo]
61 element[attr]
62 element[attr^=foo]
63 [attr=foo]
64 - HTML::Zoom::MatchWithoutFilter replaced by HTML::Zoom::TransformBuilder
65 - Improved documentation, including documentation for HTML::Zoom::FilterBuilder.
66 - Lots of other refactoring, internal improvements & bugfixes!
cdf6da6d 67
8628f51e 680.009001 2010-03-17
cdf6da6d 69
c2d3257f 70 - First release