Hi,
I have a pipe line that does some aggregation:

        <map:aggregate element="home">
                <map:part src="cocoon:/support/beya-menu" />
                <map:part src="cocoon:/support/contract-summary" />
                <map:part src="context://beyarecords/content/adv-xyz-01.xml" />
                <map:part src="context://beyarecords/content/site_title.xml" />
        </map:aggregate>

The line of issue is <map:part src="cocoon:/support/beya-menu" />, for which the code is:

        <map:match pattern="support/beya-menu">
                                
                <map:generate type="serverpages" src="xsp/beya-menu.xsp"/>
                <map:serialize type="html"/>
                                        
        </map:match>

The xsp code is:

<page>

<menu>
<table width="100%" border="1">
<tr>
<td align="left" valign="top"><a href="/temp/home">menu item 1</a></td>
</tr>
<tr>
<td align="left" valign="top"><a href="/temp/home">menu item 2</a></td>
</tr>
</table>
</menu>



</page>


What is happening at the moment is that the html between the menu tags is being stripped and only menu item 1 and 2 are being written to the screen, when in fact I want the integrity of the html kept intact so that when written to the screen the links are available to be clicked. Could someone please inform me how to do this?


regards



Uzo



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



Reply via email to