Author: aadamchik
Date: Sun Jan  5 13:51:13 2014
New Revision: 1555504

URL: http://svn.apache.org/r1555504
Log:
fixing table layout

(cherry picked from commit 3f5926cf91097c827bc4b62fbeade4cfd95e11f1)

Modified:
    
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/appendix-b.xml

Modified: 
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/appendix-b.xml
URL: 
http://svn.apache.org/viewvc/cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/appendix-b.xml?rev=1555504&r1=1555503&r2=1555504&view=diff
==============================================================================
--- 
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/appendix-b.xml
 (original)
+++ 
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/appendix-b.xml
 Sun Jan  5 13:51:13 2014
@@ -23,64 +23,74 @@
     <para>
         <table frame="void">
             <caption>Service Collection Keys Present in ServerRuntime and/or 
ClientRuntime</caption>
-            <col width="45%"/>
-            <col width="55%"/>
+            <col width="42%"/>
+            <col width="25%"/>
+            <col width="33%"/>
             <thead>
                 <tr>
-                    <th>Collection Property / Type</th>
+                    <th>Collection Property</th>
+                    <th>Type</th>
                     <th>Description</th>
                 </tr>
             </thead>
             <tbody>
                 <tr>
-                    <td><code>cayenne.properties / 
Map&lt;String,String></code></td> 
+                    <td><code>cayenne.properties</code></td>
+                    <td><code>Map&lt;String,String></code></td> 
                     <td>Properties used by built-in
                         Cayenne services. The keys in this map are the 
property names from the table
                         in Appendix A. Separate copies of this map exist on 
the server and ROP
                         client.</td>
                 </tr>
                 <tr>
-                    <td><code>cayenne.server.adapter_detectors / 
List&lt;DbAdapterDetector></code></td>
+                    <td><code>cayenne.server.adapter_detectors</code></td>
+                    <td><code>List&lt;DbAdapterDetector></code></td>
                     <td>Contains
                         objects that can discover the type of current database 
and install the
                         correct DbAdapter in runtime.</td>
                 </tr>
                 <tr>
-                    <td><code>cayenne.server.domain_filters / 
List&lt;DataChannelFilter></code></td>
+                    <td><code>cayenne.server.domain_filters</code></td>
+                    <td><code>List&lt;DataChannelFilter></code></td>
                     <td>Stores DataDomain filters.</td>
                 </tr>
                 <tr>
-                    <td><code>cayenne.server.project_locations / 
List&lt;String></code></td>
+                    <td><code>cayenne.server.project_locations</code></td>
+                    <td><code>List&lt;String></code></td>
                     <td>Stores locations of the one of more project 
configuration files.</td>
                 </tr>
                 <tr>
-                    <td><code>cayenne.server.default_types / 
List&lt;ExtendedType></code></td>
+                    <td><code>cayenne.server.default_types</code></td>
+                    <td><code>List&lt;ExtendedType></code></td>
                     <td>Stores default adapter-agnostic ExtendedTypes. Default 
ExtendedTypes can be
                         overridden / extended by DB-specific DbAdapters as 
well as by user-provided
                         types configured in another colltecion (see
                         "cayenne.server.user_types").</td>
                 </tr>
                 <tr>
-                    <td><code>cayenne.server.user_types / 
List&lt;ExtendedType></code></td>
+                    <td><code>cayenne.server.user_types</code></td>
+                    <td><code>List&lt;ExtendedType></code></td>
                     <td>Stores a
                         user-provided ExtendedTypes. This collection will be 
merged into a full list
                         of ExtendedTypes and would override any ExtendedTypes 
defined in a default
                         list, or by a DbAdapter.</td>
                 </tr>
                 <tr>
-                    <td><code>cayenne.server.type_factories / 
List&lt;ExtendedTypeFactory></code></td>
+                    <td><code>cayenne.server.type_factories</code></td>
+                    <td><code>List&lt;ExtendedTypeFactory></code></td>
                     <td>Stores default and user-provided 
ExtendedTypeFactories. ExtendedTypeFactory
                         allows to define ExtendedTypes dynamically for the 
whole group of Java
                         classes. E.g. Cayenne supplies a factory to map all 
Enums regardless of
                         their type.</td>
                 </tr>
                 <tr>
-                    <td><code>cayenne.server.rop_event_bridge_properties / 
Map&lt;String, String></code></td>
+                    
<td><code>cayenne.server.rop_event_bridge_properties</code></td>
+                    <td><code>Map&lt;String, String></code></td>
                     <td>Stores event bridge properties passed to the ROP 
client on
                         bootstrap. This means that the map is configured by 
server DI, and passed to
                         the client via the wire. The properties in this map 
are specific to
                         EventBridgeFactory implementation (e.g JMS or XMPP 
connection prameters).
-                        One common property is 
"cayenne.server.rop_event_bridge_factory" that
+                        One common property is 
<code>"cayenne.server.rop_event_bridge_factory"</code> that
                         defines the type of the factory.</td>
                 </tr>
             </tbody>


Reply via email to