[seam-commits] Seam SVN: r9944 - trunk/doc/Seam_Reference_Guide/en-US.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Sun Jan 18 09:06:20 EST 2009


Author: nico.ben
Date: 2009-01-18 09:06:20 -0500 (Sun, 18 Jan 2009)
New Revision: 9944

Modified:
   trunk/doc/Seam_Reference_Guide/en-US/Annotations.xml
   trunk/doc/Seam_Reference_Guide/en-US/Cache.xml
   trunk/doc/Seam_Reference_Guide/en-US/Concepts.xml
   trunk/doc/Seam_Reference_Guide/en-US/Configuration.xml
   trunk/doc/Seam_Reference_Guide/en-US/Conversations.xml
   trunk/doc/Seam_Reference_Guide/en-US/Drools.xml
   trunk/doc/Seam_Reference_Guide/en-US/Events.xml
   trunk/doc/Seam_Reference_Guide/en-US/Excel.xml
   trunk/doc/Seam_Reference_Guide/en-US/Framework.xml
   trunk/doc/Seam_Reference_Guide/en-US/Itext.xml
   trunk/doc/Seam_Reference_Guide/en-US/Jbpm.xml
   trunk/doc/Seam_Reference_Guide/en-US/Persistence.xml
   trunk/doc/Seam_Reference_Guide/en-US/Preface.xml
   trunk/doc/Seam_Reference_Guide/en-US/Rss.xml
   trunk/doc/Seam_Reference_Guide/en-US/Tutorial.xml
   trunk/doc/Seam_Reference_Guide/en-US/Validation.xml
   trunk/doc/Seam_Reference_Guide/en-US/Xml.xml
Log:
Improvement: added a space before and after each —

Modified: trunk/doc/Seam_Reference_Guide/en-US/Annotations.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Annotations.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Annotations.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -1163,7 +1163,7 @@
                   Indicates that the annotated method may be called from 
                   client-side JavaScript. The <literal>exclude</literal> 
                   property is optional and allows objects to be excluded from 
-                  the result's object graph (see the Remoting chapter for more 
+                  the result's object graph (see the <xref linkend="remoting"/> chapter for more 
                   details).
                </para>
             </listitem>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Cache.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Cache.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Cache.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -14,7 +14,7 @@
       cluster. What these silly people are really thinking of is a "share
       nothing except for the database" architecture. Of course, sharing the
       database is the primary problem with scaling a multi-user
-      application&#8212;so the claim that this architecture is highly scalable
+      application &#8212; so the claim that this architecture is highly scalable
       is absurd, and tells you a lot about the kind of applications that these
       folks spend most of their time working on.
    </para>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Concepts.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Concepts.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Concepts.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -612,7 +612,7 @@
                 a <literal>User</literal> class which is usually used as a session-scoped component representing the
                 current user but is used in user administration screens as a conversation-scoped component. The
                 <literal>@Role</literal> annotation lets us define an additional named role for a component, with a
-                different scope&#8212;it lets us bind the same component class to different context variables. (Any
+                different scope &#8212; it lets us bind the same component class to different context variables. (Any
                 Seam component <emphasis>instance</emphasis> may be bound to multiple context variables, but this lets
                 us do it at the class level, and take advantage of auto-instantiation.) 
             </para>
@@ -1024,7 +1024,7 @@
 }]]></programlisting>
 
         <para>
-            It doesn't matter if you declare the <literal>log</literal> variable static or not&#8212;it will work 
+            It doesn't matter if you declare the <literal>log</literal> variable static or not &#8212; it will work 
             either way, except for entity bean components which require the <literal>log</literal> variable to be
             static.
         </para>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Configuration.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Configuration.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Configuration.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -602,7 +602,7 @@
 
             <para> You might think this is silly and what kind of idiot framework designers would make an empty file
                 affect the behavior of their software?? Well, this is a workaround for a limitation of the
-                JVM&#8212;if we didn't use this mechanism, our next best option would be to force you to list every
+                JVM &#8212; if we didn't use this mechanism, our next best option would be to force you to list every
                 component explicitly in <literal>components.xml</literal>, just like some other competing frameworks do!
                 I think you'll like our way better. </para>
 

Modified: trunk/doc/Seam_Reference_Guide/en-US/Conversations.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Conversations.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Conversations.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -111,7 +111,7 @@
         <para>
             If the JSF request lifecycle is foreshortened by a redirect,
             Seam transparently stores and restores the current conversation 
-            context&#8212;unless the conversation was already ended via
+            context &#8212; unless the conversation was already ended via
             <literal>@End(beforeRedirect=true)</literal>.
         </para>
         </listitem>
@@ -464,8 +464,8 @@
             solve the first problem, but this does nothing to help us with the second 
             problem. We <emphasis>could</emphasis> work around this by using the
             RESTful approach of passing a request parameter and requerying
-            for the selected object on the server side. In some cases&#8212;such as the 
-            Seam blog example application&#8212;this is indeed the best approach. The 
+            for the selected object on the server side. In some cases &#8212; such as the 
+            Seam blog example application &#8212; this is indeed the best approach. The 
             RESTful style supports bookmarking, since it does not require server-side state. 
             In other cases, where we don't care about bookmarks, the use of 
             <literal>@DataModel</literal> and <literal>@DataModelSelection</literal> is 
@@ -1026,7 +1026,7 @@
 
        <para>
           Alternatively, you can access the JSF component tree through the implicit <literal>uiComponent</literal>
-          handle. The following example accesses <literal>getRowIndex()</literal>of the
+          handle. The following example accesses <literal>getRowIndex()</literal> of the
           <literal>UIData</literal> component which backs the data table during iteration, it prints
           the current row number:
        </para>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Drools.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Drools.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Drools.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -116,7 +116,7 @@
          
          <para>
              You can even allow a rule base to act as a jBPM action handler, decision
-             handler, or assignment handler&#8212;in either a pageflow or business
+             handler, or assignment handler &#8212; in either a pageflow or business
              process definition.
          </para>
          

Modified: trunk/doc/Seam_Reference_Guide/en-US/Events.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Events.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Events.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -732,27 +732,27 @@
             <listitem><para><literal>org.jboss.seam.postRemoveVariable.&lt;name&gt;</literal> &#8212; called when the context variable &lt;name&gt; is unset</para></listitem>
             <listitem><para><literal>org.jboss.seam.preDestroyContext.&lt;SCOPE&gt;</literal> &#8212; called before the &lt;SCOPE&gt; context is destroyed</para></listitem>
             <listitem><para><literal>org.jboss.seam.postDestroyContext.&lt;SCOPE&gt;</literal> &#8212; called after the &lt;SCOPE&gt; context is destroyed</para></listitem>
