summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsvntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f>2007-09-13 19:16:03 +0000
committersvntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f>2007-09-13 19:16:03 +0000
commit3d75a250b66f5314a12e83eb40bd6968cfd7d40e (patch)
tree5db4ea13d9d4b825d454456863180c9568caa038
parent54a81935b17db6a192e51ccbb0c0521dc58ee282 (diff)
downloadvdr-plugin-menuorg-3d75a250b66f5314a12e83eb40bd6968cfd7d40e.tar.gz
vdr-plugin-menuorg-3d75a250b66f5314a12e83eb40bd6968cfd7d40e.tar.bz2
fixed line to separator renamings
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/menuorg/trunk@6142 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
-rw-r--r--README14
-rw-r--r--menuorg.dtd8
2 files changed, 11 insertions, 11 deletions
diff --git a/README b/README
index 9f62660..f67059d 100644
--- a/README
+++ b/README
@@ -62,12 +62,12 @@ syntax rules. The root node always is <menus>.
There are only four kinds of menu items described by the following XML tags:
- <system> : System menu items, like the channels list or the timers
- <plugin> : Plug-in menu items
- <menu> : A sub menu
- <command> : An external command to be excuted, similar to VDR's commands.conf
- <line> : a line item
-
+ <system> : System menu items, like the channels list or the timers
+ <plugin> : Plug-in menu items
+ <menu> : A sub menu
+ <command> : An external command to be excuted, similar to VDR's commands.conf
+ <separator> : a separator item
+
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.
@@ -125,7 +125,7 @@ e.g.:
<plug-in name="solitaire" />
<plug-in name="freecell" />
</menu>
- <line />
+ <separator />
<menu name="System">
<system name="Setup" />
<system name="Commands" />
diff --git a/menuorg.dtd b/menuorg.dtd
index 01811ab..d4dfb46 100644
--- a/menuorg.dtd
+++ b/menuorg.dtd
@@ -19,7 +19,7 @@
$Id$
-->
-<!ELEMENT menu ((menu | system | plugin | command | line)+)>
+<!ELEMENT menu ((menu | system | plugin | command | separator)+)>
<!ATTLIST menu
name CDATA #REQUIRED
>
@@ -39,8 +39,8 @@
execute CDATA #REQUIRED
confirm (yes|no) #IMPLIED
>
-<!ELEMENT line EMPTY>
-<!ATTLIST line
+<!ELEMENT separator EMPTY>
+<!ATTLIST separator
title CDATA #IMPLIED
>
-<!ELEMENT menus ((menu | system | plugin | command | line)+)>
+<!ELEMENT menus ((menu | system | plugin | command | separator)+)>