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 er...@apache.org on 2010/10/25 13:09:52 UTC

svn commit: r1027054 - in /james/mailbox/trunk: ./ src/site/ src/site/resources/ src/site/resources/images/ src/site/resources/images/uml/ src/site/xdoc/

Author: eric
Date: Mon Oct 25 11:09:51 2010
New Revision: 1027054

URL: http://svn.apache.org/viewvc?rev=1027054&view=rev
Log:
Initial commit of james mailbox web site project.

Added:
    james/mailbox/trunk/pom.xml
    james/mailbox/trunk/src/site/resources/
    james/mailbox/trunk/src/site/resources/images/
    james/mailbox/trunk/src/site/resources/images/asf-logo-reduced.gif   (with props)
    james/mailbox/trunk/src/site/resources/images/james-logo.jpg   (with props)
    james/mailbox/trunk/src/site/resources/images/james-server-logo.gif   (with props)
    james/mailbox/trunk/src/site/resources/images/uml/
    james/mailbox/trunk/src/site/resources/images/uml/org.apache.james.mailbox_package.png   (with props)
    james/mailbox/trunk/src/site/resources/images/void.gif   (with props)
    james/mailbox/trunk/src/site/site.xml
    james/mailbox/trunk/src/site/xdoc/
    james/mailbox/trunk/src/site/xdoc/index.xml
    james/mailbox/trunk/src/site/xdoc/source_code.xml
Modified:
    james/mailbox/trunk/   (props changed)

Propchange: james/mailbox/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Oct 25 11:09:51 2010
@@ -0,0 +1,2 @@
+.*
+target

Added: james/mailbox/trunk/pom.xml
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/pom.xml?rev=1027054&view=auto
==============================================================================
--- james/mailbox/trunk/pom.xml (added)
+++ james/mailbox/trunk/pom.xml Mon Oct 25 11:09:51 2010
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you 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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <artifactId>james-server-root</artifactId>
+    <groupId>org.apache.james</groupId>
+    <version>1.6-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.james</groupId>
+  <artifactId>apache-james-mailbox</artifactId>
+  <name>Apache JAMES Mailbox</name>
+  <version>1.0-SNAPSHOT</version>
+  <description>JAMES Mailbox</description>
+  <url>http://james.apache.org/mailbox</url>
+  <inceptionYear>2010</inceptionYear>
+  <packaging>pom</packaging>
+  <modules>
+  </modules>
+  <ciManagement>
+    <system>hudson</system>
+    <url>http://hudson.zones.apache.org/hudson/view/James/job/james-mailbox-trunk/</url>
+    <notifiers>
+      <notifier>
+        <type>mail</type>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/james/mailbox/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/mailbox/trunk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/james/mailbox/trunk?root=Apache-SVN</url>
+  </scm>
+  
+  <repositories>
+   
+    <!-- needed for javamail -->
+    <repository>
+      <id>maven2-repository.dev.java.net</id>
+      <name>Java.net Repository for Maven</name>
+      <url>http://download.java.net/maven/2/</url>
+      <layout>default</layout>
+    </repository>
+   
+
+    <!-- netty -->
+    <repository>
+      <id>repository.jboss.org</id>
+      <url>http://repository.jboss.org/nexus/content/groups/public/</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <aggregate>true</aggregate>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <configuration>
+          <aggregate>true</aggregate>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <configuration>
+          <aggregate>true</aggregate>
+          <targetjdk>1.5</targetjdk>
+          <rulesets>
+            <ruleset>/rulesets/basic.xml</ruleset>
+            <ruleset>/rulesets/controversial.xml</ruleset>
+          </rulesets>
+          <format>xml</format>
+          <linkXref>true</linkXref>
+          <sourceEncoding>utf-8</sourceEncoding>
+          <minimumTokens>100</minimumTokens>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <configuration>
+            <onlyCurrentVersion>true</onlyCurrentVersion>
+            <resolutionIds>Closed</resolutionIds>
+            <maxEntries>1000</maxEntries>
+        </configuration>
+        <reportSets>
+            <reportSet>
+                <reports>
+                    <report>jira-report</report>
+                </reports>
+            </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <site>
+      <id>server-trunk-website</id>
+      <url>scp://people.apache.org/www/james.apache.org/mailbox/trunk/</url>
+    </site>
+  </distributionManagement>
+  <dependencyManagement>
+  </dependencyManagement>
+</project>
+

Added: james/mailbox/trunk/src/site/resources/images/asf-logo-reduced.gif
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/src/site/resources/images/asf-logo-reduced.gif?rev=1027054&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailbox/trunk/src/site/resources/images/asf-logo-reduced.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailbox/trunk/src/site/resources/images/james-logo.jpg
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/src/site/resources/images/james-logo.jpg?rev=1027054&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailbox/trunk/src/site/resources/images/james-logo.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

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