-            <listitem><para><literal>org.jboss.seam.beginConversation </literal>&#8212; called whenever a long-running conversation begins</para></listitem>
-            <listitem><para><literal>org.jboss.seam.endConversation </literal>&#8212; called whenever a long-running conversation ends</para></listitem>
-            <listitem><para><literal>org.jboss.seam.conversationTimeout</literal>&#8212; called when a conversation timeout occurs. The conversation id is passed as a parameter.</para></listitem>
-            <listitem><para><literal>org.jboss.seam.beginPageflow </literal>&#8212; called when a pageflow begins</para></listitem>
-            <listitem><para><literal>org.jboss.seam.beginPageflow.&lt;name&gt; </literal>&#8212; called when the pageflow &lt;name&gt; begins</para></listitem>
-            <listitem><para><literal>org.jboss.seam.endPageflow </literal>&#8212; called when a pageflow ends</para></listitem>
-            <listitem><para><literal>org.jboss.seam.endPageflow.&lt;name&gt; </literal>&#8212; called when the pageflow &lt;name&gt; ends</para></listitem>
-            <listitem><para><literal>org.jboss.seam.createProcess.&lt;name&gt; </literal>&#8212; called when the process &lt;name&gt; is created</para></listitem>
-            <listitem><para><literal>org.jboss.seam.endProcess.&lt;name&gt; </literal>&#8212; called when the process &lt;name&gt; ends</para></listitem>
-            <listitem><para><literal>org.jboss.seam.initProcess.&lt;name&gt; </literal>&#8212; called when the process &lt;name&gt; is associated with the conversation</para></listitem>
-            <listitem><para><literal>org.jboss.seam.initTask.&lt;name&gt; </literal>&#8212; called when the task &lt;name&gt; is associated with the conversation</para></listitem>
-            <listitem><para><literal>org.jboss.seam.startTask.&lt;name&gt; </literal>&#8212; called when the task &lt;name&gt; is started</para></listitem>
-            <listitem><para><literal>org.jboss.seam.endTask.&lt;name&gt; </literal>&#8212; called when the task &lt;name&gt; is ended</para></listitem>
-            <listitem><para><literal>org.jboss.seam.postCreate.&lt;name&gt; </literal>&#8212; called when the component &lt;name&gt; is created</para></listitem>
-            <listitem><para><literal>org.jboss.seam.preDestroy.&lt;name&gt; </literal>&#8212; called when the component &lt;name&gt; is destroyed</para></listitem>
-            <listitem><para><literal>org.jboss.seam.beforePhase </literal>&#8212; called before the start of a JSF phase</para></listitem>
-            <listitem><para><literal>org.jboss.seam.afterPhase </literal>&#8212; called after the end of a JSF phase</para></listitem>
-            <listitem><para><literal>org.jboss.seam.postInitialization </literal>&#8212; called when Seam has initialized and started up all components</para></listitem>
-            <listitem><para><literal>org.jboss.seam.postReInitialization </literal>&#8212; called when Seam has re-initialized and started up all components after a redeploy</para></listitem>
-            <listitem><para><literal>org.jboss.seam.postAuthenticate.&lt;name&gt; </literal>&#8212; called after a user is authenticated</para></listitem>
-            <listitem><para><literal>org.jboss.seam.preAuthenticate.&lt;name&gt; </literal>&#8212; called before attempting to authenticate a user</para></listitem>
+            <listitem><para><literal>org.jboss.seam.beginConversation </literal> &#8212; called whenever a long-running conversation begins</para></listitem>
+            <listitem><para><literal>org.jboss.seam.endConversation </literal> &#8212; called whenever a long-running conversation ends</para></listitem>
+            <listitem><para><literal>org.jboss.seam.conversationTimeout</literal> &#8212; called when a conversation timeout occurs. The conversation id is passed as a parameter.</para></listitem>
+            <listitem><para><literal>org.jboss.seam.beginPageflow </literal> &#8212; called when a pageflow begins</para></listitem>
+            <listitem><para><literal>org.jboss.seam.beginPageflow.&lt;name&gt; </literal> &#8212; called when the pageflow &lt;name&gt; begins</para></listitem>
+            <listitem><para><literal>org.jboss.seam.endPageflow </literal> &#8212; called when a pageflow ends</para></listitem>
+            <listitem><para><literal>org.jboss.seam.endPageflow.&lt;name&gt; </literal> &#8212; called when the pageflow &lt;name&gt; ends</para></listitem>
+            <listitem><para><literal>org.jboss.seam.createProcess.&lt;name&gt; </literal> &#8212; called when the process &lt;name&gt; is created</para></listitem>
+            <listitem><para><literal>org.jboss.seam.endProcess.&lt;name&gt; </literal> &#8212; called when the process &lt;name&gt; ends</para></listitem>
+            <listitem><para><literal>org.jboss.seam.initProcess.&lt;name&gt; </literal> &#8212; called when the process &lt;name&gt; is associated with the conversation</para></listitem>
+            <listitem><para><literal>org.jboss.seam.initTask.&lt;name&gt; </literal> &#8212; called when the task &lt;name&gt; is associated with the conversation</para></listitem>
+            <listitem><para><literal>org.jboss.seam.startTask.&lt;name&gt; </literal> &#8212; called when the task &lt;name&gt; is started</para></listitem>
+            <listitem><para><literal>org.jboss.seam.endTask.&lt;name&gt; </literal> &#8212; called when the task &lt;name&gt; is ended</para></listitem>
+            <listitem><para><literal>org.jboss.seam.postCreate.&lt;name&gt; </literal> &#8212; called when the component &lt;name&gt; is created</para></listitem>
+            <listitem><para><literal>org.jboss.seam.preDestroy.&lt;name&gt; </literal> &#8212; called when the component &lt;name&gt; is destroyed</para></listitem>
+            <listitem><para><literal>org.jboss.seam.beforePhase </literal> &#8212; called before the start of a JSF phase</para></listitem>
+            <listitem><para><literal>org.jboss.seam.afterPhase </literal> &#8212; called after the end of a JSF phase</para></listitem>
+            <listitem><para><literal>org.jboss.seam.postInitialization </literal> &#8212; called when Seam has initialized and started up all components</para></listitem>
+            <listitem><para><literal>org.jboss.seam.postReInitialization </literal> &#8212; called when Seam has re-initialized and started up all components after a redeploy</para></listitem>
+            <listitem><para><literal>org.jboss.seam.postAuthenticate.&lt;name&gt; </literal> &#8212; called after a user is authenticated</para></listitem>
+            <listitem><para><literal>org.jboss.seam.preAuthenticate.&lt;name&gt; </literal> &#8212; called before attempting to authenticate a user</para></listitem>
             <listitem><para><literal>org.jboss.seam.notLoggedIn</literal> &#8212; called there is no authenticated user and authentication is required</para></listitem>
             <listitem><para><literal>org.jboss.seam.rememberMe</literal> &#8212; occurs when Seam security detects the username in a cookie</para></listitem>
             <listitem><para><literal>org.jboss.seam.exceptionHandled.&lt;type&gt;</literal> &#8212; called when an uncaught exception is handled by Seam</para></listitem>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Excel.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Excel.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Excel.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -140,7 +140,7 @@
                         <listitem>
                            <para>
                               <literal>type</literal>
-                              &#8212;Defines which export module to be used. The
+                              &#8212; Defines which export module to be used. The
                               value is a string and can be either "jxl" or
                               "csv". The default is "jxl".
                            </para>
@@ -148,14 +148,14 @@
                         <listitem>
                            <para>
                               <literal>templateURI</literal>
-                              &#8212;A template that should be used as a basis
+                              &#8212; A template that should be used as a basis
                               for the workbook. The value is a string (URI).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>arrayGrowSize</literal>
-                              &#8212;The amount of memory by which to increase
+                              &#8212; The amount of memory by which to increase
                               the amount of memory allocated to storing the
                               workbook data. For processeses reading many small
                               workbooks inside a WAS it might be necessary to
@@ -166,21 +166,21 @@
                         <listitem>
                            <para>
                               <literal>autoFilterDisabled</literal>
-                              &#8212;Should autofiltering be disabled?. The
+                              &#8212; Should autofiltering be disabled?. The
                               value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>cellValidationDisabled</literal>
-                              &#8212;Shoule cell validation be ignored? The
+                              &#8212; Should cell validation be ignored? The
                               value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>characterSet</literal>
-                              &#8212;The character set. This is only used when
+                              &#8212; The character set. This is only used when
                               the spreadsheet is read, and has no effect when
                               the spreadsheet is written. The value is a string
                               (character set encoding).
@@ -189,14 +189,14 @@
                         <listitem>
                            <para>
                               <literal>drawingsDisabled</literal>
-                              &#8212;Should drawings be disabled? The value is a
+                              &#8212; Should drawings be disabled? The value is a
                               boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>excelDisplayLanguage</literal>
