You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Xoan <xo...@gmail.com> on 2005/05/10 14:10:25 UTC

Newbie question about XSP and XSLT

	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: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org