[vlc-commits] lua: remove remanents of metachannels

Jean-Baptiste Kempf git at videolan.org
Mon Jul 25 22:15:40 CEST 2016


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Jul 25 22:14:54 2016 +0200| [556a76e853135e14d47b6cd2fcd4d2de4d540adf] | committer: Jean-Baptiste Kempf

lua: remove remanents of metachannels

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=556a76e853135e14d47b6cd2fcd4d2de4d540adf
---

 share/Makefile.am                   |  3 --
 share/lua/playlist/metachannels.lua | 60 -------------------------------------
 2 files changed, 63 deletions(-)

diff --git a/share/Makefile.am b/share/Makefile.am
index 4a5458e..77ae329 100644
--- a/share/Makefile.am
+++ b/share/Makefile.am
@@ -144,7 +144,6 @@ nobase_vlclib_DATA = \
 	lua/playlist/lelombrik.luac \
 	lua/playlist/liveleak.luac \
 	lua/playlist/metacafe.luac \
-	lua/playlist/metachannels.luac \
 	lua/playlist/mpora.luac \
 	lua/playlist/pinkbike.luac \
 	lua/playlist/pluzz.luac \
@@ -238,7 +237,6 @@ EXTRA_DIST += \
 	lua/playlist/lelombrik.lua \
 	lua/playlist/liveleak.lua \
 	lua/playlist/metacafe.lua \
-	lua/playlist/metachannels.lua \
 	lua/playlist/mpora.lua \
 	lua/playlist/pinkbike.lua \
 	lua/playlist/pluzz.lua \
@@ -254,7 +252,6 @@ EXTRA_DIST += \
 	lua/sd/icecast.lua \
 	lua/sd/icast.lua \
 	lua/sd/jamendo.lua \
-	lua/sd/metachannels.lua
 
 DIST_http_lua = \
 	lua/http/view.html \
diff --git a/share/lua/playlist/metachannels.lua b/share/lua/playlist/metachannels.lua
deleted file mode 100644
index fc0fd46..0000000
--- a/share/lua/playlist/metachannels.lua
+++ /dev/null
@@ -1,60 +0,0 @@
---[[
- $Id$
-
- Copyright © 2010 VideoLAN and AUTHORS
-
- Authors: Rémi Duraffort <ivoire at videolan dot org>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
---]]
-
-require "simplexml"
-
-function probe()
-    return vlc.access == 'http' and string.match( vlc.path, 'metachannels.com' )
-end
-
-function parse()
-    local webpage = ''
-    while true do
-        local line = vlc.readline()
-        if line == nil then break end
-        webpage = webpage .. line
-    end
-
-    local feed = simplexml.parse_string( webpage )
-    local channel = feed.children[1]
-
-    -- list all children that are items
-    local tracks = {}
-    for _,item in ipairs( channel.children ) do
-        if( item.name == 'item' ) then
-            simplexml.add_name_maps( item )
-            local url = vlc.strings.resolve_xml_special_chars( item.children_map['link'][1].children[1] )
-            local title = vlc.strings.resolve_xml_special_chars( item.children_map['title'][1].children[1] )
-            local arturl = nil
-            if item.children_map['media:thumbnail'] then
-                arturl = vlc.strings.resolve_xml_special_chars( item.children_map['media:thumbnail'][1].attributes['url'] )
-            end
-            table.insert( tracks, { path = url,
-                                    title = title,
-                                    arturl = arturl,
-                                    options = {':play-and-pause'} } )
-        end
-    end
-
-    return tracks
-end
-



More information about the vlc-commits mailing list