-                              &#8212;The language in which the generated file
+                              &#8212; The language in which the generated file
                               will display. The value is a string (two character
                               ISO 3166 country code).
                            </para>
@@ -204,7 +204,7 @@
                         <listitem>
                            <para>
                               <literal>excelRegionalSettings</literal>
-                              &#8212;The regional settings for the generated
+                              &#8212; The regional settings for the generated
                               excel file. The value is a string (two character
                               ISO 3166 country code).
                            </para>
@@ -212,28 +212,28 @@
                         <listitem>
                            <para>
                               <literal>formulaAdjust</literal>
-                              &#8212;Should formulas be adjusted? The value is a
+                              &#8212; Should formulas be adjusted? The value is a
                               boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>gcDisabled</literal>
-                              &#8212;Should garbage collection be disabled? The
+                              &#8212; Should garbage collection be disabled? The
                               value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>ignoreBlanks</literal>
-                              &#8212;Should blanks be ignored? The value is a
+                              &#8212; Should blanks be ignored? The value is a
                               boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>initialFileSize</literal>
-                              &#8212;The initial amount of memory allocated to
+                              &#8212; The initial amount of memory allocated to
                               store the workbook data when reading a worksheet.
                               For processeses reading many small workbooks
                               inside a WAS it might be necessary to reduce the
@@ -244,7 +244,7 @@
                         <listitem>
                            <para>
                               <literal>locale</literal>
-                              &#8212;The locale used by JExcelApi to generate
+                              &#8212; The locale used by JExcelApi to generate
                               the spreadsheet. Setting this value has no effect
                               on the language or region of the generated excel
                               file. The value is a string.
@@ -253,21 +253,21 @@
                         <listitem>
                            <para>
                               <literal>mergedCellCheckingDisabled</literal>
-                              &#8212;Should merged cell checking be disabled?
+                              &#8212; Should merged cell checking be disabled?
                               The value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>namesDisabled</literal>
-                              &#8212;Should handling of names be disabled? The
+                              &#8212; Should handling of names be disabled? The
                               value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>propertySets</literal>
-                              &#8212;Should any property sets be enabled (such
+                              &#8212; Should any property sets be enabled (such
                               as macros) to be copied along with the workbook?
                               Leaving this feature enabled will result in the
                               JXL process using more memory. The value is a
@@ -277,7 +277,7 @@
                         <listitem>
                            <para>
                               <literal>rationalization</literal>
-                              &#8212;Should the cell formats be rationalized
+                              &#8212; Should the cell formats be rationalized
                               before writing out the sheet? The value is a
                               boolean. Default is true.
                            </para>
@@ -285,7 +285,7 @@
                         <listitem>
                            <para>
                               <literal>supressWarnings</literal>
-                              &#8212;Should warnings be suppressed?. Due to the
+                              &#8212; Should warnings be suppressed?. Due to the
                               change in logging in version 2.4, this will now
                               set the warning behaviour across the JVM
                               (depending on the type of logger used). The value
@@ -297,7 +297,7 @@
                               <literal>
                                  temporaryFileDuringWriteDirectory
                               </literal>
-                              &#8212;Used in conjunction with the
+                              &#8212; Used in conjunction with the
                               <literal>useTemporaryFileDuringWrite</literal>
                               setting to set the target directory for the
                               temporary files. This value can be NULL, in which
@@ -310,7 +310,7 @@
                         <listitem>
                            <para>
                               <literal>useTemporaryFileDuringWrite</literal>
-                              &#8212;Should a temporary file is used during the
+                              &#8212; Should a temporary file is used during the
                               generation of the workbook. If not set, the
                               workbook will take place entirely in memory.
                               Setting this flag involves an assessment of the
@@ -321,14 +321,14 @@
                         <listitem>
                            <para>
                               <literal>workbookProtected</literal>
-                              &#8212;Should the workbook be protected? The value
+                              &#8212; Should the workbook be protected? The value
                               is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>filename</literal>
-                              &#8212;The filename to use for the download. The value
+                              &#8212; The filename to use for the download. The value
                               is a string. Please not that if you map the DocumentServlet
                               to some pattern, this file extension must also match.
                            </para>
@@ -336,7 +336,7 @@
                         <listitem>
                            <para>
                               <literal>exportKey</literal>
-                              &#8212;A key under which to store the resulting data
+                              &#8212; A key under which to store the resulting data
                               in a DocumentData object under the event scope. If used,
                               there is no redirection.
                            </para>
@@ -349,7 +349,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:link/&gt;</literal>
-                              &#8212;Zero or more stylesheet links (see
+                              &#8212; Zero or more stylesheet links (see
                               <xref linkend="excel.fontsandlayout.link" />
                               ).
                            </para>
@@ -357,7 +357,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:worksheet/&gt;</literal>
-                              &#8212;Zero or more worksheets (see
+                              &#8212; Zero or more worksheets (see
                               <xref linkend="excel.worksheet" />
                               ).
                            </para>
@@ -414,7 +414,7 @@
                         <listitem>
                            <para>
                               <literal>value</literal>
-                              &#8212;An EL-expression to the backing data. The
+                              &#8212; An EL-expression to the backing data. The
                               value is a string. The target of this expression is
                               examined for an Iterable. Note that if the target is a Map,
                               the iteration is done over the Map.Entry entrySet(), so you
@@ -424,7 +424,7 @@
                         <listitem>
                            <para>
                               <literal>var</literal>
-                              &#8212;The current row iterator variable name that
+                              &#8212; The current row iterator variable name that
                               can later be referenced in cell value attributes.
                               The value is a string
                            </para>
@@ -432,7 +432,7 @@
                         <listitem>
                            <para>
                               <literal>name</literal>
-                              &#8212;The name of the worksheet. The valus is a
+                              &#8212; The name of the worksheet. The valus is a
                               string. Defaults to Sheet# where # is the
                               worksheet index. If the given worksheet name
                               exists, that sheet is selected. This can be used
@@ -449,7 +449,7 @@
                         <listitem>
                            <para>
                               <literal>startRow</literal>
-                              &#8212;Defines the starting row for the data. The
+                              &#8212; Defines the starting row for the data. The
                               value is a number. Used for placing the data in
                               other places than the upper-left corner
                               (especially useful if having multiple data sets
@@ -459,7 +459,7 @@
                         <listitem>
                            <para>
                               <literal>startColumn</literal>
-                              &#8212;Defines the starting column for the data.
+                              &#8212; Defines the starting column for the data.
                               The value is a number. Used for placing the data
                               in other places than the upper-left corner
                               (especially useful if having multiple data sets
@@ -469,63 +469,63 @@
                         <listitem>
                            <para>
                               <literal>automaticFormulaCalculation</literal>
-                              &#8212;Should formulas be automatically
+                              &#8212; Should formulas be automatically
                               calculated? The value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>bottomMargin</literal>
-                              &#8212;The bottom margin. The value is a number
+                              &#8212; The bottom margin. The value is a number
                               (inches)
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>copies</literal>
-                              &#8212;The number of copies. The value is a
+                              &#8212; The number of copies. The value is a
                               number.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>defaultColumnWidth</literal>
-                              &#8212;The default column width. The value is a
+                              &#8212; The default column width. The value is a
                               number (characters * 256).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>defaultRowHeight</literal>
-                              &#8212;The default row height. The value is a
+                              &#8212; The default row height. The value is a
                               number (1/20ths of a point).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>displayZeroValues</literal>
-                              &#8212;Should zero-values be displayed? The value
+                              &#8212; Should zero-values be displayed? The value
                               is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>fitHeight</literal>
-                              &#8212;The number of pages vertically that this
+                              &#8212; The number of pages vertically that this
                               sheet will be printed into. The value is a number.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>fitToPages</literal>
-                              &#8212;Should printing be fit to pages? The value
+                              &#8212; Should printing be fit to pages? The value
                               is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>fitWidth</literal>
-                              &#8212;The number of pages widthwise which this
+                              &#8212; The number of pages widthwise which this
                               sheet should be printed into. The value is a
                               number.
                            </para>
@@ -533,63 +533,63 @@
                         <listitem>
                            <para>
                               <literal>footerMargin</literal>
-                              &#8212;The margin for any page footer. The value
+                              &#8212; The margin for any page footer. The value
                               is a number (inches).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>headerMargin</literal>
-                              &#8212;The margin for any page headers. The value
+                              &#8212; The margin for any page headers. The value
                               is a number (inches).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>hidden</literal>
-                              &#8212;Should the worksheet be hidden? The value
+                              &#8212; Should the worksheet be hidden? The value
                               is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>horizontalCentre</literal>
-                              &#8212;Should the worksheet be centered
+                              &#8212; Should the worksheet be centered
                               horizontally? The value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>horizontalFreeze</literal>
-                              &#8212;The row at which the pane is frozen
+                              &#8212; The row at which the pane is frozen
                               vertically. The value is a number.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>horizontalPrintResolution</literal>
-                              &#8212;The horizontal print resolution. The value
+                              &#8212; The horizontal print resolution. The value
                               is a number.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>leftMargin</literal>
-                              &#8212;The left margin. The value is a number
+                              &#8212; The left margin. The value is a number
                               (inches).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>normalMagnification</literal>
-                              &#8212;The normal magnificaton factor (not zoom or
+                              &#8212; The normal magnificaton factor (not zoom or
                               scale factor). The value is a number (percentage).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>orientation</literal>
-                              &#8212;The paper orientation for printing this
+                              &#8212; The paper orientation for printing this
                               sheet. The value is a string that can be either
                               "landscape" or "portrait".
                            </para>
@@ -597,7 +597,7 @@
                         <listitem>
                            <para>
                               <literal>pageBreakPreviewMagnification</literal>
-                              &#8212;The page break preview magnificaton factor
+                              &#8212; The page break preview magnificaton factor
                               (not zoom or scale factors). the value is a number
                               (percentage).
                            </para>
@@ -605,21 +605,21 @@
                         <listitem>
                            <para>
                               <literal>pageBreakPreviewMode</literal>
-                              &#8212;Show page in preview mode? The value is a
+                              &#8212; Show page in preview mode? The value is a
                               boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>pageStart</literal>
-                              &#8212;The page number at which to commence
+                              &#8212; The page number at which to commence
                               printing. The value is a number.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>paperSize</literal>
-                              &#8212;The paper size to be used when printing
+                              &#8212; The paper size to be used when printing
                               this sheet. The value is a string that can be one
                               of "a4", "a3", "letter", "legal" etc (see
                               <ulink
@@ -632,104 +632,104 @@
                         <listitem>
                            <para>
                               <literal>password</literal>
-                              &#8212;The password for this sheet. The value is a
+                              &#8212; The password for this sheet. The value is a
                               string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>passwordHash</literal>
-                              &#8212;The password hash - used only when copying
+                              &#8212; The password hash - used only when copying
                               sheets. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>printGridLines</literal>
-                              &#8212;Should grid lines be printed? The value is
+                              &#8212; Should grid lines be printed? The value is
                               a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>printHeaders</literal>
-                              &#8212;Should headers be printed? The value is a
+                              &#8212; Should headers be printed? The value is a
                               boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>sheetProtected</literal>
-                              &#8212;Should the sheet be protected (read-only)?
+                              &#8212; Should the sheet be protected (read-only)?
                               The value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>recalculateFormulasBeforeSave</literal>
-                              &#8212;Should the formulas be re-calculated when
+                              &#8212; Should the formulas be re-calculated when
                               the sheet is saved? The value is a boolean. false
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>rightMargin</literal>
-                              &#8212;The right margin. The value is a number
+                              &#8212; The right margin. The value is a number
                               (inches).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>scaleFactor</literal>
-                              &#8212;The scale factor for this sheet to be used
+                              &#8212; The scale factor for this sheet to be used
                               when printing. The value is a number (percent).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>selected</literal>
-                              &#8212;Should the sheet be selected when the
+                              &#8212; Should the sheet be selected when the
                               workbook opens? The value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>showGridLines</literal>
-                              &#8212;Should gridlines be shown? The value is a
+                              &#8212; Should gridlines be shown? The value is a
                               boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>topMargin</literal>
-                              &#8212;The top margin. The value is a number
+                              &#8212; The top margin. The value is a number
                               (inches).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>verticalCentre</literal>
-                              &#8212;Center verically? The value is a boolean.
+                              &#8212; Center verically? The value is a boolean.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>verticalFreeze</literal>
-                              &#8212;The row at which the pane is frozen
+                              &#8212; The row at which the pane is frozen
                               vertically. The value is a number.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>verticalPrintResolution</literal>
-                              &#8212;The vertical print resolution. The value is
+                              &#8212; The vertical print resolution. The value is
                               a number.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>zoomFactor</literal>
-                              &#8212;T zoom factor. Do not confuse zoom factor
+                              &#8212; T zoom factor. Do not confuse zoom factor
                               (which relates to the on screen view) with scale
                               factor (which refers to the scale factor when
                               printing). The value is a number (percentage.
@@ -743,7 +743,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:printArea/&gt;</literal>
-                              &#8212;Zero or more print area definitions (see
+                              &#8212; Zero or more print area definitions (see
                               <xref linkend="excel.printareatitles" />
                               ).
                            </para>
@@ -751,7 +751,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:printTitle/&gt;</literal>
-                              &#8212;Zero or more print title definitions (see
+                              &#8212; Zero or more print title definitions (see
                               <xref linkend="excel.printareatitles" />
                               ).
                            </para>
@@ -759,7 +759,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:headerFooter/&gt;</literal>
-                              &#8212;Zero or more header/footer definitions
+                              &#8212; Zero or more header/footer definitions
                               ((see
                               <xref linkend="excel.headersfooters" />
                               )).
@@ -779,14 +779,14 @@
                      <itemizedlist>
                         <listitem>
                            <para>
-                              <literal>header</literal>&#8212;Contents that will
+                              <literal>header</literal>&#8212; Contents that will
                               be placed at the top of the data block, above the 
                               column headers (if any)
                            </para>
                         </listitem>
                         <listitem>
                            <para>
-                              <literal>footer</literal>&#8212;Contents that will
+                              <literal>footer</literal>&#8212; Contents that will
                               be placed at the bottom of the data block, below the 
                               column footers (if any)
                            </para>
@@ -850,7 +850,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:cell/&gt;</literal>
-                              &#8212;Zero or more cells (see
+                              &#8212; Zero or more cells (see
                               <xref linkend="excel.cells" />
                               ).
                            </para>
@@ -858,7 +858,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:formula/&gt;</literal>
-                              &#8212;Zero or more formulas (see
+                              &#8212; Zero or more formulas (see
                               <xref linkend="excel.formulas" />
                               ).
                            </para>
@@ -866,7 +866,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:image/&gt;</literal>
-                              &#8212;Zero or more images (see
+                              &#8212; Zero or more images (see
                               <xref linkend="excel.images" />
                               ).
                            </para>
@@ -874,7 +874,7 @@
                         <listitem>
                            <para>
                               <literal>&lt;e:hyperLink/&gt;</literal>
-                              &#8212;Zero or more hyperlinks (see
+                              &#8212; Zero or more hyperlinks (see
                               <xref linkend="excel.hyperlinks" />
                               ).
                            </para>
@@ -887,7 +887,7 @@
                         <listitem>
                            <para>
                               <literal>header</literal>
-                              &#8212;This facet can/will contain one
+                              &#8212; This facet can/will contain one
                               <literal>&lt;e:cell&gt;</literal>
                               ,
                               <literal>&lt;e:formula&gt;</literal>
@@ -901,7 +901,7 @@
                         <listitem>
                            <para>
                               <literal>footer</literal>
-                              &#8212;This facet can/will contain one
+                              &#8212; This facet can/will contain one
                               <literal>&lt;e:cell&gt;</literal>
                               ,
                               <literal>&lt;e:formula&gt;</literal>
@@ -964,7 +964,7 @@
                         <listitem>
                            <para>
                               <literal>column</literal>
-                              &#8212;The column where to place the cell. The
+                              &#8212; The column where to place the cell. The
                               default is the internal counter. The value is a
                               number. Note that the value is 0-based.
                            </para>
@@ -972,7 +972,7 @@
                         <listitem>
                            <para>
                               <literal>row</literal>
-                              &#8212;The row where to place the cell. The
+                              &#8212; The row where to place the cell. The
                               default is the internal counter. The value is
                               number. Note that the value is 0-based.
                            </para>
@@ -980,7 +980,7 @@
                         <listitem>
                            <para>
                               <literal>value</literal>
-                              &#8212;The value to display. Usually an
+                              &#8212; The value to display. Usually an
                               EL-expression referencing the var-attribute of the
                               containing datatable. The value is a string.
                            </para>
@@ -988,21 +988,21 @@
                         <listitem>
                            <para>
                               <literal>comment</literal>
-                              &#8212;A comment to add to the cell. The value is
+                              &#8212; A comment to add to the cell. The value is
                               a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>commentHeight</literal>
-                              &#8212;The height of the comment. The value is a
+                              &#8212; The height of the comment. The value is a
                               number (in pixels).
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>commentWidth</literal>
-                              &#8212;A width of the comment. The value is a
+                              &#8212; A width of the comment. The value is a
                               number (in pixels).
                            </para>
                         </listitem>
@@ -1075,7 +1075,7 @@
                            <listitem>
                               <para>
                                  <literal>value</literal>
-                                 &#8212;The limit (or lower limit where
+                                 &#8212; The limit (or lower limit where
                                  applicable) of the validation. The value is a
                                  number.
                               </para>
@@ -1083,14 +1083,14 @@
                            <listitem>
                               <para>
                                  <literal>value2</literal>
-                                 &#8212;The upper limit (where applicable) of
+                                 &#8212; The upper limit (where applicable) of
                                  the validation. The value is a number.
                               </para>
                            </listitem>
                            <listitem>
                               <para>
                                  <literal>condition</literal>
-                                 &#8212;The validation condition. The value is a
+                                 &#8212; The validation condition. The value is a
                                  string.
                                  <itemizedlist>
                                     <listitem>
@@ -1210,7 +1210,7 @@
                            <listitem>
                               <para>
                                  <literal>startColumn</literal>
-                                 &#8212;The starting column of the range of
+                                 &#8212; The starting column of the range of
                                  values to validate against. The value is a
                                  number.
                               </para>
@@ -1218,21 +1218,21 @@
                            <listitem>
                               <para>
                                  <literal>startRow</literal>
-                                 &#8212;The starting row of the range of values
+                                 &#8212; The starting row of the range of values
                                  to validate against. The value is a number.
                               </para>
                            </listitem>
                            <listitem>
                               <para>
                                  <literal>endColumn</literal>
-                                 &#8212;The ending column of the range of values
+                                 &#8212; The ending column of the range of values
                                  to validate against. The value is a number.
                               </para>
                            </listitem>
                            <listitem>
                               <para>
                                  <literal>endRow</literal>
-                                 &#8212;The ending row of the range of values to
+                                 &#8212; The ending row of the range of values to
                                  validate against. The value is a number.
                               </para>
                            </listitem>
@@ -1352,7 +1352,7 @@
                            <listitem>
                               <para>
                                  <literal>value</literal>
-                                 &#8212;A values to validate against.
+                                 &#8212; A values to validate against.
                               </para>
                            </listitem>
                         </itemizedlist>
@@ -1527,7 +1527,7 @@
                         <listitem>
                            <para>
                               <literal>startColumn</literal>
-                              &#8212;The starting column of the image. The
+                              &#8212; The starting column of the image. The
                               default is the internal counter. The value is a
                               number. Note that the value is 0-based.
                            </para>
@@ -1535,7 +1535,7 @@
                         <listitem>
                            <para>
                               <literal>startRow</literal>
-                              &#8212;The starting row of the image. The default
+                              &#8212; The starting row of the image. The default
                               is the internal counter. The value is a number.
                               Note that the value is 0-based.
                            </para>
@@ -1543,7 +1543,7 @@
                         <listitem>
                            <para>
                               <literal>columnSpan</literal>
-                              &#8212;The column span of the image. The default
+                              &#8212; The column span of the image. The default
                               is one resulting in the default width of the
                               image. The value is a float.
                            </para>
@@ -1551,7 +1551,7 @@
                         <listitem>
                            <para>
                               <literal>rowSpan</literal>
-                              &#8212;The row span of the image. The default is
+                              &#8212; The row span of the image. The default is
                               the one resulting in the default height of the
                               image. The value is a float.
                            </para>
@@ -1559,7 +1559,7 @@
                         <listitem>
                            <para>
                               <literal>URI</literal>
-                              &#8212;The URI to the image. The value is a
+                              &#8212; The URI to the image. The value is a
                               string.
                            </para>
                         </listitem>
@@ -1630,7 +1630,7 @@
                         <listitem>
                            <para>
                               <literal>startColumn</literal>
-                              &#8212;The starting column of the hyperlink. The
+                              &#8212; The starting column of the hyperlink. The
                               default is the internal counter. The value is a
                               number. Note that the value is 0-based.
                            </para>
@@ -1638,7 +1638,7 @@
                         <listitem>
                            <para>
                               <literal>startRow</literal>
-                              &#8212;The starting row of the hyperlink. The
+                              &#8212; The starting row of the hyperlink. The
                               default is the internal counter. The value is a
                               number. Note that the value is 0-based.
                            </para>
@@ -1646,7 +1646,7 @@
                         <listitem>
                            <para>
                               <literal>endColumn</literal>
-                              &#8212;The ending column of the hyperlink. The
+                              &#8212; The ending column of the hyperlink. The
                               default is the internal counter. The value is a
                               number. Note that the value is 0-based.
                            </para>
@@ -1654,7 +1654,7 @@
                         <listitem>
                            <para>
                               <literal>endRow</literal>
-                              &#8212;The ending row of the hyperlink. The
+                              &#8212; The ending row of the hyperlink. The
                               default is the internal counter. The value is a
                               number. Note that the value is 0-based.
                            </para>
@@ -1662,13 +1662,13 @@
                         <listitem>
                            <para>
                               <literal>URL</literal>
-                              &#8212;The URL to link. The value is a string.
+                              &#8212; The URL to link. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>description</literal>
-                              &#8212;The description of the link. The value is a
+                              &#8212; The description of the link. The value is a
                               string.
                            </para>
                         </listitem>
@@ -1758,21 +1758,21 @@
                         <listitem>
                            <para>
                               <literal>left</literal>
-                              &#8212;The contents of the left header/footer
+                              &#8212; The contents of the left header/footer
                               part.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>center</literal>
-                              &#8212;The contents of the center header/footer
+                              &#8212; The contents of the center header/footer
                               part.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>right</literal>
-                              &#8212;The contents of the right header/footer
+                              &#8212; The contents of the right header/footer
                               part.
                            </para>
                         </listitem>
@@ -1821,21 +1821,21 @@
                         <listitem>
                            <para>
                               <literal>left</literal>
-                              &#8212;The contents of the left header/footer
+                              &#8212; The contents of the left header/footer
                               part.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>center</literal>
