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 23:34:19 UTC

svn commit: r687474 - in /james/mailet/standard/trunk: ./ src/site/ src/site/resources/images/ src/site/xdoc/

Author: rdonkin
Date: Wed Aug 20 14:34:18 2008
New Revision: 687474

URL: http://svn.apache.org/viewvc?rev=687474&view=rev
Log:
Improved look and added custom logo. Derived from MailetAPI.

Added:
    james/mailet/standard/trunk/src/site/resources/images/james-standard-mailets-logo.gif   (with props)
Removed:
    james/mailet/standard/trunk/src/site/resources/images/james-server-logo.gif
    james/mailet/standard/trunk/src/site/resources/images/james_config_load_balance.png
    james/mailet/standard/trunk/src/site/resources/images/james_config_secondary.png
    james/mailet/standard/trunk/src/site/resources/images/james_config_smart_host.png
Modified:
    james/mailet/standard/trunk/pom.xml
    james/mailet/standard/trunk/src/site/site.xml
    james/mailet/standard/trunk/src/site/xdoc/index.xml

Modified: james/mailet/standard/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/pom.xml?rev=687474&r1=687473&r2=687474&view=diff
==============================================================================
--- james/mailet/standard/trunk/pom.xml (original)
+++ james/mailet/standard/trunk/pom.xml Wed Aug 20 14:34:18 2008
@@ -37,10 +37,10 @@
     Apache JAMES Standard Mailets
   </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>
+    <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/standard</url>
   <inceptionYear>2008</inceptionYear>
@@ -176,16 +176,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

Added: james/mailet/standard/trunk/src/site/resources/images/james-standard-mailets-logo.gif
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/src/site/resources/images/james-standard-mailets-logo.gif?rev=687474&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailet/standard/trunk/src/site/resources/images/james-standard-mailets-logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: james/mailet/standard/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/src/site/site.xml?rev=687474&r1=687473&r2=687474&view=diff
==============================================================================
--- james/mailet/standard/trunk/src/site/site.xml (original)
+++ james/mailet/standard/trunk/src/site/site.xml Wed Aug 20 14:34:18 2008
@@ -20,7 +20,7 @@
 <project name="Apache JAMES Standard Mailets">
   <bannerLeft>
     <name>JAMES Standard Mailets</name>
-    <src>images/james-server-logo.gif</src>
+    <src>images/james-standard-mailets-logo.gif</src>
     <href>http://james.apache.org/mailets/standard/index.html</href>
   </bannerLeft>
 
@@ -37,6 +37,13 @@
       <item name="Configuration" href="conf.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/standard/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/james/mailet/standard/trunk/src/site/xdoc/index.xml?rev=687474&r1=687473&r2=687474&view=diff
==============================================================================
--- james/mailet/standard/trunk/src/site/xdoc/index.xml (original)
+++ james/mailet/standard/trunk/src/site/xdoc/index.xml Wed Aug 20 14:34:18 2008
@@ -24,7 +24,7 @@
   </properties>
   <body>
     <section name="Standard Mailets">
-      	<p>A collection of generally useful reusable mailets and matchers with minimal depedencies.</p>
+      	<p>A collection of generally useful reusable 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