[dna-commits] DNA SVN: r624 - in trunk/docs: reference/src/main/docbook/en-US/content and 1 other directory.
dna-commits at lists.jboss.org
dna-commits at lists.jboss.org
Thu Nov 13 00:57:01 EST 2008
Author: rhauch
Date: 2008-11-13 00:57:01 -0500 (Thu, 13 Nov 2008)
New Revision: 624
Modified:
trunk/docs/gettingstarted/src/main/docbook/en-US/master.xml
trunk/docs/reference/src/main/docbook/en-US/content/sequencing.xml
Log:
Minor corrections to the documentation
Modified: trunk/docs/gettingstarted/src/main/docbook/en-US/master.xml
===================================================================
--- trunk/docs/gettingstarted/src/main/docbook/en-US/master.xml 2008-11-13 05:51:33 UTC (rev 623)
+++ trunk/docs/gettingstarted/src/main/docbook/en-US/master.xml 2008-11-13 05:57:01 UTC (rev 624)
@@ -23,7 +23,7 @@
~ Boston, MA 02110-1301 USA
-->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY versionNumber "0.2">
+<!ENTITY versionNumber "0.3">
<!ENTITY copyrightYear "2008">
<!ENTITY copyrightHolder "Red Hat Middleware, LLC.">
]>
Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencing.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencing.xml 2008-11-13 05:51:33 UTC (rev 623)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencing.xml 2008-11-13 05:57:01 UTC (rev 624)
@@ -449,7 +449,7 @@
</para>
<para>
Creating a custom sequencer involves the following steps:
- <itemizedlist>
+ <orderedlist>
<listitem>
<para>Create a Maven 2 project for your sequencer;</para>
</listitem>
@@ -465,7 +465,7 @@
<para>Deploy the JAR file with your implementation (as well as any dependencies), and make them available to JBoss DNA
in your application.</para>
</listitem>
- </itemizedlist>
+ </orderedlist>
It's that simple.
</para>
<sect2 id="custom_sequencer_project">
@@ -481,7 +481,7 @@
<para>In lieu of a Maven archetype, you may find it easier to start with a small existing sequencer project.
The <emphasis role="strong">dna-sequencer-images</emphasis> project is a small, self-contained sequencer implementation that
has only the minimal dependencies.
- See the subversion repository: <ulink url="&Subversion;trunk/extensions/dna-sequencer-images/">&Subversion;trunk/sequencers/dna-sequencer-images/</ulink>
+ See the subversion repository: <ulink url="&Subversion;trunk/extensions/dna-sequencer-images/">&Subversion;trunk/extensions/dna-sequencer-images/</ulink>
</para>
</note>
<para>You can create your Maven project any way you'd like. For examples, see the <ulink url="http://maven.apache.org/guides/getting-started/index.html#How_do_I_make_my_first_Maven_project">Maven 2 documentation</ulink>.
@@ -604,6 +604,7 @@
* @param context the context for the sequencing operation; never null
*/
void sequence( &InputStream; stream, &SequencerOutput; output, &SequencerContext; context );
+}
</programlisting>
<para>The job of a stream sequencer is to process the data in the supplied stream, and place into the &SequencerOutput;
any information that is to go into the JCR repository. JBoss DNA figures out when your sequencer should be called
More information about the dna-commits
mailing list