You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2009/01/13 18:16:20 UTC

svn commit: r734188 - in /cocoon/cocoon3/trunk/cocoon-docs/src/site/apt: api-docs.apt download.apt index.apt

Author: reinhard
Date: Tue Jan 13 09:16:12 2009
New Revision: 734188

URL: http://svn.apache.org/viewvc?rev=734188&view=rev
Log:
provide download information

Removed:
    cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/api-docs.apt
Modified:
    cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/download.apt
    cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/index.apt

Modified: cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/download.apt
URL: http://svn.apache.org/viewvc/cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/download.apt?rev=734188&r1=734187&r2=734188&view=diff
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/download.apt (original)
+++ cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/download.apt Tue Jan 13 09:16:12 2009
@@ -2,7 +2,77 @@
  Download
  -----
  -----
- 2008
+ 2009
  -----
 
-    Cocoon 3 hasn't been released yet.
+Download
+
+* Cocoon 3.0.0-alpha-1
+  
+  * {{{http://www.apache.org/dyn/closer.cgi/cocoon/3.0/cocoon-all-3.0.0-alpha-1-dist.zip} cocoon-all-3.0.0-alpha-1-dist.zip}} {{{http://www.apache.org/dyn/closer.cgi/cocoon/3.0/cocoon-all-3.0.0-alpha-1-dist.zip.md5}[MD5]}} {{{http://www.apache.org/dyn/closer.cgi/cocoon/3.0/cocoon-all-3.0.0-alpha-1-dist.zip.asc}[PGP]}}
+  
+  * {{{http://www.apache.org/dyn/closer.cgi/cocoon/3.0/cocoon-all-3.0.0-alpha-1-dist.tar.gz} cocoon-all-3.0.0-alpha-1-dist.tar.gz}} {{{http://www.apache.org/dyn/closer.cgi/cocoon/3.0/cocoon-all-3.0.0-alpha-1-dist.tar.gz.md5}[MD5]}} {{{http://www.apache.org/dyn/closer.cgi/cocoon/3.0/cocoon-all-3.0.0-alpha-1-dist.tar.gz.asc}[PGP]}}
+
+Maven 2 artifacts
+
+* Cocoon pipelines
+
+    The 'cocoon-pipeline' library was designed to be used stand-alone without any other dependencies than Apache Commons Logging: 
+
++------------------------------------------+
+<dependency>
+  <groupId>org.apache.cocoon.pipeline</groupId>
+  <artifactId>cocoon-pipeline</artifactId>
+  <version>3.0.0-alpha-1</version>
+</dependency>
++------------------------------------------+
+
+    In order to use the other Cocoon 3 modules (web applications, REST support, etc.), we highly recommend to start off with the archetypes listed below.
+
+Maven 2 archetypes
+
+    Create a Cocoon 3 block that contains the samples. After running the archetype plugin, change to the base directory of the new module and enter 'mvn jetty:run' and point your browser at http://localhost:8080:
+If you use Eclipse, run 'mvn eclipse:eclipse' before and import the project into your workspace. Your resources but also the Java files are reloaded at runtime.    
+    
++------------------------------------------+
+mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create 
+    -DarchetypeGroupId=org.apache.cocoon.archetype-sample 
+    -DarchetypeArtifactId=cocoon-archetype-sample 
+    -DarchetypeVersion=3.0.0-alpha-1 
+    -DgroupId=com.mycompany 
+    -DartifactId=mysample 
++------------------------------------------+
+
+    Create an empty Cocoon 3 block in order to create your own Cocoon 3 web application.    
+
++------------------------------------------+
+mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create 
+    -DarchetypeGroupId=org.apache.cocoon.archetype-block 
+    -DarchetypeArtifactId=cocoon-archetype-block 
+    -DarchetypeVersion=3.0.0-alpha-1 
+    -DgroupId=com.mycompany 
+    -DartifactId=mysite 
++------------------------------------------+
+
+    Create an empty Java web application project. After that add your Cocoon block as dependency.
+   
++------------------------------------------+
+mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create 
+    -DarchetypeGroupId=org.apache.cocoon.archetype-webapp 
+    -DarchetypeArtifactId=cocoon-archetype-webapp 
+    -DarchetypeVersion=3.0.0-alpha-1 
+    -DgroupId=com.mycompany 
+    -DartifactId=mywebapp
++------------------------------------------+
+
+    Create a parent module for your Cocoon project.
+
++------------------------------------------+
+mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create 
+    -DarchetypeGroupId=org.apache.cocoon.archetype-parent 
+    -DarchetypeArtifactId=cocoon-archetype-parent 
+    -DarchetypeVersion=3.0.0-alpha-1 
+    -DgroupId=com.mycompany 
+    -DartifactId=myparent 
++------------------------------------------+
+

Modified: cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/index.apt?rev=734188&r1=734187&r2=734188&view=diff
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/index.apt (original)
+++ cocoon/cocoon3/trunk/cocoon-docs/src/site/apt/index.apt Tue Jan 13 09:16:12 2009
@@ -12,6 +12,10 @@
 designed to be <<easily used with Java code>> (= no frameworks required!). On top of this, 
 Cocoon 3 has the goal of becoming the best available platform for <<RESTful webservices>> and web applications.
 
+* Download
+
+  Apache Cocoon 3.0.0-alpha-1 is available for {{{download.html} download}}. 
+
 * Using Pipelines in Java has never been so easy
 
   Here is an example that transforms an XML String by using two stylesheets: