8
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
May 31, 2023 — May 31, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Initial bits of HTML cleaner.
jhy
as Jonathan Hedley
More... over 14 years ago
Renamed Elements#select to Elements#filter.
jhy
as Jonathan Hedley
More... over 14 years ago
Removed unused Select#groupOp noop.
jhy
as Jonathan Hedley
More... over 14 years ago
Implemented Elements methods text(), eq(), and is().
jhy
as Jonathan Hedley
More... over 14 years ago
Handle empty (self closing) blocks.
jhy
as Jonathan Hedley
More... over 14 years ago
Tests parser for unknown tags.
jhy
as Jonathan Hedley
More... over 14 years ago
Don't register unknown tags.
jhy
as Jonathan Hedley
More... over 14 years ago
Extend selector test for multi classes and attributes.
jhy
as Jonathan Hedley
More... over 14 years ago
Implemented advanced attribute selectors (!= ^= $= *=) and element methods.
jhy
as Jonathan Hedley
More... over 14 years ago
Output HTML correctly for <! ... > and <? ... ?> xml tags.
jhy
as Jonathan Hedley
More... over 14 years ago
Parser updated to handle CDATA, and rogue < in text nodes.
jhy
as Jonathan Hedley
More... over 14 years ago
Test confirms selectors are case insensitive.
jhy
as Jonathan Hedley
More... over 14 years ago
Attribute helpers in Element and Elements.
jhy
as Jonathan Hedley
More... over 14 years ago
Fixed selector so that "parent child" doesn't contain parent, and "element.class" is an AND on parent element, and doesn't match .class in child element (i.e. I re-read the CSS3 selector doc, which is clearer than jquery doc).
jhy
as Jonathan Hedley
More... over 14 years ago
Explicit empty String[], to remove warning on null as vararg.
jhy
as Jonathan Hedley
More... over 14 years ago
Git ignore Eclipse
jhy
as Jonathan Hedley
More... over 14 years ago
Updated parser to support namespaced attributes (i.e xml:lang=en). Implemented Elements first(), last(), attr(), hasAttr() methods.
jhy
as Jonathan Hedley
More... over 14 years ago
Initial test suite from real world html
jhy
as Jonathan Hedley
More... over 14 years ago
Implement baseURIs for all Nodes, and absolute URL attribute getter.
jhy
as Jonathan Hedley
More... over 14 years ago
Selector: added * (all elements) and parent > child.
jhy
as Jonathan Hedley
More... over 14 years ago
Implemented Element.text(string) method, to set the text of an element, and clear out existing html.
jhy
as Jonathan Hedley
More... over 14 years ago
Have Element DOM methods return Elements instead of List<Element>, to give ready access to .select(query)
jhy
as Jonathan Hedley
More... over 14 years ago
todo note
jhy
as Jonathan Hedley
More... over 14 years ago
Fixed head canContain
jhy
as Jonathan Hedley
More... over 14 years ago
Introduced a DataNode, and SCRIPT, TEXTAREA, TITLE etc goes into DataNodes, so that Element.text() does not get clouded with script or style inners.
jhy
as Jonathan Hedley
More... over 14 years ago
Implicit parent creation for elements, more general document structure creation.
jhy
as Jonathan Hedley
More... over 14 years ago
Neatened Parser
jhy
as Jonathan Hedley
More... over 14 years ago
Removed scratch test.
jhy
as Jonathan Hedley
More... over 14 years ago
Support for data only tags (script, textarea etc)
jhy
as Jonathan Hedley
More... over 14 years ago
Deeper descendant test.
jhy
as Jonathan Hedley
More... over 14 years ago