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

Re: Generating Unique ID

Subject: Re: Generating Unique ID
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Tue, 06 Dec 2005 12:50:20 -0500
xml assign unique id
Hi,

At 02:55 AM 12/6/2005, Arun wrote:
I have an xml file and I need to present it in html in the following format :-

A
   AA
        AAA
               AAAA
               ........
       AAB
              AABA
              .......
       .......
   AB
       ABA
              ABAA
              ........
       ......
  .....
B
...


I am able to present the data in the same format but the problem I have now is that I have to assign a unique ID to these data.


What I would like is that the IDs generated at lower level should contain the ID of parent node as well. For example :-

ID of AA = (ID of A + ID of AA)
ID of AAA = (ID of A + ID of AA + ID of AAA)

and so on.

Actually, if you wanted something similar to the strings "A", "AA", "AB" etc. to be your ids, they'd be easy enough to generate with xsl:number:


<xsl:number count="*" from="/" level="multiple" format="A"/>

(When I test with Saxon it uses a "." delimiter so things come out "A.B.A" ... which is good when you get past X, Y, Z and start on AA....)

But it sounds like you want something more ... complex? transparent? opaque?

Such ids as you describe can be easily generated by traversing the ancestor node from each element you want to label. But often IDs are over-engineered, and don't need (or even are better without) all the information they're asked to carry. Many times the generate-id() function is actually better (because it warrants nothing beyond the uniqueness of the identifier within the current document).

Cheers,
Wendell



======================================================================
Wendell Piez                            mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================

Current Thread

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
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.