Re: X-Link query

Subject: Re: X-Link query
From: "Nikita Ogievetsky" <nogievet@xxxxxxxxxxxx>
Date: Wed, 22 Dec 1999 21:44:04 -0000
This is an of-topic question,
but there is no active xlink mailing list
and so I decided to answer:

Your link should be:
 <A
  xmlns:xlink="http://www.w3.org/1999/xlink/namespace/";
  xlink:type="simple"
  xlink:title="Hotspot"
  xlink:href="image.xml"
  xlink:show="new"
  xlink:actuate="onRequest"
  usemap="imagemap"
  shape="rect"
  coords="232,0,212,0"
 >
 </A>
or
 <A
  xmlns:xlink="http://www.w3.org/1999/xlink/namespace/";
  type="simple"
  title="Hotspot"
  href="image.xml"
  show="new"
  actuate="onRequest"
  usemap="imagemap"
  shape="rect"
  coords="232,0,212,0"
 >
or if you declared xmlns:xlink, type, show, actuate as #FIXED attributes:
 <A
  title="Hotspot"
  href="image.xml"
  show="new"
  shape="rect"
  coords="232,0,212,0"
 >
Notice that you are allowed to add attributes and content to xlink element
as long as
"all of its attributes and content adhere to the conformance constraints
imposed by the chosen XLink element type"
For more information see:
XML Linking Language (XLink) W3C Working Draft
http://www.w3.org/TR/xlink/

Happy Holidays,

Nikita Ogievetsky
http://www.cogx.com
nogievet@xxxxxxxxxxxx

----- Original Message -----
From: Darren Shilson <dshilson@xxxxxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxx>
Sent: Tuesday, December 21, 1999 3:30 PM
Subject: X-Link query


> Hi,
>
> Please forgive me if I haven't explained this very well but...
>
> Suppose I have an image stored in an XML document, would it be possible to
> create an image map out of the image and store the links using xml tags?
>
> Something like
>
> <A
> xlink:usemap="imagemap"
> xlink:href="image.xml"
> xlink:shape="rect"
> xlink:coords="232,0,212,0"
> xlink:title="Hotspot">
> </A>
>
> I haven't fully read the new X-Link working draft, so I'm not sure if
image
> maps are covered or not.
>
> If they aren't how would you go about creating image maps in XML
>
> I'd appreciate any help
>
> Thanks
>
> Darren Shilson.
> ______________________________________________________
> Get Your Private, Free Email at http://www.hotmail.com
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread