home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 October / maximum-cd-2010-10.iso / DiscContents / vlc-1.1.0-win32.exe / lua / sd / frenchtv.lua < prev    next >
Encoding:
Text File  |  2010-06-20  |  1.3 KB  |  33 lines

  1. --[[
  2.  $Id$
  3.  
  4.  Copyright ┬⌐ 2010 VideoLAN and AUTHORS
  5.  
  6.  Authors: Fabio Ritrovato <sephiroth87 at videolan dot org>
  7.  
  8.  This program is free software; you can redistribute it and/or modify
  9.  it under the terms of the GNU General Public License as published by
  10.  the Free Software Foundation; either version 2 of the License, or
  11.  (at your option) any later version.
  12.  
  13.  This program is distributed in the hope that it will be useful,
  14.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  GNU General Public License for more details.
  17.  
  18.  You should have received a copy of the GNU General Public License
  19.  along with this program; if not, write to the Free Software
  20.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21. --]]
  22.  
  23. function descriptor()
  24.     return { title="French TV" }
  25. end
  26.  
  27. function main()
  28.     node = vlc.sd.add_node( {title="Canal +"} )
  29.     node:add_subitem( {title="Le SAV des ├⌐missions ",path="http://www.canalplus.fr/index.php?pid=1782",options={"http-forward-cookies"}} )
  30.     node:add_subitem( {title="Les Guignols",path="http://www.canalplus.fr/index.php?pid=1784",options={"http-forward-cookies"}} )
  31.     node:add_subitem( {title="La M├⌐t├⌐o de Pauline Lefevre",path="http://www.canalplus.fr/index.php?pid=2834",options={"http-forward-cookies"}} )
  32. end
  33.