[
Lists Home |
Date Index |
Thread Index
]
- To: "xml-dev" <xml-dev@lists.xml.org>
- Subject: Re: [xml-dev] images and urls in xml
- From: "Michael Fitzgerald" <mike@wyeast.net>
- Date: Sun, 9 Dec 2001 00:37:09 -0800
- Importance: Normal
I didn't need to declare the XHMTL ns twice. This is better:
<?xml version="1.0" ?>
<test>
Here is an image:
<xhtml:a xmlns:xhtml="http://www.w3.org/1999/xhtml"
href="url.html"><xhtml:img src="image.gif" alt=""/></xhtml:a>
</test>
Mike
-----Original Message-----
From: Michael Fitzgerald [mailto:mike@wyeast.net]
Sent: Saturday, December 08, 2001 3:17 PM
To: Wilde, Mark; xml-dev@lists.xml.org
Subject: RE: [xml-dev] images and urls in xml
If XHTML is really just XML, why not embed XHTML in your XML to display an
image? For example:
<?xml version="1.0" ?>
<test>
Here is an image: <xhtml:a xmlns:xhtml="http://www.w3.org/1999/xhtml"
href="url.html"><xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml"
src="image.gif" alt=""/></xhtml:a>
</test>
This document will display an image in Netscape 6.1 but not with IE 6.0. If
there is a reason why this should not work (other than the fact that a
browser is not conformant), I am unaware of the reason and I'd like to hear
arguments to the contrary about requirements.
Mark, if you want, email me off line and I well send you the files I used to
test this.
Good luck,
Mike
-----Original Message-----
From: Wilde, Mark [mailto:mark.wilde@eds.com]
Sent: Friday, December 07, 2001 7:03 AM
To: 'xml-dev@lists.xml.org'
Subject: [xml-dev] images and urls in xml
Hello,
I require a little help, how do you store a url and an img in xml I tried
using CDATA but when the page is rendered it gives a text string of the
html.
in html it's <a href="url"><img src="image"></a> how would I do this in XML.
?
> Mark Wilde
>
>
>
-----------------------------------------------------------------
The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
initiative of OASIS <http://www.oasis-open.org>
The list archives are at http://lists.xml.org/archives/xml-dev/
To subscribe or unsubscribe from this list use the subscription
manager: <http://lists.xml.org/ob/adm.pl>
-----------------------------------------------------------------
The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
initiative of OASIS <http://www.oasis-open.org>
The list archives are at http://lists.xml.org/archives/xml-dev/
To subscribe or unsubscribe from this list use the subscription
manager: <http://lists.xml.org/ob/adm.pl>
|