Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
62cc9421
Commit
62cc9421
authored
26 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Include new chapters.
parent
61ff1c3b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/src/sgml/postgres.sgml
+29
-17
29 additions, 17 deletions
doc/src/sgml/postgres.sgml
doc/src/sgml/programmer.sgml
+4
-0
4 additions, 0 deletions
doc/src/sgml/programmer.sgml
doc/src/sgml/user.sgml
+17
-9
17 additions, 9 deletions
doc/src/sgml/user.sgml
with
50 additions
and
26 deletions
doc/src/sgml/postgres.sgml
+
29
−
17
View file @
62cc9421
<!-- postgres.sgml
-
- Postgres integrated documentation.
- Other subset docs should be copied and shrunk from here.
- thomas 1998-02-23
-
- -->
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.7 1998/08/15 06:52:53 thomas Exp $
Postgres integrated documentation.
Other subset docs should be copied and shrunk from here.
thomas 1998-02-23
$Log: postgres.sgml,v $
Revision 1.7 1998/08/15 06:52:53 thomas
Include new chapters.
-->
<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
<!-- tutorial -->
...
...
@@ -21,6 +26,7 @@
<!entity oper SYSTEM "oper.sgml">
<!entity func SYSTEM "func.sgml">
<!entity typeconv SYSTEM "typeconv.sgml">
<!entity keys SYSTEM "keys.sgml">
<!entity array SYSTEM "array.sgml">
<!entity inherit SYSTEM "inherit.sgml">
<!entity query-ug SYSTEM "query-ug.sgml">
...
...
@@ -68,6 +74,8 @@
<!entity geqo SYSTEM "geqo.sgml">
<!entity protocol SYSTEM "protocol.sgml">
<!entity compiler SYSTEM "compiler.sgml">
<!entity page SYSTEM "page.sgml">
<!entity bki SYSTEM "bki.sgml">
<!entity docguide SYSTEM "docguide.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!entity contacts SYSTEM "contacts.sgml">
...
...
@@ -126,7 +134,7 @@ Your name here...
</Dedication>
-->
<
P
reface>
<
preface id="p
reface
"
>
<Title>Summary</Title>
<Para>
...
...
@@ -141,7 +149,7 @@ It provides SQL92/SQL3 language support,
</Para>
</Preface>
<
Part
>
<
part Id="part-tutorial"
>
<Title>Tutorial</Title>
<PartIntro>
<Para>
...
...
@@ -155,7 +163,7 @@ Introduction for new users.
&advanced;
</Part>
<
Part
>
<
part Id="part-user"
>
<Title>User's Guide</Title>
<PartIntro>
<Para>
...
...
@@ -168,6 +176,7 @@ Information for users.
&oper;
&func;
&typeconv;
&keys;
&array;
&inherit;
&query-ug;
...
...
@@ -176,7 +185,7 @@ Information for users.
&pgaccess;
</Part>
<
P
art>
<
p
art
Id="part-admin"
>
<Title>Administrator's Guide</Title>
<PartIntro>
<Para>
...
...
@@ -191,7 +200,7 @@ Installation and maintenance information.
&release;
</Part>
<
P
art>
<
p
art
Id="part-programmer"
>
<Title>Programmer's Guide</Title>
<PartIntro>
<Para>
...
...
@@ -214,7 +223,7 @@ Information for extending <ProductName>Postgres</ProductName>.
<!-- &libpq; -->
</Part>
<
P
art>
<
p
art
Id="part-interfaces"
>
<Title>Interfaces</Title>
<PartIntro>
<Para>
...
...
@@ -230,7 +239,7 @@ User and programmer interfaces.
&jdbc;
</Part>
<
Part
>
<
part Id="part-reference"
>
<Title>Reference</Title>
<PartIntro>
<Para>
...
...
@@ -241,7 +250,7 @@ Command syntax.
&commands;
</Part>
<
Part
>
<
part Id="part-developer"
>
<Title>Developer's Guide</Title>
<PartIntro>
<Para>
...
...
@@ -253,9 +262,11 @@ future development.
&geqo;
&protocol;
&compiler;
&bki;
&page;
</Part>
<
Part
>
<
part Id="part-appendix"
>
<Title>Appendices</Title>
<PartIntro>
<Para>
...
...
@@ -267,6 +278,7 @@ Additional related information.
&biblio;
</Part>
<INDEX> </INDEX>
<index Id="part-index">
</index>
</Book>
This diff is collapsed.
Click to expand it.
doc/src/sgml/programmer.sgml
+
4
−
0
View file @
62cc9421
...
...
@@ -54,6 +54,8 @@
<!entity geqo SYSTEM "geqo.sgml">
<!entity protocol SYSTEM "protocol.sgml">
<!entity compiler SYSTEM "compiler.sgml">
<!entity page SYSTEM "page.sgml">
<!entity bki SYSTEM "bki.sgml">
<!entity docguide SYSTEM "docguide.sgml">
<!entity biblio SYSTEM "biblio.sgml">
<!entity contacts SYSTEM "contacts.sgml">
...
...
@@ -157,6 +159,8 @@ It provides SQL92/SQL3 language support,
&geqo;
&protocol;
&compiler;
&bki;
&page;
<!-- appendices -->
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/user.sgml
+
17
−
9
View file @
62cc9421
<!-- user.sgml
-
- Postgres User's Manual.
- Derived from postgres.sgml.
- thomas 1998-02-24
-
- -->
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.4 1998/08/15 06:52:54 thomas Exp $
Postgres User's Manual.
Derived from postgres.sgml.
thomas 1998-02-24
$Log: user.sgml,v $
Revision 1.4 1998/08/15 06:52:54 thomas
Include new chapters.
-->
<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
<!entity intro SYSTEM "intro.sgml">
<!entity advanced SYSTEM "advanced.sgml">
...
...
@@ -14,6 +19,7 @@
<!entity oper SYSTEM "oper.sgml">
<!entity func SYSTEM "func.sgml">
<!entity typeconv SYSTEM "typeconv.sgml">
<!entity keys SYSTEM "keys.sgml">
<!entity array SYSTEM "array.sgml">
<!entity inherit SYSTEM "inherit.sgml">
<!entity query-ug SYSTEM "query-ug.sgml">
...
...
@@ -76,7 +82,7 @@ Your name here...
</Dedication>
-->
<
P
reface>
<
preface id="p
reface
"
>
<Title>Summary</Title>
<Para>
...
...
@@ -98,6 +104,7 @@ It provides SQL92/SQL3 language support,
&oper;
&func;
&typeconv;
&keys;
&array;
&inherit;
&query-ug;
...
...
@@ -110,7 +117,8 @@ It provides SQL92/SQL3 language support,
-->
&biblio;
<INDEX> </INDEX>
<index Id="index">
</index>
</Book>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment