瀏覽代碼

Corrected section layout in DB schema appendix of ref manual.

Luke Taylor 15 年之前
父節點
當前提交
ca91b9abc5
共有 1 個文件被更改,包括 19 次插入19 次删除
  1. 19 19
      docs/manual/src/docbook/appendix-db-schema.xml

+ 19 - 19
docs/manual/src/docbook/appendix-db-schema.xml

@@ -131,11 +131,12 @@ create table acl_entry (
       references acl_object_identity(id),
   constraint foreign_fk_5 foreign key(sid) references acl_sid(id) );
 
-</programlisting></para>
-            <section>
-                <title>PostgreSQL</title>
-                <para>
-                    <programlisting>create table acl_sid(
+                </programlisting></para>
+        </section>
+        <section>
+        <title>PostgreSQL</title>
+        <para>
+        <programlisting>create table acl_sid(
   id bigserial not null primary key,
   principal boolean not null,
   sid varchar(100) not null,
@@ -172,20 +173,19 @@ create table acl_entry(
       references acl_object_identity(id),
   constraint foreign_fk_5 foreign key(sid) references acl_sid(id));
 </programlisting> </para>
-                <para>You will have to set the <literal>classIdentityQuery</literal> and
-                    <literal>sidIdentityQuery</literal> properties of
-                    <classname>JdbcMutableAclService</classname> to the following values,
-                    respectively: <itemizedlist>
-                    <listitem>
-                        <para><literal>select currval(pg_get_serial_sequence('acl_class',
-                            'id'))</literal></para>
-                    </listitem>
-                    <listitem>
-                        <para><literal>select currval(pg_get_serial_sequence('acl_sid',
-                            'id'))</literal></para>
-                    </listitem>
-                    </itemizedlist></para>
+            <para>You will have to set the <literal>classIdentityQuery</literal> and
+                <literal>sidIdentityQuery</literal> properties of
+                <classname>JdbcMutableAclService</classname> to the following values,
+                respectively: <itemizedlist>
+                <listitem>
+                    <para><literal>select currval(pg_get_serial_sequence('acl_class',
+                        'id'))</literal></para>
+                </listitem>
+                <listitem>
+                    <para><literal>select currval(pg_get_serial_sequence('acl_sid',
+                        'id'))</literal></para>
+                </listitem>
+                </itemizedlist></para>
             </section>
         </section>
-    </section>
 </appendix>