-                              &#8212;The contents of the center header/footer
+                              &#8212; The contents of the center header/footer
                               part.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>right</literal>
-                              &#8212;The contents of the right header/footer
+                              &#8212; The contents of the right header/footer
                               part.
                            </para>
                         </listitem>
@@ -2066,7 +2066,7 @@
                         <listitem>
                            <para>
                               <literal>firstColumn</literal>
-                              &#8212;The column of the top-left corner of the
+                              &#8212; The column of the top-left corner of the
                               area. The parameter is a number. Note that the
                               value is 0-based.
                            </para>
@@ -2074,7 +2074,7 @@
                         <listitem>
                            <para>
                               <literal>firstRow</literal>
-                              &#8212;The row of the top-left corner of the area.
+                              &#8212; The row of the top-left corner of the area.
                               The parameter is a number. Note that the value is
                               0-based.
                            </para>
@@ -2082,7 +2082,7 @@
                         <listitem>
                            <para>
                               <literal>lastColumn</literal>
-                              &#8212;The column of the bottom-right corner of
+                              &#8212; The column of the bottom-right corner of
                               the area. The parameter is a number. Note that the
                               value is 0-based.
                            </para>
@@ -2090,7 +2090,7 @@
                         <listitem>
                            <para>
                               <literal>lastRow</literal>
-                              &#8212;The row of the bottom-right corner of the
+                              &#8212; The row of the bottom-right corner of the
                               area. The parameter is a number. Note that the
                               value is 0-based.
                            </para>
@@ -2165,7 +2165,7 @@
                            <listitem>
                               <para>
                                  <literal>startRow</literal>
-                                 &#8212;The row to start the grouping at. The
+                                 &#8212; The row to start the grouping at. The
                                  value is a number. Note that the value is
                                  0-based.
                               </para>
@@ -2173,7 +2173,7 @@
                            <listitem>
                               <para>
                                  <literal>endRow</literal>
-                                 &#8212;The row to end the grouping at. The
+                                 &#8212; The row to end the grouping at. The
                                  value is a number. Note that the value is
                                  0-based.
                               </para>
@@ -2181,7 +2181,7 @@
                            <listitem>
                               <para>
                                  <literal>collapse</literal>
-                                 &#8212;Should the grouping be collapsed
+                                 &#8212; Should the grouping be collapsed
                                  initially? The value is a boolean.
                               </para>
                            </listitem>
@@ -2230,7 +2230,7 @@
                            <listitem>
                               <para>
                                  <literal>startColumn</literal>
-                                 &#8212;The column to start the grouping at. The
+                                 &#8212; The column to start the grouping at. The
                                  value is a number. Note that the value is
                                  0-based.
                               </para>
@@ -2238,7 +2238,7 @@
                            <listitem>
                               <para>
                                  <literal>endColumn</literal>
-                                 &#8212;The column to end the grouping at. The
+                                 &#8212; The column to end the grouping at. The
                                  value is a number. Note that the value is
                                  0-based.
                               </para>
@@ -2246,7 +2246,7 @@
                            <listitem>
                               <para>
                                  <literal>collapse</literal>
-                                 &#8212;Should the grouping be collapsed
+                                 &#8212; Should the grouping be collapsed
                                  initially? The value is a boolean.
                               </para>
                            </listitem>
@@ -2315,7 +2315,7 @@
                            <listitem>
                               <para>
                                  <literal>row</literal>
-                                 &#8212;The row to break at. The value is a
+                                 &#8212; The row to break at. The value is a
                                  number. Note that the value is 0-based.
                               </para>
                            </listitem>
@@ -2378,7 +2378,7 @@
                            <listitem>
                               <para>
                                  <literal>startRow</literal>
-                                 &#8212;The row to start the merging from. The
+                                 &#8212; The row to start the merging from. The
                                  value is a number. Note that the value is
                                  0-based.
                               </para>
@@ -2386,7 +2386,7 @@
                            <listitem>
                               <para>
                                  <literal>startColumn</literal>
-                                 &#8212;The column to start the merging from.
+                                 &#8212; The column to start the merging from.
                                  The value is a number. Note that the value is
                                  0-based.
                               </para>
@@ -2394,14 +2394,14 @@
                            <listitem>
                               <para>
                                  <literal>endRow</literal>
-                                 &#8212;The row to end the merging at. The value
+                                 &#8212; The row to end the merging at. The value
                                  is a number. Note that the value is 0-based.
                               </para>
                            </listitem>
                            <listitem>
                               <para>
                                  <literal>endColumn</literal>
-                                 &#8212;The column to end the merging at. The
+                                 &#8212; The column to end the merging at. The
                                  value is a number. Note that the value is
                                  0-based.
                               </para>
@@ -2527,7 +2527,7 @@
                            <listitem>
                               <para>
                                  <literal>URL</literal>
-                                 &#8212;The URL to the stylesheet
+                                 &#8212; The URL to the stylesheet
                               </para>
                            </listitem>
                         </itemizedlist>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Framework.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Framework.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Framework.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -24,7 +24,7 @@
     <para>
         We should emphasize that the framework is extremely simple, 
         just a handful of simple classes that are easy to understand
-        and extend. The "magic" is in Seam itself&#8212;the same magic
+        and extend. The "magic" is in Seam itself &#8212; the same magic
         you use when creating any Seam application even without using 
         this framework.
     </para>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Itext.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Itext.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Itext.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -1664,19 +1664,19 @@
 
                                 <listitem>
                                     <para>
-                                        <literal>legendItemPaint</literal>&#8212; The default color of the text
+                                        <literal>legendItemPaint</literal> &#8212; The default color of the text
                                         labels in the legend. </para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <literal>legendItemBackgoundPaint</literal>&#8212; The background color for
+                                        <literal>legendItemBackgoundPaint</literal> &#8212; The background color for
                                         the legend, if different from the chart background color.</para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <literal>legendOutlinePaint</literal>&#8212; The color of the border around
+                                        <literal>legendOutlinePaint</literal> &#8212; The color of the border around
                                         the legend.</para>
                                 </listitem>
 
@@ -1688,27 +1688,27 @@
 
                                 <listitem>
                                     <para>
-                                        <literal>plotBackgroundPaint</literal>&#8212; The color of the plot
+                                        <literal>plotBackgroundPaint</literal> &#8212; The color of the plot
                                         background.</para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <literal>plotBackgroundAlpha</literal>&#8212; The alpha (transparency) level
+                                        <literal>plotBackgroundAlpha</literal> &#8212; The alpha (transparency) level
                                         of the plot background. It should be a number between 0 (completely transparent)
                                         and 1 (completely opaque). </para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <literal>plotForegroundAlpha</literal>&#8212; The alpha (transparency) level
+                                        <literal>plotForegroundAlpha</literal> &#8212; The alpha (transparency) level
                                         of the plot. It should be a number between 0 (completely transparent) and 1
                                         (completely opaque). </para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <literal>plotOutlinePaint</literal>&#8212; The color of the range gridlines,
+                                        <literal>plotOutlinePaint</literal> &#8212; The color of the range gridlines,
                                         if visible. </para>
                                 </listitem>
                                 <listitem>
@@ -1730,12 +1730,12 @@
 
                                 <listitem>
                                     <para>
-                                        <literal>rangeGridlinesVisible</literal>&#8212; Controls whether or not
+                                        <literal>rangeGridlinesVisible</literal> &#8212; Controls whether or not
                                         gridlines for the range axis are shown on the chart. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>rangeGridlinePaint</literal>&#8212; The color of the range
+                                        <literal>rangeGridlinePaint</literal> &#8212; The color of the range
                                         gridlines, if visible. </para>
                                 </listitem>
                                 <listitem>
@@ -1750,12 +1750,12 @@
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>titlePaint</literal>&#8212; The color of the chart title text.
+                                        <literal>titlePaint</literal> &#8212; The color of the chart title text.
                                     </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>titleBackgroundPaint</literal>&#8212; The background color around
