author | Michael Krelin <hacker@klever.net> | 2006-10-01 23:53:31 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-10-01 23:53:31 (UTC) |
commit | b6a122d536aef024b69d40cdf2ac0332d7c14607 (patch) (side-by-side diff) | |
tree | 5b6f01eb73f858e6caaf22301e23d7b6b996ffea /content/util.js | |
parent | 455df70118b045c6053b33ae2f0318a70e4f96b8 (diff) | |
download | fireflix-b6a122d536aef024b69d40cdf2ac0332d7c14607.zip fireflix-b6a122d536aef024b69d40cdf2ac0332d7c14607.tar.gz fireflix-b6a122d536aef024b69d40cdf2ac0332d7c14607.tar.bz2 |
paginating through search results
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@179 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | content/util.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/content/util.js b/content/util.js index c4af09e..ccc61cf 100644 --- a/content/util.js +++ b/content/util.js @@ -55,12 +55,19 @@ function xp_str(xp,x) { */ function xp_node(xp,x) { var rv = x.evaluate( xp, x, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null ); return rv.singleNodeValue; } +/* + * extract xpath-specified ordered set of nodes + */ +function xp_nodes(xp,x) { + return x.evaluate( + xp, x, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null); +} /* * pull in elements into documents as a member variables */ function pull_elements(th,d,els) { for(var e in els) { |