--- /dev/null
+build
\ No newline at end of file
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html><head><title>Ant-Contrib Tasks</title></head>
+
+ <body>
+ <table border="0" width="100%"><tbody><tr><td valign="bottom"><h1>Ant-Contrib Tasks</h1></td>
+ <td>
+ <!-- PROJECT LOGO -->
+ <a href="http://sourceforge.net/">
+ <img src="Ant-Contrib%20Tasks_files/sflogo.png" alt="SourceForge logo" align="right" border="0">
+ </a>
+ </td>
+ </tr></tbody></table>
+
+ <h2>Contents</h2>
+
+ <ul>
+ <li><a href="#intro">What's this?</a></li>
+ <li><a href="#install">Installation</a></li>
+ <li><a href="http://ant-contrib.sourceforge.net/cc.html">cc compilation task</a></li>
+ <li><a href="http://ant-contrib.sourceforge.net/tasks/index.html">Other tasks</a></li>
+ </ul>
+
+ <h2><a name="intro">What's this?</a></h2>
+
+ <p>The Ant-Contrib project is a collection of tasks (and at one
+ point maybe types and other tools) for <a href="http://ant.apache.org/">Apache Ant</a>.</p>
+
+ <p>This Software is distributed under the <a href="http://ant-contrib.sourceforge.net/LICENSE.txt">Apache Software License</a>.</p>
+
+ <h2><a name="install">Installation</a></h2>
+
+ <p>First you must install Apache Ant itself, most of the
+ Ant-Contrib tasks require Ant 1.5 or higher to work properly. You can download Ant <a href="http://ant.apache.org/bindownload.cgi">from
+ Apache</a>.</p>
+
+ <p>Ant-contrib releases are available at the <a href="http://sourceforge.net/project/showfiles.php?group_id=36177">downloads</a> page.
+ Mailing lists, CVS and bug trackers can be accessed from the <a href="http://sourceforge.net/projects/ant-contrib">project</a> page.</p>
+
+ <p>See the <a href="http://ant-contrib.sourceforge.net/cc.html">cc</a> tasks for installation instructions for cpptasks. To install ant-contrib:</p>
+
+ <ol>
+ <li>Copy <code>ant-contrib-0.3.jar</code> to the
+ <code>lib</code> directory of your Ant installation. If you
+ want to use one of the tasks in your own project, add the lines
+<pre><taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
+</pre>
+ to your build file.</li>
+
+ <li>Keep <code>ant-contrib-0.3.jar</code> in a separate
+ location. You now have to tell Ant explicitly where to find it
+ (say in <code>/usr/share/java/lib</code>):
+<pre><taskdef resource="net/sf/antcontrib/antcontrib.properties">
+ <classpath>
+ <pathelement location="/usr/share/java/lib/ant-contrib-0.3.jar"/>
+ </classpath>
+</taskdef>
+</pre>
+ </li>
+
+ <hr>
+ <p align="center">Copyright © 2002-2003 Ant-Contrib Project. All
+ rights Reserved.</p>
+
+ </ol></body></html>
\ No newline at end of file
--- /dev/null
+/*
+ * The Apache Software License, Version 1.1
+ *
+ * Copyright (c) 2001-2003 Ant-Contrib project. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in
+ * the documentation and/or other materials provided with the
+ * distribution.
+ *
+ * 3. The end-user documentation included with the redistribution, if
+ * any, must include the following acknowlegement:
+ * "This product includes software developed by the
+ * Ant-Contrib project (http://sourceforge.net/projects/ant-contrib)."
+ * Alternately, this acknowlegement may appear in the software itself,
+ * if and wherever such third-party acknowlegements normally appear.
+ *
+ * 4. The name Ant-Contrib must not be used to endorse or promote products
+ * derived from this software without prior written permission. For
+ * written permission, please contact
+ * ant-contrib-developers@lists.sourceforge.net.
+ *
+ * 5. Products derived from this software may not be called "Ant-Contrib"
+ * nor may "Ant-Contrib" appear in their names without prior written
+ * permission of the Ant-Contrib project.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE ANT-CONTRIB PROJECT OR ITS
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ * ====================================================================
+ */
--- /dev/null
+Ant-Contrib library
+
+This library is for contributed Ant tasks that have
+not been approved for inclusion into the ant core or
+optional library.
+
+Requirements
+-------------------------
+Runtime:
+ Requires APACHE Ant Version 1.5 or above. Note, that output
+ handlers on the ForEach task will not properly report the
+ task which is outputting the message unless you are using
+ Ant version 1.5.2 or greater.
+
+ In addition, the <for> task will not work on versions prior
+ to Ant 1.6
+
+Compilation:
+ Requires Ant Version 1.6 or greater to compile and build the
+ package.
+
+
+Inclusion in your project
+-------------------------
+ The easiest way to use the tasks is to use
+
+<taskdef resource="net/sf/antcontrib/antlib.xml">
+ <classpath>
+ <pathelement location="your/path/to/ant-contrib-${version}.jar" />
+ </classpath>
+</taskdef>
+
+in your build file. If the jar file is on your CLASSPATH or in
+ANT_HOME/lib you can even simplify this to read
+
+<taskdef resource="net/sf/antcontrib/antlib.xml" />
+
+For projects which will run under 1.5 versions, you would
+use the .properties file instead of the antlib.xml file:
+
+<taskdef resource="net/sf/antcontrib/antcontrib.properties">
+ <classpath>
+ <pathelement location="your/path/to/ant-contrib.jar" />
+ </classpath>
+</taskdef>
+
--- /dev/null
+#plugins
+plugin@net.sourceforge.phpeclipse=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.core=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.debug.core=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.debug.ui=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.externaltools=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.launching=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.phphelp=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.phpunit=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.smarty.ui=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.ui=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.webbrowser=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.xdebug.core=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.xdebug.ui=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.xml.core=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.xml.ui=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+
+#features
+plugin@net.sourceforge.phpeclipse.feature=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+plugin@net.sourceforge.phpeclipse.feature.core=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+
+#Tests utils
+plugin@net.sourceforge.phpeclipse.tests=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse
+#Tests fragments
+plugin@net.sourceforge.phpeclipse.test=CVS,HEAD,:pserver:anonymous@phpeclipse.cvs.sourceforge.net:/cvsroot/phpeclipse