[webbeans-commits] Webbeans SVN: r634 - doc/trunk/reference/en/modules.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Sat Dec 20 19:08:37 EST 2008


Author: gavin.king at jboss.com
Date: 2008-12-20 19:08:37 -0500 (Sat, 20 Dec 2008)
New Revision: 634

Modified:
   doc/trunk/reference/en/modules/injection.xml
   doc/trunk/reference/en/modules/ri.xml
Log:
minor improvements

Modified: doc/trunk/reference/en/modules/injection.xml
===================================================================
--- doc/trunk/reference/en/modules/injection.xml	2008-12-20 23:37:01 UTC (rev 633)
+++ doc/trunk/reference/en/modules/injection.xml	2008-12-21 00:08:37 UTC (rev 634)
@@ -298,7 +298,7 @@
   <para>Going back to our example, when we deploy our integration tests, we want all 
   our <literal>@Mock</literal> objects to be installed:</para>
 
-<programlisting role="JAVA"><![CDATA[<WebBeans>
+<programlisting role="XML"><![CDATA[<WebBeans>
     <Deploy>
         <Standard/>
         <Production/>

Modified: doc/trunk/reference/en/modules/ri.xml
===================================================================
--- doc/trunk/reference/en/modules/ri.xml	2008-12-20 23:37:01 UTC (rev 633)
+++ doc/trunk/reference/en/modules/ri.xml	2008-12-21 00:08:37 UTC (rev 634)
@@ -1,15 +1,34 @@
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"  [ ]>
 
 <chapter id="ri">
-   <title>Using the Web Beans Reference Implementation</title>
+   <title>The Web Beans Reference Implementation</title>
 
+   <para>
+     The Web Beans Reference Implementation is being developed at
+     <ulink url="http://seamframework.org/WebBeans">the Seam project</ulink>.
+     You can download the latest developer release of Web Beans from the
+     <ulink url="http://seamframework.org/Download">the downloads page</ulink>.
+   </para> 
+
     <para>
-      The Web Beans RI comes with a two examples, 
+      The Web Beans RI comes with a two deployable example applications, 
       <literal>webbeans-numberguess</literal> (a war example, containing only
       simple beans) and <literal>webbeans-translator</literal> (an ear example,
-      containing enterprise beans).
+      containing enterprise beans). To run the examples you'll need the following:
    </para>
    
+   <itemizedlist>
+     <listitem>
+       <para>the latest release of the Web Beans RI,</para>
+     </listitem>
+     <listitem>
+       <para>JBoss AS 5.0.0.GA, and</para>
+     </listitem>
+     <listitem>
+       <para>Ant 1.7.0.</para>
+     </listitem>
+   </itemizedlist>
+   
    <para>
       Currently, the Web Beans RI only runs on JBoss Application Server 5. 
       You'll need to download JBoss AS 5.0.0.GA from 
@@ -22,7 +41,7 @@
 
    <para>
       Next, download the Web Beans RI from 
-      <ulink url="http://seamframework.org/WebBeans">seamframework.org</ulink>,
+      <ulink url="http://seamframework.org/Download">seamframework.org</ulink>,
       and unzip it. For example
    </para>
    
@@ -55,7 +74,7 @@
    </note>
    
    <para>
-      To install the update, you'll need ant 1.7.0 installed, and the 
+      To install the update, you'll need Ant 1.7.0 installed, and the 
       <literal>ANT_HOME</literal> environment variable set. For example:
    </para>
    
@@ -129,7 +148,7 @@
       beans, packaged in an EJB module. To try it out:
    </para>
 
-   <programlisting>$ cd examples/traslator
+   <programlisting>$ cd examples/translator
 ant deploy</programlisting>
 
    <para>
@@ -189,7 +208,7 @@
             <area id="session.timeout" coords="28" />
             <area id="webbeans.listener" coords="32" />
          </areaspec>
-         <programlisting><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
+         <programlisting role="XML"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
 
 <web-app version="2.5"
     xmlns="http://java.sun.com/xml/ns/javaee"
@@ -282,7 +301,7 @@
             <area id="validator" coords="29" />
             <area id="submit" coords="32" />
          </areaspec>
-         <programlisting><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+         <programlisting role="XML"><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:h="http://java.sun.com/jsf/html"




More information about the weld-commits mailing list