Author: jhm
Date: Fri Aug 18 02:37:11 2006
New Revision: 432534
URL: http://svn.apache.org/viewvc?rev=432534&view=rev
Log:
Add a note to the _svn-Hack of Subversion 1.3.
Modified:
ant/core/trunk/docs/manual/CoreTasks/defaultexcludes.html
Modified: ant/core/trunk/docs/manual/CoreTasks/defaultexcludes.html
URL:
http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/CoreTasks/defaultexcludes.html?rev=432534&r1=432533&r2=432534&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/CoreTasks/defaultexcludes.html (original)
+++ ant/core/trunk/docs/manual/CoreTasks/defaultexcludes.html Fri Aug 18
02:37:11 2006
@@ -69,12 +69,26 @@
<defaultexcludes default="true"/>
</pre>
+<h3>Notes</h3>
+By default the pattern <tt>**/.svn</tt> ane <tt>**/.svn/**</tt> are set as
default
+excludes. With version 1.3 Subversion supports the
+<a target="_blank"
href="http://subversion.tigris.org/svn_1.3_releasenotes.html">"_svn
hack"</a>.
+That means, that die svn-libraries evaluate environment variables and use
<i>.svn</i>
+or <i>_svn</i> directory regarding to that value. We had chosen not to
evaluate environment variables to
+get a more reliable build. Instead you have to change the settings by yourself
by changing
+the exclude patterns:
+<pre>
+ <defaultexcludes remove="**/.svn"/>
+ <defaultexcludes remove="**/.svn/**"/>
+ <defaultexcludes add="**/_svn"/>
+ <defaultexcludes add="**/_svn/**"/>
+</pre>
+
<hr>
-<p align="center">Copyright © 2003-2005 The Apache Software Foundation.
All rights
+<p align="center">Copyright © 2003-2006 The Apache Software Foundation.
All rights
Reserved.</p>
</body>
</html>
-
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]