Commit bd058b2f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Revert "lua http: fix valid uri handling with v2."

This reverts commit 06108030.
parent 08de5c61
......@@ -195,7 +195,7 @@ function browse(dir){
case '#mobile':
break;
default:
sendCommand('command=in_play&v=2&input='+encodeURIComponent($(this).attr('openfile')));
sendCommand('command=in_play&input='+encodeURIComponent($(this).attr('openfile')));
break;
}
$('#window_browse').dialog('close');
......@@ -212,7 +212,7 @@ function browse(dir){
$('[openfile]').click(function(){
switch(tgt){
case '#mobile':
sendCommand('command=in_play&v=2&input='+encodeURIComponent($(this).attr('openfile')),"window.location='mobile.html'");
sendCommand('command=in_play&input='+encodeURIComponent($(this).attr('openfile')),"window.location='mobile.html'");
break;
default:
break;
......
......@@ -71,12 +71,10 @@ processcommands = function ()
local input = _GET['input']
local command = _GET['command']
local version = tonumber(_GET['v'] or 1)
local id = tonumber(_GET['id'] or -1)
local val = _GET['val']
local options = _GET['option']
local band = _GET['band']
local decodedpath
if type(options) ~= "table" then -- Deal with the 0 or 1 option case
options = { options }
end
......@@ -89,16 +87,11 @@ processcommands = function ()
end
vlc.msg.err( "</options>" )
--]]
if version == 2 then
decodedpath = input
else
decodedpath = stripslashes(input)
end
vlc.playlist.add({{path=decodedpath,options=options}})
vlc.playlist.add({{path=stripslashes(input),options=options}})
elseif command == "addsubtitle" then
vlc.input.add_subtitle (stripslashes(val))
elseif command == "in_enqueue" then
vlc.playlist.enqueue({{path=decodedpath,options=options}})
vlc.playlist.enqueue({{path=stripslashes(input),options=options}})
elseif command == "pl_play" then
if id == -1 then
vlc.playlist.play()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment