8
0

- updated to 0.07

- Added a COPYRIGHT section
  
     - Add CSS3 "=$" operator (Corion)
     - Add CSS3 "=^" operator (Corion)
     - Add complex subexpressions for :not() (Corion)
     - Add :empty selector (Corion)
     - Support 'root' parameters to to_xpath (JZOBEL, David Wheeler, Corion)
  
     - Add CSS3 "=*" operator for real substring matching (Corion)
     - Add CSS3 ":first-of-type" and ":nth-of-type()" pseudo-attributes (Corion)
       (but if you're using them, you're likely better off using XPath already)
     - Add CSS3 "~" operator (Corion)
     - Adopt tests for "~" operator from RT #61990, by Aaron Crane (Corion)
     - Add :contains() selector (only immediate child nodes) (Corion)
     - Support implicit selectors like "> em" (translated to "* > em") (Corion)
       Fixes RT #50131 (Reported by David Wheeler)
     - Fix more implicit universal selectors (fixes RT #49982)
       :lang(c) as a bare selector works now (Corion, Aaron Crane)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTML-Selector-XPath?expand=0&rev=2
This commit is contained in:
Stephan Kulow
2011-04-22 07:30:05 +00:00
committed by Git OBS Bridge
parent 9cc845ee4e
commit 89831caf48
4 changed files with 66 additions and 35 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Fri Apr 22 07:26:12 UTC 2011 - coolo@opensuse.org
- updated to 0.07
- Added a COPYRIGHT section
- Add CSS3 "=$" operator (Corion)
- Add CSS3 "=^" operator (Corion)
- Add complex subexpressions for :not() (Corion)
- Add :empty selector (Corion)
- Support 'root' parameters to to_xpath (JZOBEL, David Wheeler, Corion)
- Add CSS3 "=*" operator for real substring matching (Corion)
- Add CSS3 ":first-of-type" and ":nth-of-type()" pseudo-attributes (Corion)
(but if you're using them, you're likely better off using XPath already)
- Add CSS3 "~" operator (Corion)
- Adopt tests for "~" operator from RT #61990, by Aaron Crane (Corion)
- Add :contains() selector (only immediate child nodes) (Corion)
- Support implicit selectors like "> em" (translated to "* > em") (Corion)
Fixes RT #50131 (Reported by David Wheeler)
- Fix more implicit universal selectors (fixes RT #49982)
:lang(c) as a bare selector works now (Corion, Aaron Crane)
-------------------------------------------------------------------
Sat Dec 25 01:00:39 UTC 2010 - pascal.bleser@opensuse.org