+                                        <literal>titleBackgroundPaint</literal> &#8212; The background color around
                                         the chart title.</para>
                                 </listitem>
                                 <listitem>
@@ -1799,120 +1799,120 @@
 
                                 <listitem>
                                     <para>
-                                        <literal>title</literal>&#8212; The chart title text. </para>
+                                        <literal>title</literal> &#8212; The chart title text. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>label</literal>&#8212; The default label text for pie sections.
+                                        <literal>label</literal> &#8212; The default label text for pie sections.
                                     </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>legend</literal>&#8212; A boolean value indicating whether or not
+                                        <literal>legend</literal> &#8212; A boolean value indicating whether or not
                                         the chart should include a legend. Default value is true </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>is3D</literal>&#8212;A boolean value indicating that the chart
+                                        <literal>is3D</literal> &#8212;A boolean value indicating that the chart
                                         should be rendered in 3D instead of 2D. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelLinkMargin</literal>&#8212; The link margin for labels.
+                                        <literal>labelLinkMargin</literal> &#8212; The link margin for labels.
                                     </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelLinkPaint</literal>&#8212; The paint used for the label
+                                        <literal>labelLinkPaint</literal> &#8212; The paint used for the label
                                         linking lines. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelLinkStroke</literal>&#8212; he stroke used for the label
+                                        <literal>labelLinkStroke</literal> &#8212; he stroke used for the label
                                         linking lines. </para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <literal>labelLinksVisible</literal>&#8212; A flag that controls whether or
+                                        <literal>labelLinksVisible</literal> &#8212; A flag that controls whether or
                                         not the label links are drawn. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelOutlinePaint</literal>&#8212; The paint used to draw the
+                                        <literal>labelOutlinePaint</literal> &#8212; The paint used to draw the
                                         outline of the section labels. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelOutlineStroke</literal>&#8212; The stroke used to draw the
+                                        <literal>labelOutlineStroke</literal> &#8212; The stroke used to draw the
                                         outline of the section labels. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelShadowPaint</literal>&#8212; The paint used to draw the shadow
+                                        <literal>labelShadowPaint</literal> &#8212; The paint used to draw the shadow
                                         for the section labels. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelPaint</literal>&#8212; The color used to draw the section
+                                        <literal>labelPaint</literal> &#8212; The color used to draw the section
                                         labels </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelGap</literal>&#8212; The gap between the labels and the plot
+                                        <literal>labelGap</literal> &#8212; The gap between the labels and the plot
                                         as a percentage of the plot width. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>labelBackgroundPaint</literal>&#8212; The color used to draw the
+                                        <literal>labelBackgroundPaint</literal> &#8212; The color used to draw the
                                         background of the section labels. If this is null, the background is not filled.
                                     </para>
                                 </listitem>
 
                                 <listitem>
                                     <para>
-                                        <literal>startAngle</literal>&#8212; The starting angle of the first
+                                        <literal>startAngle</literal> &#8212; The starting angle of the first
                                         section. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>circular</literal>&#8212; A boolean value indicating that the chart
+                                        <literal>circular</literal> &#8212; A boolean value indicating that the chart
                                         should be drawn as a circle. If false, the chart is drawn as an ellipse. The
                                         default is true. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>direction</literal>&#8212; The direction the pie section are drawn.
+                                        <literal>direction</literal> &#8212; The direction the pie section are drawn.
                                         One of: <literal>clockwise</literal> or <literal>anticlockwise</literal>. The
                                         default is <literal>clockwise</literal>. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>sectionOutlinePaint</literal>&#8212; The outline paint for all
+                                        <literal>sectionOutlinePaint</literal> &#8212; The outline paint for all
                                         sections. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>sectionOutlineStroke</literal>&#8212; The outline stroke for all
+                                        <literal>sectionOutlineStroke</literal> &#8212; The outline stroke for all
                                         sections </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>sectionOutlinesVisible</literal>&#8212; Indicates whether an
+                                        <literal>sectionOutlinesVisible</literal> &#8212; Indicates whether an
                                         outline is drawn for each section in the plot. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>baseSectionOutlinePaint</literal>&#8212; The base section outline
+                                        <literal>baseSectionOutlinePaint</literal> &#8212; The base section outline
                                         paint. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>baseSectionPaint</literal>&#8212; The base section paint. </para>
+                                        <literal>baseSectionPaint</literal> &#8212; The base section paint. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>baseSectionOutlineStroke</literal>&#8212; The base section outline
+                                        <literal>baseSectionOutlineStroke</literal> &#8212; The base section outline
                                         stroke. </para>
                                 </listitem>
                             </itemizedlist>
@@ -1957,7 +1957,7 @@
                                 <!--
                                 <listitem>
                                     <para>
-                                        <literal>seriesFillPaint</literal>  &#8212; 
+                                        <literal>seriesFillPaint</literal> &#8212; 
                                     </para>
                                 </listitem>
                                 -->
@@ -2231,17 +2231,17 @@
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>code</literal>&#8212; The value to be encoded by the barcode.
+                                        <literal>code</literal> &#8212; The value to be encoded by the barcode.
                                     </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>xpos</literal>&#8212; For PDFs, the absolute y position of the
+                                        <literal>xpos</literal> &#8212; For PDFs, the absolute y position of the
                                         barcode on the page. </para>
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>ypos</literal>&#8212; For PDFs, the absolute y position of the
+                                        <literal>ypos</literal> &#8212; For PDFs, the absolute y position of the
                                         barcode on the page. </para>
                                 </listitem>
                                 <listitem>
@@ -2460,7 +2460,7 @@
                                 </listitem>
                                 <listitem>
                                     <para>
-                                        <literal>height</literal> &#8212; ..The height of the component to be rendered. </para>
+                                        <literal>height</literal> &#8212; The height of the component to be rendered. </para>
                                 </listitem>
                                 <listitem>
                                     <para>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Jbpm.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Jbpm.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Jbpm.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -402,8 +402,8 @@
         
         <para>
             If we are beginning the pageflow during the <literal>RENDER_RESPONSE</literal>
-            phase&#8212;during a <literal>@Factory</literal> or <literal>@Create</literal>
-            method, for example&#8212;we consider ourselves to be already at the page being 
+            phase &#8212; during a <literal>@Factory</literal> or <literal>@Create</literal>
+            method, for example &#8212; we consider ourselves to be already at the page being 
             rendered, and use  a <literal>&lt;start-page&gt;</literal> node as the first node 
             in the pageflow, as in the example above.
         </para>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Persistence.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Persistence.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Persistence.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -16,7 +16,7 @@
         Seam grew out of the frustration of the Hibernate team with the 
         statelessness typical of the previous generation of Java application 
         architectures. The state management architecture of Seam was originally
-        designed to solve problems relating to persistence&#8212;in particular
+        designed to solve problems relating to persistence &#8212; in particular
         problems associated with <emphasis>optimistic transaction processing</emphasis>.
         Scalable online applications always use optimistic transactions. An atomic 
         (database/JTA) level transaction should not span a user interaction unless
@@ -124,7 +124,7 @@
     	<para>
             This pattern is usually implemented as a single transaction which spans the entire request. 
             There are several problems with this implementation, the most serious being that we 
-            can never be sure that a transaction is successful until we commit it&#8212;but by the 
+            can never be sure that a transaction is successful until we commit it &#8212; but by the 
             time the "open session in view" transaction is committed, the view is fully rendered, and 
             the rendered response may already have been flushed to the client. How can we notify the 
             user that their transaction was unsuccessful? 

Modified: trunk/doc/Seam_Reference_Guide/en-US/Preface.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Preface.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Preface.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -34,7 +34,7 @@
                         access state associated with the web request and state held in transactional resources (without
                         the need to propagate web request state manually via method parameters). You might object
                         that the application layering imposed upon you by the old J2EE platform was a Good Thing.
