Subject: RE: xml output method
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Sun, 26 Feb 2006 13:46:41 -0000
|
Firstly, delete all the namespace declarations except the first two. They
aren't used and aren't needed.
Then add exclude-result-prefixes="w".
Michael Kay
http://www.saxonica.com/
> -----Original Message-----
> From: jologa@xxxxxxxxxxxx [mailto:jologa@xxxxxxxxxxxx]
> Sent: 26 February 2006 13:38
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: xml output method
>
> Hi,
>
> I'm using xalan java 2.4.1 under windows. I want to do a very
> simple transformation to strip text content from a word xml
> file using the following xslt:
>
> <xsl:stylesheet
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
> xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml"
> xmlns:v="urn:schemas-microsoft-com:vml"
> xmlns:w10="urn:schemas-microsoft-com:office:word"
> xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core"
> xmlns:aml="http://schemas.microsoft.com/aml/2001/core"
> xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint"
> xmlns:o="urn:schemas-microsoft-com:office:office"
> xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
>
> xmlns:text="http://schemas.microsoft.com/office/word/2003/auxHint"
> version="1.0">
> <xsl:output standalone="no" method="xml" encoding="UTF-8"/>
>
> <xsl:template match="w:t">
> <text>
> <xsl:value-of select="."/>
> </text>
> </xsl:template>
> </xsl:stylesheet>
>
>
> In the output I get the following:
>
> <text
> xmlns:text="http://schemas.microsoft.com/office/word/2003/auxH
> int" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
> xmlns:o="urn:schemas-microsoft-com:office:office"
> xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHin
> t" xmlns:aml="http://schemas.microsoft.com/aml/2001/core"
> xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core
> " xmlns:w10="urn:schemas-microsoft-com:office:word"
> xmlns:v="urn:schemas-microsoft-com:vml"
> xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml"
> >Sample text</text>
>
> and I would like to have
>
> <text>Sanple text</text>
>
> Is it possible to do this? I've had no luck so far.
>
> Thanks in advance,
> Josi
>
>
> __________________________________________________________________
> Switch to Netscape Internet Service.
> As low as $9.95 a month -- Sign up today at
> http://isp.netscape.com/register
>
> Netscape. Just the Net You Need.
>
> New! Netscape Toolbar for Internet Explorer
> Search from anywhere on the Web and block those annoying pop-ups.
> Download now at http://channels.netscape.com/ns/search/install.jsp
| Current Thread |
- xml output method
- jologa - 26 Feb 2006 13:38:59 -0000
- Michael Kay - 26 Feb 2006 13:47:08 -0000 <=
- <Possible follow-ups>
- jologa - 26 Feb 2006 14:49:13 -0000
|
|