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

Re: Mixed content in data-binding (Was: Re: Interest


data binding cdata
Original Message From: "Paul Downey"
> On 15 Jul 2005, at 08:24, Pete Cordell wrote:
>
>> The example that Elliotte gave earlier (<p>This is <strong>very</strong> 
>> important</p>) could possibly have been handled with an <xs:any 
>> namespace='xhtml'> construct.  ...
>
> For me, I really like the notion of being able to write an XML document, 
> not necessarily XHTML, which contains information to be gleaned using 
> XPath and XSLT. Mixed is where it's at.
> ...
> Whilst I might be willing to give up all sorts of bits of a schema 
> language just to nurse-maid users of data binding tools into having a 
> better time, I'm loathed to give up mixed given that turns my documents 
> inside out.
>
> Eric's Catch 22 is the problem here, and it's a crying shame the data 
> binding tools don't make a better fist of preserving the text which 
> surrounds the nuggets of data they're often only interested in.

Being guilty of being a code-head (and a binding one at that - can it get 
worse!), I'm keen to know how you'd like us to make a better fist of it. 
One way of binding the example of "<p>This is <strong>very</strong> 
important</p>" might be to have a class structure that (with any unused 
elements ignored) looks like:-

    class p
    {
        string cdata1;        // = "This is "
        class strong strong;
        string cdata2;        // = " important"
    };

    class strong
    {
        string cdata1;        // = "very"
    };

as opposed to (ignoring the CDATA):

    class p
    {
        class strong strong;
    };

    class strong
    {
    };

or (lumping all the mixed text together):

    class p
    {
        string mixedContent;    // = "<p>This is <strong>very</strong> 
important</p>"
    };

Or do you just decide that binding isn't the right solution in this case, or 
a hybrid is required?

Thanks,

Pete.
--
=============================================
Pete Cordell
Tech-Know-Ware Ltd
                         for XML to C++ data binding visit
                         http://www.tech-know-ware.com/lmx
                         (or http://www.xml2cpp.com)
=============================================


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-2011 All Rights Reserved.