win32: inhibit: Ensure we restore the state when cancelled
[vlc.git] / share / lua / playlist / break.lua
blobd760d6b71cd338ee98b528cc34d51cadf563b254
1 --[[
2 $Id$
4 Copyright © 2007 the VideoLAN team
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.
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.
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 --]]
21 -- Probe function.
22 function probe()
23 local path = vlc.path:gsub("^www%.", "")
24 return vlc.access == "http"
25 and string.match( path, "^break%.com/video/.+" )
26 end
28 -- Parse function.
29 function parse()
30 filepath = ""
31 filename = ""
32 filetitle = ""
33 arturl = ""
34 while true do
35 line = vlc.readline()
36 if not line then break end
37 if string.match( line, "sGlobalContentFilePath=" ) then
38 _,_,filepath= string.find( line, "sGlobalContentFilePath='(.-)'" )
39 end
40 if string.match( line, "sGlobalFileName=" ) then
41 _,_,filename = string.find( line, ".*sGlobalFileName='(.-)'")
42 end
43 if string.match( line, "sGlobalContentTitle=" ) then
44 _,_,filetitle = string.find( line, "sGlobalContentTitle='(.-)'")
45 end
46 if string.match( line, "el=\"videothumbnail\" href=\"" ) then
47 _,_,arturl = string.find( line, "el=\"videothumbnail\" href=\"(.-)\"" )
48 end
49 if string.match( line, "videoPath" ) then
50 _,_,videopath = string.find( line, ".*videoPath', '(.-)'" )
51 return { { path = videopath..filepath.."/"..filename..".flv"; title = filetitle; arturl = arturl } }
52 end
53 end
54 end