Author: niallp
Date: Sun Jul 23 05:28:56 2006
New Revision: 424724
URL: http://svn.apache.org/viewvc?rev=424724&view=rev
Log:
Update site/build
Added:
jakarta/commons/sandbox/compress/trunk/maven.xml (with props)
jakarta/commons/sandbox/compress/trunk/xdocs/cvs-usage.xml (with props)
jakarta/commons/sandbox/compress/trunk/xdocs/downloads.xml (with props)
jakarta/commons/sandbox/compress/trunk/xdocs/issue-tracking.xml (with
props)
jakarta/commons/sandbox/compress/trunk/xdocs/style/
jakarta/commons/sandbox/compress/trunk/xdocs/style/project.css
Modified:
jakarta/commons/sandbox/compress/trunk/project.properties
jakarta/commons/sandbox/compress/trunk/project.xml
jakarta/commons/sandbox/compress/trunk/xdocs/navigation.xml
Added: jakarta/commons/sandbox/compress/trunk/maven.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/maven.xml?rev=424724&view=auto
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/maven.xml (added)
+++ jakarta/commons/sandbox/compress/trunk/maven.xml Sun Jul 23 05:28:56 2006
@@ -0,0 +1,83 @@
+<!--
+ Copyright 2001-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project default="java:jar"
+ xmlns:ant="jelly:ant"
+ xmlns:j="jelly:core">
+
+ <!-- ================================================================== -->
+ <!-- Copy into the binary distribution -->
+ <!-- ================================================================== -->
+ <postGoal name="dist:prepare-bin-filesystem">
+
+ <copy todir="${maven.dist.bin.assembly.dir}">
+ <fileset file='${basedir}/NOTICE.txt'/>
+ <fileset file="${basedir}/RELEASE-NOTES.txt"/>
+ </copy>
+
+ </postGoal>
+
+ <!-- ================================================================== -->
+ <!-- Copy into the source distribution -->
+ <!-- ================================================================== -->
+ <postGoal name="dist:prepare-src-filesystem">
+
+ <!-- Copy files -->
+ <copy todir="${maven.dist.src.assembly.dir}">
+ <fileset file='${basedir}/NOTICE.txt'/>
+ <fileset file="${basedir}/RELEASE-NOTES.txt"/>
+ <fileset file="${basedir}/checkstyle.xml"/>
+ </copy>
+
+ <!-- Copy xdoc directory -->
+ <copy todir="${maven.dist.src.assembly.dir}/xdocs">
+ <fileset dir="xdocs"/>
+ </copy>
+
+ </postGoal>
+
+ <!-- ================================================================== -->
+ <!-- Create MD5 Check Sums -->
+ <!-- ================================================================== -->
+ <postGoal name="dist">
+
+ <!-- create checksum for jar -->
+ <ant:checksum file="${maven.build.dir}/${maven.final.name}.jar"
property="jar.md5"/>
+ <ant:echo message="${jar.md5} *${maven.final.name}.jar"
+ file="${maven.build.dir}/${maven.final.name}.jar.md5" />
+
+ <!-- create checksum for binary zip -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}.zip"
property="zip.md5"/>
+ <ant:echo message="${zip.md5} *${maven.final.name}.zip"
+ file="${maven.dist.dir}/${maven.final.name}.zip.md5" />
+
+ <!-- create checksum for binary tar.gz -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}.tar.gz"
property="tar.gz.md5"/>
+ <ant:echo message="${tar.gz.md5} *${maven.final.name}.tar.gz"
+ file="${maven.dist.dir}/${maven.final.name}.tar.gz.md5" />
+
+ <!-- create checksum for source zip -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.zip"
property="src.zip.md5"/>
+ <ant:echo message="${src.zip.md5} *${maven.final.name}-src.zip"
+ file="${maven.dist.dir}/${maven.final.name}-src.zip.md5" />
+
+ <!-- create checksum for source tar.gz -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.tar.gz"
property="src.tar.gz.md5"/>
+ <ant:echo message="${src.tar.gz.md5} *${maven.final.name}-src.tar.gz"
+ file="${maven.dist.dir}/${maven.final.name}-src.tar.gz.md5"
/>
+
+ </postGoal>
+
+</project>
Propchange: jakarta/commons/sandbox/compress/trunk/maven.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: jakarta/commons/sandbox/compress/trunk/maven.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Modified: jakarta/commons/sandbox/compress/trunk/project.properties
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/project.properties?rev=424724&r1=424723&r2=424724&view=diff
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/project.properties (original)
+++ jakarta/commons/sandbox/compress/trunk/project.properties Sun Jul 23
05:28:56 2006
@@ -12,12 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-maven.xdoc.jsl=../commons-build/commons-site.jsl
maven.xdoc.date=bottom
maven.xdoc.poweredby.image=maven-feather.png
maven.xdoc.version=${pom.currentVersion}
maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
maven.xdoc.includeProjectDocumentation=yes
+maven.changes.issue.template=%URL%/browse/%ISSUE%
maven.checkstyle.properties = checkstyle.xml
@@ -30,13 +30,19 @@
# uncomment the next line to work in offline mode (no jar download & no
linkcheck)
#maven.mode.online=
maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
+maven.changelog.range=365
maven.javadoc.author=false
-maven.javadoc.links=http://java.sun.com/products/jdk/1.4/docs/api,http://jakarta.apache.org/commons/dbcp/apidocs
+#maven.javadoc.links=http://java.sun.com/products/jdk/1.4/docs/api
+maven.compile.source=1.3
+maven.compile.target=1.3
maven.compile.debug=on
maven.compile.deprecation=off
maven.compile.optimize=off
+
+# Make the source distro unzip to a different directory
+maven.dist.src.assembly.dir=${maven.dist.assembly.dir}/src/${maven.final.name}-src
maven.jarResources.basedir=src/java
maven.jar.excludes=**/package.html
Modified: jakarta/commons/sandbox/compress/trunk/project.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/project.xml?rev=424724&r1=424723&r2=424724&view=diff
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/project.xml (original)
+++ jakarta/commons/sandbox/compress/trunk/project.xml Sun Jul 23 05:28:56 2006
@@ -15,24 +15,60 @@
limitations under the License.
-->
<project>
- <extend>../commons-build/sandbox-project.xml</extend>
+ <pomVersion>3</pomVersion>
<name>Commons Compress</name>
- <id>commons-compress</id>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-compress</artifactId>
<logo>/images/compress-logo-white.png</logo>
+ <currentVersion>1.0-SNAPSHOT</currentVersion>
<inceptionYear>2002</inceptionYear>
<shortDescription>Commons Compress</shortDescription>
<description>
Commons Compress is a component that contains Tar, Zip and BZip2 packages.
</description>
- <currentVersion>0.1-dev</currentVersion>
- <issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
+
+ <url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
+ <package>org.apache.commons.${pom.artifactId.substring(8)}</package>
+
+ <organization>
+ <name>The Apache Software Foundation</name>
+ <url>http://jakarta.apache.org</url>
+ <logo>http://jakarta.apache.org/images/original-jakarta-logo.gif</logo>
+ </organization>
+
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>/LICENSE.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <gumpRepositoryId>jakarta</gumpRepositoryId>
+ <issueTrackingUrl>http://issues.apache.org/jira/</issueTrackingUrl>
<siteAddress>people.apache.org</siteAddress>
- <logo></logo>
+
<siteDirectory>/www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</siteDirectory>
+
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</distributionDirectory>
- <versions>
- </versions>
- <branches>
- </branches>
+ <repository>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</connection>
+ <url>http://svn.apache.org/viewcvs.cgi</url>
+ </repository>
+
+ <mailingLists>
+ <mailingList>
+ <name>Commons Dev List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+
<archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive>
+ </mailingList>
+ <mailingList>
+ <name>Commons User List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+
<archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive>
+ </mailingList>
+ </mailingLists>
<developers>
<developer>
@@ -57,17 +93,65 @@
</developers>
<dependencies>
+
<dependency>
- <id>junit</id>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
<version>3.8.1</version>
+ <url>http://www.junit.org/</url>
+ <properties>
+ <scope>test</scope>
+ <comment>
+ <strong>Test</strong> - Only required
+ for running the unit tests.
+ </comment>
+ </properties>
</dependency>
+
+ <dependency>
+ <groupId>maven</groupId>
+ <artifactId>maven-xdoc-plugin</artifactId>
+ <version>1.9.2</version>
+ <url>http://maven.apache.org/reference/plugins/xdoc/</url>
+ <type>plugin</type>
+ <properties>
+ <comment>
+ <strong>Site</strong> - Only
+ required for building the website/documentation.
+ </comment>
+ </properties>
+ </dependency>
+
</dependencies>
<build>
+ <sourceDirectory>src/java</sourceDirectory>
+ <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test*</include>
</includes>
</unitTest>
+ <resources>
+ <resource>
+ <directory>${basedir}</directory>
+ <targetPath>META-INF</targetPath>
+ <includes>
+ <include>NOTICE.txt</include>
+ </includes>
+ </resource>
+ </resources>
</build>
+
+
+ <reports>
+ <!-- report>maven-checkstyle-plugin</report -->
+ <report>maven-changelog-plugin</report>
+ <report>maven-javadoc-plugin</report>
+ <report>maven-junit-report-plugin</report>
+ <report>maven-jxr-plugin</report>
+ <report>maven-junit-report-plugin</report>
+ <report>maven-license-plugin</report>
+ </reports>
+
</project>
Added: jakarta/commons/sandbox/compress/trunk/xdocs/cvs-usage.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/xdocs/cvs-usage.xml?rev=424724&view=auto
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/xdocs/cvs-usage.xml (added)
+++ jakarta/commons/sandbox/compress/trunk/xdocs/cvs-usage.xml Sun Jul 23
05:28:56 2006
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+ -->
+
+<document>
+ <properties>
+ <title>Source repository</title>
+ <author email="[email protected]">Commons Documentation
Team</author>
+ </properties>
+ <body>
+<!-- ================================================== -->
+<section name="Source repository">
+<p>
+ Jakarta Commons Compress is hosted on the Apache
+ <a href="http://subversion.tigris.org/">subversion</a> repository.
+</p>
+<p>
+ The project URL is:<br />
+
<code>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/compress/trunk</code>
+</p>
+<p>
+ The best way to view the repository is via the
+ <a
href="http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/">subversion
viewer</a>.
+</p>
+<p>
+ The alternative is to use the
+ <a
href="http://svn.apache.org/repos/asf/jakarta/commons/sandbox/compress/trunk/">native
subversion</a> display.
+</p>
+<p>
+ For more information on subversion and creating patches see the
+ <a href="http://www.apache.org/dev/contributors.html">Apache Contributors
Guide</a>.
+</p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>
\ No newline at end of file
Propchange: jakarta/commons/sandbox/compress/trunk/xdocs/cvs-usage.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: jakarta/commons/sandbox/compress/trunk/xdocs/cvs-usage.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: jakarta/commons/sandbox/compress/trunk/xdocs/downloads.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/xdocs/downloads.xml?rev=424724&view=auto
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/xdocs/downloads.xml (added)
+++ jakarta/commons/sandbox/compress/trunk/xdocs/downloads.xml Sun Jul 23
05:28:56 2006
@@ -0,0 +1,56 @@
+<?xml version="1.0"?>
+<!--
+ Copyright 2006 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<document>
+ <properties>
+ <title>Downloads</title>
+ </properties>
+
+ <body>
+ <section name="Download Compress">
+
+ <subsection name="Releases">
+ <p>
+ There are currently no official downloads, and will not be
until Compress moves out of the Sandbox.
+<!--
+ Download the <a
href="http://jakarta.apache.org/site/downloads/downloads_commons-compress.cgi">Latest
Release</a>
+ of Commons Finder.
+-->
+ </p>
+
+ </subsection>
+
+ <subsection name="Nightly Builds">
+ <p>
+ <a
href="http://people.apache.org/builds/jakarta-commons/nightly/commons-compress/">Nightly
Builds</a>
+ are built once a day from the current SVN HEAD. This is
(nearly) the latest code and so should
+ be treated with caution.
+ </p>
+ </subsection>
+<!--
+ <subsection name="Archived Releases">
+ <p>
+ Older releases are retained by the Apache Software Foundation
but are
+ moved into a
+ <a
href="http://archive.apache.org/dist/jakarta/commons/compress/">
+ special archive area</a>.
+ </p>
+ </subsection>
+-->
+ </section>
+
+ </body>
+</document>
Propchange: jakarta/commons/sandbox/compress/trunk/xdocs/downloads.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: jakarta/commons/sandbox/compress/trunk/xdocs/downloads.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: jakarta/commons/sandbox/compress/trunk/xdocs/issue-tracking.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/xdocs/issue-tracking.xml?rev=424724&view=auto
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/xdocs/issue-tracking.xml (added)
+++ jakarta/commons/sandbox/compress/trunk/xdocs/issue-tracking.xml Sun Jul 23
05:28:56 2006
@@ -0,0 +1,71 @@
+<?xml version="1.0"?>
+<!--
+Copyright 2006 The Apache Software Foundation.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+<document>
+ <properties>
+ <title>Issue tracking</title>
+ <author email="[email protected]">Commons Documentation
Team</author>
+ </properties>
+<body>
+<!-- ================================================== -->
+<section name="Issue tracking">
+<p>
+ Commons Compress uses <a href="http://issues.apache.org/jira/">ASF JIRA</a>
for for tracking issues.
+ See the <a href="http://issues.apache.org/jira/browse/SANDBOX">Sandbox JIRA
project page</a>.
+</p>
+<p>
+ To use JIRA you may need to <a
href="http://issues.apache.org/jira/secure/Signup!default.jspa">create an
account</a>
+ (if you have previously created/updated Commons issues using Bugzilla an
account will have been automatically
+ created and you can use the <a
href="http://issues.apache.org/jira/secure/ForgotPassword!default.jspa">Forgot
Password</a>
+ page to get a new password).
+</p>
+<p>
+ If you would like to report a bug, or raise an enhancement request with
+ Commons Compress please do the following:
+ <ol>
+ <li><a
href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=12311183&sorter/field=issuekey&sorter/order=DESC&status=1&status=4">Search
existing open bugs</a>.
+ If you find your issue listed then please add a comment with your
details.</li>
+ <li><a
href="http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/">Search the
mailing list archive</a>.
+ You may find your issue or idea has already been discussed.</li>
+ <li>Decide if your issue is a bug or an enhancement.</li>
+ <li>Submit either a <a
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310491&component=12311183&issuetype=1&priority=4&assignee=-1">bug
report</a>
+ or <a
href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310491&component=12311183&issuetype=4&priority=4&assignee=-1">enhancement
request</a>.</li>
+ </ol>
+</p>
+<p>
+ Please also remember these points:
+ <ul>
+ <li>the more information you provide, the better we can help you</li>
+ <li>test cases are vital, particularly for any proposed enhancements</li>
+ <li>the developers of Commons Compress are all unpaid volunteers</li>
+ </ul>
+</p>
+<p>
+ For more information on subversion and creating patches see the
+ <a href="http://www.apache.org/dev/contributors.html">Apache Contributors
Guide</a>.
+</p>
+<p>
+ You may also find these links useful:
+ <ul>
+ <li><a
href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=12311183&sorter/field=issuekey&sorter/order=DESC&status=1&status=4">All
Open Compress bugs</a></li>
+ <li><a
href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=12311183&sorter/field=issuekey&sorter/order=DESC&status=5&status=6">All
Resolved Compress bugs</a></li>
+ <li><a
href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=12311183&sorter/field=issuekey&sorter/order=DESC">All
Compress bugs</a></li>
+ </ul>
+</p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>
Propchange: jakarta/commons/sandbox/compress/trunk/xdocs/issue-tracking.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: jakarta/commons/sandbox/compress/trunk/xdocs/issue-tracking.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Modified: jakarta/commons/sandbox/compress/trunk/xdocs/navigation.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/xdocs/navigation.xml?rev=424724&r1=424723&r2=424724&view=diff
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/sandbox/compress/trunk/xdocs/navigation.xml Sun Jul 23
05:28:56 2006
@@ -14,17 +14,33 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<!DOCTYPE org.apache.commons.menus SYSTEM
'../../commons-build/menus/menus.dtd'>
+<!DOCTYPE org.apache.commons.menus SYSTEM
'http://jakarta.apache.org/commons/build/maven-build.dtd'>
<project name="Commons Compress">
<title>Commons Compress</title>
<body>
+
+ <links>
+ <item name="Apache" href="http://www.apache.org"/>
+ <item name="Jakarta" href="http://jakarta.apache.org"/>
+ <item name="Commons"
href="http://jakarta.apache.org/commons/"/>
+ </links>
+
<menu name="Commons Compress">
- <item name="Overview" href="/index.html"/>
- <item name="Javadoc" href="apidocs/index.html"/>
- <item name="Mailing lists" href="/mail-lists.html"/>
- <item name="Team" href="/team-list.html"/>
- <item name="SVN"
href="http://svn.apache.org/viewcvs/jakarta/commons/sandbox/compress/"/>
+ <item name="Overview" href="/index.html"/>
+ <item name="Download" href="/downloads.html"/>
+ <item name="Javadoc" href="apidocs/index.html"/>
+ <item name="Wiki"
href="http://wiki.apache.org/jakarta-commons/Compress"/>
</menu>
- &common-menus;
+
+ <menu name="Development">
+ <item name="Mailing Lists" href="/mail-lists.html"/>
+ <item name="Issue Tracking" href="/issue-tracking.html"/>
+ <item name="Team" href="/team-list.html"/>
+ <item name="Source Repository" href="/cvs-usage.html"/>
+ <item name="Javadoc (latest)"
href="http://jakarta.apache.org/commons/chain/apidocs/"/>
+ </menu>
+
+ &commons;
+
</body>
</project>
Added: jakarta/commons/sandbox/compress/trunk/xdocs/style/project.css
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/xdocs/style/project.css?rev=424724&view=auto
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/xdocs/style/project.css (added)
+++ jakarta/commons/sandbox/compress/trunk/xdocs/style/project.css Sun Jul 23
05:28:56 2006
@@ -0,0 +1 @@
[EMAIL PROTECTED] url("http://jakarta.apache.org/style/jakarta-maven.css");
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]