blob: a419a4268e1f17a482d29ac28c2b3c0ab2802a29 [file] [log] [blame]
<?xml version="1.0"?>
<xsp:page
language="java"
xmlns:xsp="http://apache.org/xsp"
xmlns:jpath="http://apache.org/xsp/jpath/1.0"
>
<site view="xsp">
<xsp:attribute name="signOn"><jpath:value-of select="accountForm/signOn"/></xsp:attribute>
<welcome>
<menu>
<jpath:if test="accountForm/signOn != 'false'">
<firstName><jpath:value-of select="accountForm/account/firstName"/></firstName>
</jpath:if>
<jpath:for-each select="categoryList" >
<category>
<xsp:attribute name="name"><jpath:value-of select="name"/></xsp:attribute>
<xsp:attribute name="id"><jpath:value-of select="catId"/></xsp:attribute>
</category>
</jpath:for-each>
</menu>
</welcome>
</site>
</xsp:page>