merge
[catagits/HTML-Zoom.git] / Changes
1 0.009008_01 2013-02-28
2
3   - remove_from_attribute and related helpers (remove_class, add_class)
4
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
17 0.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
21 0.009006 2011-05-20
22   - Add DESTROY method to fix test failures / warnings in perl >= 5.13.1
23
24 0.009005 2011-05-12
25
26   - Perforce escaping of meta-characters in selectors and test (rafl)
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
40   - add / to excluded characters in attribute names to correctly parse <br/>
41   - add transform_attribute method (rbuels)
42
43 0.009004 2011-02-14
44
45   - Large chunks of documentation improvements from jnareb
46   - apply_if method from ocharles
47   - selector improvements and bugfixes (jnareb, mst)
48
49 0.009003 2010-10-12
50
51   - mst is an idiot and forgot to add strictures.pm as a dependency
52
53 0.009002 2010-10-12
54
55   - Added support for more selector syntax support including:
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!
67
68 0.009001 2010-03-17
69
70   - First release