Author: michiel Date: 2009-05-18 21:26:21 +0200 (Mon, 18 May 2009) New Revision: 35282
Modified: mmbase/trunk/config/xslt/docbook2block.xslt Log: made it possible to resolve relative links also in other modules Modified: mmbase/trunk/config/xslt/docbook2block.xslt =================================================================== --- mmbase/trunk/config/xslt/docbook2block.xslt 2009-05-18 18:45:35 UTC (rev 35281) +++ mmbase/trunk/config/xslt/docbook2block.xslt 2009-05-18 19:26:21 UTC (rev 35282) @@ -38,8 +38,13 @@ <xsl:param name="request" /> <xsl:param name="formatter_requestcontext" /> - <xsl:variable name="baseurl">http://scm.mmbase.org/view/*checkout*/mmbase/trunk/documentation/src/docbook/</xsl:variable> + <xsl:param name="repository">http://scm.mmbase.org/view/*checkout*</xsl:param> + <xsl:param name="project">mmbase/trunk</xsl:param> + <xsl:param name="module">documentation/src/docbook</xsl:param> + <xsl:param name="baseurl"><xsl:value-of select="$repository" />/<xsl:value-of select="$project" />/<xsl:value-of select="$module" />/</xsl:param> + + <xsl:variable name="lowercase">abcdefghijklmnopqrstuvwxyz</xsl:variable> <xsl:variable name="uppercase">ABCDEFGHIJKLMNOPQRSTUVWXYZ</xsl:variable> _______________________________________________ Cvs mailing list [email protected] http://lists.mmbase.org/mailman/listinfo/cvs
