Xoan

Not too hard....


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

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

<!-- your node -->
<xsl:template match="xmlcode">
  <b><xsl:apply-templates/></b>
</xsl:template>

<!-- others; leave as they are -->
<xsl:template match="@*|node()" priority="-1">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>


HTH
Derek

>>> [EMAIL PROTECTED] 2005/05/10 02:10:25 PM >>>
        Hi all,

I apologize for the obvious question. Perhaps this is not the right
place to present it.

I am using Cocoon and XSP to query eXist (native xml database).I have
a xsp that performs a query on eXist using the following code:

====
<xsp:page language="javascript" xmlns:xsp="http://apache.org/xsp"; 
        xmlns:xdb="http://exist-db.org/xmldb/1.0"; 
        xmlns:xsp-request="http://apache.org/xsp/request/2.0";
        xmlns:util="http://apache.org/xsp/util/v1";>

<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
...
...
        <xmlcode>
                <xsp:content><xdb:get-xml as="xml"/></xsp:content>
        </xmlcode>

...
...
</body>
</html>

</xsp:page>
====

I need to perform some simple format (like bold or italics) on the
element <xmlcode>. The rest of the page must remain equal.
I am trying to pass a xsl to it.  In my sitemap:

                        <map:match pattern="**.xsp">
                                <map:generate src="{1}.xsp"
type="serverpages"/>
                                <map:transform src="SomeFormat.xsl"/>
                                <map:serialize 
type="html"/>                           
                        </map:match>


How could I perform this format leaving the rest of the document
without changes??
Any xsl example similar to this on blocks?

Thanks in advance

Xoan

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


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

Reply via email to