]> git.sesse.net Git - vlc/commitdiff
Revert "lua http: fix valid uri handling with v2."
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 25 Sep 2011 11:42:57 +0000 (14:42 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 25 Sep 2011 11:49:18 +0000 (14:49 +0300)
This reverts commit 06108030c0cc8e0bfb633319c9dae7ba7b349855.

share/lua/http/js/controlers.js
share/lua/intf/modules/httprequests.lua

index 0d3680e6a3e861c7603b1b623d426448400854ec..5d3e3381e1f65b512d7ac95e76ecaea5a6684a32 100644 (file)
@@ -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;
index 0afdc24e29f5f3a8218433b55a918fa1ce72127e..131f164db100f7a9587744bbe0526007a9666d37 100644 (file)
@@ -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()