Vaclav Barta wrote:
Hi,

the documentation of subj. (version 1.01) says that the request.uri XSL parameter has "the full URI of the current request", but if the request contains any parameters, they aren't included in the value... The information *is* available via request.uri.query, so I suppose I can do

<xsl:choose>
        <xsl:when test="$request.uri.query">
                <xsl:value-of select="concat($request.uri, '?', $request.uri.query)"/>
        </xsl:when>
        <xsl:otherwise>
                <xsl:value-of select="$request.uri"/>
        </xsl:otherwise>
</xsl:choose>


I'd disagree because "?..." is not part of the URI.

but that looks strange... Would it be possible to fix the behavior within the module?

        Bye
                Vasek


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




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



Reply via email to