xsl-list
[Top] [All Lists]

[xsl] Filterting an OO document

2007-04-18 11:18:29
Hello,

I've used XSLT many times but for some reason I can never remember how
to do it.

If I run xsltproc on the content.xml of an OO document the result is an
empty file. I want to basically filter everything but specific content.

What am I doing wrong?

Mike

<?xml version="1.0" encoding="UTF-8"?>
      
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
    xmlns:style="http://openoffice.org/2000/style";
    xmlns:text="http://openoffice.org/2000/text";>
      
<xsl:output method="html"
    encoding="UTF-8"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
     
<xsl:template match="text:p[(_at_)text:style-name='p_5f_prototype']">
<pre>
    <xsl:value-of select="."/>
</pre>
</xsl:template>
     
<xsl:template match="text()|@*">
</xsl:template>
     
</xsl:stylesheet>

-- 
Michael B Allen
PHP Active Directory Kerberos SSO
http://www.ioplex.com/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>