Merge pull request #18 from wscherphof/#17->

#17 >
This commit is contained in:
Wouter Scherphof 2013-04-02 03:14:55 -07:00
commit 550b39c87e
3 changed files with 76 additions and 1 deletions

27
htmlparser-0.2-1.rockspec Normal file
View File

@ -0,0 +1,27 @@
package = "htmlparser"
version = "0.1-1"
source = {
url = "git://github.com/wscherphof/lua-htmlparser.git",
branch = "v0.1"
}
description = {
summary = "Parse HTML text into a tree of elements with selectors",
detailed = [[
Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand.
]],
homepage = "http://wscherphof.github.com/lua-htmlparser/",
license = "MIT"
}
dependencies = {
"lua >= 5.2",
"set >= 0.1",
"lunitx >= 0.6"
}
build = {
type = "builtin",
modules = {
htmlparser = "src/htmlparser.lua",
["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua",
["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua"
}
}

View File

@ -141,9 +141,10 @@ local function select(self, s)
resultset = Set:new()
for subject in pairs(subjects) do
local star = subject.deepernodes
if childrenonly then star = Set:new(subject.nodes) childrenonly = false end
if childrenonly then star = Set:new(subject.nodes) end
resultset = resultset + star
end
childrenonly = false
if part == "*" then goto nextpart end
local excludes, filter = Set:new()
for t, w in string.gmatch(part,

47
tst/init.lua Normal file
View File

@ -0,0 +1,47 @@
require("luarocks.loader")
-- Omit next line in actual module clients; it's only to support development of the module itself
package.path = "../src/?.lua;" .. package.path
local lunitx = require("lunitx")
module("html", lunitx.testcase, package.seeall)
local htmlparser = require("htmlparser")
local tree, sel
function test_descendants()
tree = htmlparser.parse([[
<parent>1
<child>1.1</child>
<child>1.2
<child>1.2.1</child>
</child>
</parent>
<parent>2
<child>2.1</child>
<child>2.2
<child>2.2.1</child>
</child>
</parent>
]])
sel = tree("parent child")
assert_equal(6, sel:len(), 'parent child')
end
function test_children()
tree = htmlparser.parse([[
<parent>1
<child>1.1</child>
<child>1.2
<child>1.2.1</child>
</child>
</parent>
<parent>2
<child>2.1</child>
<child>2.2
<child>2.2.1</child>
</child>
</parent>
]])
sel = tree("parent > child")
assert_equal(4, sel:len(), 'parent > child')
end