Commit b2e76d57 authored by Peter Eisentraut's avatar Peter Eisentraut

Revive Reference Manual, remove reference pages from User's Guide.

Make version.sgml the central place for updating version numbers in the
documentation.  Document titles now contain the version number of the
release they belong to.

filelist.sgml is the central (and only) place to declare system entities
(i.e., sgml files).  No longer a need to declare them in each document
header.

There is no longer any need to maintain duplicate chapter lists in
postgres.sgml and user/admin/etc.sgml, everything is build from the same
sources.  Some parameter entities allow for different text to be included
when the integrated or a single doc set is generated, which eliminates the
problems that had caused this to fail in the past.
parent 4cbeefb1
# Postgres documentation makefile # Postgres documentation makefile
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.14 2000/10/08 13:24:08 petere Exp $ # $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.15 2000/11/24 17:44:21 petere Exp $
subdir = doc/src subdir = doc/src
top_builddir = ../.. top_builddir = ../..
-include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
TAR= tar TAR= tar
ZIP= gzip ZIP= gzip
ZIPSUFFIX= gz ZIPSUFFIX= gz
TAREXCLUDE= --exclude=Makefile --exclude='*.sgml' --exclude=ref TAREXCLUDE= --exclude=Makefile --exclude='*.sgml' --exclude=ref
SRC= admin postgres programmer tutorial user developer SRC= admin developer reference programmer tutorial user postgres
TARGETS= $(SRC:%=%.tar.$(ZIPSUFFIX)) TARGETS= $(SRC:%=%.tar.$(ZIPSUFFIX))
...@@ -35,14 +35,9 @@ sources: ...@@ -35,14 +35,9 @@ sources:
sources.tar: sources.tar:
$(TAR) -cf $@ sgml graphics $(TAR) -cf $@ sgml graphics
admin.tar: admin.tar developer.tar reference.tar user.tar:
$(MAKE) -C sgml clean $(MAKE) -C sgml clean
$(MAKE) -C sgml admin.html $(MAKE) -C sgml $(basename $@).html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm
developer.tar:
$(MAKE) -C sgml clean
$(MAKE) -C sgml developer.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm
programmer.tar: programmer.tar:
...@@ -55,11 +50,6 @@ tutorial.tar: ...@@ -55,11 +50,6 @@ tutorial.tar:
$(MAKE) -C sgml tutorial.html $(MAKE) -C sgml tutorial.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics clientserver.gif cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm -C ../graphics clientserver.gif
user.tar:
$(MAKE) -C sgml clean
$(MAKE) -C sgml user.html
cd sgml && $(TAR) -cf ../$@ $(TAREXCLUDE) *.html *.htm
postgres.tar: postgres.tar:
$(MAKE) -C sgml clean $(MAKE) -C sgml clean
$(MAKE) -C sgml postgres.html $(MAKE) -C sgml postgres.html
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.25 2000/11/05 21:04:06 petere Exp $ # $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.26 2000/11/24 17:44:21 petere Exp $
# #
#---------------------------------------------------------------------------- #----------------------------------------------------------------------------
...@@ -55,7 +55,7 @@ D2MSCRIPT= $(D2MDIR)/docbook2man-spec.pl ...@@ -55,7 +55,7 @@ D2MSCRIPT= $(D2MDIR)/docbook2man-spec.pl
vpath %.sgml ./ref vpath %.sgml ./ref
ALLDOCUMENTS = admin user programmer developer tutorial postgres ALLBOOKS = admin developer programmer reference tutorial user
ALLSGML := $(wildcard $(srcdir)/*.sgml $(srcdir)/ref/*.sgml) ALLSGML := $(wildcard $(srcdir)/*.sgml $(srcdir)/ref/*.sgml)
...@@ -155,10 +155,18 @@ manl: $(SQLTARGETS) manpage.refs ...@@ -155,10 +155,18 @@ manl: $(SQLTARGETS) manpage.refs
## HTML ## HTML
## ##
%.html: %.sgml $(ALLSGML) JADE.html = $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(HDSL) -V %use-id-as-filename% -t sgml
postgres.html: postgres.sgml $(ALLSGML)
@rm -f *.htm @rm -f *.htm
$(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(HDSL) -V %use-id-as-filename% -t sgml $< $(JADE.html) $<
# Include some softlinks to the generic default file names # Include some softlinks to the generic default file names
ln -sf postgres.htm index.html
ln -sf postgres.htm postgres.html
$(addsuffix .html, $(ALLBOOKS)): %.html: %.sgml $(ALLSGML)
@rm -f *.htm
$(JADE.html) book-decl.sgml $<
ln -sf $*.htm index.html ln -sf $*.htm index.html
ln -sf $*.htm $*.html ln -sf $*.htm $*.html
...@@ -168,12 +176,12 @@ manl: $(SQLTARGETS) manpage.refs ...@@ -168,12 +176,12 @@ manl: $(SQLTARGETS) manpage.refs
## ##
# RTF to allow minor editing for hardcopy # RTF to allow minor editing for hardcopy
%.rtf: %.sgml $(addsuffix .rtf, $(ALLBOOKS)): %.rtf: %.sgml $(ALLSGML)
$(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t rtf $< $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t rtf book-decl.sgml $<
# TeX and DVI # TeX and DVI
%.tex: %.sgml $(addsuffix .tex, $(ALLBOOKS)): %.tex: %.sgml $(ALLSGML)
$(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t tex $< $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t tex book-decl.sgml $<
%.dvi: %.tex %.dvi: %.tex
jadetex $< jadetex $<
...@@ -222,10 +230,13 @@ tempfile_HISTORY.sgml: release.sgml ...@@ -222,10 +230,13 @@ tempfile_HISTORY.sgml: release.sgml
## Check ## Check
## ##
check: $(addprefix check-, $(ALLDOCUMENTS)) check: $(addprefix check-, $(ALLBOOKS)) check-postgres
# Quick syntax check without style processing # Quick syntax check without style processing
check-%: %.sgml $(addprefix check-, $(ALLBOOKS)): check-%: %.sgml
$(NSGMLS) $(SGMLINCLUDE) -s book-decl.sgml $<
check-postgres: postgres.sgml
$(NSGMLS) $(SGMLINCLUDE) -s $< $(NSGMLS) $(SGMLINCLUDE) -s $<
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<para> <para>
<productname>PostgreSQL</productname> is available without cost. This manual <productname>PostgreSQL</productname> is available without cost. This manual
describes version 7.0 of <productname>PostgreSQL</productname>. describes version &version; of <productname>PostgreSQL</productname>.
</para> </para>
<para> <para>
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.27 2000/09/30 16:58:20 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.28 2000/11/24 17:44:21 petere Exp $
Postgres Administrator's Guide.
Derived from postgres.sgml.
- thomas 1998-10-27
--> -->
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity version "7.1">
<!entity majorversion "7.1">
<!entity about SYSTEM "about.sgml">
<!entity history SYSTEM "history.sgml">
<!entity info SYSTEM "info.sgml">
<!entity legal SYSTEM "legal.sgml">
<!entity notation SYSTEM "notation.sgml">
<!entity problems SYSTEM "problems.sgml">
<!entity y2k SYSTEM "y2k.sgml">
<!entity backup SYSTEM "backup.sgml">
<!entity charset SYSTEM "charset.sgml">
<!entity client-auth SYSTEM "client-auth.sgml">
<!entity intro-ag SYSTEM "intro-ag.sgml">
<!entity installation SYSTEM "installation.sgml">
<!entity installw SYSTEM "install-win32.sgml">
<!entity manage-ag SYSTEM "manage-ag.sgml">
<!entity recovery SYSTEM "recovery.sgml">
<!entity regress SYSTEM "regress.sgml">
<!entity release SYSTEM "release.sgml">
<!entity runtime SYSTEM "runtime.sgml">
<!entity user-manag SYSTEM "user-manag.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!-- see standalone-install.sgml about these -->
<!entity % flattext-install-ignore "INCLUDE">
<!entity % flattext-install-include "IGNORE">
]>
<book id="admin"> <book id="admin">
<!-- Title information --> <!-- Title information -->
<title>PostgreSQL Administrator's Guide</title> <title><![%single-book;[PostgreSQL &version;]]> Administrator's Guide</title>
<bookinfo> <bookinfo>
<releaseinfo>Covering v7.0 for general release</releaseinfo> <corpauthor>The PostgreSQL Global Development Group</corpauthor>
<bookbiblio>
<authorgroup>
<corpauthor>The PostgreSQL Development Team</corpauthor>
</authorgroup>
<!-- editor in authorgroup is not supported
<AuthorGroup>
-->
<editor>
<firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<!--
</AuthorGroup>
-->
<!--
<AuthorInitials>TGL</AuthorInitials>
-->
<date>(last updated 2000-05-01)</date> <editor>
</bookbiblio> <firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<legalnotice> <legalnotice>
<para> <para>
...@@ -80,7 +27,7 @@ Derived from postgres.sgml. ...@@ -80,7 +27,7 @@ Derived from postgres.sgml.
</bookinfo> </bookinfo>
<preface id="preface"> <preface id="ag-preface">
<title>Summary</title> <title>Summary</title>
<para> <para>
...@@ -95,7 +42,14 @@ Derived from postgres.sgml. ...@@ -95,7 +42,14 @@ Derived from postgres.sgml.
</para> </para>
</preface> </preface>
<!--
Disable these extra intro chapters since some elements (e.g. y2k
statement) are included in the first intro.sgml and cause errors if
included twice.
-->
<![%single-book;[
&intro-ag; &intro-ag;
]]>
&installation; &installation;
&installw; &installw;
&runtime; &runtime;
...@@ -107,16 +61,9 @@ Derived from postgres.sgml. ...@@ -107,16 +61,9 @@ Derived from postgres.sgml.
&recovery; &recovery;
&regress; &regress;
&release; &release;
<![%single-book;[
&biblio; &biblio;
]]>
<!--
Don't bother with an index until we get some index entries.
- thomas 1998-10-26
<index id="index">
</index>
-->
</book> </book>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
......
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity % version SYSTEM "version.sgml">
%version;
<!entity % filelist SYSTEM "filelist.sgml">
%filelist;
<!entity % set-of-books "IGNORE">
<!entity % single-book "INCLUDE">
]>
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/developer.sgml,v 1.1 2000/10/08 13:24:09 petere Exp $ --> <!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/developer.sgml,v 1.2 2000/11/24 17:44:21 petere Exp $ -->
<!-- PostgreSQL Developer's Guide --> <!-- PostgreSQL Developer's Guide -->
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity about SYSTEM "about.sgml">
<!entity history SYSTEM "history.sgml">
<!entity info SYSTEM "info.sgml">
<!entity legal SYSTEM "legal.sgml">
<!entity notation SYSTEM "notation.sgml">
<!entity problems SYSTEM "problems.sgml">
<!entity y2k SYSTEM "y2k.sgml">
<!entity arch-dev SYSTEM "arch-dev.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!entity bki SYSTEM "bki.sgml">
<!entity catalogs SYSTEM "catalogs.sgml">
<!entity compiler SYSTEM "compiler.sgml">
<!entity contacts SYSTEM "contacts.sgml">
<!entity cvs SYSTEM "cvs.sgml">
<!entity docguide SYSTEM "docguide.sgml">
<!entity geqo SYSTEM "geqo.sgml">
<!entity page SYSTEM "page.sgml">
<!entity protocol SYSTEM "protocol.sgml">
<!entity sources SYSTEM "sources.sgml">
]>
<book id="developer"> <book id="developer">
<title><productname>PostgreSQL Developer's Guide</></> <title><![%single-book;[PostgreSQL &version;]]> Developer's Guide</title>
<bookinfo> <bookinfo>
<abstract> <abstract>
...@@ -37,7 +12,7 @@ ...@@ -37,7 +12,7 @@
</simpara> </simpara>
</abstract> </abstract>
<corpauthor>The PostgreSQL Global Development Group</> <corpauthor>The PostgreSQL Global Development Group</corpauthor>
</bookinfo> </bookinfo>
&sources; &sources;
...@@ -53,8 +28,9 @@ ...@@ -53,8 +28,9 @@
&compiler; &compiler;
&bki; &bki;
&page; &page;
<![%single-book;[
&biblio; &biblio;
]]>
<!-- appendices --> <!-- appendices -->
&cvs; &cvs;
&docguide; &docguide;
......
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/filelist.sgml,v 1.1 2000/11/24 17:44:21 petere Exp $ -->
<!entity about SYSTEM "about.sgml">
<!entity history SYSTEM "history.sgml">
<!entity info SYSTEM "info.sgml">
<!entity legal SYSTEM "legal.sgml">
<!entity notation SYSTEM "notation.sgml">
<!entity problems SYSTEM "problems.sgml">
<!entity y2k SYSTEM "y2k.sgml">
<!-- tutorial -->
<!entity arch SYSTEM "arch.sgml">
<!entity intro SYSTEM "intro.sgml">
<!entity query SYSTEM "query.sgml">
<!entity sql SYSTEM "sql.sgml">
<!entity start SYSTEM "start.sgml">
<!-- user's guide -->
<!entity advanced SYSTEM "advanced.sgml">
<!entity array SYSTEM "array.sgml">
<!entity datatype SYSTEM "datatype.sgml">
<!entity datetime SYSTEM "datetime.sgml">
<!entity environ SYSTEM "environ.sgml">
<!entity func SYSTEM "func.sgml">
<!entity indices SYSTEM "indices.sgml">
<!entity inherit SYSTEM "inherit.sgml">
<!entity manage SYSTEM "manage.sgml">
<!entity mvcc SYSTEM "mvcc.sgml">
<!entity oper SYSTEM "oper.sgml">
<!entity plan SYSTEM "plan.sgml">
<!entity plperl SYSTEM "plperl.sgml">
<!entity plsql SYSTEM "plsql.sgml">
<!entity pltcl SYSTEM "pltcl.sgml">
<!entity populate SYSTEM "populate.sgml">
<!entity psql SYSTEM "psql.sgml">
<!entity query-ug SYSTEM "query-ug.sgml">
<!entity storage SYSTEM "storage.sgml">
<!entity syntax SYSTEM "syntax.sgml">
<!entity typeconv SYSTEM "typeconv.sgml">
<!-- reference pages -->
<!entity % allfiles SYSTEM "ref/allfiles.sgml">
%allfiles;
<!-- administrator's guide -->
<!entity backup SYSTEM "backup.sgml">
<!entity charset SYSTEM "charset.sgml">
<!entity client-auth SYSTEM "client-auth.sgml">
<!entity intro-ag SYSTEM "intro-ag.sgml">
<!entity installation SYSTEM "installation.sgml">
<!entity installw SYSTEM "install-win32.sgml">
<!entity manage-ag SYSTEM "manage-ag.sgml">
<!entity recovery SYSTEM "recovery.sgml">
<!entity regress SYSTEM "regress.sgml">
<!entity release SYSTEM "release.sgml">
<!entity runtime SYSTEM "runtime.sgml">
<!entity user-manag SYSTEM "user-manag.sgml">
<!-- programmer's guide -->
<!entity arch-pg SYSTEM "arch-pg.sgml">
<!entity dfunc SYSTEM "dfunc.sgml">
<!entity ecpg SYSTEM "ecpg.sgml">
<!entity extend SYSTEM "extend.sgml">
<!entity func-ref SYSTEM "func-ref.sgml">
<!entity gist SYSTEM "gist.sgml">
<!entity intro-pg SYSTEM "intro-pg.sgml">
<!entity indexcost SYSTEM "indexcost.sgml">
<!entity jdbc SYSTEM "jdbc.sgml">
<!entity libpgeasy SYSTEM "libpgeasy.sgml">
<!entity libpq SYSTEM "libpq.sgml">
<!entity libpqpp SYSTEM "libpq++.sgml">
<!entity libpgtcl SYSTEM "libpgtcl.sgml">
<!entity lisp SYSTEM "lisp.sgml">
<!entity lobj SYSTEM "lobj.sgml">
<!entity odbc SYSTEM "odbc.sgml">
<!entity rules SYSTEM "rules.sgml">
<!entity spi SYSTEM "spi.sgml">
<!entity trigger SYSTEM "trigger.sgml">
<!entity xaggr SYSTEM "xaggr.sgml">
<!entity xfunc SYSTEM "xfunc.sgml">
<!entity xindex SYSTEM "xindex.sgml">
<!entity xplang SYSTEM "xplang.sgml">
<!entity xoper SYSTEM "xoper.sgml">
<!entity xtypes SYSTEM "xtypes.sgml">
<!-- developer's guide -->
<!entity arch-dev SYSTEM "arch-dev.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!entity bki SYSTEM "bki.sgml">
<!entity catalogs SYSTEM "catalogs.sgml">
<!entity compiler SYSTEM "compiler.sgml">
<!entity contacts SYSTEM "contacts.sgml">
<!entity cvs SYSTEM "cvs.sgml">
<!entity docguide SYSTEM "docguide.sgml">
<!entity geqo SYSTEM "geqo.sgml">
<!entity index SYSTEM "index.sgml">
<!entity page SYSTEM "page.sgml">
<!entity protocol SYSTEM "protocol.sgml">
<!entity sources SYSTEM "sources.sgml">
<!-- see standalone-install.sgml about these -->
<!entity % flattext-install-ignore "INCLUDE">
<!entity % flattext-install-include "IGNORE">
...@@ -150,9 +150,7 @@ SELECT am.amname AS acc_name, ...@@ -150,9 +150,7 @@ SELECT am.amname AS acc_name,
</para> </para>
<para> <para>
Use <xref endterm="sql-dropindex-title" Use <command>DROP INDEX</command> to remove an index.
linkend="sql-dropindex-title">
to remove an index.
</para> </para>
<sect1 id="keys"> <sect1 id="keys">
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.43 2000/10/08 13:24:09 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.44 2000/11/24 17:44:21 petere Exp $
--> -->
<!doctype set PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [ <!doctype set PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity version "7.1"> <!entity % version SYSTEM "version.sgml">
<!entity majorversion "7.1"> %version;
<!entity % filelist SYSTEM "filelist.sgml">
%filelist;
<!entity about SYSTEM "about.sgml"> <!entity % set-of-books "INCLUDE">
<!entity history SYSTEM "history.sgml"> <!entity % single-book "IGNORE">
<!entity info SYSTEM "info.sgml">
<!entity legal SYSTEM "legal.sgml">
<!entity notation SYSTEM "notation.sgml">
<!entity problems SYSTEM "problems.sgml">
<!entity y2k SYSTEM "y2k.sgml">
<!-- tutorial --> <!entity admin SYSTEM "admin.sgml">
<!entity arch SYSTEM "arch.sgml"> <!entity developer SYSTEM "developer.sgml">
<!entity intro SYSTEM "intro.sgml"> <!entity programmer SYSTEM "programmer.sgml">
<!entity query SYSTEM "query.sgml"> <!entity reference SYSTEM "reference.sgml">
<!entity sql SYSTEM "sql.sgml"> <!entity tutorial SYSTEM "tutorial.sgml">
<!entity start SYSTEM "start.sgml"> <!entity user SYSTEM "user.sgml">
<!-- user's guide -->
<!entity advanced SYSTEM "advanced.sgml">
<!entity array SYSTEM "array.sgml">
<!entity datatype SYSTEM "datatype.sgml">
<!entity datetime SYSTEM "datetime.sgml">
<!entity environ SYSTEM "environ.sgml">
<!entity func SYSTEM "func.sgml">
<!entity indices SYSTEM "indices.sgml">
<!entity inherit SYSTEM "inherit.sgml">
<!entity manage SYSTEM "manage.sgml">
<!entity mvcc SYSTEM "mvcc.sgml">
<!entity oper SYSTEM "oper.sgml">
<!entity plan SYSTEM "plan.sgml">
<!entity plperl SYSTEM "plperl.sgml">
<!entity plsql SYSTEM "plsql.sgml">
<!entity pltcl SYSTEM "pltcl.sgml">
<!entity populate SYSTEM "populate.sgml">
<!entity psql SYSTEM "psql.sgml">
<!entity query-ug SYSTEM "query-ug.sgml">
<!entity storage SYSTEM "storage.sgml">
<!entity syntax SYSTEM "syntax.sgml">
<!entity typeconv SYSTEM "typeconv.sgml">
<!-- reference pages -->
<!entity % allfiles SYSTEM "ref/allfiles.sgml">
%allfiles;
<!-- administrator's guide -->
<!entity backup SYSTEM "backup.sgml">
<!entity charset SYSTEM "charset.sgml">
<!entity client-auth SYSTEM "client-auth.sgml">
<!entity intro-ag SYSTEM "intro-ag.sgml">
<!entity installation SYSTEM "installation.sgml">
<!entity installw SYSTEM "install-win32.sgml">
<!entity manage-ag SYSTEM "manage-ag.sgml">
<!entity recovery SYSTEM "recovery.sgml">
<!entity regress SYSTEM "regress.sgml">
<!entity release SYSTEM "release.sgml">
<!entity runtime SYSTEM "runtime.sgml">
<!entity user-manag SYSTEM "user-manag.sgml">
<!-- programmer's guide -->
<!entity arch-pg SYSTEM "arch-pg.sgml">
<!entity dfunc SYSTEM "dfunc.sgml">
<!entity ecpg SYSTEM "ecpg.sgml">
<!entity extend SYSTEM "extend.sgml">
<!entity func-ref SYSTEM "func-ref.sgml">
<!entity gist SYSTEM "gist.sgml">
<!entity intro-pg SYSTEM "intro-pg.sgml">
<!entity indexcost SYSTEM "indexcost.sgml">
<!entity jdbc SYSTEM "jdbc.sgml">
<!entity libpgeasy SYSTEM "libpgeasy.sgml">
<!entity libpq SYSTEM "libpq.sgml">
<!entity libpqpp SYSTEM "libpq++.sgml">
<!entity libpgtcl SYSTEM "libpgtcl.sgml">
<!entity lisp SYSTEM "lisp.sgml">
<!entity lobj SYSTEM "lobj.sgml">
<!entity odbc SYSTEM "odbc.sgml">
<!entity rules SYSTEM "rules.sgml">
<!entity spi SYSTEM "spi.sgml">
<!entity trigger SYSTEM "trigger.sgml">
<!entity xaggr SYSTEM "xaggr.sgml">
<!entity xfunc SYSTEM "xfunc.sgml">
<!entity xindex SYSTEM "xindex.sgml">
<!entity xplang SYSTEM "xplang.sgml">
<!entity xoper SYSTEM "xoper.sgml">
<!entity xtypes SYSTEM "xtypes.sgml">
<!-- developer's guide -->
<!entity arch-dev SYSTEM "arch-dev.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!entity bki SYSTEM "bki.sgml">
<!entity catalogs SYSTEM "catalogs.sgml">
<!entity compiler SYSTEM "compiler.sgml">
<!entity contacts SYSTEM "contacts.sgml">
<!entity cvs SYSTEM "cvs.sgml">
<!entity docguide SYSTEM "docguide.sgml">
<!entity geqo SYSTEM "geqo.sgml">
<!entity index SYSTEM "index.sgml">
<!entity page SYSTEM "page.sgml">
<!entity protocol SYSTEM "protocol.sgml">
<!entity sources SYSTEM "sources.sgml">
<!-- see standalone-install.sgml about these -->
<!entity % flattext-install-ignore "INCLUDE">
<!entity % flattext-install-include "IGNORE">
]> ]>
<!-- entity manpages SYSTEM "man/manpages.sgml" subdoc -->
<set id="postgres"> <set id="postgres">
<title>PostgreSQL Documentation</title> <title>PostgreSQL &version; Documentation</title>
<book id="user"> <setinfo>
<title>User's Guide</title> <corpauthor>The PostgreSQL Global Development Group</corpauthor>
</setinfo>
<bookinfo>
<abstract> &tutorial;
<para> &user;
Information for Users &admin;
</para> &programmer;
</abstract> &reference;
</bookinfo> &developer;
&intro;
&syntax;
&datatype;
&oper;
&func;
&typeconv;
&indices;
&array;
&inherit;
&plsql;
&pltcl;
&plperl;
&mvcc;
&environ;
&manage;
&storage;
&plan;
&populate;
&commands;
&datetime;
<!--
&contacts;
-->
&biblio;
</book>
<book id="admin">
<title>Administrator's Guide</title>
<bookinfo>
<abstract>
<para>
Information for Administrators
</para>
</abstract>
</bookinfo>
<!--
Disable these extra intro chapters since some elements (e.g. y2k
statement) are included in the first intro.sgml and cause errors if
included twice.
&intro-ag;
-->
&installation;
&installw;
&runtime;
&client-auth;
&charset;
&manage-ag;
&user-manag;
&backup;
&recovery;
&regress;
&release;
</book>
<book id="programmer">
<title>Programmer's Guide</title>
<bookinfo>
<abstract>
<para>
Information on client and server programming
</para>
</abstract>
</bookinfo>
<!--
Disable these extra intro chapters since some elements (e.g. y2k
statement) are included in the first intro.sgml and cause errors if
included twice.
&intro-pg;
-->
<part>
<title>Server Programming</title>
&arch-pg;
&extend;
&xfunc;
&xtypes;
&xoper;
&xaggr;
&rules;
&xindex;
&indexcost;
&gist;
&dfunc;
&trigger;
&spi;
&xplang;
</part>
<part>
<title>Client Interfaces</title>
&func-ref;
&lobj;
&ecpg;
&libpq;
&libpqpp;
&libpgtcl;
&libpgeasy;
&odbc;
&jdbc;
&lisp;
</part>
</book>
<book id="developer">
<title>Developer's Guide</title>
<bookinfo>
<abstract>
<para>
Information for Postgres developers
</>
</>
</bookinfo>
&sources;
&arch-dev;
&geqo;
<!--
This listing of Postgres catalogs is currently just a copy of the old
man page. It is not up to date and has not been marked up for SGML.
- thomas 2000-04-20
&catalogs;
-->
&protocol;
&compiler;
&bki;
&page;
&cvs;
&docguide;
</book>
<book id="tutorial">
<title>Tutorial</title>
&sql;
&arch;
&start;
&query;
&advanced;
</book>
<!--
Omit index until we have some index entries.
- thomas 1998-10-26
<index Id="part-index">
</index>
-->
</set> </set>
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.28 2000/10/08 13:24:09 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.29 2000/11/24 17:44:21 petere Exp $
Postgres Programmer's Guide. PostgreSQL Programmer's Guide.
--> -->
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity about SYSTEM "about.sgml">
<!entity history SYSTEM "history.sgml">
<!entity info SYSTEM "info.sgml">
<!entity legal SYSTEM "legal.sgml">
<!entity notation SYSTEM "notation.sgml">
<!entity problems SYSTEM "problems.sgml">
<!entity y2k SYSTEM "y2k.sgml">
<!entity arch-pg SYSTEM "arch-pg.sgml">
<!entity dfunc SYSTEM "dfunc.sgml">
<!entity ecpg SYSTEM "ecpg.sgml">
<!entity extend SYSTEM "extend.sgml">
<!entity func-ref SYSTEM "func-ref.sgml">
<!entity gist SYSTEM "gist.sgml">
<!entity intro-pg SYSTEM "intro-pg.sgml">
<!entity indexcost SYSTEM "indexcost.sgml">
<!entity jdbc SYSTEM "jdbc.sgml">
<!entity libpgeasy SYSTEM "libpgeasy.sgml">
<!entity libpq SYSTEM "libpq.sgml">
<!entity libpqpp SYSTEM "libpq++.sgml">
<!entity libpgtcl SYSTEM "libpgtcl.sgml">
<!entity lisp SYSTEM "lisp.sgml">
<!entity lobj SYSTEM "lobj.sgml">
<!entity odbc SYSTEM "odbc.sgml">
<!entity rules SYSTEM "rules.sgml">
<!entity spi SYSTEM "spi.sgml">
<!entity trigger SYSTEM "trigger.sgml">
<!entity xaggr SYSTEM "xaggr.sgml">
<!entity xfunc SYSTEM "xfunc.sgml">
<!entity xindex SYSTEM "xindex.sgml">
<!entity xplang SYSTEM "xplang.sgml">
<!entity xoper SYSTEM "xoper.sgml">
<!entity xtypes SYSTEM "xtypes.sgml">
<!entity biblio SYSTEM "biblio.sgml">
]>
<book id="programmer"> <book id="programmer">
<!-- Title information --> <title><![%single-book;[PostgreSQL &version;]]> Programmer's Guide</title>
<title>PostgreSQL Programmer's Guide</title>
<bookinfo> <bookinfo>
<releaseinfo>Covering v7.0 for general release</releaseinfo> <corpauthor>The PostgreSQL Global Development Group</corpauthor>
<bookbiblio>
<authorgroup>
<corpauthor>The PostgreSQL Development Team</corpauthor>
</authorgroup>
<!-- editor in authorgroup is not supported
<AuthorGroup>
-->
<editor>
<firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<!--
</AuthorGroup>
-->
<!--
<AuthorInitials>TGL</AuthorInitials>
-->
<date>(last updated 2000-05-01)</date> <editor>
</bookbiblio> <firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<legalnotice> <legalnotice>
<para> <para>
...@@ -83,20 +27,7 @@ Postgres Programmer's Guide. ...@@ -83,20 +27,7 @@ Postgres Programmer's Guide.
</bookinfo> </bookinfo>
<!-- <preface id="pg-preface">
<TOC> </TOC>
<LOT> </LOT>
-->
<!--
<Dedication>
<Para>
Your name here...
</Para>
</Dedication>
-->
<preface id="preface">
<title>Summary</title> <title>Summary</title>
<para> <para>
...@@ -111,9 +42,25 @@ Your name here... ...@@ -111,9 +42,25 @@ Your name here...
</para> </para>
</preface> </preface>
<![%single-book[
&intro-pg; &intro-pg;
<part> ]]>
<title>Server Programming</>
<part id="programmer-client">
<title>Client Interfaces</title>
&libpq;
&lobj;
&libpqpp;
&libpgtcl;
&libpgeasy;
&ecpg;
&odbc;
&jdbc;
&lisp;
</part>
<part id="programmer-server">
<title>Server Programming</title>
&arch-pg; &arch-pg;
&extend; &extend;
&xfunc; &xfunc;
...@@ -139,27 +86,10 @@ Disable it until we put in some info. ...@@ -139,27 +86,10 @@ Disable it until we put in some info.
&trigger; &trigger;
&spi; &spi;
</part> </part>
<part>
<title>Client Interfaces</>
&lobj;
&libpq;
&libpqpp;
&libpgtcl;
&libpgeasy;
&ecpg;
&odbc;
&jdbc;
&lisp;
</part>
<!--
&contacts;
-->
&biblio;
<!-- <![%single-book;[
<index id="index"> &biblio;
</index> ]]>
-->
</book> </book>
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.24 2000/10/16 03:34:47 pjw Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.25 2000/11/24 17:44:22 petere Exp $
Postgres documentation Postgres documentation
Complete list of usable sgml source files in this directory. Complete list of usable sgml source files in this directory.
--> -->
<!entity intro-ref system "intro-ref.sgml">
<!entity commands system "commands.sgml">
<!-- these will go into the "operators" reference chapter --> <!-- these will go into the "operators" reference chapter -->
<!entity all system "all.sgml"> <!entity all system "all.sgml">
<!entity any system "any.sgml"> <!entity any system "any.sgml">
...@@ -38,7 +35,7 @@ Complete list of usable sgml source files in this directory. ...@@ -38,7 +35,7 @@ Complete list of usable sgml source files in this directory.
<!entity trim system "trim.sgml"> <!entity trim system "trim.sgml">
<!entity upper system "upper.sgml"> <!entity upper system "upper.sgml">
<!-- these are in the "commands" reference chapter --> <!-- SQL commands -->
<!entity abort system "abort.sgml"> <!entity abort system "abort.sgml">
<!entity alterGroup system "alter_group.sgml"> <!entity alterGroup system "alter_group.sgml">
<!entity alterTable system "alter_table.sgml"> <!entity alterTable system "alter_table.sgml">
...@@ -107,7 +104,7 @@ Complete list of usable sgml source files in this directory. ...@@ -107,7 +104,7 @@ Complete list of usable sgml source files in this directory.
<!entity update system "update.sgml"> <!entity update system "update.sgml">
<!entity vacuum system "vacuum.sgml"> <!entity vacuum system "vacuum.sgml">
<!-- these are in the "utilities" reference chapter --> <!-- applications and utilities -->
<!entity createdb system "createdb.sgml"> <!entity createdb system "createdb.sgml">
<!entity createlang system "createlang.sgml"> <!entity createlang system "createlang.sgml">
<!entity createuser system "createuser.sgml"> <!entity createuser system "createuser.sgml">
......
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/Attic/commands.sgml,v 1.29 2000/10/18 13:29:23 pjw Exp $
Postgres documentation
-->
<chapter id="sql-commands">
<Title>SQL Commands</Title>
<abstract>
<Para>
This is reference information for the <acronym>SQL</acronym>
commands supported by <productname>Postgres</productname>.
</Para>
</abstract>
&abort;
&alterGroup;
&alterTable;
&alterUser;
&begin;
&close;
&cluster;
&commentOn;
&commit;
&copyTable;
&createAggregate;
&createConstraint;
&createDatabase;
&createFunction;
&createGroup;
&createIndex;
&createLanguage;
&createOperator;
&createRule;
&createSequence;
&createTable;
&createTableAs;
&createTrigger;
&createType;
&createUser;
&createView;
&declare;
&delete;
&dropAggregate;
&dropDatabase;
&dropFunction;
&dropGroup;
&dropIndex;
&dropLanguage;
&dropOperator;
&dropRule;
&dropSequence;
&dropTable;
&dropTrigger;
&dropType
&dropUser;
&dropView;
&end;
&explain;
&fetch;
&grant;
&insert;
&listen;
&load;
&lock;
&move;
&notify;
&reindex;
&reset;
&revoke;
&rollback;
&select;
&selectInto;
&set;
&setConstraints;
&setSession;
&setTransaction;
&show;
&truncate;
&unlisten;
&update;
&vacuum;
</Chapter>
<!--
Disable this chapter until we have more functions documented.
- thomas 1998-10-27
<chapter Id="sql-functions">
<title>SQL Functions</title>
<para>
This chapter provides reference information for the <acronym>SQL</acronym>
functions supported by <productname>Postgres</productname>.
</para>
&currentDate;
&currentTime;
&currentTimestamp;
&currentUser;
</chapter>
-->
<chapter Id="applications">
<title>Applications</title>
<abstract>
<para>
This is reference information for
<productname>Postgres</productname> applications
and support utilities.
</para>
</abstract>
&createdb;
&createlang;
&createuser;
&dropdb;
&droplang;
&dropuser;
&ecpgRef;
&pgAccess;
&pgAdmin;
&pgConfig;
&pgCtl;
&pgDump;
&pgDumpall;
&pgRestore;
&psqlRef;
&pgTclSh;
&pgTkSh;
&vacuumdb;
</chapter>
<chapter Id="utilities">
<title>System Applications</title>
<abstract>
<para>
This is reference information for
<productname>Postgres</productname>
servers and support utilities.
</para>
</abstract>
&initdb;
&initlocation;
&ipcclean;
&pgPasswd;
&pgUpgrade;
&postgres;
&postmaster;
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:nil
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
-->
<!-- reference.sgml <!-- reference.sgml
$Header: /cvsroot/pgsql/doc/src/sgml/reference.sgml,v 1.8 2000/05/02 20:01:52 thomas Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/reference.sgml,v 1.9 2000/11/24 17:44:22 petere Exp $
Postgres User's Reference documentation. PostgreSQL Reference Manual
- thomas 1998-08-31
--> -->
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity intro SYSTEM "intro.sgml">
<!entity % allfiles SYSTEM "ref/allfiles.sgml">
%allfiles;
<!entity biblio SYSTEM "biblio.sgml">
<!entity contacts SYSTEM "contacts.sgml">
]>
<book id="reference"> <book id="reference">
<!-- Title information --> <title><![%single-book;[PostgreSQL &version;]]> Reference Manual</title>
<title>PostgreSQL Reference Manual</title>
<bookinfo> <bookinfo>
<releaseinfo>Covering v6.5 for general release</releaseinfo> <corpauthor>The PostgreSQL Global Development Group</corpauthor>
<bookbiblio>
<authorgroup>
<author>
<firstname>Jose</firstname>
<surname>Soares Da Silva</surname>
</author>
<author>
<firstname>Oliver</firstname>
<surname>Elphick</surname>
</author>
</authorgroup>
<!--
<AuthorGroup>
<CorpAuthor>The PostgreSQL Development Team</CorpAuthor>
</AuthorGroup>
-->
<!-- editor in authorgroup is not supported
<AuthorGroup>
-->
<!--
<Editor>
<FirstName>Thomas</FirstName>
<SurName>Lockhart</SurName>
<Affiliation>
<OrgName>Caltech/JPL</OrgName>
</Affiliation>
</Editor>
-->
<editor>
<firstname>Oliver</firstname>
<surname>Elphick</surname>
</editor>
<!--
</AuthorGroup>
-->
<date>(last updated 2000-05-01)</date>
</bookbiblio>
<legalnotice> <legalnotice>
<para> <para>
...@@ -67,53 +16,161 @@ Postgres User's Reference documentation. ...@@ -67,53 +16,161 @@ Postgres User's Reference documentation.
by PostgreSQL Inc. by PostgreSQL Inc.
</para> </para>
</legalnotice> </legalnotice>
</bookinfo> </bookinfo>
<!-- <reference id="sql-commands">
<TOC> </TOC> <title>SQL Commands</title>
<LOT> </LOT>
-->
<!--
<Dedication>
<Para>
Your name here...
</Para>
</Dedication>
-->
<preface id="preface"> <partintro>
<title>Summary</title> <para>
This is reference information for the <acronym>SQL</acronym>
<para> commands supported by <productname>Postgres</productname>.
<productname>Postgres</productname>, </para>
developed originally in the UC Berkeley Computer Science Department, </partintro>
pioneered many of the object-relational concepts
now becoming available in some commercial databases. &abort;
It provides SQL92/SQL3 language support, &alterGroup;
transaction integrity, and type extensibility. &alterTable;
<productname>PostgreSQL</productname> is a public-domain, open source descendant &alterUser;
of this original Berkeley code. &begin;
</para> &close;
</preface> &cluster;
&commentOn;
&commit;
&copyTable;
&createAggregate;
&createConstraint;
&createDatabase;
&createFunction;
&createGroup;
&createIndex;
&createLanguage;
&createOperator;
&createRule;
&createSequence;
&createTable;
&createTableAs;
&createTrigger;
&createType;
&createUser;
&createView;
&declare;
&delete;
&dropAggregate;
&dropDatabase;
&dropFunction;
&dropGroup;
&dropIndex;
&dropLanguage;
&dropOperator;
&dropRule;
&dropSequence;
&dropTable;
&dropTrigger;
&dropType
&dropUser;
&dropView;
&end;
&explain;
&fetch;
&grant;
&insert;
&listen;
&load;
&lock;
&move;
&notify;
&reindex;
&reset;
&revoke;
&rollback;
&select;
&selectInto;
&set;
&setConstraints;
&setSession;
&setTransaction;
&show;
&truncate;
&unlisten;
&update;
&vacuum;
</reference>
<!-- <!--
&intro-ref; Disable this chapter until we have more functions documented.
--> - thomas 1998-10-27
&commands; <reference id="sql-functions">
<title>SQL Functions</title>
<!-- <partintro>
&contacts; <para>
This part provides reference information for the
<acronym>SQL</acronym> functions supported by
<productname>Postgres</productname>.
</para>
&currentDate;
&currentTime;
&currentTimestamp;
&currentUser;
</reference>
--> -->
&biblio; <reference id="reference-client">
<title>Client Applications</title>
<!-- <partintro>
<index Id="index"> <para>
</index> This is reference information for
--> <productname>Postgres</productname> client applications and
utilities.
</para>
</partintro>
&createdb;
&createuser;
&dropdb;
&dropuser;
&ecpgRef;
&pgAccess;
&pgAdmin;
&pgConfig;
&pgDump;
&pgDumpall;
&pgRestore;
&psqlRef;
&pgTclSh;
&pgTkSh;
&vacuumdb;
</reference>
<reference id="reference-server">
<title>Server Applications and Utilities</title>
<partintro>
<para>
This is reference information for
<productname>Postgres</productname>
server applications and support utilities.
</para>
</partintro>
&createlang;
&droplang;
&initdb;
&initlocation;
&ipcclean;
&pgCtl;
&pgPasswd;
&pgUpgrade;
&postgres;
&postmaster;
</reference>
</book> </book>
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/tutorial.sgml,v 1.10 2000/05/02 20:01:53 thomas Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/tutorial.sgml,v 1.11 2000/11/24 17:44:22 petere Exp $
Postgres tutorial. Derived from postgres.sgml.
thomas 1998-02-23
--> -->
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity about SYSTEM "about.sgml">
<!entity history SYSTEM "history.sgml">
<!entity info SYSTEM "info.sgml">
<!entity legal SYSTEM "legal.sgml">
<!entity notation SYSTEM "notation.sgml">
<!entity problems SYSTEM "problems.sgml">
<!entity y2k SYSTEM "y2k.sgml">
<!entity advanced SYSTEM "advanced.sgml">
<!entity arch SYSTEM "arch.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!entity intro SYSTEM "intro.sgml">
<!entity query SYSTEM "query.sgml">
<!entity sql SYSTEM "sql.sgml">
<!entity start SYSTEM "start.sgml">
]>
<book id="tutorial"> <book id="tutorial">
<!-- Title information --> <title><![%single-book;[PostgreSQL &version;]]> Tutorial</title>
<title>PostgreSQL Tutorial</title>
<bookinfo> <bookinfo>
<releaseinfo>Covering v7.0 for general release</releaseinfo> <corpauthor>The PostgreSQL Global Development Group</corpauthor>
<bookbiblio>
<authorgroup>
<corpauthor>The PostgreSQL Development Team</corpauthor>
</authorgroup>
<!-- editor in authorgroup is not supported
<AuthorGroup>
-->
<editor>
<firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<!--
</AuthorGroup>
-->
<!--
<AuthorInitials>TGL</AuthorInitials>
-->
<date>(last updated 2000-05-01)</date> <editor>
</bookbiblio> <firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<legalnotice> <legalnotice>
<para> <para>
...@@ -65,20 +25,7 @@ thomas 1998-02-23 ...@@ -65,20 +25,7 @@ thomas 1998-02-23
</bookinfo> </bookinfo>
<!-- <preface id="tutorial-preface">
<TOC> </TOC>
<LOT> </LOT>
-->
<!--
<Dedication>
<Para>
Your name here...
</Para>
</Dedication>
-->
<preface>
<title>Summary</title> <title>Summary</title>
<para> <para>
...@@ -93,18 +40,17 @@ Your name here... ...@@ -93,18 +40,17 @@ Your name here...
</para> </para>
</preface> </preface>
<![%single-book;[
&intro; &intro;
]]>
&sql; &sql;
&arch; &arch;
&start; &start;
&query; &query;
&advanced; &advanced;
<![%single-book;[
&biblio; &biblio;
]]>
<!--
<INDEX> </INDEX>
-->
</book> </book>
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.19 2000/05/02 20:01:53 thomas Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.20 2000/11/24 17:44:22 petere Exp $
--> -->
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
<!entity about SYSTEM "about.sgml">
<!entity history SYSTEM "history.sgml">
<!entity info SYSTEM "info.sgml">
<!entity legal SYSTEM "legal.sgml">
<!entity notation SYSTEM "notation.sgml">
<!entity problems SYSTEM "problems.sgml">
<!entity y2k SYSTEM "y2k.sgml">
<!entity advanced SYSTEM "advanced.sgml">
<!entity array SYSTEM "array.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!entity datatype SYSTEM "datatype.sgml">
<!entity datetime SYSTEM "datetime.sgml">
<!entity environ SYSTEM "environ.sgml">
<!entity func SYSTEM "func.sgml">
<!entity indices SYSTEM "indices.sgml">
<!entity inherit SYSTEM "inherit.sgml">
<!entity intro SYSTEM "intro.sgml">
<!entity manage SYSTEM "manage.sgml">
<!entity mvcc SYSTEM "mvcc.sgml">
<!entity oper SYSTEM "oper.sgml">
<!entity plan SYSTEM "plan.sgml">
<!entity plperl SYSTEM "plperl.sgml">
<!entity plsql SYSTEM "plsql.sgml">
<!entity pltcl SYSTEM "pltcl.sgml">
<!entity populate SYSTEM "populate.sgml">
<!entity storage SYSTEM "storage.sgml">
<!entity syntax SYSTEM "syntax.sgml">
<!entity typeconv SYSTEM "typeconv.sgml">
<!-- reference pages -->
<!entity % allfiles SYSTEM "allfiles.sgml">
%allfiles;
]>
<book id="user"> <book id="user">
<!-- Title information --> <!-- Title information -->
<title>PostgreSQL User's Guide</title> <title><![%single-book;[PostgreSQL &version;]]> User's Guide</title>
<bookinfo> <bookinfo>
<releaseinfo>Covering v7.0 for general release</releaseinfo> <corpauthor>The PostgreSQL Development Team</corpauthor>
<bookbiblio>
<authorgroup>
<corpauthor>The PostgreSQL Development Team</corpauthor>
</authorgroup>
<!-- editor in authorgroup is not supported
<AuthorGroup>
-->
<editor>
<firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<!--
</AuthorGroup>
-->
<!--
<AuthorInitials>TGL</AuthorInitials>
-->
<date>(last updated 2000-05-01)</date> <editor>
</bookbiblio> <firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<legalnotice> <legalnotice>
<para> <para>
...@@ -80,20 +27,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.19 2000/05/02 20:01:53 ...@@ -80,20 +27,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.19 2000/05/02 20:01:53
</bookinfo> </bookinfo>
<!-- <preface id="ug-preface">
<TOC> </TOC>
<LOT> </LOT>
-->
<!--
<Dedication>
<Para>
Your name here...
</Para>
</Dedication>
-->
<preface id="preface">
<title>Summary</title> <title>Summary</title>
<para> <para>
...@@ -126,22 +60,13 @@ Your name here... ...@@ -126,22 +60,13 @@ Your name here...
&storage; &storage;
&plan; &plan;
&populate &populate
&commands;
<!-- appendices --> <!-- appendices -->
&datetime; &datetime;
<!--
&contacts;
-->
&biblio; &biblio;
<!--
<index Id="index">
</index>
-->
</book> </book>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
......
<!--
Update this file to propagate correct current version numbers to the
documentation. In text, use for example &version; to refer to them.
-->
<!entity version "7.1devel">
<!entity majorversion "7.1">
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment