Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit23d7c69

Browse files
committed
Split out Developer's from Programmer's guide.
1 parente6ef738 commit23d7c69

File tree

4 files changed

+92
-66
lines changed

4 files changed

+92
-66
lines changed

‎doc/src/Makefile

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Postgres documentation makefile
2-
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.13 2000/09/12 03:47:36 thomas Exp $
2+
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.14 2000/10/08 13:24:08 petere Exp $
33

44
subdir = doc/src
55
top_builddir = ../..
@@ -10,7 +10,7 @@ ZIP= gzip
1010
ZIPSUFFIX= gz
1111
TAREXCLUDE= --exclude=Makefile --exclude='*.sgml' --exclude=ref
1212

13-
SRC= admin postgres programmer tutorial user
13+
SRC= admin postgres programmer tutorial user developer
1414

1515
TARGETS=$(SRC:%=%.tar.$(ZIPSUFFIX))
1616

@@ -33,37 +33,37 @@ sources:
3333
$(MAKE) sources.tar.$(ZIPSUFFIX)
3434

3535
sources.tar:
36-
($(TAR) -cf$@ sgml graphics)
36+
$(TAR) -cf$@ sgml graphics
3737

3838
admin.tar:
3939
$(MAKE) -C sgml clean
4040
$(MAKE) -C sgml admin.html
41-
(cd sgml;$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm -C ../graphics layout.gif)
41+
cd sgml&&$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm
4242

43-
installation.tar:
43+
developer.tar:
4444
$(MAKE) -C sgml clean
45-
$(MAKE) -C sgml installation.html
46-
(cd sgml;$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm)
47-
48-
postgres.tar:
49-
$(MAKE) -C sgml clean
50-
$(MAKE) -C sgml postgres.html
51-
(cd sgml;$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm -C ../graphics catalogs.gif clientserver.gif connections.gif layout.gif)
45+
$(MAKE) -C sgml developer.html
46+
cd sgml&&$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm
5247

5348
programmer.tar:
5449
$(MAKE) -C sgml clean
5550
$(MAKE) -C sgml programmer.html
56-
(cd sgml;$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm -C ../graphics catalogs.gif connections.gif)
51+
cd sgml&&$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm -C ../graphics catalogs.gif connections.gif
5752

5853
tutorial.tar:
5954
$(MAKE) -C sgml clean
6055
$(MAKE) -C sgml tutorial.html
61-
(cd sgml;$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm -C ../graphics clientserver.gif)
56+
cd sgml&&$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm -C ../graphics clientserver.gif
6257

6358
user.tar:
6459
$(MAKE) -C sgml clean
6560
$(MAKE) -C sgml user.html
66-
(cd sgml;$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm)
61+
cd sgml&&$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm
62+
63+
postgres.tar:
64+
$(MAKE) -C sgml clean
65+
$(MAKE) -C sgml postgres.html
66+
cd sgml&&$(TAR) -cf ../$@$(TAREXCLUDE)*.html*.htm -C ../graphics catalogs.gif clientserver.gif connections.gif
6767

6868
man.tar:
6969
$(MAKE) -C sgml man
@@ -75,4 +75,3 @@ man.tar:
7575

7676
%.$(ZIPSUFFIX):%
7777
$(ZIP) -f$<
78-

‎doc/src/sgml/developer.sgml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/developer.sgml,v 1.1 2000/10/08 13:24:09 petere Exp $ -->
2+
<!-- PostgreSQL Developer's Guide -->
3+
4+
<!doctype book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
5+
6+
<!entity about SYSTEM "about.sgml">
7+
<!entity history SYSTEM "history.sgml">
8+
<!entity info SYSTEM "info.sgml">
9+
<!entity legal SYSTEM "legal.sgml">
10+
<!entity notation SYSTEM "notation.sgml">
11+
<!entity problems SYSTEM "problems.sgml">
12+
<!entity y2k SYSTEM "y2k.sgml">
13+
14+
<!entity arch-dev SYSTEM "arch-dev.sgml">
15+
<!entity biblio SYSTEM "biblio.sgml">
16+
<!entity bki SYSTEM "bki.sgml">
17+
<!entity catalogs SYSTEM "catalogs.sgml">
18+
<!entity compiler SYSTEM "compiler.sgml">
19+
<!entity contacts SYSTEM "contacts.sgml">
20+
<!entity cvs SYSTEM "cvs.sgml">
21+
<!entity docguide SYSTEM "docguide.sgml">
22+
<!entity geqo SYSTEM "geqo.sgml">
23+
<!entity page SYSTEM "page.sgml">
24+
<!entity protocol SYSTEM "protocol.sgml">
25+
<!entity sources SYSTEM "sources.sgml">
26+
27+
]>
28+
29+
<book id="developer">
30+
<title><productname>PostgreSQL Developer's Guide</></>
31+
32+
<bookinfo>
33+
<abstract>
34+
<simpara>
35+
This document contains assorted information that can be of use to
36+
<productname>PostgreSQL</> developers.
37+
</simpara>
38+
</abstract>
39+
40+
<corpauthor>The PostgreSQL Global Development Group</>
41+
</bookinfo>
42+
43+
&sources;
44+
&arch-dev;
45+
&geqo;
46+
<!--
47+
This listing of Postgres catalogs is currently just a copy of the old
48+
man page. It is not up to date and has not been marked up for DocBook.
49+
- thomas 2000-04-20
50+
&catalogs;
51+
-->
52+
&protocol;
53+
&compiler;
54+
&bki;
55+
&page;
56+
&biblio;
57+
58+
<!-- appendices -->
59+
&cvs;
60+
&docguide;
61+
</book>

