]> git.sesse.net Git - vlc/commitdiff
Lua SD: add a bit of documentation
authorFabio Ritrovato <sephiroth87@videolan.org>
Sat, 20 Feb 2010 14:53:40 +0000 (15:53 +0100)
committerFabio Ritrovato <sephiroth87@videolan.org>
Sat, 20 Feb 2010 14:53:58 +0000 (15:53 +0100)
share/Makefile.am
share/lua/README.txt
share/lua/sd/README.txt [new file with mode: 0644]

index 5e83c473e49cc42ef4b1da1e93e4d6a928c4a06e..0b90b03aa79d182b2263d8f38902d625cae33dce 100644 (file)
@@ -274,6 +274,7 @@ EXTRA_DIST += \
        lua/intf/dumpmeta.lua \
        lua/modules/sandbox.lua \
        lua/modules/simplexml.lua \
+       lua/sd/README.txt \
        lua/sd/fmc.lua \
        lua/sd/freebox.lua \
        lua/sd/frenchtv.lua
index 9d86c72ecfb87081cc9292505dc4fed14142ca3e..15d92aade7470898655810735c9f7bffc5048139 100644 (file)
@@ -17,6 +17,7 @@ All the Lua standard libraries are available.
  * Art fetcher (see meta/README.txt)
  * Interface (see intf/README.txt)
  * Extensions (see extensions/README.txt)
+ * Services Discovery (see sd/README.txt)
 
 Lua scripts are tried in alphabetical order in the user's VLC config
 directory lua/{playlist,meta,intf}/ subdirectory on Windows and Mac OS X or
@@ -313,6 +314,17 @@ sd.get_services_names(): Get a table of all available service discovery
 sd.add( name ): Add service discovery.
 sd.remove( name ): Remove service discovery.
 sd.is_loaded( name ): Check if service discovery is loaded.
+sd.add_item( ... ): Add an item to the service discovery.
+  The item object has the same members as the one in playlist.add().
+  Returns the input item.
+sd.add_node( ... ): Add a node to the service discovery.
+  The node object has the following members:
+      .title: the node's name
+      .arturl: the node's ArtURL (OPTIONAL)
+
+n = vlc.sd.add_node( {title="Node"} )
+n:add_subitem( ... ): Same as sd.add_item(), but as a subitem of n.
+n:add_node( ... ): Same as sd.add_node(), but as a subnode of n.
 
 Stream
 ------
diff --git a/share/lua/sd/README.txt b/share/lua/sd/README.txt
new file mode 100644 (file)
index 0000000..df82c47
--- /dev/null
@@ -0,0 +1,19 @@
+Instructions to code your own VLC Lua services discovery script.
+$Id$
+
+See lua/README.txt for generic documentation about Lua usage in VLC.
+
+Examples: See fmc.lua, freebox.lua, frenchtv.lua
+
+VLC Lua SD modules should define two functions:
+ * descriptor(): returns a table with information about the module.
+                 The table has the following members:
+                     .title: the name of the SD
+ * main(): will be called when the SD is started
+
+User defined modules stored in the share/lua/modules/ directory are
+available. For example, to use the sandbox module, just use
+'require "sandbox"' in your interface.
+
+Available VLC specific Lua modules: input, msg, misc, net, object, playlist, sd,
+strings, variables, stream, gettext, xml. See lua/README.txt.