Added: james/mailbox/trunk/src/site/resources/images/uml/org.apache.james.mailbox_package.png
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/src/site/resources/images/uml/org.apache.james.mailbox_package.png?rev=1027054&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailbox/trunk/src/site/resources/images/uml/org.apache.james.mailbox_package.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailbox/trunk/src/site/resources/images/void.gif
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/src/site/resources/images/void.gif?rev=1027054&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/mailbox/trunk/src/site/resources/images/void.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/mailbox/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/src/site/site.xml?rev=1027054&view=auto
==============================================================================
--- james/mailbox/trunk/src/site/site.xml (added)
+++ james/mailbox/trunk/src/site/site.xml Mon Oct 25 11:09:51 2010
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you 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 name="Server">
+
+  <skin>
+    <groupId>org.apache.james</groupId>
+    <artifactId>maven-skin</artifactId>
+    <version>1.6-SNAPSHOT</version>
+  </skin>
+
+  <bannerLeft>
+    <name>James Server</name>
+    <src>images/james-server-logo.gif</src>
+    <href>http://james.apache.org/index.html</href>
+  </bannerLeft>
+  
+  <bannerRight>
+    <name>The Apache Software Foundation</name>
+    <src>images/asf-logo-reduced.gif</src>
+    <href>http://www.apache.org/index.html</href>
+  </bannerRight> 
+
+  <body>
+  
+    <menu name="Mailbox">
+      <item name="Introduction" href="/index.html" />
+      <item name="Source Code" href="/source_code.html" />
+      <item name="Javadoc" href="../imap/apidocs/index.html" />
+<!--    <item name="Changes" href="/changes.html" />-->
+<!--      <item name="JIRA Report" href="/jira-report.html" />-->
+<!--      <item name="Issue Tracker" href="https://issues.apache.org/jira/browse/MAILBOX" />-->
+    </menu>
+
+    ${reports}
+
+  </body>  
+
+</project>

Added: james/mailbox/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/src/site/xdoc/index.xml?rev=1027054&view=auto
==============================================================================
--- james/mailbox/trunk/src/site/xdoc/index.xml (added)
+++ james/mailbox/trunk/src/site/xdoc/index.xml Mon Oct 25 11:09:51 2010
@@ -0,0 +1,62 @@
+<?xml version="1.0"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you 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>Apache James - Mailbox</title>
+  <author email="server-dev@james.apache.org">Apache James Project</author>
+ </properties>
+
+<body>
+
+  <section name="What Is James Mailbox?">
+
+    <p>A library providing a flexible Mailbox storage accessible by mail (imap, pop3, smtp,...) and other protocols.</p>
+
+    <p>The mailbox library support different persistence mecanisms: MailDir, Database (via JPA) and JCR.</p>
+
+  </section>
+
+  <section name='Status'>
+
+    <p>The API has been tested, but is susceptible to evolve.</p>
+ 
+  </section>
+
+  <section name='Mailbox In James Server'>
+
+    <p><a href='http://james.apache.org/server/head'>JAMES Server 3</a> uses the Maibox(using this library).
+       A backport to <a href='http://james.apache.org/server/2.3.2'>JAMES Server 2.3.2</a> would require
+       a volunteer.</p>
+  
+  </section>
+
+  <section name='Develop with James Mailbox'>
+ 
+    <p>Just read the <a href="source_code.html">source code</a> page to get more information on how to develop on James Mailbox.</p>
+
+    <img src="images/uml/org.apache.james.mailbox_package.png"/>
+    
+  </section>
+
+</body>
+
+</document>

Added: james/mailbox/trunk/src/site/xdoc/source_code.xml
URL: http://svn.apache.org/viewvc/james/mailbox/trunk/src/site/xdoc/source_code.xml?rev=1027054&view=auto
==============================================================================
--- james/mailbox/trunk/src/site/xdoc/source_code.xml (added)
+++ james/mailbox/trunk/src/site/xdoc/source_code.xml Mon Oct 25 11:09:51 2010
@@ -0,0 +1,64 @@
+<?xml version="1.0"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you 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>Apache James Mailbox - Source Code</title>
+  </properties>
+
+<body>
+
+  <section name="Get Source Code">
+
+    <subsection name="Anonymous Access">
+
+      <p>The source can be checked out anonymously from SVN with the following command.</p>
+
+      <code>$ svn checkout http://svn.apache.org/repos/asf/james/mailbox/trunk james-mailbox</code>
+    
+      <p>(*) Source code is not yet moved, so replace 'mailbox' with 'imap' in the above URL.</p>
+
+    </subsection>
+
+    <subsection name="Developer Access">
+
+      <p>Everyone can access the Subversion repository via HTTP, but Committers must checkout the Subversion repository via HTTPS.</p>
+
+      <code>$ svn checkout https://svn.apache.org/repos/asf/james/mailbox/trunk james-mailbox</code>
+      
+      <p>(*) Source code is not yet moved, so replace 'mailbox' with 'imap' in the above URL.</p>
+
+    </subsection>
+
+  </section>
+
+  <section name="Mailbox Source Projects">
+  
+    <div style="float:left; margin=4px;">
+
+      <img src="images/uml/org.apache.james.mailbox_package.png"/>
+      
+    </div>
+
+  </section>
+
+</body>
+
+</document>



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