Skip to content

Commit

Permalink
Autres corrections du codage XML.
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed Jun 9, 2011
1 parent 9119eac commit 4d6ae32
Show file tree
Hide file tree
Showing 27 changed files with 106 additions and 124 deletions.
2 changes: 1 addition & 1 deletion postgresql/acronyms.xml
Expand Up @@ -249,7 +249,7 @@
<term><acronym>GIN</acronym></term>
<listitem>
<para>
<link linkend="GIN">Generalized Inverted Index</link>, index inversé
<link linkend="gin">Generalized Inverted Index</link>, index inversé
généralisé
</para>
</listitem>
Expand Down
8 changes: 4 additions & 4 deletions postgresql/btree-gist.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<sect1 id="B-tree-gist">
<sect1 id="b-tree-gist">
<title>btree_gist</title>

<indexterm zone="B-tree-gist">
<indexterm zone="b-tree-gist">
<primary>btree_gist</primary>
</indexterm>

Expand Down Expand Up @@ -37,7 +37,7 @@
En plus des opérateurs de recherche B-tree typiques, <filename>btree_gist</filename>
fournit aussi un support pour <literal>&lt;&gt;</literal> (<quote>non
égale</quote>). C'est utile en combinaison avec une
<link linkend="SQL-CREATETABLE-EXCLUDE">contrainte d'exclusion</link>, comme
<link linkend="sql-createtable-exclude">contrainte d'exclusion</link>, comme
décrit ci-dessous.
</para>

Expand Down Expand Up @@ -72,7 +72,7 @@ SELECT *, a &lt;-&gt; 42 AS dist FROM test ORDER BY a &lt;-&gt; 42 LIMIT 10;
]]></programlisting>

<para>
Utiliser une <link linkend="SQL-CREATETABLE-EXCLUDE">contrainte
Utiliser une <link linkend="sql-createtable-exclude">contrainte
d'exclusion</link> pour renforcer la règle comme quoi une cage dans un zoo
ne peut contenir qu'un seul type d'animal&nbsp;:
</para>
Expand Down
32 changes: 16 additions & 16 deletions postgresql/dblink.xml
Expand Up @@ -243,7 +243,7 @@ SELECT dblink_connect('dbname=postgres');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-DISCONNECT">
<refentry id="contrib-dblink-disconnect">
<refmeta>
<refentrytitle>dblink_disconnect</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -543,7 +543,7 @@ SELECT * FROM dblink('myconn', 'select proname, prosrc from pg_proc')
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-EXEC">
<refentry id="contrib-dblink-exec">
<refmeta>
<refentrytitle>dblink_exec</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -682,7 +682,7 @@ DETAIL: ERROR: null value in column "relnamespace" violates not-null constrain
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-OPEN">
<refentry id="contrib-dblink-open">
<refmeta>
<refentrytitle>dblink_open</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -805,7 +805,7 @@ SELECT dblink_open('foo', 'select proname, prosrc from pg_proc');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-FETCH">
<refentry id="contrib-dblink-fetch">
<refmeta>
<refentrytitle>dblink_fetch</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -959,7 +959,7 @@ SELECT * FROM dblink_fetch('foo', 5) AS (funcname name, source text);
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-CLOSE">
<refentry id="contrib-dblink-close">
<refmeta>
<refentrytitle>dblink_close</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1069,7 +1069,7 @@ SELECT dblink_close('foo');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-GET-CONNECTIONS">
<refentry id="contrib-dblink-get-connections">
<refmeta>
<refentrytitle>dblink_get_connections</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1113,7 +1113,7 @@ SELECT dblink_close('foo');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-ERROR-MESSAGE">
<refentry id="contrib-dblink-error-message">
<refmeta>
<refentrytitle>dblink_error_message</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1173,7 +1173,7 @@ SELECT dblink_close('foo');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-SEND-QUERY">
<refentry id="contrib-dblink-send-query">
<refmeta>
<refentrytitle>dblink_send_query</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1253,7 +1253,7 @@ SELECT dblink_close('foo');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-IS-BUSY">
<refentry id="contrib-dblink-is-busy">
<refmeta>
<refentrytitle>dblink_is_busy</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1314,7 +1314,7 @@ SELECT dblink_close('foo');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-GET-NOTIFY">
<refentry id="contrib-dblink-get-notify">
<refmeta>
<refentrytitle>dblink_get_notify</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1395,7 +1395,7 @@ SELECT * FROM dblink_get_notify();
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-GET-RESULT">
<refentry id="contrib-dblink-get-result">
<refmeta>
<refentrytitle>dblink_get_result</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1543,7 +1543,7 @@ contrib_regression=# SELECT * FROM dblink_get_result('dtest1') AS t1(f1 int, f2
</refsect1>
</refentry>
<!-- JCA::TAG RELECTURE -->
<refentry id="CONTRIB-DBLINK-CANCEL-QUERY">
<refentry id="contrib-dblink-cancel-query">
<refmeta>
<refentrytitle>dblink_cancel_query</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1608,7 +1608,7 @@ contrib_regression=# SELECT * FROM dblink_get_result('dtest1') AS t1(f1 int, f2
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-GET-PKEY">
<refentry id="contrib-dblink-get-pkey">
<refmeta>
<refentrytitle>dblink_get_pkey</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1698,7 +1698,7 @@ SELECT * FROM dblink_get_pkey('foobar');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-BUILD-SQL-INSERT">
<refentry id="contrib-dblink-build-sql-insert">
<refmeta>
<refentrytitle>dblink_build_sql_insert</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1831,7 +1831,7 @@ SELECT dblink_build_sql_insert('foo', '1 2', 2, '{"1", "a"}', '{"1", "b''a"}');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-BUILD-SQL-DELETE">
<refentry id="contrib-dblink-build-sql-delete">
<refmeta>
<refentrytitle>dblink_build_sql_delete</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down Expand Up @@ -1946,7 +1946,7 @@ SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
</refsect1>
</refentry>

<refentry id="CONTRIB-DBLINK-BUILD-SQL-UPDATE">
<refentry id="contrib-dblink-build-sql-update">
<refmeta>
<refentrytitle>dblink_build_sql_update</refentrytitle>
<manvolnum>3</manvolnum>
Expand Down

0 comments on commit 4d6ae32

Please sign in to comment.