]> git.sesse.net Git - vlc/blob - share/lua/playlist/break.lua
Revert 4ce6c3f34b0807c7ee8db8739bdbdb9773d42f56. Fixes drag and drop on my system...
[vlc] / share / lua / playlist / break.lua
1 --[[
2  $Id$
3
4  Copyright © 2007 the VideoLAN team
5
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  GNU General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 --]]
20
21 -- Probe function.
22 function probe()
23     return vlc.access == "http"
24         and string.match( vlc.path, "www.break.com" ) 
25 end
26
27 -- Parse function.
28 function parse()
29     filepath = ""
30     filename = ""
31     filetitle = ""
32     arturl = ""
33     while true do
34         line = vlc.readline()
35         if not line then break end
36         if string.match( line, "sGlobalContentFilePath=" ) then
37             filepath= string.gsub( line, ".*sGlobalContentFilePath='([^']*).*", "%1" )
38         end
39         if string.match( line, "sGlobalFileName=" ) then
40             filename = string.gsub( line, ".*sGlobalFileName='([^']*).*", "%1")
41         end
42         if string.match( line, "sGlobalContentTitle=" ) then
43             filetitle = string.gsub( line, ".*sGlobalContentTitle='([^']*).*", "%1")
44         end
45         if string.match( line, "el=\"videothumbnail\" href=\"" ) then
46             arturl = string.gsub( line, ".*el=\"videothumbnail\" href=\"([^\"]*).*", "%1" )
47         end
48         if string.match( line, "videoPath" ) then
49             return { { path = ( string.gsub( line, ".*videoPath', '([^']*).*", "%1" ) )..filepath.."/"..filename..".flv"; title = filetitle; arturl = arturl } }
50         end
51     end
52 end