[vlc-devel] commit: katsomo.lua: remove debug (Ilkka Ollakka )
git version control
git at videolan.org
Thu Oct 15 14:39:33 CEST 2009
vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Thu Oct 15 15:39:25 2009 +0300| [fb28608b630888c43a545a4f2807a81651ef97f5] | committer: Ilkka Ollakka
katsomo.lua: remove debug
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fb28608b630888c43a545a4f2807a81651ef97f5
---
share/lua/playlist/katsomo.lua | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/share/lua/playlist/katsomo.lua b/share/lua/playlist/katsomo.lua
index 8560a2d..5bb5e6c 100644
--- a/share/lua/playlist/katsomo.lua
+++ b/share/lua/playlist/katsomo.lua
@@ -41,15 +41,12 @@ function parse()
if string.match( line, "<title>" )
then
title = vlc.strings.decode_uri( find( line, "<title>(.-)<" ) )
- vlc.msg.info("found title: "..title)
end
if string.match( line, "<li class=\"program\"" )
then
description = vlc.strings.resolve_xml_special_chars( find( line, "title=\"(.-)\"" ) )
- vlc.msg.info("found description:"..description)
end
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"
table.insert( p, { path = path; name = title; description = description; url = vlc.path;} )
end
More information about the vlc-devel
mailing list