[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Describing hierarchies with XML


xml menu structure
On Tue, Oct 26, 2004 at 08:25:54AM +0000, Frans Englich wrote:
> [...]
> One possibility is:
> 
> <program>
>       <category>/Menu/Programs/Utilities</category>
>       <name>Calculator</name>
> </program>
[...]
> 
> Another possibility is:
> 
> <program>
>       <category>
>                       <menu>
>                               <programs>
>                                       <utilities/>
>                               </programs>
>                       </menu>
>       </category>
>       <name>Calculator</name>
> </program>

In general, avoid using element names for displayed data (e.g. for text
that a user would see), as you may later want markup inside a menu
title, perhaps for translation into Japanese or Chinese ("ruby").

<menu-structure>
  <menu id="programs">
    <name xml:lang="fr">Programmes</name>
    <name xml:lang="en-US">Programs</name>
    <menu id="utilities">
      <name xml:lang="en">Utilities</name>
    </menu>
  </menu>
</menu-structure>
<program>
    <category ref="utilities" />
    <name xml:lang="fr">Ordinateur</name>
    <command platform="unix" ui="gnome">gnome-calculator</command>
</program>

However, before you do this, take a look at http://www.freedesktop.org/
where there is already a definition for menu entries that's shared by
a number of desktops including KDE and Gnome.

(why the user would care which menu entries are implemented by
"programs" and which by some other sort of thing I don't know!)

Liam

-- 
Liam Quin, W3C XML Activity Lead, http://www.w3.org/People/Quin/
http://www.holoweb.net/~liam/

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.