[jboss-cvs] JBoss Messaging SVN: r4234 - trunk/docs/userguide/en/modules.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon May 19 08:01:51 EDT 2008


Author: jmesnil
Date: 2008-05-19 08:01:50 -0400 (Mon, 19 May 2008)
New Revision: 4234

Modified:
   trunk/docs/userguide/en/modules/configuration.xml
   trunk/docs/userguide/en/modules/gettingstarted.xml
   trunk/docs/userguide/en/modules/installation.xml
   trunk/docs/userguide/en/modules/runningexamples.xml
Log:
* updated examples section (examples/ directory is no longer in docs/)
* updated links using new Wiki URLs

Modified: trunk/docs/userguide/en/modules/configuration.xml
===================================================================
--- trunk/docs/userguide/en/modules/configuration.xml	2008-05-19 09:17:27 UTC (rev 4233)
+++ trunk/docs/userguide/en/modules/configuration.xml	2008-05-19 12:01:50 UTC (rev 4234)
@@ -652,8 +652,7 @@
    <section id="configuration.beans">
       <title>The beans deployment file</title>
       <para>This beans deployment file, usually <literal>jbm-beans.xml</literal> or <literal>jbm-standalone-beans.xml</literal>,
-         is used by the JBoss Microcontainer to bootstrap all the components needed to run a JBoss Messaging Server. For
-         full documentation on the MicroContainer go to <ulink url="http://www.jboss.org/jbossmc/">http://www.jboss.org/jbossmc/</ulink>.
+         is used by the <ulink url="http://www.jboss.org/jbossmc/">JBoss Microcontainer</ulink> to bootstrap all the components needed to run a JBoss Messaging Server.
          For the purposes of configuring JBM it is sufficient to know that the implementation details of pluggable
          components are configured here.
       </para>
@@ -663,7 +662,7 @@
             <para>The naming Service</para>
             <para>This is only found in the standalone version of the beans file. When running within the App Server this
                is not needed since it is available as its own service. This also where you can change the ports used.</para>
-            <para>It is possible to replace this with any Naming Service however only the Jboss naming provider has been tested.
+            <para>It is possible to replace this with any Naming Service however only the JBoss naming provider has been tested.
             If you do provide your own implementation remember to edit the file jndi.properties</para>
             <programlisting>
                <![CDATA[
@@ -720,7 +719,7 @@
    </bean>
                ]]>
             </programlisting>
-            <para>The second is used when deployed in the Jboss App Server and will make use of JAAS:</para>
+            <para>The second is used when deployed in the JBoss App Server and will make use of JAAS:</para>
             <programlisting>
                <![CDATA[
       <bean name="JBMSecurityManager"

Modified: trunk/docs/userguide/en/modules/gettingstarted.xml
===================================================================
--- trunk/docs/userguide/en/modules/gettingstarted.xml	2008-05-19 09:17:27 UTC (rev 4233)
+++ trunk/docs/userguide/en/modules/gettingstarted.xml	2008-05-19 12:01:50 UTC (rev 4234)
@@ -2,10 +2,10 @@
 <chapter id="gettingstarted">
    <title>Download Software</title>
    <para>The official JBoss Messaging project page is <ulink
-   url="http://labs.jboss.com/jbossmessaging">http://labs.jboss.com/jbossmessaging/</ulink>.</para>
+   url="http://www.jboss.org/jbossmessaging/">http://www.jboss.org/jbossmessaging/</ulink>.</para>
    <para>The download location is the JBoss Labs Messaging Project download
    zone: <ulink
-   url="http://labs.jboss.com/jbossmessaging/">http://labs.jboss.com/jbossmessaging/downloads</ulink></para>
+   url="http://www.jboss.org/jbossmessaging/downloads/">http://www.jboss.org/jbossmessaging/downloads/</ulink></para>
    <section id="SVN">
       <title>SVN Access</title>
       <para>If you want to experiment with the latest developments you may
@@ -13,9 +13,9 @@
       information provided in this manual might then not be accurate. For the
       latest instructions on how to check out and build source code, please go
       to <ulink
-      url="http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMessagingDevelopment">
-      Messaging Development wiki page</ulink>, specifically <ulink
-      url="http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMessagingBuildInstructions">
-      "Building and Running JBoss Messaging"</ulink> section.</para>
+      url="http://wiki.jboss.org/wiki/JBossMessagingDevelopment">
+      Messaging Development wiki</ulink>, and specifically <ulink
+      url="http://wiki.jboss.org/wiki/JBossMessagingBuildInstructions">
+      "Building and Running JBoss Messaging"</ulink> page.</para>
    </section>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/userguide/en/modules/installation.xml
===================================================================
--- trunk/docs/userguide/en/modules/installation.xml	2008-05-19 09:17:27 UTC (rev 4233)
+++ trunk/docs/userguide/en/modules/installation.xml	2008-05-19 12:01:50 UTC (rev 4234)
@@ -12,11 +12,11 @@
       <programlisting>
          |-- bin
          |-- config
+         |-- lib
          |-- docs
          | |-- api
-         | |-- examples
          | `-- userguide
-         `-- lib
+         `-- examples
       </programlisting>
       <itemizedlist>
          <listitem>
@@ -30,14 +30,19 @@
             </para>
          </listitem>
          <listitem>
+            <para>lib</para>
+            <para>This contains jars needed to run JBM.
+            </para>
+         </listitem>
+         <listitem>
             <para>docs</para>
-            <para>This contains this user guide, the JBM Javadocs and a set of examples. Refer to the 'running examples'
-               chapter for details on how to run them.
+            <para>This contains this user guide and the JBM Javadocs.. 
             </para>
          </listitem>
          <listitem>
-            <para>lib</para>
-            <para>This contains jars needed to run JBM.
+            <para>examples</para>
+            <para>This contains a set of examples. Refer to the 'running examples'
+               chapter for details on how to run them.
             </para>
          </listitem>
       </itemizedlist>

Modified: trunk/docs/userguide/en/modules/runningexamples.xml
===================================================================
--- trunk/docs/userguide/en/modules/runningexamples.xml	2008-05-19 09:17:27 UTC (rev 4233)
+++ trunk/docs/userguide/en/modules/runningexamples.xml	2008-05-19 12:01:50 UTC (rev 4234)
@@ -2,8 +2,8 @@
 <chapter id="examples">
    <title>Running the Examples</title>
 
-   <para>In the directory <literal>docs/examples</literal>, you will find 2 sets of examples. A set of pure JMS examples
-      and also a set of non JMS examples that demonstrate how to use the Jboss Messaging core API
+   <para>In the directory <literal>examples</literal>, you will find 2 sets of examples. A set of pure JMS examples
+      and also a set of non JMS examples that demonstrate how to use the JBoss Messaging core API
    </para>
    <para>It is highly recommended that you familiarise yourself with the
       examples.
@@ -22,7 +22,7 @@
          directory
       </para>
       <para>to run a specific example open up a shell or command prompt and navigate into the
-         <literal>docs/examples/jms</literal>
+         <literal>examples/jms</literal>
          directory and run the command ant followed by the example name, as follows
       </para>
       <programlisting>
@@ -103,7 +103,7 @@
       <para>The messaging examples demonstrate the use of the messaging core API and also how to create and run an embedded
       instance of JBM. The following examples are available:</para>
       <para>to run a specific example open up a shell or command prompt and navigate into the
-         <literal>docs/examples/messaging</literal>
+         <literal>examples/messaging</literal>
          directory and run the command ant followed by the example name, as follows
       </para>
       <programlisting>




More information about the jboss-cvs-commits mailing list