-                        Well, nothing stops you creating an equivalent layered architecture using Seam&#8212;the difference
+                        Well, nothing stops you creating an equivalent layered architecture using Seam &#8212; the difference
                         is that <emphasis>you</emphasis> get to architect your own application and decide what the
                         layers are and how they work together.
                     </para>
@@ -62,7 +62,7 @@
                         It is possible to write Seam applications where "everything" is an EJB. This may come 
                         as a surprise if you're used to thinking of EJBs as coarse-grained, so-called 
                         "heavyweight" objects. However, version 3.0 has completely changed the nature of EJB 
-                        from the point of view of the developer. An EJB is a fine-grained object&#8212;nothing 
+                        from the point of view of the developer. An EJB is a fine-grained object &#8212; nothing 
                         more complex than an annotated JavaBean. Seam even encourages you to use session beans 
                         as JSF action listeners!                    
                     </para>
@@ -136,8 +136,8 @@
                     <para>
                         Declarative application state management is made possible by the richness of the
                         <emphasis>context model</emphasis> defined by Seam. Seam extends the context model defined 
-                        by the servlet spec&#8212;request, session, application&#8212;with two new
-                        contexts&#8212;conversation and business process&#8212;that are more meaningful from the
+                        by the servlet spec &#8212; request, session, application &#8212; with two new
+                        contexts &#8212; conversation and business process &#8212; that are more meaningful from the
                         point of view of the business logic.
                     </para>
                     <para>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Rss.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Rss.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Rss.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -87,38 +87,38 @@
                         <listitem>
                            <para>
                               <literal>uid</literal>
-                              &#8212;An optional unique feed id. The value is a string.
+                              &#8212; An optional unique feed id. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>title</literal>
-                              &#8212;The title of the feed. The value is a string.
+                              &#8212; The title of the feed. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>subtitle</literal>
-                              &#8212;The subtitle of the feed. The value is a string.
+                              &#8212; The subtitle of the feed. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>updated</literal>
-                              &#8212;When was the feed updated? The value is a date.
+                              &#8212; When was the feed updated? The value is a date.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>link</literal>
-                              &#8212;The link to the source of the information.
+                              &#8212; The link to the source of the information.
                               The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>feedFormat</literal>
-                              &#8212;The feed format. The value is a string and defaults
+                              &#8212; The feed format. The value is a string and defaults
                               to ATOM1. Valid values are RSS10, RSS20, ATOM03 and ATOM10.
                            </para>
                         </listitem>
@@ -174,37 +174,37 @@
                         <listitem>
                            <para>
                               <literal>uid</literal>
-                              &#8212;An optional unique entry id. The value is a string.
+                              &#8212; An optional unique entry id. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>title</literal>
-                              &#8212;The title of the entry. The value is a string.
+                              &#8212; The title of the entry. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>link</literal>
-                              &#8212;A link to the item. The value is a string.
+                              &#8212; A link to the item. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>author</literal>
-                              &#8212;The author of the story. The value is a string.
+                              &#8212; The author of the story. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>summary</literal>
-                              &#8212;The body of the story. The value is a string.
+                              &#8212; The body of the story. The value is a string.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>textFormat</literal>
-                              &#8212;The format of the body and title of the story. 
+                              &#8212; The format of the body and title of the story. 
                               The value is a string and valid values are "text" and 
                               "html". Defaults to "html".
                            </para>
@@ -212,13 +212,13 @@
                         <listitem>
                            <para>
                               <literal>published</literal>
-                              &#8212;When was the story first published? The value is a date.
+                              &#8212; When was the story first published? The value is a date.
                            </para>
                         </listitem>
                         <listitem>
                            <para>
                               <literal>updated</literal>
-                              &#8212;When was the story updated? The value is a date.
+                              &#8212; When was the story updated? The value is a date.
                            </para>
                         </listitem>
                      </itemizedlist>

Modified: trunk/doc/Seam_Reference_Guide/en-US/Tutorial.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Tutorial.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Tutorial.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -871,7 +871,7 @@
 
                 <para> But <literal>MessageManagerBean</literal> is also responsible for fetching the list of messages
                     the first time we navigate to the message list page. There are various ways the user could navigate
-                    to the page, and not all of them are preceded by a JSF action&#8212;the user might have
+                    to the page, and not all of them are preceded by a JSF action &#8212; the user might have
                     bookmarked the page, for example. So the job of fetching the message list takes place in a Seam
                         <emphasis>factory method</emphasis>, instead of in an action listener method. </para>
 
@@ -3056,7 +3056,7 @@
 
             <para> If we navigate to this page from a bookmark, how does the <literal>#{blog.recentBlogEntries}</literal>
                 data used by the <literal>&lt;h:dataTable&gt;</literal> actually get initialized? 
-                The <literal>Blog</literal> is retrieved lazily&#8212;"pulled"&#8212;when needed, by a Seam
+                The <literal>Blog</literal> is retrieved lazily &#8212; "pulled" &#8212; when needed, by a Seam
                 component named <literal>blog</literal>. This is the opposite flow of control to what is used in
                 traditional action-based web frameworks like Struts. </para>
              <example>
@@ -3094,7 +3094,7 @@
                         </callout>
                         <callout arearefs="blog-unwrap">
                             <para> The <literal>@Unwrap</literal> annotation tells Seam to provide the return value of
-                                the method&#8212;the <literal>Blog</literal>&#8212;instead of the actual
+                                the method &#8212; the <literal>Blog</literal> &#8212; instead of the actual
                                     <literal>BlogService</literal> component to clients. This is the Seam
                                     <emphasis>manager component pattern</emphasis>. </para>
                         </callout>
@@ -3344,7 +3344,7 @@
                     <literal>blogEntryId</literal> to the model.  Keep in mind that because of the URL rewriting,
                 the blogEntryId parameter name won't show up in the URL.  Seam then runs the page action, which retrieves 
                 the needed
-                data&#8212;the <literal>blogEntry</literal>&#8212;and places it in the Seam event context.
+                data &#8212; the <literal>blogEntry</literal> &#8212; and places it in the Seam event context.
                 Finally, the following is rendered: </para>
 
             <programlisting role="XHTML"><![CDATA[<div class="blogEntry">

Modified: trunk/doc/Seam_Reference_Guide/en-US/Validation.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Validation.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Validation.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -111,7 +111,7 @@
 
     <para>
         This approach <emphasis>defines</emphasis> constraints on the model, and 
-        <emphasis>presents</emphasis> constraint violations in the view&#8212;a
+        <emphasis>presents</emphasis> constraint violations in the view &#8212; a
         significantly better design.
     </para>
     

Modified: trunk/doc/Seam_Reference_Guide/en-US/Xml.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Xml.xml	2009-01-17 20:03:53 UTC (rev 9943)
+++ trunk/doc/Seam_Reference_Guide/en-US/Xml.xml	2009-01-18 14:06:20 UTC (rev 9944)
@@ -49,12 +49,12 @@
 
             <itemizedlist>
                 <listitem>
-                    <para> Configure components that have been installed automatically&#8212;including both built-in
+                    <para> Configure components that have been installed automatically &#8212; including both built-in
                         components, and application components that have been annotated with the
                         <literal>@Name</literal> annotation and picked up by Seam's deployment scanner. </para>
                 </listitem>
                 <listitem>
-                    <para> Install classes with no <literal>@Name</literal> annotation as Seam components&#8212;this
+                    <para> Install classes with no <literal>@Name</literal> annotation as Seam components &#8212; this
                         is most useful for certain kinds of infrastructural components which can be installed multiple
                         times with different names (for example Seam-managed persistence contexts). </para>
                 </listitem>




More information about the seam-commits mailing list