Author: norman Date: Sat May 27 00:05:47 2006 New Revision: 409815 URL: http://svn.apache.org/viewvc?rev=409815&view=rev Log: Add xdoc for site generation. See JSPF-6
Added: james/jspf/trunk/src/site/ james/jspf/trunk/src/site/site.xml james/jspf/trunk/src/site/xdoc/ james/jspf/trunk/src/site/xdoc/FAQ.xml james/jspf/trunk/src/site/xdoc/code-standards.xml james/jspf/trunk/src/site/xdoc/contribute.xml james/jspf/trunk/src/site/xdoc/design.xml james/jspf/trunk/src/site/xdoc/documentation.xml james/jspf/trunk/src/site/xdoc/index.xml james/jspf/trunk/src/site/xdoc/rfclist.xml Added: james/jspf/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/site.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/site.xml (added) +++ james/jspf/trunk/src/site/site.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<project name="jSPF"> + <bannerLeft> + <name>James jSPF</name> + <src>http://www.apache.org/images/asf_logo_wide.gif</src> + <href>http://james.apache.org/</href> + </bannerLeft> + <bannerRight> + <src>http://james.apache.org//images/james-logo.jpg</src> + </bannerRight> + <body> + <links> + <item name="Apache" href="http://www.apache.org/" /> + <item name="James" href="http://james.apache.org/"/> + <item name="jSPF" href="http://james.apache.org/jspf/"/> + <item name="jSieve" href="http://james.apache.org/jsieve/"/> + <item name="Mime4J" href="http://james.apache.org/mime4j/"/> + <item name="Postage" href="http://james.apache.org/postage/"/> + </links> + + <menu name="jSPF"> + <item name="Overview" href="index.html"/> + <item name="jSPF FAQ" href="FAQ.html"/> + <item name="Mailing Lists" href="mail-lists.html" /> + </menu> + + <menu name="Documentation"> + <item name="jSPF" href="documentation.html"/> + <item name="Design" href="design.html"/> + <item name="jSPF Javadocs" href="apidocs/index.html" /> + <item name="Useful RFCs" href="rfclist.html"/> + </menu> + + <menu name="Project"> + <item name="Bug Database" href="issue-tracking.html"/> + <item name="Source Code" href="source-repository.html"/> + <item name="Who We Are" href="team-list.html" /> + <item name="Contributing" href="contribute.html"/> + <item name="Standards" href="code-standards.html"/> + <item name="License" href="license.html"/> + </menu> + + + <menu name="Useful Information"> + <item name="Get Involved" href="http://jakarta.apache.org/site/getinvolved.html"/> + <item name="Reference Library" href="http://jakarta.apache.org/site/library.html"/> + <item name="Apache" href="http://apache.org/foundation/faq.html" /> + </menu> + + </body> +</project> Added: james/jspf/trunk/src/site/xdoc/FAQ.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/xdoc/FAQ.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/xdoc/FAQ.xml (added) +++ james/jspf/trunk/src/site/xdoc/FAQ.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,13 @@ +<document> + <properties> + <title>Overview</title> + <author email="server-dev@james.apache.org">James jSPF Project Team</author> + </properties> + <body> + <section name="Frequally asked questions"> + <p> + TODO! + </p> + </section> + </body> +</document> Added: james/jspf/trunk/src/site/xdoc/code-standards.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/xdoc/code-standards.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/xdoc/code-standards.xml (added) +++ james/jspf/trunk/src/site/xdoc/code-standards.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<document> + <properties> + <title>Overview</title> + <author email="server-dev@james.apache.org">James jSPF Project Team</author> + </properties> + <body> + <section name="Coding Standards"> + <p> + Submissions to the James project must follow the coding conventions + outlined in this document. James developers + are asked to follow coding conventions already present in the code. + (For example, if the existing code has the bracket on + the same line as the if statement, then all subsequent code + should also follow that convention.) Anything not + explicitly mentioned in this document should adhere to the + official + <a href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html">Sun + Java Coding Conventions</a>. + </p> + + <p> + <strong>Developers who commit code that does not follow + the coding conventions outlined in this document will be + responsible for fixing their own code.</strong> + </p> + + <p> + 1. Spaces between parentheses are optional. The preference is to exclude + extra spaces. Both of these conventions are acceptable: + </p> + + <p> + <source> + + if (foo) + + or + + if ( foo ) + </source> + </p> + + <p> + 2. Four spaces. <strong>NO tabs</strong>. Period. The James + mailing list receives cvs commit messages that are almost impossible + to read if tabs are used. + </p> + + <p> + In Emacs-speak, this translates to the following command: + + (setq-default tab-width 4 indent-tabs-mode nil) + </p> + + <p> + 3. Use Unix linefeeds for all .java source code files. Only platform-specific + files (e.g. .bat files for Windows) should contain non-Unix linefeeds. + </p> + + <p> + 4. Javadoc <strong>must</strong> exist on all methods. Contributing + a missing javadoc for any method, class, variable, etc., will be GREATLY + appreciated as this will help to improve the James project. + </p> + + <p> + 5. The Jakarta Apache/James License <strong>MUST</strong> be placed + at the top of every file. + </p> + </section> + </body> +</document> \ No newline at end of file Added: james/jspf/trunk/src/site/xdoc/contribute.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/xdoc/contribute.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/xdoc/contribute.xml (added) +++ james/jspf/trunk/src/site/xdoc/contribute.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,13 @@ +<document> + <properties> + <title>Overview</title> + <author email="server-dev@james.apache.org">James jSPF Project Team</author> + </properties> + <body> + <section name="Contribute"> + <p> + TODO! + </p> + </section> + </body> +</document> \ No newline at end of file Added: james/jspf/trunk/src/site/xdoc/design.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/xdoc/design.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/xdoc/design.xml (added) +++ james/jspf/trunk/src/site/xdoc/design.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,13 @@ +<document> + <properties> + <title>Overview</title> + <author email="server-dev@james.apache.org">James jSPF Project Team</author> + </properties> + <body> + <section name="Design"> + <p> + TODO! + </p> + </section> + </body> +</document> \ No newline at end of file Added: james/jspf/trunk/src/site/xdoc/documentation.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/xdoc/documentation.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/xdoc/documentation.xml (added) +++ james/jspf/trunk/src/site/xdoc/documentation.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,13 @@ +<document> + <properties> + <title>Overview</title> + <author email="server-dev@james.apache.org">James jSPF Project Team</author> + </properties> + <body> + <section name="Documentation"> + <p> + TODO! + </p> + </section> + </body> +</document> \ No newline at end of file Added: james/jspf/trunk/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/xdoc/index.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/xdoc/index.xml (added) +++ james/jspf/trunk/src/site/xdoc/index.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<document> + <properties> + <title>Overview</title> + <author email="server-dev@james.apache.org">James jSPF Project Team</author> + </properties> + <body> + <section name="What is it?"> + <p> + The jSPF library is pure Java SPF implementation. It was designed to match the current + SPF-Specs of 2006 (See RFC section). SPF is also knows as Sender Policy Framework. + It was designed to detect email spoofing.This is the solution if you ever was tired + of getting spam from yourself. For more informations see + <a href="http://www.openspf.org"> openspf website </a> + </p> + </section> + <section name="News"> + + <subsection name="2006"> + + <h4>First public release of jSPF</h4> + <p>After a fully rewrite of spf-java we finally release jSPF.</p> + + </subsection> + </section> + + <section name="releases"> + <p> + <b>Latest and Stable: jSPF v1.0b1</b> + <br/> +jSPF v1.0b1 is the current release. +Both <a href="http://james.apache.org/download.cgi">binary and source</a> distributions are available.</p> + <p> + <b>Get your hands on the latest versions..</b> + <br/>We put significant milestones, and potential release candidates in the <a href="http://cvs.apache.org/dist/james/">download area.</a> + <br/>Whilst the quality of these versions cannot be guaranteed they may contain important bug fixes and cool new features.<br/> + </p> + </section> + </body> +</document> \ No newline at end of file Added: james/jspf/trunk/src/site/xdoc/rfclist.xml URL: http://svn.apache.org/viewvc/james/jspf/trunk/src/site/xdoc/rfclist.xml?rev=409815&view=auto ============================================================================== --- james/jspf/trunk/src/site/xdoc/rfclist.xml (added) +++ james/jspf/trunk/src/site/xdoc/rfclist.xml Sat May 27 00:05:47 2006 @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<document> + <properties> + <title>Overview</title> + <author email="server-dev@james.apache.org">James jSPF Project Team</author> + </properties> + <body> + <section name="Usefull RFC's"> + <p> + The actual SPF-RFC: <a href="http://new.openspf.org/svn/project/specs/rfc4408.html"> RFC </a> + </p> + </section> + </body> +</document> + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]