Searching for the MPXDOC-92 I saw that in plugin.jelly we have :

    <!--
     | escapes a string for generating a valid name token (need for "name" attribute 
in html anchors)
     | @value given token
    --> 
     <define:tag name="escapeNameToken">
     <j:invokeStatic var="escapedtoken" 
className="org.apache.commons.lang.StringUtils" method="replaceChars">
        <j:arg type="java.lang.String" value="${value}" useContextClassLoader="true"/>
        <j:arg type="java.lang.String" value=" .,;!?/'\()[]{}+*°" 
useContextClassLoader="true"/>
        <j:arg type="java.lang.String" value="__________________" 
useContextClassLoader="true"/>
     </j:invokeStatic>${escapedtoken}</define:tag>

  </define:taglib>

But we don't have the commons-lang in the xdoc dependencies.

It's magic because it works.

Arnaud

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

Reply via email to