summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-05-15Updated the \HTML5 class to parse with static methods, updated the Traverser ↵Matt Farina
tests to work with the the new parser, and remoted the old Parser tests not that the old parser is gone.
2013-05-15Merge branch 'master' of github.com:technosophos/HTML5-PHPMatt Farina
2013-05-15Removed the last vestiges of libhtml5.Matt Butcher
2013-05-15Updated main HTML5 class.Matt Butcher
It now uses the real library, and matches the DOMDocument interface.
2013-05-15Updaed TreeBuildingRules for tables and other elements.Matt Butcher
2013-05-07Only raw text should not be encoded (e.g., text in a script or style tag).Matt Farina
2013-05-07Make encoding work (with testing) under php 5.3.Matt Farina
2013-05-07Tested and updated the traverser encoding in php 5.4.Matt Farina
2013-05-07Fixed writing text node.Matt Farina
2013-05-06Updated the traverser text method and added a test.Matt Farina
2013-05-06Updated the TEXT_RAW tags to be those specified and those that should act ↵Matt Farina
like it. References to the html5 sections included. Note, the pre tag was removed from being treated as raw text. It can often have children (e.g., the code tag) and is specific for display time. Makes me wonder why pre is it's own tag if it's for display. Why not just use styles?
2013-05-06Starting work on internals of the traverser.Matt Farina
2013-05-06Added some commenting on the operation of the traverser.Matt Farina
2013-05-03Added comments and tests for wr on traverser.Matt Farina
2013-05-03Tests and comments for new lines in the traverser.Matt Farina
2013-05-02Merge branch 'master' of github.com:technosophos/HTML5-PHPMatt Farina
2013-05-02Moved the traverser block checking code to use the mask on the elements class.Matt Farina
2013-05-02Added block element checking to elements class.Matt Farina
2013-05-02Merge branch 'master' of github.com:technosophos/HTML5-PHPMatt Butcher
2013-05-02Rules for LI, DT, DD, RT, and RP.Matt Butcher
2013-05-02Stubbing out a rules engine for tag special-casing.Matt Butcher
2013-05-02Updated the property to be for more semantics.Matt Farina
2013-05-02Changed constants from UNARY_TAG to VOID_TAG to follow spec.Matt Butcher
2013-05-01Fixes for PI tests.Matt Butcher
2013-05-01Merge branch 'master' of github.com:technosophos/HTML5-PHPMatt Butcher
2013-05-01Fixed faulty test.Matt Butcher
The parser is actually really strict, and maybe we should back off on enforcing some of the stricter rules.
2013-05-01Fixed CDATA.Matt Butcher
2013-04-29I feel dirty. Added frameset tag.Matt Farina
2013-04-29Moved the traverser unary tests to the elements class.Matt Farina
2013-04-24MAJOR changes to the DOMTreeBuilder.Matt Butcher
This now supports most of the tree building. It has limited support for insertion modes, as well as some syntax correction.
2013-04-24Merge branch 'master' of github.com:technosophos/HTML5-PHPMatt Butcher
2013-04-24Added attribute handling.Technosophos
2013-04-24Removed deprecated constants.Technosophos
2013-04-24Moved to Elements::TEXT_RAW for Tokenizer.Technosophos
2013-04-24Unit tests for DOMTreeBuilder begun.Technosophos
Minor bugs fixed, too.
2013-04-24Experimenting with bitmasked elements.Technosophos
2013-04-24Merge branch 'master' of github.com:technosophos/HTML5-PHPMatt Butcher
2013-04-24Updated DOMTree builder.Matt Butcher
2013-04-24Added SVG to the element setup.Matt Farina
2013-04-24Added MathML Presentation element checking.Matt Farina
2013-04-24Added tests around the html element checking.Matt Farina
2013-04-24Moved back to array lookups for html5 elements. This is SIGNIFICANTLY faster ↵Matt Farina
then the regular expressions and twice as fast as the next fastest method I tested.
2013-04-23Merge branch 'master' of github.com:technosophos/HTML5-PHPMatt Butcher
2013-04-23Added Elements class.Matt Butcher
2013-04-23Merge branch 'master' of github.com:technosophos/HTML5-PHPTechnosophos
2013-04-23Added an instruction processor for PIs.Technosophos
2013-04-22Added documentation to the traverserMatt Farina
2013-04-19Stubs for tree builder and tests.Technosophos
2013-04-19Finished minor refactoring of tokenizer.Technosophos
2013-04-19Added consume() to scanner, refactoring Tokenizer.Technosophos