diff options
author | Waldo Bastian <waldo.bastian@intel.com> | 2005-04-13 13:32:12 +0000 |
---|---|---|
committer | Waldo Bastian <waldo.bastian@intel.com> | 2005-04-13 13:32:12 +0000 |
commit | 5128e55ac6d14a2bc4a8b1522c03782cddbe734d (patch) | |
tree | 726132fbd1f2858eed25c5b897dacbd21d13a196 /menu/menu-spec.xml | |
parent | a61b06aa1aee4743f50024b0695795fe9568d929 (diff) | |
download | xdg-specs-5128e55ac6d14a2bc4a8b1522c03782cddbe734d.tar.xz |
Change semantics and remove restrictions on <Move> element to facilitate
menu editing.
Diffstat (limited to 'menu/menu-spec.xml')
-rw-r--r-- | menu/menu-spec.xml | 49 |
1 files changed, 17 insertions, 32 deletions
diff --git a/menu/menu-spec.xml b/menu/menu-spec.xml index 0da49e7..1742485 100644 --- a/menu/menu-spec.xml +++ b/menu/menu-spec.xml @@ -1,6 +1,6 @@ <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ - <!ENTITY version "0.92"> + <!ENTITY version "1.0.draft-1"> <!ENTITY dtd-version "1.0"> ]> @@ -789,24 +789,9 @@ entries</ulink>: <varname>Categories</varname>, with the new folders. </para> <para> - <Move> may or may not be useful for implementing menu + <Move> is also useful for implementing menu editing, see <xref linkend="menu-editing"/>. </para> - <para> - Duplicate <Move> elements are merged as specified in <xref - linkend="merge-algorithm"/>. Note that duplicates (two moves of - the same path) can be detected easily because of the following - rule: a move must reside at the lowest possible point. - </para> - <para> - In other words, all moves have exactly one permissible location - in the <Menu> hierarchy. Implementations can trivially - detect violations of this rule: the <Old> and <New> - paths may never share a common prefix. Moving "Foo/Bar" to - "Foo/Baz" must be done with a <Move> element that's a - child of the "Foo" <Menu>, i.e. by moving "Bar" to "Baz", not - by moving "Foo/Bar" to "Foo/Baz". - </para> </listitem> </varlistentry> <varlistentry> @@ -1011,12 +996,6 @@ entries</ulink>: <varname>Categories</varname>, </listitem> <listitem> <para> - Resolve duplicate <Move> operations (with the same - origin path) by keeping the last one. - </para> - </listitem> - <listitem> - <para> Recurse into each child <Menu>, performing this list of steps for each child in order. </para> @@ -1024,9 +1003,10 @@ entries</ulink>: <varname>Categories</varname>, </orderedlist> </para> <para> - After recursing once to remove duplicates, resolve <Move> elements - for each menu starting with the top level and recursing into child menus. - So the deepest menus have their <Move> operations performed last. + After recursing once to remove duplicates, recurse a second time to + resolve <Move> elements for each menu starting with any child + menu before handling the more top level menus. + So the deepest menus have their <Move> operations performed first. Within each <Menu>, execute <Move> operations in the order that they appear. If the destination path does not exist, simply relocate the origin <Menu> element, and change its <Name> field to @@ -2002,17 +1982,22 @@ entries</ulink>: <varname>Categories</varname>, <literal><Include><Filename>foo.desktop</Filename></Include></literal>. </para> <para> - If the user moves a folder, you might try to use <Move> elements - to represent that, but it's tricky. (Move A/B/C to D/E/F, then move D/E - to D/G, note that D/E/F still contains A/B/C while only the original D/E - was moved to D/G.) In order to move a folder, you have to "fix up" - all moves that move things <emphasis>into</emphasis> the folder being - moved to instead move things into the folder's new location. + If the user moves a folder you can use <Move> elements + to represent the move. <Move> elements used for menu-editing + should always be added to the most top-level menu to ensure that moves + are performed in the order in which they are specified; moves specified + in child menus are always performed before moves specified in a more + top level menu regardless of their location in the menu file. </para> <para> To delete a folder, simply append the <Deleted> element. </para> <para> + When adding a new folder or moving an existing folder, menu editing + implementations are advised not to re-use the menu path of a previously + deleted folder. + </para> + <para> Menu editors probably need to do some kind of consolidation/compression to avoid an XML tree that grows infinitely over time. </para> |