‎doc/src/sgml/postgres.sgml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.42 2000/09/30 16:58:20 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.43 2000/10/08 13:24:09 petere Exp $
33
-->
44

55
<!doctype set PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
@@ -190,7 +190,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.42 2000/09/30 16:58:20 pe
190190
<bookinfo>
191191
<abstract>
192192
<para>
193-
Information onextending Postgres
193+
Information onclient and server programming
194194
</para>
195195
</abstract>
196196
</bookinfo>
@@ -201,6 +201,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.42 2000/09/30 16:58:20 pe
201201
included twice.
202202
&intro-pg;
203203
-->
204+
<part>
205+
<title>Server Programming</title>
204206
&arch-pg;
205207
&extend;
206208
&xfunc;
@@ -215,19 +217,10 @@ $Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.42 2000/09/30 16:58:20 pe
215217
&trigger;
216218
&spi;
217219
&xplang;
218-
</book>
219-
220-
<book id="interfaces">
221-
<title>Interfaces</title>
222-
223-
<bookinfo>
224-
<abstract>
225-
<para>
226-
Information on Postgres language interfaces
227-
</para>
228-
</abstract>
229-
</bookinfo>
220+
</part>
230221

222+
<part>
223+
<title>Client Interfaces</title>
231224
&func-ref;
232225
&lobj;
233226
&ecpg;
@@ -238,6 +231,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/postgres.sgml,v 1.42 2000/09/30 16:58:20 pe
238231
&odbc;
239232
&jdbc;
240233
&lisp;
234+
</part>
241235
</book>
242236

243237
<book id="developer">

‎doc/src/sgml/programmer.sgml

Lines changed: 8 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.27 2000/06/18 21:24:51 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.28 2000/10/08 13:24:09 petere Exp $
33

44
Postgres Programmer's Guide.
55
-->
@@ -39,20 +39,7 @@ Postgres Programmer's Guide.
3939
<!entity xplang SYSTEM "xplang.sgml">
4040
<!entity xoper SYSTEM "xoper.sgml">
4141
<!entity xtypes SYSTEM "xtypes.sgml">
42-
43-
<!-- developer's guide -->
44-
<!entity arch-dev SYSTEM "arch-dev.sgml">
4542
<!entity biblio SYSTEM "biblio.sgml">
46-
<!entity bki SYSTEM "bki.sgml">
47-
<!entity catalogs SYSTEM "catalogs.sgml">
48-
<!entity compiler SYSTEM "compiler.sgml">
49-
<!entity contacts SYSTEM "contacts.sgml">
50-
<!entity cvs SYSTEM "cvs.sgml">
51-
<!entity docguide SYSTEM "docguide.sgml">
52-
<!entity geqo SYSTEM "geqo.sgml">
53-
<!entity page SYSTEM "page.sgml">
54-
<!entity protocol SYSTEM "protocol.sgml">
55-
<!entity sources SYSTEM "sources.sgml">
5643
]>
5744

5845
<book id="programmer">
@@ -125,6 +112,8 @@ Your name here...
125112
</preface>
126113

127114
&intro-pg;
115+
<part>
116+
<title>Server Programming</>
128117
&arch-pg;
129118
&extend;
130119
&xfunc;
@@ -149,6 +138,9 @@ Disable it until we put in some info.
149138

150139
&trigger;
151140
&spi;
141+
</part>
142+
<part>
143+
<title>Client Interfaces</>
152144
&lobj;
153145
&libpq;
154146
&libpqpp;
@@ -158,31 +150,11 @@ Disable it until we put in some info.
158150
&odbc;
159151
&jdbc;
160152
&lisp;
161-
162-
<!-- development -->
163-
164-
&sources;
165-
&arch-dev;
166-
&geqo;
167-
<!--
168-
This listing of Postgres catalogs is currently just a copy of the old
169-
man page. It is not up to date and has not been marked up for SGML.
170-
- thomas 2000-04-20
171-
&catalogs;
172-
-->
173-
&protocol;
174-
&compiler;
175-
&bki;
176-
&page;
177-
178-
<!-- appendices -->
179-
180-
&cvs;
181-
&docguide;
153+
</part>
182154
<!--
183155
&contacts;
184156
-->
185-
&biblio;
157+
&biblio;
186158

187159
<!--
188160
<index id="index">

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp