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

Commitc8cfb0c

Browse files
author
Thomas G. Lockhart
committed
SGML source for new documentation.
1 parent878531f commitc8cfb0c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+19988
-0
lines changed

‎doc/src/Makefile‎

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Postgres documentation makefile
2+
# Thomas Lockhart
3+
4+
PGDOCS= ..
5+
SRCDIR= ../../src
6+
7+
HPATH=$(PGDOCS)/doc
8+
PPATH=$(PGDOCS)/doc
9+
10+
#HSTYLE=/usr/lib/sgml/stylesheets/jade/docbook/html
11+
#PSTYLE=/usr/lib/sgml/stylesheets/jade/docbook/print
12+
13+
HSTYLE=/home/tgl/SGML/db107.d/docbook/html
14+
PSTYLE=/home/tgl/SGML/db107.d/docbook/print
15+
16+
HDSL=$(HSTYLE)/docbook.dsl
17+
PDSL=$(PSTYLE)/docbook.dsl
18+
19+
#DBOPTS=-V %no-split-output% -V %no-make-index%
20+
21+
TAR= tar
22+
TAREXCLUDE= --exclude=Makefile --exclude='*.sgml'
23+
24+
# Pick up Makefile.custom from the source area
25+
# This is the only resource from the code source area and is optional
26+
27+
ifneq ($(wildcard$(SRCDIR)/Makefile.custom), )
28+
include$(SRCDIR)/Makefile.custom
29+
endif
30+
31+
TARGETS= postgres tutorial user admin programmer
32+
33+
HTARGETS=#make this a mapping from targets
34+
PTARGETS=#make this a mapping from targets
35+
36+
.PRECIOUS: postgres.html postgres.tex postgres.dvi
37+
.PHONY: sources clean
38+
39+
install::
40+
$(MAKE) all
41+
(mv -rf*.gz ..)
42+
43+
all::$(SGO)$(SGP)
44+
45+
sources::
46+
($(TAR) zcf sources.tar.gz --exclude='*.htm*' --exclude='*.gz' .)
47+
48+
user.tar.gz:
49+
$(MAKE) -C sgml clean
50+
$(MAKE) -C sgml user.html
51+
($(TAR) zcf$@$(TAREXCLUDE) -C sgml .)
52+
53+
tutorial.tar.gz:
54+
$(MAKE) -C sgml clean
55+
$(MAKE) -C sgml tutorial.html
56+
($(TAR) zcf$@$(TAREXCLUDE) -C sgml. -C .. -C graphics clientserver.gif)
57+
58+
clean::
59+
(rm -rf*.html*.htm)
60+
61+
distclean::
62+
$(MAKE) -C sgml clean
63+
64+
# Generic production rules
65+
66+
# Compressed file
67+
68+
%.gz:%
69+
(gzip -f $<)
70+
71+
# TAR file for HTML package
72+
73+
%.tar:%.html# %.ps
74+
(tar cf$@$*.html index.html*.htm*.gif)# $*.ps
75+
(rm -rf index.html*.htm)
76+
77+
#(mkdir $*)
78+
#(rm -rf $*/*)
79+
#(mv *.htm $*/)
80+
#(cd $*/; ln -sf book01.htm index.html)
81+
#(tar cf $@ $*)
82+
83+
# HTML
84+
# Include some softlinks to the generic default file names
85+
86+
%.html:%.sgml$(HDSL)
87+
(rm -rf*.htm)
88+
jade$(DBOPTS) -D sgml -d$(HDSL) -t sgml$<
89+
(ln -sf book01.htm index.html)
90+
(ln -sf book01.htm$*.html)
91+
92+
#(mkdir $(HPATH)/$*)# be sure there is somewhere to put them
93+
#(rm -rf $(HPATH)/$*/*)# remove existing files since some names may be obsolete
94+
#(mv *.htm $(HPATH)/$*/)# and copy 'em over
95+
#(cd $(HPATH)/$*/; ln -sf book01.htm index.html)
96+
97+
# RTF to allow minor editing for hardcopy
98+
# This is used for v6.3 docs
99+
100+
%.rtf:%.sgml$(PDSL)
101+
jade$(DBOPTS) -d$(PDSL) -t rtf$<
102+
103+
# TeX and DVI
104+
105+
%.tex:%.sgml$(PDSL)
106+
jade$(DBOPTS) -d$(PDSL) -t tex$<
107+
108+
%.dvi:%.tex
109+
jadetex$<
110+
jadetex$<
111+
112+
# Postscript from TeX
113+
114+
%.ps:%.dvi
115+
dvips -o$@$<
116+
117+
# Graphics
118+
119+
%.gif:
120+
cp -p graphics/%.gif.

