On Dec 10, 2004, at 2:01 PM, S. Woodside wrote:

can we see a.xml?

thanks for responding!

here's a.xml, b.xml and ab.xsl

a.xml
------
<?xml-stylesheet href="ab.xsl" type="text/xsl"?>
<page>
<title>a.xml</title>
<content>blah</content>
</page>


b.xml ------ <?xml-stylesheet href="ab.xsl" type="text/xsl"?> <page> <title>b.xml</title> <content>de dah</content> </page>



ab.xsl
------
<?xml version="1.0"?>
<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0"
>

<xsl:output
  method="xml"
  indent="yes"/>

<xsl:template match="/page">
  <html>
  <head>
    <title>
      <xsl:value-of select="title"/>
    </title>
  </head>
  <body>
    <xsl:value-of select="content"/>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>






--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to