Browse Source

Add download from mirror links

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273604 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 22 years ago
parent
commit
9feeebfbf8
4 changed files with 14 additions and 8 deletions
  1. +6
    -3
      docs/index.html
  2. +1
    -0
      proposal/ant-site/anakia/xdocs/cvs.xml
  3. +1
    -2
      src/main/org/apache/tools/ant/AntClassLoader.java
  4. +6
    -3
      xdocs/index.xml

+ 6
- 3
docs/index.html View File

@@ -189,11 +189,14 @@ Comprehensive documentation is included in the source and binary distributions.
</p>
<ul>
<li><a href="http://www.apache.org/dist/ant/binaries/">
Download the binary release</a></li>
Download the binary release</a>
[<a href="http://www.apache.org/dyn/closer.cgi/ant/binaries/">from a mirror</a>]</li>
<li><a href="http://www.apache.org/dist/ant/source/">
Download the source release</a></li>
Download the source release</a>
[<a href="http://www.apache.org/dyn/closer.cgi/ant/source/">from a mirror</a>]</li>
<li><a href="http://www.apache.org/dist/ant/binaries/rpms/">
Download source or binary RPMs</a></li>
Download source or binary RPMs</a>
[<a href="http://www.apache.org/dyn/closer.cgi/ant/binaries/rpms/">from a mirror</a>]</li>
</ul>
</blockquote>
</td></tr>


+ 1
- 0
proposal/ant-site/anakia/xdocs/cvs.xml View File

@@ -18,6 +18,7 @@ cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic login<br/>
password: anoncvs</source>

<source>

cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic checkout [module-name]</source>

<p>Modules available for access are (click the links to view the


+ 1
- 2
src/main/org/apache/tools/ant/AntClassLoader.java View File

@@ -1061,13 +1061,12 @@ public class AntClassLoader extends ClassLoader implements BuildListener {
try {
stream = getResourceStream(pathComponent, classFilename);
if (stream != null) {
// System.out.println("Found " + classFilename + " in " + pathComponent );
return getClassFromStream(stream, name);
}
} catch (SecurityException se) {
throw se;
} catch (IOException ioe) {
ioe.printStackTrace();
// ioe.printStackTrace();
log("Exception reading component " + pathComponent ,
Project.MSG_VERBOSE);
}


+ 6
- 3
xdocs/index.xml View File

@@ -83,11 +83,14 @@ Comprehensive documentation is included in the source and binary distributions.
</p>
<ul>
<li><a href="http://www.apache.org/dist/ant/binaries/">
Download the binary release</a></li>
Download the binary release</a>
[<a href="http://www.apache.org/dyn/closer.cgi/ant/binaries/">from a mirror</a>]</li>
<li><a href="http://www.apache.org/dist/ant/source/">
Download the source release</a></li>
Download the source release</a>
[<a href="http://www.apache.org/dyn/closer.cgi/ant/source/">from a mirror</a>]</li>
<li><a href="http://www.apache.org/dist/ant/binaries/rpms/">
Download source or binary RPMs</a></li>
Download source or binary RPMs</a>
[<a href="http://www.apache.org/dyn/closer.cgi/ant/binaries/rpms/">from a mirror</a>]</li>
</ul>
</section>


Loading…
Cancel
Save