]> git.sesse.net Git - vlc/commitdiff
katsomo.lua: remove debug
authorIlkka Ollakka <ileoo@videolan.org>
Thu, 15 Oct 2009 12:39:25 +0000 (15:39 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Thu, 15 Oct 2009 12:39:25 +0000 (15:39 +0300)
share/lua/playlist/katsomo.lua

index 8560a2db76c71d4b14904f8c27ee17a63a5f836e..5bb5e6c8fdb8544d97c04f0d5f6a416abdfb76c5 100644 (file)
@@ -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