diff options
author | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2008-03-22 22:24:28 +0000 |
---|---|---|
committer | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2008-03-22 22:24:28 +0000 |
commit | 3d13d0e55013a7c061c1f65c797bb06f7a141d6f (patch) | |
tree | 981749c171ee0380d5c88ac553876890afe8b3fc | |
parent | 224e6b425c22042fadc8caccb45a347318e82d0c (diff) | |
download | vdr-plugin-menuorg-3d13d0e55013a7c061c1f65c797bb06f7a141d6f.tar.gz vdr-plugin-menuorg-3d13d0e55013a7c061c1f65c797bb06f7a141d6f.tar.bz2 |
documented the title feature
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/menuorg/trunk@6967 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
-rw-r--r-- | README | 14 | ||||
-rw-r--r-- | menuorg.xml | 7 |
2 files changed, 15 insertions, 6 deletions
@@ -45,7 +45,7 @@ Requirements: ------------- The plug-in has been tested with VDR 1.5.18. It requires the libxml++2.6 -and libglibmm-2.4 library. VDR must be patch with the enclosed patch +and libglibmm-2.4 library. VDR must be patched with the enclosed patch (patches/vdr-patch/vdr-menuorg-0.4.diff). The patch does not introduce any ABI changes, so it is not necessary to rebuild all plug-ins after applying the patch. @@ -63,7 +63,7 @@ The following parameters are available: Upgrading from vdr-submenu plugin --------------------------------- -There is a convert script in this packag, that allows you to convert your old +There is a convert script in this package, that allows you to convert your old MainMenu.conf from the submenu plug-in to the XML file which is needed by menuorg. @@ -93,7 +93,7 @@ There are only four kinds of menu items described by the following XML tags: In the menu hierarchy <system>, <plug-in> and <command> are leaf nodes, whereas <menu> is an internal node. <menu> may contain any number of <system>, <plugin>, -<command> or <menu> nodes. +<command>, <separator> or <menu> nodes. Each node is described by a name attribute. For <system> nodes, the following names are possible: @@ -118,15 +118,21 @@ or abort with any other key. e.g.: <command name="Free Disk Space" execute="df -h" confirm="yes" /> +You can provide a custome title for plug-in and system menu entries, by providing +a title attrbute: + + <system name="Schedule" title="Program Schedule" /> + <plugin name="femon" title="DVB Health Monitor" /> + <system> items not configured in the menu configuration will not be visible in VDR's OSD. Plug-ins that are not configured in the xml file, will be shown at the end of the root main menu. + e.g.: <?xml version="1.0" encoding="UTF-8"?> <menus> - <system name="Schedule" /> <system name="Channels" /> <system name="Recordings" /> <menu name="Video/Audio"> diff --git a/menuorg.xml b/menuorg.xml index b1ee296..d5cee31 100644 --- a/menuorg.xml +++ b/menuorg.xml @@ -1,18 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> <menus> - <system name="Schedule" /> + <system name="Schedule" title="Program Schedule" /> <system name="Channels" /> <system name="Timers" /> <system name="Recordings" /> <menu name="Video/Audio"> <plugin name="radio" /> <plugin name="playlist" /> + <separator /> <plugin name="mp3" /> <plugin name="mplayer" /> <menu name="CD/DVD"> <plugin name="burn" /> <plugin name="dvdselect" /> <plugin name="dvd" /> + <separator title="----==============----" /> <plugin name="vdrcd" /> <plugin name="vcd" /> </menu> @@ -44,6 +46,7 @@ <plugin name="solitaire" /> <plugin name="freecell" /> </menu> + <separator /> <menu name="Other Plugins"> <plugin name="clock" /> <plugin name="vbox" /> @@ -59,7 +62,7 @@ <plugin name="graphlcd" /> <plugin name="sysinfo" /> <plugin name="console" /> - <plugin name="femon" /> + <plugin name="femon" title="DVB Health Monitor"/> <plugin name="rotor" /> <plugin name="streamdev-server" /> </menu> |