Repair markup to allow clean doc builds.

This commit is contained in:
Thomas G. Lockhart 2000-06-14 13:12:52 +00:00
parent e7112784a1
commit 0d2a78bf23
3 changed files with 433 additions and 436 deletions

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.13 2000/06/09 01:43:55 momjian Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/advanced.sgml,v 1.14 2000/06/14 13:12:52 thomas Exp $
--> -->
<chapter id="advanced"> <chapter id="advanced">
@ -59,6 +59,7 @@ CREATE TABLE capitals (
The inheritance hierarchy is a directed acyclic graph. The inheritance hierarchy is a directed acyclic graph.
</para> </para>
</note> </note>
</para>
<para> <para>
For example, the following query finds the names of all cities, For example, the following query finds the names of all cities,
@ -106,7 +107,7 @@ CREATE TABLE capitals (
</programlisting> </programlisting>
</para> </para>
<para>
Here the <quote>ONLY</quote> before cities indicates that the query should Here the <quote>ONLY</quote> before cities indicates that the query should
be run over only cities and not classes below cities in the be run over only cities and not classes below cities in the
inheritance hierarchy. Many of the commands that we inheritance hierarchy. Many of the commands that we
@ -114,15 +115,19 @@ CREATE TABLE capitals (
<command>UPDATE</command> and <command>DELETE</command> -- <command>UPDATE</command> and <command>DELETE</command> --
support this <quote>ONLY</quote> notation. support this <quote>ONLY</quote> notation.
</para> </para>
<para> <para>
Deprecated: In previous versions of postgres, the default was not to Deprecated: In previous versions of postgres, the default was not to
get access to child classes. By experience this was found to be error get access to child classes. By experience this was found to be error
prone. Under the old syntax, to get the sub-classes you append "*" prone. Under the old syntax, to get the sub-classes you append "*"
to the table name. For example to the table name. For example
<programlisting> <programlisting>
SELECT * from cities*; SELECT * from cities*;
</programlisting> </programlisting>
This old behaviour is still available by using a SET command...
This old behaviour is still available by using a SET command:
<programlisting> <programlisting>
SET EXAMINE_SUBCLASS TO on; SET EXAMINE_SUBCLASS TO on;
</programlisting> </programlisting>

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/inherit.sgml,v 1.8 2000/06/09 01:43:56 momjian Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/inherit.sgml,v 1.9 2000/06/14 13:12:52 thomas Exp $
--> -->
<chapter id="inherit"> <chapter id="inherit">
@ -40,6 +40,7 @@ CREATE TABLE capitals UNDER cities (
The inheritance hierarchy is a actually a directed acyclic graph. The inheritance hierarchy is a actually a directed acyclic graph.
</para> </para>
</note> </note>
</para>
<para> <para>
For example, the following query finds the names of all cities, For example, the following query finds the names of all cities,
@ -87,6 +88,7 @@ CREATE TABLE capitals UNDER cities (
</programlisting> </programlisting>
</para> </para>
<para>
Here the <quote>ONLY</quote> before cities indicates that the query should Here the <quote>ONLY</quote> before cities indicates that the query should
be run over only cities and not classes below cities in the be run over only cities and not classes below cities in the
inheritance hierarchy. Many of the commands that we inheritance hierarchy. Many of the commands that we

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.54 2000/06/05 10:57:57 momjian Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.55 2000/06/14 13:12:52 thomas Exp $
--> -->
<chapter id="release"> <chapter id="release">
@ -20,10 +20,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.54 2000/06/05 10:57:57 mom
--> -->
<para> <para>
2000-06-05 Release date 2000-06-05. This is a repackaging of 7.0.1 with added documentation.
</para>
<para>
This is a repackaging of 7.0.1 with added documentation.
</para> </para>
@ -32,9 +29,10 @@ This is a repackaging of 7.0.1 with added documentation.
<para> <para>
A dump/restore is <emphasis>not</emphasis> required for those running A dump/restore is <emphasis>not</emphasis> required for those running
7.*. v7.*.
</para> </para>
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title> <title>Changes</title>
@ -62,21 +60,19 @@ Added documentation to tarball.
--> -->
<para> <para>
2000-06-01 Release date 2000-06-01.
This is a cleanup release for 7.0.
</para> </para>
<para>
This is basically a cleanup release for 7.0.
</para>
<sect2> <sect2>
<title>Migration to v7.0.1</title> <title>Migration to v7.0.1</title>
<para> <para>
A dump/restore is <emphasis>not</emphasis> required for those running A dump/restore is <emphasis>not</emphasis> required for those running
7.0. v7.0.
</para> </para>
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title> <title>Changes</title>
@ -111,7 +107,6 @@ ecpg changes (Michael)
</sect2> </sect2>
</sect1> </sect1>
<sect1> <sect1>
<title>Release 7.0</title> <title>Release 7.0</title>
<!-- <!--
@ -126,9 +121,7 @@ ecpg changes (Michael)
</docinfo> </docinfo>
--> -->
<para> <para>
2000-05-08 Released 2000-05-08.
</para>
<para>
This release contains improvements in many areas, demonstrating This release contains improvements in many areas, demonstrating
the continued growth of <productname>PostgreSQL</productname>. the continued growth of <productname>PostgreSQL</productname>.
There are more improvements and fixes in 7.0 than in any previous There are more improvements and fixes in 7.0 than in any previous
@ -287,6 +280,8 @@ Ack! This isn't yet in the code?? - thomas 2000-04-30
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
Bug Fixes Bug Fixes
@ -626,9 +621,7 @@ New multibyte encodings
--> -->
<para> <para>
1999-10-13 Released 1999-10-13.
</para>
<para>
This is basically a cleanup release for 6.5.2. We have added a new This is basically a cleanup release for 6.5.2. We have added a new
pgaccess that was missing in 6.5.2, and installed an NT-specific fix. pgaccess that was missing in 6.5.2, and installed an NT-specific fix.
</para> </para>
@ -671,9 +664,7 @@ Fix dumping rules on inherited tables
--> -->
<para> <para>
1999-09-15 Released 1999-09-15.
</para>
<para>
This is basically a cleanup release for 6.5.1. We have fixed a variety of This is basically a cleanup release for 6.5.1. We have fixed a variety of
problems reported by 6.5.1 users. problems reported by 6.5.1 users.
</para> </para>
@ -687,6 +678,7 @@ A dump/restore is <emphasis>not</emphasis> required for those running
6.5.*. 6.5.*.
</para> </para>
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title> <title>Changes</title>
@ -721,7 +713,6 @@ Updated version of pgaccess 0.98
</sect2> </sect2>
</sect1> </sect1>
<sect1> <sect1>
<title>Release 6.5.1</title> <title>Release 6.5.1</title>
<!-- <!--
@ -737,14 +728,13 @@ Updated version of pgaccess 0.98
--> -->
<para> <para>
1999-07-15 Released 1999-07-15.
</para> </para>
<para> <para>
This is basically a cleanup release for 6.5. We have fixed a variety of This is basically a cleanup release for 6.5. We have fixed a variety of
problems reported by 6.5 users. problems reported by 6.5 users.
</para> </para>
<sect2> <sect2>
<title>Migration to v6.5.1</title> <title>Migration to v6.5.1</title>
@ -753,6 +743,7 @@ A dump/restore is <emphasis>not</emphasis> required for those running
6.5. 6.5.
</para> </para>
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title> <title>Changes</title>
@ -786,7 +777,6 @@ Add Win1250 (Czech) support (Pavel Behal)
</sect2> </sect2>
</sect1> </sect1>
<sect1> <sect1>
<title>Release 6.5</title> <title>Release 6.5</title>
<!-- <!--
@ -802,9 +792,7 @@ Add Win1250 (Czech) support (Pavel Behal)
--> -->
<para> <para>
1999-06-09 Released 1999-06-09.
</para>
<para>
This release marks a major step in the development team's mastery of the source This release marks a major step in the development team's mastery of the source
code we inherited from Berkeley. You will see we are now easily adding code we inherited from Berkeley. You will see we are now easily adding
major features, thanks to the increasing size and experience of our major features, thanks to the increasing size and experience of our
@ -1023,6 +1011,8 @@ Add Win1250 (Czech) support (Pavel Behal)
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
Bug Fixes Bug Fixes
@ -1412,7 +1402,9 @@ is required for those wishing to migrate data from any
previous release of <productname>Postgres</productname>. previous release of <productname>Postgres</productname>.
</para> </para>
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
@ -1665,11 +1657,10 @@ refer to the installation and migration instructions for v6.3.
</para> </para>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
Changes
-------
Configure detection improvements for tcl/tk(Brook Milligan, Alvin) Configure detection improvements for tcl/tk(Brook Milligan, Alvin)
Manual page improvements(Bruce) Manual page improvements(Bruce)
BETWEEN and LIKE fix(Thomas) BETWEEN and LIKE fix(Thomas)
@ -1692,6 +1683,7 @@ ASSERT fixes(Bruce)
</para> </para>
</sect2> </sect2>
</sect1> </sect1>
<sect1> <sect1>
<title>Release 6.3.1</title> <title>Release 6.3.1</title>
<!-- <!--
@ -1707,9 +1699,7 @@ ASSERT fixes(Bruce)
--> -->
<para> <para>
1998-03-23 Released 1998-03-23.
</para>
<para>
Summary: Summary:
<itemizedlist> <itemizedlist>
@ -1751,11 +1741,10 @@ refer to the installation and migration instructions for v6.3.
</para> </para>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
Changes
-------
ecpg cleanup/fixes, now version 1.1(Michael Meskes) ecpg cleanup/fixes, now version 1.1(Michael Meskes)
pg_user cleanup(Bruce) pg_user cleanup(Bruce)
large object fix for pg_dump and tclsh (alvin) large object fix for pg_dump and tclsh (alvin)
@ -1787,6 +1776,7 @@ Better identify tcl and tk libs and includes(Bruce)
</para> </para>
</sect2> </sect2>
</sect1> </sect1>
<sect1> <sect1>
<title>Release 6.3</title> <title>Release 6.3</title>
<!-- <!--
@ -1802,9 +1792,7 @@ Better identify tcl and tk libs and includes(Bruce)
--> -->
<para> <para>
1998-03-01 Released 1998-03-01.
</para>
<para>
There are <emphasis>many</emphasis> new features and improvements in this release. There are <emphasis>many</emphasis> new features and improvements in this release.
Here is a brief, incomplete summary: Here is a brief, incomplete summary:
@ -1843,7 +1831,6 @@ Better password authorization mechanisms. Default table permissions have changed
has been removed. Performance has been improved. has been removed. Performance has been improved.
</para> </para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
</para> </para>
@ -1935,6 +1922,7 @@ previous release of <productname>Postgres</productname>.
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
@ -2176,12 +2164,12 @@ from psql to update the existing system table:
This will need to be done to every existing database, including template1. This will need to be done to every existing database, including template1.
</para> </para>
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
Changes
-------
Allow TIME and TYPE column names(Thomas) Allow TIME and TYPE column names(Thomas)
Allow larger range of true/false as boolean values(Thomas) Allow larger range of true/false as boolean values(Thomas)
Support output of "now" and "current"(Thomas) Support output of "now" and "current"(Thomas)
@ -2244,6 +2232,7 @@ because the COPY output format was improved from the 1.02 release.
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
@ -2389,11 +2378,10 @@ Refer to the release notes for v6.1 for more details.
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
Changes
-------
fix for SET with options (Thomas) fix for SET with options (Thomas)
allow pg_dump/pg_dumpall to preserve ownership of all tables/objects(Bruce) allow pg_dump/pg_dumpall to preserve ownership of all tables/objects(Bruce)
new psql \connect option allows changing usernames without changing databases new psql \connect option allows changing usernames without changing databases
@ -2493,6 +2481,7 @@ because the COPY output format was improved from the 1.02 release.
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>
@ -2636,6 +2625,7 @@ because the COPY output format was improved from the 1.02 release.
</sect2> </sect2>
<sect2> <sect2>
<title>Changes</title>
<para> <para>
<programlisting> <programlisting>