‎doc/src/sgml/admin.sgml‎

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<!-- admin.sgml
2+
-
3+
- Postgres administrator's guide.
4+
- Derived from postgres.sgml.
5+
- thomas 1998-02-27
6+
-
7+
- -->
8+
<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
9+
<!entity intro SYSTEM "intro.sgml">
10+
11+
<!entity install SYSTEM "install.sgml">
12+
<!entity ports SYSTEM "ports.sgml">
13+
<!entity recovery SYSTEM "recovery.sgml">
14+
<!entity regress SYSTEM "regress.sgml">
15+
<!entity release SYSTEM "release.sgml">
16+
<!entity start-ag SYSTEM "start-ag.sgml">
17+
18+
<!entity biblio SYSTEM "biblio.sgml">
19+
]>
20+
<!-- entity manpages SYSTEM "man/manpages.sgml" subdoc -->
21+
<Book>
22+
23+
<!-- Title information -->
24+
25+
<Title>PostgreSQL Administrator's Guide</Title>
26+
<BookInfo>
27+
<ReleaseInfo>Covering v6.3 for general release</ReleaseInfo>
28+
<BookBiblio>
29+
<AuthorGroup>
30+
<CorpAuthor>The PostgreSQL Development Team</CorpAuthor>
31+
</AuthorGroup>
32+
<!-- editor in authorgroup is not supported
33+
<AuthorGroup>
34+
-->
35+
<Editor>
36+
<FirstName>Thomas</FirstName>
37+
<SurName>Lockhart</SurName>
38+
<Affiliation>
39+
<OrgName>Caltech/JPL</OrgName>
40+
</Affiliation>
41+
</Editor>
42+
<!--
43+
</AuthorGroup>
44+
-->
45+
46+
<!--
47+
<AuthorInitials>TGL</AuthorInitials>
48+
-->
49+
50+
<Date>(last updated 1998-02-23)</Date>
51+
</BookBiblio>
52+
53+
<LegalNotice>
54+
<Para>
55+
<ProductName>PostgreSQL</ProductName> is copyright (C) 1998 by the Postgres Global Development Group.
56+
</Para>
57+
</LegalNotice>
58+
59+
</BookInfo>
60+
61+
<!--
62+
<TOC> </TOC>
63+
<LOT> </LOT>
64+
-->
65+
66+
<!--
67+
<Dedication>
68+
<Para>
69+
Your name here...
70+
</Para>
71+
</Dedication>
72+
-->
73+
74+
<Preface>
75+
<Title>Summary</Title>
76+
77+
<Para>
78+
<ProductName>Postgres</ProductName>,
79+
developed originally in the UC Berkeley Computer Science Department,
80+
pioneered many of the object-relational concepts
81+
now becoming available in some commercial databases.
82+
It provides SQL92/SQL3 language support,
83+
transaction integrity, and type extensibility.
84+
<ProductName>PostgreSQL</ProductName> is a public-domain, open source descendant
85+
of this original Berkeley code.
86+
</Para>
87+
</Preface>
88+
89+
&intro;
90+
91+
&ports;
92+
&install;
93+
&start-ag;
94+
&recovery;
95+
&regress;
96+
&release;
97+
98+
&biblio;
99+
100+
<INDEX> </INDEX>
101+
102+
</Book>
103+

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp