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