Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
cf87eb47
Commit
cf87eb47
authored
Nov 24, 2003
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to DocBook V4.2 SGML.
parent
e91e640b
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
47 additions
and
47 deletions
+47
-47
configure
configure
+3
-3
configure.in
configure.in
+2
-2
doc/src/sgml/cvs.sgml
doc/src/sgml/cvs.sgml
+3
-5
doc/src/sgml/ddl.sgml
doc/src/sgml/ddl.sgml
+3
-3
doc/src/sgml/dml.sgml
doc/src/sgml/dml.sgml
+3
-3
doc/src/sgml/docguide.sgml
doc/src/sgml/docguide.sgml
+19
-17
doc/src/sgml/ecpg.sgml
doc/src/sgml/ecpg.sgml
+2
-2
doc/src/sgml/geqo.sgml
doc/src/sgml/geqo.sgml
+3
-3
doc/src/sgml/nls.sgml
doc/src/sgml/nls.sgml
+3
-3
doc/src/sgml/postgres.sgml
doc/src/sgml/postgres.sgml
+2
-2
doc/src/sgml/standalone-install.sgml
doc/src/sgml/standalone-install.sgml
+2
-2
doc/src/sgml/user-manag.sgml
doc/src/sgml/user-manag.sgml
+2
-2
No files found.
configure
View file @
cf87eb47
...
...
@@ -17451,13 +17451,13 @@ fi
done
echo
"
$as_me
:
$LINENO
: checking for DocBook V
3.1
"
>
&5
echo
$ECHO_N
"checking for DocBook V
3.1
...
$ECHO_C
"
>
&6
echo
"
$as_me
:
$LINENO
: checking for DocBook V
4.2
"
>
&5
echo
$ECHO_N
"checking for DocBook V
4.2
...
$ECHO_C
"
>
&6
if
test
"
${
pgac_cv_check_docbook
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
cat
>
conftest.sgml
<<
EOF
<!doctype book PUBLIC "-//OASIS//DTD DocBook V
3.1
//EN">
<!doctype book PUBLIC "-//OASIS//DTD DocBook V
4.2
//EN">
<book>
<title>test</title>
<chapter>
...
...
configure.in
View file @
cf87eb47
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.30
4 2003/11/24 14:52:57
petere Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.30
5 2003/11/24 19:08:01
petere Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -1236,7 +1236,7 @@ fi
#
PGAC_PROG_NSGMLS
PGAC_PROG_JADE
PGAC_CHECK_DOCBOOK(
3.1
)
PGAC_CHECK_DOCBOOK(
4.2
)
PGAC_PATH_DOCBOOK_STYLESHEETS
PGAC_PATH_COLLATEINDEX
AC_CHECK_PROGS(SGMLSPL, sgmlspl)
...
...
doc/src/sgml/cvs.sgml
View file @
cf87eb47
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/cvs.sgml,v 1.25 2003/06/11 15:28:55 tgl Exp $
CVS code repository
Thomas Lockhart
$Header: /cvsroot/pgsql/doc/src/sgml/cvs.sgml,v 1.26 2003/11/24 19:08:01 petere Exp $
-->
<appendix id="cvs">
<
doc
info>
<
appendix
info>
<authorgroup>
<author>
<firstname>Marc</firstname>
...
...
@@ -21,7 +19,7 @@ Thomas Lockhart
</author>
</authorgroup>
<date>1999-05-20</date>
</
doc
info>
</
appendix
info>
<title>The <productname>CVS</productname> Repository</title>
...
...
doc/src/sgml/ddl.sgml
View file @
cf87eb47
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.2
3 2003/11/05 00:05:32 tgl
Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.2
4 2003/11/24 19:08:01 petere
Exp $ -->
<chapter id="ddl">
<title>Data Definition</title>
...
...
@@ -956,8 +956,8 @@ CREATE TABLE order_items (
<sect1 id="ddl-inherit">
<title>Inheritance</title>
<
comment
>This section needs to be rethought. Some of the
information should go into the following chapters.</
comment
>
<
remark
>This section needs to be rethought. Some of the
information should go into the following chapters.</
remark
>
<para>
Let's create two tables. The capitals table contains
...
...
doc/src/sgml/dml.sgml
View file @
cf87eb47
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/dml.sgml,v 1.
6 2003/08/31 17:32:18
petere Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/dml.sgml,v 1.
7 2003/11/24 19:08:01
petere Exp $ -->
<chapter id="dml">
<title>Data Manipulation</title>
<
comment
>
<
remark
>
This chapter is still quite incomplete.
</
comment
>
</
remark
>
<para>
The previous chapter discussed how to create tables and other
...
...
doc/src/sgml/docguide.sgml
View file @
cf87eb47
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/docguide.sgml,v 1.4
6 2003/09/12 22:17:22 tgl
Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/docguide.sgml,v 1.4
7 2003/11/24 19:08:01 petere
Exp $ -->
<appendix id="docguide">
<title>Documentation</title>
...
...
@@ -86,7 +86,7 @@
<listitem>
<para>
This is the definition of DocBook itself. We currently use
version
3.1
; you cannot use later or earlier versions. Note
version
4.2
; you cannot use later or earlier versions. Note
that there is also an <acronym>XML</acronym> version of DocBook
-- do not use that.
</para>
...
...
@@ -205,9 +205,6 @@
<listitem>
<para><filename>textproc/openjade</filename></para>
</listitem>
<listitem>
<para><filename>textproc/docbook-310</filename></para>
</listitem>
<listitem>
<para><filename>textproc/iso8879</filename></para>
</listitem>
...
...
@@ -215,6 +212,11 @@
<para><filename>textproc/dsssl-docbook-modular</filename></para>
</listitem>
</itemizedlist>
Apparently, there is no port for the DocBook V4.2 SGML DTD
available right now. You will need to install it manually.
</para>
<para>
A number of things from <filename>/usr/ports/print</filename>
(<filename>tex</filename>, <filename>jadetex</filename>) might
also be of interest.
...
...
@@ -225,7 +227,7 @@
in <filename>/usr/local/share/sgml/catalog</filename>. Be sure to
have the following line in there:
<programlisting>
CATALOG "/usr/local/share/sgml/docbook/
3.1/catalog
"
CATALOG "/usr/local/share/sgml/docbook/
4.2/docbook.cat
"
</programlisting>
If you do not want to edit the file you can also set the
environment variable <envar>SGML_CATALOG_FILES</envar> to a
...
...
@@ -331,20 +333,20 @@ CATALOG "dsssl/catalog"
<step>
<para>
Obtain the <ulink
url="http://www.
oasis-open.org/docbook/sgml/3.1/docbk31
.zip">DocBook
V
3.1
</ulink> distribution.
url="http://www.
docbook.org/sgml/4.2/docbook-4.2
.zip">DocBook
V
4.2
</ulink> distribution.
</para>
</step>
<step>
<para>
Create the directory
<filename>/usr/local/share/sgml/docbook
31
</filename> and change
<filename>/usr/local/share/sgml/docbook
-4.2
</filename> and change
to it. (The exact location is irrelevant, but this one is
reasonable within the layout we are following here.)
<screen>
<prompt>$ </prompt><userinput>mkdir /usr/local/share/sgml/docbook
31
</userinput>
<prompt>$ </prompt><userinput>cd /usr/local/share/sgml/docbook
31
</userinput>
<prompt>$ </prompt><userinput>mkdir /usr/local/share/sgml/docbook
-4.2
</userinput>
<prompt>$ </prompt><userinput>cd /usr/local/share/sgml/docbook
-4.2
</userinput>
</screen>
</para>
</step>
...
...
@@ -353,7 +355,7 @@ CATALOG "dsssl/catalog"
<para>
Unpack the archive.
<screen>
<prompt>$ </prompt><userinput>unzip -a ...../docb
k31
.zip</userinput>
<prompt>$ </prompt><userinput>unzip -a ...../docb
ook-4.2
.zip</userinput>
</screen>
(The archive will unpack its files into the current directory.)
</para>
...
...
@@ -366,7 +368,7 @@ CATALOG "dsssl/catalog"
you told jade during installation) and put a line like this
into it:
<programlisting>
CATALOG "docbook
31
/docbook.cat"
CATALOG "docbook
-4.2
/docbook.cat"
</programlisting>
</para>
</step>
...
...
@@ -388,7 +390,7 @@ CATALOG "docbook31/docbook.cat"
character entities</ulink> archive, unpack it, and put the
files in the same directory you put the DocBook files in.
<screen>
<prompt>$ </prompt><userinput>cd /usr/local/share/sgml/docbook
31
</userinput>
<prompt>$ </prompt><userinput>cd /usr/local/share/sgml/docbook
-4.2
</userinput>
<prompt>$ </prompt><userinput>unzip ...../ISOEnts.zip</userinput>
</screen>
</para>
...
...
@@ -504,7 +506,7 @@ CATALOG "docbook-dsssl--1.<replaceable>xx</>/catalog
<computeroutput>
checking for onsgmls... onsgmls
checking for openjade... openjade
checking for DocBook V
3.1
... yes
checking for DocBook V
4.2
... yes
checking for DocBook stylesheets... /usr/lib/sgml/stylesheets/nwalsh-modular
checking for sgmlspl... sgmlspl
</computeroutput>
...
...
@@ -512,7 +514,7 @@ checking for sgmlspl... sgmlspl
If neither <filename>onsgmls</filename> nor
<filename>nsgmls</filename> were found then you will not see the
remaining 4 lines. <filename>nsgmls</filename> is part of the Jade
package. If <quote>DocBook V
3.1
</quote> was not found then you did
package. If <quote>DocBook V
4.2
</quote> was not found then you did
not install the DocBook DTD kit in a place where jade can find it,
or you have not set up the catalog files correctly. See the
installation hints above. The DocBook stylesheets are looked for
...
...
@@ -1034,7 +1036,7 @@ End:
the first line look like this:
<programlisting>
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook V
3.1
//EN">
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook V
4.2
//EN">
</programlisting>
This means that anything and everything that reads
...
...
doc/src/sgml/ecpg.sgml
View file @
cf87eb47
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.5
4 2003/11/12 22:47:47
petere Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.5
5 2003/11/24 19:08:02
petere Exp $
-->
<chapter id="ecpg">
...
...
@@ -668,7 +668,7 @@ EXEC SQL DEALLOCATE PREPARE <replaceable>name</replaceable>;
EXEC SQL ALLOCATE DESCRIPTOR <replaceable>identifier</replaceable>;
</programlisting>
The identifier serves as the <quote>variable name</quote> of the
descriptor area. <
comment>The scope of the allocated descriptor is WHAT?.</comment
>
descriptor area. <
remark>The scope of the allocated descriptor is WHAT?.</remark
>
When you don't need the descriptor anymore, you should deallocate
it:
<programlisting>
...
...
doc/src/sgml/geqo.sgml
View file @
cf87eb47
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/geqo.sgml,v 1.2
4 2003/09/29 18:18:35 momjian
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/geqo.sgml,v 1.2
5 2003/11/24 19:08:02 petere
Exp $
Genetic Optimizer
-->
<chapter id="geqo">
<
doc
info>
<
chapter
info>
<author>
<firstname>Martin</firstname>
<surname>Utesch</surname>
...
...
@@ -26,7 +26,7 @@ Genetic Optimizer
</affiliation>
</author>
<date>1997-10-02</date>
</
doc
info>
</
chapter
info>
<title id="geqo-title">Genetic Query Optimizer</title>
...
...
doc/src/sgml/nls.sgml
View file @
cf87eb47
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/nls.sgml,v 1.
7 2003/11/01 01:56:29
petere Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/nls.sgml,v 1.
8 2003/11/24 19:08:02
petere Exp $
-->
<chapter id="nls">
<
doc
info>
<
chapter
info>
<author>
<firstname>Peter</firstname>
<surname>Eisentraut</surname>
</author>
</
doc
info>
</
chapter
info>
<title>Native Language Support</title>
...
...
doc/src/sgml/postgres.sgml
View file @
cf87eb47
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.6
0 2003/11/04 09:55:38
petere Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.6
1 2003/11/24 19:08:02
petere Exp $
-->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V
3.1
//EN" [
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V
4.2
//EN" [
<!entity % version SYSTEM "version.sgml">
%version;
...
...
doc/src/sgml/standalone-install.sgml
View file @
cf87eb47
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/standalone-install.sgml,v 2.
4 2003/03/25 16:15:38
petere Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/standalone-install.sgml,v 2.
5 2003/11/24 19:08:02
petere Exp $ -->
<!--
This file helps in generating the INSTALL text file that lives in the
...
...
@@ -19,7 +19,7 @@ Running 'make INSTALL' in the doc/src/sgml directory will do 1 through
3 for you.
-->
<!
doctype chapter PUBLIC "-//OASIS//DTD DocBook V3.1
//EN" [
<!
DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook V4.2
//EN" [
<!entity % version SYSTEM "version.sgml">
%version;
...
...
doc/src/sgml/user-manag.sgml
View file @
cf87eb47
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/user-manag.sgml,v 1.2
2 2003/08/31 17:32:20
petere Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/user-manag.sgml,v 1.2
3 2003/11/24 19:08:02
petere Exp $
-->
<chapter id="user-manag">
...
...
@@ -224,7 +224,7 @@ ALTER GROUP <replaceable>name</replaceable> DROP USER <replaceable>uname1</repla
<primary>REVOKE</primary>
</indexterm>
<
comment>Being moved to the DDL chapter. Will eventually disappear here.</comment
>
<
remark>Being moved to the DDL chapter. Will eventually disappear here.</remark
>
<para>
When a database object is created, it is assigned an owner. The
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment