2013-03-28 11:24:10 +00:00
|
|
|
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
|
2013-03-19 19:07:52 +00:00
|
|
|
local htmlparser = require("htmlparser")
|
2013-03-19 10:37:08 +00:00
|
|
|
|
|
|
|
local io = require("io")
|
2013-03-28 11:24:10 +00:00
|
|
|
local file = io.input("./sample.html")
|
2013-03-19 10:37:08 +00:00
|
|
|
local text = io.read("*a") file:close()
|
|
|
|
|
2013-03-19 19:07:52 +00:00
|
|
|
local root = htmlparser.parse(text)
|
2013-03-19 10:37:08 +00:00
|
|
|
|
|
|
|
-- print the tree
|
|
|
|
local function p(n)
|
|
|
|
local space = string.rep(" ", n.level)
|
|
|
|
local s = space .. n.name
|
|
|
|
for k,v in pairs(n.attributes) do
|
2013-03-25 12:55:35 +00:00
|
|
|
s = s .. " " .. k .. "=[[" .. v .. "]]"
|
2013-03-19 10:37:08 +00:00
|
|
|
end
|
|
|
|
print(s)
|
|
|
|
for i,v in ipairs(n.nodes) do
|
|
|
|
p(v)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
p(root)
|
|
|
|
|
2013-03-21 23:10:24 +00:00
|
|
|
print("\nchapters")
|
2013-03-19 21:32:24 +00:00
|
|
|
local sel, chapters = root("ol.chapters > li"), {}
|
2013-03-24 22:20:03 +00:00
|
|
|
for e in pairs(sel) do
|
|
|
|
table.insert(chapters, e:getcontent())
|
2013-03-19 14:29:12 +00:00
|
|
|
end
|
2013-03-21 23:10:24 +00:00
|
|
|
-- print
|
2013-03-19 14:29:12 +00:00
|
|
|
for i,v in ipairs(chapters) do
|
|
|
|
print(i, v)
|
|
|
|
end
|
|
|
|
|
2013-03-21 23:10:24 +00:00
|
|
|
print("\ncontacts")
|
2013-03-24 22:20:03 +00:00
|
|
|
local sel, contacts = root("ul.contacts span[class]"), {}
|
|
|
|
for e in pairs(sel) do
|
|
|
|
local id = e.parent.parent.id -- li > a > span
|
2013-03-20 08:38:43 +00:00
|
|
|
contacts[id] = contacts[id] or {}
|
2013-03-24 22:20:03 +00:00
|
|
|
contacts[id][e.classes[1]] = e:getcontent()
|
2013-03-19 14:29:12 +00:00
|
|
|
end
|
2013-03-21 23:10:24 +00:00
|
|
|
-- print
|
2013-03-19 14:29:12 +00:00
|
|
|
for k,v in pairs(contacts) do
|
|
|
|
print(k)
|
|
|
|
for fk,fv in pairs(v) do
|
|
|
|
print(fk, fv)
|
|
|
|
end
|
|
|
|
end
|
2013-03-20 08:38:43 +00:00
|
|
|
|
2013-03-21 13:30:29 +00:00
|
|
|
print("\nmicrodata")
|
2013-03-21 23:10:24 +00:00
|
|
|
local sel, scopes = root("[itemprop]"), {}
|
2013-03-24 22:20:03 +00:00
|
|
|
for prop in pairs(sel) do
|
2013-03-21 23:10:24 +00:00
|
|
|
if prop.attributes["itemscope"] then goto nextprop end
|
|
|
|
local descendantscopes, scope = {}, prop
|
|
|
|
while true do
|
|
|
|
repeat
|
|
|
|
scope = scope.parent
|
|
|
|
until scope.attributes["itemscope"]
|
|
|
|
if not scope.attributes["itemprop"] then break end
|
|
|
|
table.insert(descendantscopes, 1, scope)
|
|
|
|
end
|
|
|
|
scopes[scope] = scopes[scope] or {}
|
|
|
|
local entry = scopes[scope]
|
|
|
|
for _,v in ipairs(descendantscopes) do
|
|
|
|
entry[v] = entry[v] or {}
|
|
|
|
entry = entry[v]
|
2013-03-21 13:30:29 +00:00
|
|
|
end
|
2013-03-21 23:10:24 +00:00
|
|
|
local k, v = prop.attributes["itemprop"], prop:getcontent()
|
|
|
|
entry[k] = v
|
|
|
|
::nextprop::
|
2013-03-21 13:30:29 +00:00
|
|
|
end
|
2013-03-21 23:10:24 +00:00
|
|
|
-- print
|
|
|
|
local function printscope(node, table, level)
|
|
|
|
level = level or 1
|
|
|
|
local scopeprop = node.attributes["itemprop"] or ""
|
|
|
|
print(string.rep(" ", level - 1) .. node.attributes["itemtype"], scopeprop)
|
|
|
|
for prop,v in pairs(table) do
|
|
|
|
if type(prop) == "table" then
|
|
|
|
printscope(prop, v, level + 1)
|
|
|
|
else
|
|
|
|
print(string.rep(" ", level) .. prop .. "=[" .. v .. "]")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
for node,table in pairs(scopes) do
|
|
|
|
printscope(node, table)
|
2013-03-22 21:34:50 +00:00
|
|
|
end
|