Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
README file
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenLooman committed Aug 19, 2012
1 parent 9a0186d commit 5a807f1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
SaXPath
=======
Simple XPath evaluator which runs against a SAX stream.

Supported XPath construct as of writing are:
- '/'-axis (child)
- '//'-axis (self-or-descendant)
- node name tests
- predicate test (@<attribute_name> = "<literal>")

Inner workings
--------------
A state machine is built which the SAX-nodes are tested against. If a node matches, the state machine progresses.

For self-or-descendant-nodes, the state machine is forked and earch fork (including the parent) is tested against the SAX-nodes. This ensures all nodes are matched. See test/saxpath.js and test/inception.xml for an example.

0 comments on commit 5a807f1

Please sign in to comment.