LUCENE-4059: Improve ANT task prepare-webpages (used by documentation tasks) to correctly encode build file names as URIs for later processing by XSL

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1339097 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2012-05-16 09:55:44 +00:00
parent d8e0288109
commit 10de020795
2 changed files with 10 additions and 1 deletions

View File

@ -995,6 +995,10 @@ Build
* LUCENE-3286: Moved remainder of contrib/xml-query-parser to lucene/queryparser.
Classes now found at org.apache.lucene.queryparser.xml.*
* LUCENE-4059: Improve ANT task prepare-webpages (used by documentation
tasks) to correctly encode build file names as URIs for later processing by
XSL. (Greg Bowyer, Uwe Schindler)
======================= Lucene 3.6.0 =======================
Changes in backwards compatibility policy

View File

@ -225,8 +225,13 @@
</target>
<target name="process-webpages" depends="resolve-pegdown">
<pathconvert pathsep="|" dirsep="/" property="buildfiles">
<pathconvert pathsep="|" property="buildfiles">
<fileset dir="." includes="**/build.xml" excludes="build.xml,analysis/*,build/**,tools/**,backwards/**,site/**"/>
<mapper>
<scriptmapper language="javascript">
self.addMappedName((new java.io.File(source)).toURI());
</scriptmapper>
</mapper>
</pathconvert>
<!--
The XSL input file is ignored completely, but XSL expects one to be given,