- Add a failing test for meta chars in selectors
[catagits/HTML-Zoom.git] / Changes
CommitLineData
94a3ddd9 1TBA
619fe6fe 2 - Perforce escaping of meta-characters in selectors and test (rafl)
94a3ddd9 3 - New Feature: HTML::Zoom will autoload FilterBuilder functions so that
4 you can avoid a bit of boilerplate in method calls. Now you can replace:
5
6 $z->select('div')->replace_content("Hello World");
7
8 With:
9
10 $z->replace_content(div => "Hello World");
11
12 - Lots of changes to FilterBuilder so that functionality matched the docs
13 better, improved the docs and added tests for documented functions to
14 avoid future regressions.
15
c2d3257f 16 - add / to excluded characters in attribute names to correctly parse <br/>
94a3ddd9 17 - add transform_attribute method (rbuels)
abc91e12 18
32b28501 190.009004 2011-02-14
20
c2d3257f 21 - Large chunks of documentation improvements from jnareb
22 - apply_if method from ocharles
23 - selector improvements and bugfixes (jnareb, mst)
81f6079f 24
8628f51e 250.009003 2010-10-12
1cf03540 26
c2d3257f 27 - mst is an idiot and forgot to add strictures.pm as a dependency
1cf03540 28
8628f51e 290.009002 2010-10-12
cdf6da6d 30
c2d3257f 31 - Added support for more selector syntax support including:
32 element#id
33 element.class
34 element[attr=foo]
35 element[attr*=foo]
36 element[attr~=foo]
37 element[attr]
38 element[attr^=foo]
39 [attr=foo]
40 - HTML::Zoom::MatchWithoutFilter replaced by HTML::Zoom::TransformBuilder
41 - Improved documentation, including documentation for HTML::Zoom::FilterBuilder.
42 - Lots of other refactoring, internal improvements & bugfixes!
cdf6da6d 43
8628f51e 440.009001 2010-03-17
cdf6da6d 45
c2d3257f 46 - First release