xpointers in use statements

Questions:
1. Can an "xlink:href" inside a "use" refer to another document according to
the SVG spec?
2. If so, is my syntax below a valid representation?
3. Also if so, does Amaya currently support this feature?

In file r.xml, I have....
<?xml version="1.0" encoding="iso-8859-1"?>
<svg id ="r"xmlns="http://www.w3.org/2000/svg" width="16" height="20">
	<g fill="none" stroke="black" stroke-width="1">
		<line x1="3" y1="0" x2="3" y2="6"/>
                 .........
	</g>
</svg>

In another document I have
<?xml version="1.0" encoding="iso-8859-1"?>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="20">
	<use xlink:href="/login/brendav/svg/r.svg#xpointer(id=r)"/>
</svg>

Received on Thursday, 14 February 2002 14:37:29 UTC