mcconnell 2003/11/23 22:06:12
Modified: repository platform.xml
repository/impl/src/java/org/apache/avalon/repository/impl
DefaultFactory.java DefaultFileRepository.java
repository/site/xdocs/about navigation.xml reference.xml
Added: repository/impl/src/java/org/apache/avalon/repository/impl
ProxyContext.java
repository/site/xdocs/about/api artifact.xml classloader.xml
index.xml navigation.xml repository.xml
repository/spi/src/java/org/apache/avalon/repository/criteria
package.html
repository/spi/src/java/org/apache/avalon/repository/meta
package.html
Removed: repository/site/xdocs/about api.xml
repository/spi/src/java/org/apache/avalon/repository
ProxyContext.java
Log:
Site improvements.
Revision Changes Path
1.2 +33 -0 avalon-sandbox/repository/platform.xml
Index: platform.xml
===================================================================
RCS file: /home/cvs/avalon-sandbox/repository/platform.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- platform.xml 23 Nov 2003 20:17:55 -0000 1.1
+++ platform.xml 24 Nov 2003 06:06:11 -0000 1.2
@@ -19,8 +19,41 @@
<artifactId>avalon-util-defaults</artifactId>
<version>1.0-dev</version>
</dependency>
+ <dependency>
+ <id>excalibur-i18n</id>
+ <version>1.1</version>
+ </dependency>
</dependencies>
+ <packageGroups>
+
+ <packageGroup>
+ <title>Application Programming Interface</title>
+ <packages>org.apache.avalon.repository</packages>
+ </packageGroup>
+
+ <packageGroup>
+ <title>Service Provider Interface</title>
+
<packages>org.apache.avalon.repository.criteria,org.apache.avalon.repository.meta</packages>
+ </packageGroup>
+
+ <packageGroup>
+ <title>Reference Implementation</title>
+ <packages>org.apache.avalon.repository.impl</packages>
+ </packageGroup>
+
+ <packageGroup>
+ <title>Bootstrap Facilities</title>
+ <packages>org.apache.avalon.repository.main</packages>
+ </packageGroup>
+
+ <packageGroup>
+ <title>Common Utilities</title>
+ <packages>org.apache.avalon.repository.util</packages>
+ </packageGroup>
+
+ </packageGroups>
+
<reports>
<report>maven-changelog-plugin</report>
<report>maven-file-activity-plugin</report>
1.6 +1 -2
avalon-sandbox/repository/impl/src/java/org/apache/avalon/repository/impl/DefaultFactory.java
Index: DefaultFactory.java
===================================================================
RCS file:
/home/cvs/avalon-sandbox/repository/impl/src/java/org/apache/avalon/repository/impl/DefaultFactory.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DefaultFactory.java 24 Nov 2003 05:19:53 -0000 1.5
+++ DefaultFactory.java 24 Nov 2003 06:06:11 -0000 1.6
@@ -68,7 +68,6 @@
import org.apache.avalon.defaults.SystemDefaultsFinder ;
import org.apache.avalon.repository.Repository ;
-import org.apache.avalon.repository.ProxyContext ;
import org.apache.avalon.repository.RepositoryException ;
import org.apache.avalon.repository.RepositoryRuntimeException;
import org.apache.avalon.repository.criteria.Factory ;
1.15 +1 -2
avalon-sandbox/repository/impl/src/java/org/apache/avalon/repository/impl/DefaultFileRepository.java
Index: DefaultFileRepository.java
===================================================================
RCS file:
/home/cvs/avalon-sandbox/repository/impl/src/java/org/apache/avalon/repository/impl/DefaultFileRepository.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- DefaultFileRepository.java 24 Nov 2003 05:19:53 -0000 1.14
+++ DefaultFileRepository.java 24 Nov 2003 06:06:11 -0000 1.15
@@ -70,7 +70,6 @@
import org.apache.avalon.repository.BlockManifest;
import org.apache.avalon.repository.Repository;
-import org.apache.avalon.repository.ProxyContext;
import org.apache.avalon.repository.Artifact;
import org.apache.avalon.repository.ArtifactDatabase;
import org.apache.avalon.repository.RepositoryException;
1.1
avalon-sandbox/repository/impl/src/java/org/apache/avalon/repository/impl/ProxyContext.java
Index: ProxyContext.java
===================================================================
/*
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, 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 acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Jakarta", "Apache Avalon", "Avalon Framework" and
"Apache Software Foundation" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact [EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
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
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, 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.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see <http://www.apache.org/>.
*/
package org.apache.avalon.repository.impl;
import java.net.Authenticator;
/**
* A proxy context.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Avalon Development Team</a>
* @version $Revision: 1.1 $ $Date: 2003/11/24 06:06:11 $
*/
public final class ProxyContext
{
/**
* Host.
*/
private String m_host;
/**
* Port.
*/
private int m_port;
/**
* Authenticator.
*/
private Authenticator m_authenticator;
/**
* Creation of a new proxy context.
* @param host the host name
* @param port the port
* @param authenticator the authenticator
*/
public ProxyContext( String host, int port, Authenticator authenticator )
{
if( host == null ) throw new NullPointerException( "host" );
m_host = host;
m_port = port;
m_authenticator = authenticator;
}
/**
* Returns the proxy authenticator.
* @return the authenticator
*/
public Authenticator getAuthenticator()
{
return m_authenticator;
}
/**
* Returns the proxy host name.
* @return the host name
*/
public String getHost()
{
return m_host;
}
/**
* Returns the proxy port number.
* @return the port
*/
public String getPort()
{
return "" + m_port;
}
}
1.2 +1 -1 avalon-sandbox/repository/site/xdocs/about/navigation.xml
Index: navigation.xml
===================================================================
RCS file: /home/cvs/avalon-sandbox/repository/site/xdocs/about/navigation.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- navigation.xml 23 Nov 2003 20:17:55 -0000 1.1
+++ navigation.xml 24 Nov 2003 06:06:11 -0000 1.2
@@ -64,7 +64,7 @@
<menu name="About Repository">
<item name="Overview" href="/about/index.html">
- <item name="Programmer API" href="/about/api.html"/>
+ <item name="Programmer API" href="/about/api/index.html"/>
<item name="Provider SPI" href="/about/spi.html"/>
<item name="Implementation" href="/about/reference.html"/>
<item name="Bootstrap System" href="/about/bootstrap.html"/>
1.2 +1 -1 avalon-sandbox/repository/site/xdocs/about/reference.xml
Index: reference.xml
===================================================================
RCS file: /home/cvs/avalon-sandbox/repository/site/xdocs/about/reference.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- reference.xml 23 Nov 2003 20:17:55 -0000 1.1
+++ reference.xml 24 Nov 2003 06:06:11 -0000 1.2
@@ -59,7 +59,7 @@
<section name="Avalon Repository - RI">
- <subsection name="Reference Implementation (RI)">
+ <subsection name="Reference Implementation">
<p>
The Avalon Repository Reference Implementation provides support
for a chain of local and remote repositories using local file
1.1 avalon-sandbox/repository/site/xdocs/about/api/artifact.xml
Index: artifact.xml
===================================================================
<?xml version="1.0"?>
<!--
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, 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 acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Jakarta", "Apache Avalon", "Avalon Framework" and
"Apache Software Foundation" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact [EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
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
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, 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.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see http://www.apache.org/.
-->
<document>
<properties>
<author email="[EMAIL PROTECTED]">Stephen McConnell</author>
<title>Avalon Repository - API</title>
</properties>
<body>
<section name="Application Programmer Interfact (API)">
<subsection name="Artifacts">
<p>
The Avalon Repository API provides support for the notion of
an Artifact. An artifact is a logical reference to a
physical resource. A repository implementation is reponsible
for the establishment of a concrete URL relative to a logical
artifact reference.
</p>
<p>
The following code fragment demonstrates the creation of an
artifact reference. In this example we are creating a
reference using the Maven group/name/version semantics.
</p>
<source>
Artifact artifact =
ClassicArtifact.createJarArtifact(
"avalon-framework", "avalon-framework-api", "4.1.5" );</source>
<p>
Once an artifact has been created the repository is used to
to resolve the artifact to a concrete url. The actual url
returned to the client will have a transport protocol and
path adapted to the underlying repository type (e.g. HTTP,
LDAP, etc.).
</p>
<source>
URL url = m_repository.getResource( artifact );</source>
</subsection>
</section>
</body>
</document>
1.1 avalon-sandbox/repository/site/xdocs/about/api/classloader.xml
Index: classloader.xml
===================================================================
<?xml version="1.0"?>
<!--
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, 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 acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Jakarta", "Apache Avalon", "Avalon Framework" and
"Apache Software Foundation" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact [EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
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
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, 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.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see http://www.apache.org/.
-->
<document>
<properties>
<author email="[EMAIL PROTECTED]">Stephen McConnell</author>
<title>Avalon Repository - API</title>
</properties>
<body>
<section name="Application Programmer Interfact (API)">
<subsection name="ClassLoaders">
<p>
In addition to simple resource access, the repository
provides support for the creation of classloaders based on
meta information associated with jar artifacts. The repoistory
uses the MIME type x-meta to locate suplimentary information
about an artifact such as dependencies, classloader structures,
and other related information.
</p>
<p>
The following code fragment demonstrates the creation of an
classloader chain involving some 30 dependent jar file spead
across a three-tier classloader chain.
</p>
<source>
Artifact artifact =
ClassicArtifact.createJarArtifact(
"merlin", "merlin-kernel-impl", "3.2.2" );
ClassLoader classloader =
m_repository.getClassLoader( artifact );</source>
</subsection>
</section>
</body>
</document>
1.1 avalon-sandbox/repository/site/xdocs/about/api/index.xml
Index: index.xml
===================================================================
<?xml version="1.0"?>
<!--
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, 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 acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Jakarta", "Apache Avalon", "Avalon Framework" and
"Apache Software Foundation" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact [EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
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
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, 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.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see http://www.apache.org/.
-->
<document>
<properties>
<author email="[EMAIL PROTECTED]">Stephen McConnell</author>
<title>Avalon Repository - API</title>
</properties>
<body>
<section name="Application Programmer Interfact (API)">
<p>
The Avalon Repository API provides a simple and convinient
interface through which artifacts such as jar files or other
resources types can be retrieved easily using logic artifact
references. As such, the API isolates the user from transport
protocols and domain specific repository layouts.
</p>
<source>
Artifact artifact =
ClassicArtifact.createJarArtifact(
"avalon-framework", "avalon-framework-api", "4.1.5" );
URL url = m_repository.getResource( artifact ); </source>
<subsection name="Index">
<table>
<tr><th>Topic</th><th>Description</th></tr>
<tr>
<td><a href="artifact.html">Artifacts</a></td>
<td>Introduction to an artifactt.</td>
</tr>
<tr>
<td><a href="roadmap.html">Classloaders</a></td>
<td>Creating classloaders from artifacts.</td>
</tr>
<tr>
<td><a href="repository.html">Repository</a></td>
<td>
Introduction to the repository interface.
</td>
</tr>
</table>
</subsection>
</section>
</body>
</document>
1.1 avalon-sandbox/repository/site/xdocs/about/api/navigation.xml
Index: navigation.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!--
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, 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 acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Jakarta", "Apache Avalon", "Avalon Framework" and
"Apache Software Foundation" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact [EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
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
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, 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.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see http://www.apache.org/.
-->
<project>
<title>Merlin</title>
<body>
<links>
<item name="Apache" href="http://apache.org/"/>
<item name="Avalon" href="http://avalon.apache.org/"/>
<item name="Framework" href="http://avalon.apache.org/product/framework/"/>
<item name="Containers" href="http://avalon.apache.org/product/containers/"/>
<item name="Components" href="http://avalon.apache.org/product/components/"/>
</links>
<menu name="About Repository">
<item name="Overview" href="/about/index.html">
<item name="Programmer API" href="/about/api.html">
<item name="Artifact" href="/about/api/artifact.html"/>
<item name="Classloaders" href="/about/api/classloader.html"/>
<item name="Repository" href="/about/api/repository.html"/>
</item>
<item name="Provider SPI" href="/about/spi.html"/>
<item name="Implementation" href="/about/reference.html"/>
<item name="Bootstrap System" href="/about/bootstrap.html"/>
</item>
<item name="Getting Started" href="/start/index.html"/>
<item name="Tools" href="/tools/index.html"/>
</menu>
<menu name="Resources">
<item name="Javadoc" href="/api/index.html"/>
<item name="Download" href="/resources/download.html"/>
<item name="Roadmap" href="/resources/roadmap.html"/>
</menu>
</body>
</project>
1.1 avalon-sandbox/repository/site/xdocs/about/api/repository.xml
Index: repository.xml
===================================================================
<?xml version="1.0"?>
<!--
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, 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 acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Jakarta", "Apache Avalon", "Avalon Framework" and
"Apache Software Foundation" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact [EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
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
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, 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.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see http://www.apache.org/.
-->
<document>
<properties>
<author email="[EMAIL PROTECTED]">Stephen McConnell</author>
<title>Avalon Repository - API</title>
</properties>
<body>
<section name="Application Programmer Interfact (API)">
<subsection name="Repository">
<p>
IN PREPARATION
</p>
</subsection>
</section>
</body>
</document>
1.1
avalon-sandbox/repository/spi/src/java/org/apache/avalon/repository/criteria/package.html
Index: package.html
===================================================================
<body>
<p>
The criteria package defines a supplimentary factory contract implementated by
applications that can be launched by the reopository on demand</p>
<p>Key features include:</p>
<ul>
<li>defaults establishment contract</li>
<li>metadata implementation target descriptor</li>
<li>standard factory constructor</li>
</ul>
</body>
1.1
avalon-sandbox/repository/spi/src/java/org/apache/avalon/repository/meta/package.html
Index: package.html
===================================================================
<body>
<p>
The repository meta package defines a set of descriptors dealing with specific meta
classes.</p>
</body>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]