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

Commit01839df

Browse files
committed
Add index. Only some parts of the manual set have index entries so far...
1 parenteedb7d1 commit01839df

29 files changed

+926
-66
lines changed

‎doc/src/sgml/Makefile

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
#
1010
# IDENTIFICATION
11-
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.36 2001/04/20 15:52:33 thomas Exp $
11+
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.37 2001/05/12 22:51:34 petere Exp $
1212
#
1313
#----------------------------------------------------------------------------
1414

@@ -49,16 +49,9 @@ vpath %.sgml ./ref
4949

5050
ALLBOOKS = admin developer programmer reference tutorial user
5151

52-
ALLSGML :=$(wildcard$(srcdir)/*.sgml$(srcdir)/ref/*.sgml)
52+
ALLSGML :=$(wildcard$(srcdir)/*.sgml$(srcdir)/ref/*.sgml) bookindex.sgml setindex.sgml
5353

54-
55-
catalog: Makefile$(top_builddir)/src/Makefile.global
56-
(echo"PUBLIC\"-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN\"\"$(DOCBOOKSTYLE)/html/docbook.dsl\""; \
57-
echo"PUBLIC\"-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN\"\"$(DOCBOOKSTYLE)/print/docbook.dsl\"")>$@
58-
59-
ifeq "$(originDOCBOOKSTYLE)" "command line"
60-
.PHONY: catalog
61-
endif
54+
CATALOG =$(DOCBOOKSTYLE)/catalog
6255

6356

6457
##
@@ -84,30 +77,44 @@ man: $(ALLSGML)
8477
## HTML
8578
##
8679

87-
JADE.html =$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -d stylesheet.dsl -i output-html -t sgml
80+
JADE.html =$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -c$(CATALOG) -d stylesheet.dsl -i output-html -t sgml
8881

89-
postgres.html: postgres.sgml$(ALLSGML) stylesheet.dsl catalog
82+
postgres.html: postgres.sgml$(ALLSGML) stylesheet.dsl
9083
@rm -f*.html
9184
$(JADE.html)$<
9285
ln -sf$@ index.html
9386

94-
$(addsuffix .html,$(ALLBOOKS)):%.html:%.sgml$(ALLSGML) stylesheet.dsl catalog
87+
$(addsuffix .html,$(ALLBOOKS)):%.html:%.sgml$(ALLSGML) stylesheet.dsl
9588
@rm -f*.html
9689
$(JADE.html) book-decl.sgml$<
9790
ln -sf$@ index.html
9891

92+
COLLATEINDEX =$(PERL)$(DOCBOOKSTYLE)/bin/collateindex.pl -f -g -t 'Index'
93+
94+
ifeq (,$(wildcard HTML.index))
95+
bookindex.sgml:
96+
$(COLLATEINDEX) -o$@ -N
97+
setindex.sgml:
98+
$(COLLATEINDEX) -x -o$@ -N
99+
else
100+
bookindex.sgml: HTML.index
101+
$(COLLATEINDEX) -i'bookindex' -o$@$<
102+
setindex.sgml: HTML.index
103+
$(COLLATEINDEX) -i'setindex' -x -o$@$<
104+
endif
105+
99106

100107
##
101108
## Print
102109
##
103110

104111
# RTF to allow minor editing for hardcopy
105-
$(addsuffix .rtf,$(ALLBOOKS)):%.rtf:%.sgml$(ALLSGML) stylesheet.dsl catalog
106-
$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -d stylesheet.dsl -t rtf -V rtf-backend -i output-print book-decl.sgml$<
112+
$(addsuffix .rtf,$(ALLBOOKS)):%.rtf:%.sgml$(ALLSGML) stylesheet.dsl
113+
$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -c$(CATALOG) -d stylesheet.dsl -t rtf -V rtf-backend -i output-print book-decl.sgml$<
107114

108115
# TeX and DVI
109-
$(addsuffix .tex,$(ALLBOOKS)):%.tex:%.sgml$(ALLSGML) stylesheet.dsl catalog
110-
$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -d stylesheet.dsl -t tex -V tex-backend -i output-print book-decl.sgml$<
116+
$(addsuffix .tex,$(ALLBOOKS)):%.tex:%.sgml$(ALLSGML) stylesheet.dsl
117+
$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -c$(CATALOG) -d stylesheet.dsl -t tex -V tex-backend -i output-print book-decl.sgml$<
111118

112119
%.dvi:%.tex
113120
jadetex$<
@@ -134,7 +141,7 @@ $(addsuffix .tex, $(ALLBOOKS)): %.tex: %.sgml $(ALLSGML) stylesheet.dsl catalog
134141
## Semi-automatic generation of some text files.
135142
##
136143

137-
JADE.text =$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -d stylesheet.dsl -i output-text -t sgml
144+
JADE.text =$(JADE)$(JADEFLAGS)$(SGMLINCLUDE) -c$(CATALOG) -d stylesheet.dsl -i output-text -t sgml
138145

139146
INSTALLHISTORY:% :%.html
140147
@echo"|";\
@@ -171,10 +178,11 @@ check-postgres: postgres.sgml
171178
##
172179

173180
cleandistcleanmaintainer-clean:
174-
rm -f catalog
175181
# HTML
176182
rm -f HTML.manifest *.html
177183
# man
178184
rm -rf *.1 *.$(DEFAULTSECTION) man1 man$(DEFAULTSECTION) manpage.refs manpage.links manpage.log
179185
# print
180186
rm -f *.rtf *.tex *.dvi *.aux *.log *.ps *.pdf
187+
# index
188+
rm -f HTML.index bookindex.sgml setindex.sgml

‎doc/src/sgml/admin.sgml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.33 2001/02/04 15:28:18 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.34 2001/05/12 22:51:34 petere Exp $
33
-->
44

55
<book id="admin">
@@ -38,6 +38,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.33 2001/02/04 15:28:18
3838

3939
<![%single-book;[
4040
&biblio;
41+
&bookindex;
4142
]]>
4243
</book>
4344

‎doc/src/sgml/array.sgml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/array.sgml,v 1.10 2001/01/26 23:40:39 petere Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/array.sgml,v 1.11 2001/05/12 22:51:34 petere Exp $ -->
22

33
<chapter id="arrays">
44
<title>Arrays</title>
55

6+
<indexterm>
7+
<primary>arrays</primary>
8+
</indexterm>
9+
610
<para>
711
<productname>Postgres</productname> allows columns of a table to be
812
defined as variable-length multi-dimensional arrays. Arrays of any

‎doc/src/sgml/client-auth.sgml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.10 2001/03/15 20:01:32 tgl Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.11 2001/05/12 22:51:34 petere Exp $ -->
22

33
<chapter id="client-authentication">
44
<title>Client Authentication</title>
55

6+
<indexterm zone="client-authentication">
7+
<primary>client authentication</primary>
8+
</indexterm>
9+
610
<para>
711
When a client application connects to the database server, it specifies which
812
<productname>Postgres</productname> user name it wants to connect as,
@@ -42,6 +46,10 @@
4246
<sect1 id="pg-hba.conf">
4347
<title>The <filename>pg_hba.conf</filename> file</title>
4448

49+
<indexterm zone="pg-hba.conf">
50+
<primary>pg_hba.conf</primary>
51+
</indexterm>
52+
4553
<para>
4654
Client authentication is controlled by the file
4755
<filename>pg_hba.conf</filename> in the $PGDATA directory, e.g.,
@@ -333,6 +341,11 @@ host all 192.168.0.0 255.255.0.0 ident omicron
333341

334342
<sect2>
335343
<title>Password authentication</title>
344+
345+
<indexterm>
346+
<primary>password</primary>
347+
</indexterm>
348+
336349
<para>
337350
<productname>Postgres</> database passwords are separate from any
338351
operating system user passwords. Ordinarily, the password for each
@@ -402,6 +415,10 @@ host all 192.168.0.0 255.255.0.0 ident omicron
402415
<sect2 id="kerberos-auth">
403416
<title>Kerberos authentication</title>
404417

418+
<indexterm zone="kerberos-auth">
419+
<primary>Kerberos</primary>
420+
</indexterm>
421+
405422
<para>
406423
<productname>Kerberos</productname> is an industry-standard secure
407424
authentication system suitable for distributed computing over a
@@ -505,6 +522,10 @@ host all 192.168.0.0 255.255.0.0 ident omicron
505522
<sect2>
506523
<title>Ident-based authentication</title>
507524

525+
<indexterm>
526+
<primary>ident</primary>
527+
</indexterm>
528+
508529
<para>
509530
The <quote>Identification Protocol</quote> is described in
510531
<citetitle>RFC 1413</citetitle>. Virtually every Unix-like
@@ -550,6 +571,7 @@ host all 192.168.0.0 255.255.0.0 ident omicron
550571
</para>
551572

552573
<para>
574+
<indexterm><primary>pg_ident.conf</primary></indexterm>
553575
Ident maps are held in the file <filename>pg_ident.conf</filename>
554576
in the data directory, which contains lines of the general form:
555577
<synopsis>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp