Subject: Docbook html:form How to process?
From: "Hubert Holtz" <Turnhose_alt@xxxxxxx>
Date: Wed, 15 Jan 2003 21:03:24 +0100
|
Hy,
I want to insert forms in my XML file using the docbook dtd, the manual of docbook tells me something about <html:form> tag, so my XML part looks like this:
----------------
<html:form action="someAction" method="get" target="TargetWindow">
<para>
Let's test the form button. <html:button>Klick me!</html:button>
</para>
</html:form>
-------------------
And my XSL part looks like this:
------------------
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:html="http://www.w3.org/1999/xhtml">
...
<xsl:template match="html:form">
<form><xsl:apply-templates/></form>
</xsl:template>
-----------------
To test it I just want to create a simple form tag.
But no form tag is created in the final html file, what do I have to do?
thanks
Homer30
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|