This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [docbook-apps] Profiling problem


Great stuff! That did it.

Thanks a lot!

*Martin Polley
*Technical Communicator
+972 (52) 3864280
Homepage <http://212.179.45.118:8080/cocoon/writestuff/index.html>


Jirka Kosek wrote:


Martin Polley wrote:

   <xsl:param name="html.stylesheet" select="'../html.css'"/>
   <xsl:param name="section.autolabel" select="0"/>
   <xsl:param name="profile.userlevel" select="user"/>


You must surround user by apostrophes to make it XPath string literal. Your code selects are user subelements instead of text 'user':

<xsl:param name="profile.userlevel" select="'user'"/>

You can also alternatively use another syntax:

<xsl:param name="profile.userlevel">user</xsl:param>

Jirka


To unsubscribe from this list, send a post to docbook-apps-unsubscribe@lists.oasis-open.org, or visit http://www.oasis-open.org/mlmanage/.



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]