You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by rd...@apache.org on 2008/08/20 22:32:30 UTC

svn commit: r687453 - in /james/mailet/base/trunk: ./ src/site/ src/site/resources/images/ src/site/xdoc/

Author: rdonkin
Date: Wed Aug 20 13:32:30 2008
New Revision: 687453

URL: http://svn.apache.org/viewvc?rev=687453&view=rev
Log:
Some improvements for the website, derived from MailetAPI documents.

Added:
    james/mailet/base/trunk/src/site/resources/images/james-mailet-base-logo.gif
      - copied, changed from r683387, james/mailet/api/trunk/src/site/resources/images/james-mailetapi-logo.gif
Removed:
    james/mailet/base/trunk/src/site/resources/images/james-server-logo.gif
    james/mailet/base/trunk/src/site/resources/images/james_config_load_balance.png
    james/mailet/base/trunk/src/site/resources/images/james_config_secondary.png
    james/mailet/base/trunk/src/site/resources/images/james_config_smart_host.png
Modified:
    james/mailet/base/trunk/pom.xml
    james/mailet/base/trunk/src/site/site.xml
    james/mailet/base/trunk/src/site/xdoc/index.xml

Modified: james/mailet/base/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/pom.xml?rev=687453&r1=687452&r2=687453&view=diff
==============================================================================
--- james/mailet/base/trunk/pom.xml (original)
+++ james/mailet/base/trunk/pom.xml Wed Aug 20 13:32:30 2008
@@ -36,11 +36,11 @@
   <description>
     Apache JAMES Basic Mailet Toolkit
   </description>
-  <parent>
-    <groupId>org.apache.james</groupId>
-    <artifactId>james-project</artifactId>
-    <version>1.1</version>
-    <relativePath>stage/org.apache.james/poms/james-project-1.1.pom</relativePath>
+  <parent>
+    <groupId>org.apache.james</groupId>
+    <artifactId>james-project</artifactId>
+    <version>1.2</version>
+    <relativePath>../james-project/project/pom.xml</relativePath>
   </parent>
   <url>http://james.apache.org/mailet/base</url>
   <inceptionYear>2008</inceptionYear>
@@ -164,16 +164,49 @@
     </plugins>
   </build>
   
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>jxr-maven-plugin</artifactId>
-      </plugin>
-    </plugins>
+   <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.4.3</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.4.3</version>
+      </plugin> 
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+            <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>2.0-beta-6</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <version>1.0-alpha-3</version>
+        <configuration>
+          <excludes>
+            <exclude>NOTICE.txt</exclude>
+            <exclude>LICENSE.txt</exclude>
+            <!-- Generated by Maven -->
+            <exclude>release.properties</exclude>
+            <exclude>dist/**/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <version>2.2</version>
+      </plugin>
+    </plugins>
   </reporting>
   
 </project>
\ No newline at end of file

Copied: james/mailet/base/trunk/src/site/resources/images/james-mailet-base-logo.gif (from r683387, james/mailet/api/trunk/src/site/resources/images/james-mailetapi-logo.gif)
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/src/site/resources/images/james-mailet-base-logo.gif?p2=james/mailet/base/trunk/src/site/resources/images/james-mailet-base-logo.gif&p1=james/mailet/api/trunk/src/site/resources/images/james-mailetapi-logo.gif&r1=683387&r2=687453&rev=687453&view=diff
==============================================================================
Binary files - no diff available.

Modified: james/mailet/base/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/src/site/site.xml?rev=687453&r1=687452&r2=687453&view=diff
==============================================================================
--- james/mailet/base/trunk/src/site/site.xml (original)
+++ james/mailet/base/trunk/src/site/site.xml Wed Aug 20 13:32:30 2008
@@ -20,7 +20,7 @@
 <project name="Apache JAMES Basic Mailet Toolkit">
   <bannerLeft>
     <name>JAMES Basic Mailet Toolkit</name>
-    <src>images/james-server-logo.gif</src>
+    <src>images/james-mailet-base-logo.gif</src>
     <href>http://james.apache.org/mailets/basic/index.html</href>
   </bannerLeft>
 
@@ -36,6 +36,13 @@
       <item name="Overview" href="index.html"/>
     </menu>
 
+    <menu name="Mailets">
+      <item name="API" href="http://james.apache.org/mailet/api"/>
+      <item name="Basic Toolkit" href="http://james.apache.org/mailet/base"/>
+      <item name="Standard" href="http://james.apache.org/mailet/standard"/>
+      <item name="Crypto" href="http://james.apache.org/mailet/crypto"/>
+    </menu>
+
     ${reports}
 
   </body>

Modified: james/mailet/base/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/james/mailet/base/trunk/src/site/xdoc/index.xml?rev=687453&r1=687452&r2=687453&view=diff
==============================================================================
--- james/mailet/base/trunk/src/site/xdoc/index.xml (original)
+++ james/mailet/base/trunk/src/site/xdoc/index.xml Wed Aug 20 13:32:30 2008
@@ -24,7 +24,9 @@
   </properties>
   <body>
     <section name="Basic Mailet Toolkit">
-      	<p>A toolit for builders of mailets and matchers.</p>
+      	<p>
+A toolkit for builders of mailets and matchers with minimal dependencies.
+		</p>
     </section>
     <section name='Catalog'>
         <p>For more information see the <a href='apidocs/index.html'>javadocs</a>.</p>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org