Commit fb28608b authored by Ilkka Ollakka's avatar Ilkka Ollakka

katsomo.lua: remove debug

parent 69611ff4
...@@ -41,15 +41,12 @@ function parse() ...@@ -41,15 +41,12 @@ function parse()
if string.match( line, "<title>" ) if string.match( line, "<title>" )
then then
title = vlc.strings.decode_uri( find( line, "<title>(.-)<" ) ) title = vlc.strings.decode_uri( find( line, "<title>(.-)<" ) )
vlc.msg.info("found title: "..title)
end end
if string.match( line, "<li class=\"program\"" ) if string.match( line, "<li class=\"program\"" )
then then
description = vlc.strings.resolve_xml_special_chars( find( line, "title=\"(.-)\"" ) ) description = vlc.strings.resolve_xml_special_chars( find( line, "title=\"(.-)\"" ) )
vlc.msg.info("found description:"..description)
end end
for programid in string.gmatch( line, "<li class=\"program\" id=\"program(.-)\"" ) do for programid in string.gmatch( line, "<li class=\"program\" id=\"program(.-)\"" ) do
vlc.msg.info("found program id "..programid)
path = "http://www.katsomo.fi/metafile.asx?p="..programid.."&bw=800" path = "http://www.katsomo.fi/metafile.asx?p="..programid.."&bw=800"
table.insert( p, { path = path; name = title; description = description; url = vlc.path;} ) table.insert( p, { path = path; name = title; description = description; url = vlc.path;} )
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment