summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)+)>