xsl-list
[Top] [All Lists]

Re: [xsl] matching xhtml tags

2011-09-02 18:31:27

Hi deloptes,

You know how it is ... as soon as you hit send...

Likely your issue is that your xhtml is arriving to you in the
xhtml namespace.  Therefore you need to include that namespace
in your template.

<xsl:stylesheet version="2.0"
     xmlns:xs="http://www.w3.org/2001/XMLSchema";
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
     xmlns="http://www.w3.org/1999/xhtml";
     exclude-result-prefixes="xs xsl">

.....

and you select

<xsl:apply-templates select="html:html"/>

and so forth.

Cheers,
Hank


On 9/2/11 4:12 PM, Hank Ratzesberger wrote:


On 9/2/11 3:27 PM, deloptes wrote:
Hi,

nice to meet you.

I'm using often xsl to process xml files, but for first time I'm trying to do something with a xhtml file. I probably don't do something right, but my
xsl is matching only the "/" tag and the tags are stripped only the text
part is displayed.

I'm using Xalan, but tried also the java version and xsltproc and all behave
the same. The part below should work, but doesn't.

I would be very thankful for some help

thanks in advance

regards

...

<xsl:output encoding="UTF-8" method="xml" indent="yes"/>

<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="html">
<document>
<title>
<xsl:value-of select="head/title"/>
</title>
<xsl:apply-templates select="body"/>
</document>
</xsl:template>

The processor is falling through (with no specific match) to
the default template, which outputs the text content.

Perhaps what you want to do is

<xsl:copy-of select="body"/>

To "paste in" the body element and its children as is.

---Hank




--
Louis (Hank) Ratzesberger
hankr(_at_)ucsd(_dot_)edu
Scripps Orbit and Permanent Array Center
Mailing Address:
Mail Code 0225
9500 Gilman Drive
University of California, San Diego
La Jolla, CA 92093-0225
858-822-4472
IGPP/SIO Location:
Bldg T-31
8860 Biological Grade

--~------------------------------------------------------------------
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>
--~--


--
Louis (Hank) Ratzesberger
hankr(_at_)ucsd(_dot_)edu
Scripps Orbit and Permanent Array Center
Mailing Address:
Mail Code 0225
9500 Gilman Drive
University of California, San Diego
La Jolla, CA 92093-0225
858-822-4472
IGPP/SIO Location:
Bldg T-31
8860 Biological Grade

--~------------------------------------------------------------------
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>