From bf14858204352c58d5bee93697dee91119f42333 Mon Sep 17 00:00:00 2001
From: Mark Craig <mark.craig@forgerock.com>
Date: Tue, 05 Jul 2011 16:26:18 +0000
Subject: [PATCH] Attempt to make the PDF output easier to read, and eliminate need for width="80" on monospace verbatim blocks.
---
opendj3/src/main/docbkx/admin-guide/chap-indexing.xml | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/opendj3/src/main/docbkx/admin-guide/chap-indexing.xml b/opendj3/src/main/docbkx/admin-guide/chap-indexing.xml
index d397c22..9279529 100644
--- a/opendj3/src/main/docbkx/admin-guide/chap-indexing.xml
+++ b/opendj3/src/main/docbkx/admin-guide/chap-indexing.xml
@@ -67,7 +67,7 @@
allows clients to find people even when they misspell names as in the
following example.</para>
- <screen width="80">$ ldapsearch -b dc=example,dc=com "(cn~=Babs Jansen)" cn
+ <screen>$ ldapsearch -b dc=example,dc=com "(cn~=Babs Jansen)" cn
dn: uid=bjensen,ou=People,dc=example,dc=com
cn: Barbara Jensen
cn: Babs Jensen</screen>
@@ -81,7 +81,7 @@
the search filter. An equality index requires clients to match values
without wildcards or misspellings.</para>
- <screen width="80">$ ldapsearch -b dc=example,dc=com "(uid=bjensen)" mail
+ <screen>$ ldapsearch -b dc=example,dc=com "(uid=bjensen)" mail
dn: uid=bjensen,ou=People,dc=example,dc=com
mail: bjensen@example.com</screen>
</section>
@@ -96,7 +96,7 @@
<para>The following example shows a search that specifies ranges.</para>
- <screen width="80">$ ldapsearch -b dc=example,dc=com \
+ <screen>$ ldapsearch -b dc=example,dc=com \
> "(&(uidNumber>=1120)(roomNumber>=4500))" uid
dn: uid=charvey,ou=People,dc=example,dc=com
uid: charvey
@@ -119,7 +119,7 @@
attribute is indexed for presence by default to allow quick retrieval
of entries with ACIs.</para>
- <screen width="80">$ ldapsearch -b dc=example,dc=com "(aci=*)" -
+ <screen>$ ldapsearch -b dc=example,dc=com "(aci=*)" -
dn: dc=example,dc=com
dn: ou=People,dc=example,dc=com</screen>
@@ -132,7 +132,7 @@
in the filter. Substring indexes can be expensive to maintain, especially
for large attribute values.</para>
- <screen width="80">$ ldapsearch -b dc=example,dc=com "(cn=Barb*)" cn
+ <screen>$ ldapsearch -b dc=example,dc=com "(cn=Barb*)" cn
dn: uid=bfrancis,ou=People,dc=example,dc=com
cn: Barbara Francis
@@ -186,7 +186,7 @@
<para>The following example creates a new substring index for
<literal>description</literal>.</para>
- <screen width="80">$ dsconfig -p 4444 -h `hostname` -D "cn=Directory Manager" -w password \
+ <screen>$ dsconfig -p 4444 -h `hostname` -D "cn=Directory Manager" -w password \
> create-local-db-index --backend-name userRoot --index-name description
> --set index-type:substring -n</screen>
</example>
@@ -197,7 +197,7 @@
<para>The following example configures and approximate index for
<literal>cn</literal> (common name).</para>
- <screen width="80">$ dsconfig -p 4444 -h `hostname` -D "cn=Directory Manager" -w password \
+ <screen>$ dsconfig -p 4444 -h `hostname` -D "cn=Directory Manager" -w password \
> set-local-db-index-prop --backend-name userRoot --index-name cn \
> --set index-type:approximate -n</screen>
</example>
@@ -283,7 +283,7 @@
<literal>objectClass</literal> index, and then rebuilds the index for the
configuration change to take effect.</para>
- <screen width="80">$ dsconfig -p 4444 -h `hostname` -D "cn=Directory Manager" -w password \
+ <screen>$ dsconfig -p 4444 -h `hostname` -D "cn=Directory Manager" -w password \
> set-local-db-index-prop --backend-name userRoot --index-name objectClass \
> --set index-entry-limit:5000 -n
$ rebuild-index -p 4444 -h `hostname` -D "cn=Directory Manager" -w password \
@@ -306,7 +306,7 @@
<para>The following example verifies the <literal>cn</literal> (common
name) index for completeness and for errors.</para>
- <screen width="80">$ verify-index -b dc=example,dc=com -i cn --clean --countErrors
+ <screen>$ verify-index -b dc=example,dc=com -i cn --clean --countErrors
[07/Jun/2011:16:06:50 +0200] category=BACKEND severity=INFORMATION
msgID=9437595 msg=Local DB backend userRoot does not specify the number of
lock tables: defaulting to 97
@@ -334,9 +334,9 @@
<para>When you first install OpenDJ directory server and import your
data from LDIF, the following indexes are configured.</para>
- <table frame="topbot" rowheader="firstcol">
+ <table rowheader="firstcol">
<title>Default Indexes</title>
- <tgroup cols="7" rowsep="1">
+ <tgroup cols="7">
<colspec colnum="2" colname="c2" />
<colspec colnum="7" colname="c7" />
<thead>
--
Gitblit v1.10.0