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

Re: Underwhelmed (WAS: XOM micro tutorial)


div tutorial
A hybrid or compromise that I have used (mostly in javascript) is to write a
function that returns a well-formed element as a string - for example,

function element(name,content)

Thus

var fragment=element('div','This is a div')
// returns "<div>This is a div</div>"

You can use this recursively and always get well-formed text out -

var frag2=element('div', element('div','This is a nested div'))
// returns <div><div>This is a nested div</div></div>

And of course you can concatenate to get siblings or mixed content.

This approach knows nothing about DTDs but it is convenient, well-formed,
and a lot better than printf.

Cheers,

Tom P

[Arjun Ray]
[[
Elliotte Rusty Harold <elharo@m...> wrote:
| At 9:40 AM -0700 9/21/02, Dare Obasanjo wrote:

|> Search for the string "InnerXml" in the text at
|> http://www.kuro5hin.org/story/2002/9/14/19753/0994
|
| Thanks. Does this code work? If so, it's worse than I thought it was.
| I had assumed InnerXML worked with well-formed XML. It apparently
| doesn't. For example,
|
| channel.InnerXml  = channel.InnerXml + "\n<item>\n<title>" + diaryTitle +
|       "</title>\n<link>" + diaryLink + "</link>\n<description>" +
| diaryDesc + "</description>\n";
|
| Where's the end-tag for the item element? There's another case of
| this a little further on:
|
| channel.InnerXml  = channel.InnerXml + "\n" +
|        "<rss:item
xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" " +
|        "xmlns:rss=\"http://purl.org/rss/1.0/\" rdf:about=\"" +
| diaryLink + "\" >\n" +
|        "<rss:title>" + diaryTitle + "</rss:title>\n<rss:link>" +
| diaryLink + "</rss:link>\n" +
|        "<rss:description>" + diaryDesc + "</rss:description>\n";
|
| This time it's the rss:item end-tag that's gone missing,

-sigh-

Did you really expect better?  Really, Elliotte, you have a big heart. :-)
]]




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.