]> git.sesse.net Git - vlc/blob - share/lua/intf/telnet.lua
vimeo.lua: fix error case
[vlc] / share / lua / intf / telnet.lua
1 --[==========================================================================[
2  telnet.lua: wrapper for legacy telnet configuration
3 --[==========================================================================[
4  Copyright (C) 2011 the VideoLAN team
5  $Id$
6
7  Authors: Pierre Ynard
8
9  This program is free software; you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 2 of the License, or
12  (at your option) any later version.
13
14  This program is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  GNU General Public License for more details.
18
19  You should have received a copy of the GNU General Public License
20  along with this program; if not, write to the Free Software
21  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 --]==========================================================================]
23
24 if config.hosts == nil and config.host == nil then
25     config.host = "telnet://localhost:4212"
26 else
27     if config.hosts == nil then
28         config.hosts = { config.host }
29     end
30
31     for i,host in pairs(config.hosts) do
32         if host ~= "*console" then
33             local proto = string.match(host, "^%s*(.-)://")
34             if proto == nil or proto ~= "telnet" then
35                 local newhost
36                 if proto == nil then
37                     newhost = "telnet://"..host
38                 else
39                     newhost = string.gsub(host, "^%s*.-://", "telnet://")
40                 end
41                 --vlc.msg.warn("Replacing host `"..host.."' with `"..newhost.."'")
42                 config.hosts[i] = newhost
43             end
44         end
45     end
46 end
47
48 --[[ Launch vlm ]]
49 vlm = vlc.vlm()
50
51 dofile(wrapped_file)
52