Thanks, but not the good solve (I think)
The issue is not here.
The issue is on:
<xslt style="xdocs/stylesheets/website-style.xsl"
basedir="${src.docs}" destdir="${dest.docs}"
excludes="extending.xml" includes="*.xml">
Will be :
<xslt style="xdocs/stylesheets/website-style.xsl"
basedir="${src.docs}" destdir="${dest.docs}"
excludes="**/stylesheets/** extending.xml extending/*.xml"
includes="**/*.xml">
(check the build.xml anakia task version before your "new website" commit)
Don't commit, I will fix them.
On 08/03/2015 11:20, [email protected] wrote:
> Author: fschumacher
> Date: Sun Mar 8 11:20:00 2015
> New Revision: 1664968
>
> URL: http://svn.apache.org/r1664968
> Log:
> Generate html for localising directory, even if it is not directly linked.
>
> Bugzilla Id: 53764
>
> Modified:
> jmeter/trunk/build.xml
>
> Modified: jmeter/trunk/build.xml
> URL:
> http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1664968&r1=1664967&r2=1664968&view=diff
> ==============================================================================
> --- jmeter/trunk/build.xml (original)
> +++ jmeter/trunk/build.xml Sun Mar 8 11:20:00 2015
> @@ -2308,6 +2308,12 @@ run JMeter unless all the JMeter jars ar
> <param name="subdir" expression="usermanual" />
> <param name="year" expression="${year}" />
> </xslt>
> + <xslt style="xdocs/stylesheets/website-style.xsl"
> basedir="${src.docs}/localising" destdir="${dest.docs}/localising"
> + includes="*.xml">
> + <param name="relative-path" expression=".." />
> + <param name="subdir" expression="usermanual" />
> + <param name="year" expression="${year}" />
> + </xslt>
> <copy todir="${dest.docs}/images">
> <fileset dir="${src.images}" excludes="logo.xcf,logo.svg"/>
> </copy>
>
>
>