Author: akarasulu Date: Thu Dec 9 23:20:55 2004 New Revision: 111478 URL: http://svn.apache.org/viewcvs?view=rev&rev=111478 Log: touch ups Modified: incubator/directory/eve/trunk/xdocs/index.xml incubator/directory/eve/trunk/xdocs/partitions.xml
Modified: incubator/directory/eve/trunk/xdocs/index.xml Url: http://svn.apache.org/viewcvs/incubator/directory/eve/trunk/xdocs/index.xml?view=diff&rev=111478&p1=incubator/directory/eve/trunk/xdocs/index.xml&r1=111477&p2=incubator/directory/eve/trunk/xdocs/index.xml&r2=111478 ============================================================================== --- incubator/directory/eve/trunk/xdocs/index.xml (original) +++ incubator/directory/eve/trunk/xdocs/index.xml Thu Dec 9 23:20:55 2004 @@ -80,7 +80,7 @@ <a href="./jndi.html">JNDI</a> </td> <td> - Documentation for Eve's JNDI provider. LOTS-O-EXAMAPLES! + Documentation for Eve's JNDI provider. <b>LOTS-O-EXAMAPLES!</b> </td> </tr> @@ -89,17 +89,17 @@ <a href="./authentication.html">Authentication</a> </td> <td> - Documentation for how to bind to Eve out of the box. LOTS-O-EXAMAPLES! + Documentation for how to bind to Eve out of the box. <b>LOTS-O-EXAMAPLES!</b> </td> </tr> <tr> <td> - <a href="./partitions.html"></a> + <a href="./partitions.html">Partitions</a> </td> <td> Documentation for creating user partitions to Eve in addition to the - system context partition. LOTS-O-EXAMAPLES! + system context partition. <b>LOTS-O-EXAMAPLES!</b> </td> </tr> Modified: incubator/directory/eve/trunk/xdocs/partitions.xml Url: http://svn.apache.org/viewcvs/incubator/directory/eve/trunk/xdocs/partitions.xml?view=diff&rev=111478&p1=incubator/directory/eve/trunk/xdocs/partitions.xml&r1=111477&p2=incubator/directory/eve/trunk/xdocs/partitions.xml&r2=111478 ============================================================================== --- incubator/directory/eve/trunk/xdocs/partitions.xml (original) +++ incubator/directory/eve/trunk/xdocs/partitions.xml Thu Dec 9 23:20:55 2004 @@ -122,7 +122,7 @@ files. Properties from proerties files are the common denominator though. Another means is however possible programatically. </p> - <h4>Partition Id</h4> + <h3>Partition Id</h3> <p> Breifly we'll explain these properties and the scheme used. A partition's property set is associated as a set using the partition's @@ -130,7 +130,7 @@ <b>eve.db.partitions</b> property: above it lists the ids for the two partitions, <i>apache</i> and <i>test</i>. </p> - <h4>Naming Context</h4> + <h3>Naming Context</h3> <p> Partitions need to know the naming context they will store entries for. This naming context is also referred to as the suffix since all @@ -142,7 +142,7 @@ if the partition id is foo, then the suffix key would be, <b>eve.db.partition.suffix.foo</b>. </p> - <h4>User Defined Indices</h4> + <h3>User Defined Indices</h3> <p> Partitions can have indices on attributes. Unlike OpenLDAP where you can build specific types of indices, Eve indices are of a single type. @@ -154,7 +154,7 @@ partition has indices built on top of <b>ou</b>, <b>objectClass</b> and <b>uid</b>. </p> - <h4>Suffix Entry</h4> + <h3>Suffix Entry</h3> <p> When creating a context the root entry of the context corresponding to the suffix of the partition must be created. This entry is @@ -187,7 +187,7 @@ how this can be done for the same example above: </p> -<souce> +<source> BasicAttributes attrs = new BasicAttributes( true ); BasicAttribute attr = new BasicAttribute( "objectClass" ); attr.add( "top" ); @@ -216,7 +216,7 @@ extras.put( EnvKeys.SUFFIX + "example", "dc=example" ); extras.put( EnvKeys.INDICES + "example", "ou dc objectClass" ); extras.put( EnvKeys.ATTRIBUTES + "example", attrs ); -</souce> +</source> <p> Ok that does not look any shorter. We'll add to this in the future.
