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
184c4afc
Commit
184c4afc
authored
23 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Some formatting changes, add CSS stylesheet. Include indexes in
documentation tarball builds.
parent
c1fbf066
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/src/Makefile
+9
-5
9 additions, 5 deletions
doc/src/Makefile
doc/src/sgml/stylesheet.css
+58
-0
58 additions, 0 deletions
doc/src/sgml/stylesheet.css
doc/src/sgml/stylesheet.dsl
+9
-1
9 additions, 1 deletion
doc/src/sgml/stylesheet.dsl
with
76 additions
and
6 deletions
doc/src/Makefile
+
9
−
5
View file @
184c4afc
# Postgres documentation makefile
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.
19
2001/0
8/29 19:14:39
petere Exp $
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.
20
2001/0
9/14 20:37:54
petere Exp $
subdir
=
doc/src
top_builddir
=
../..
...
...
@@ -38,25 +38,29 @@ sources.tar:
admin.tar developer.tar reference.tar user.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml
$(
basename
$@
)
.html
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
$(
MAKE
)
-C
sgml
$(
basename
$@
)
.html
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
*
.css
programmer.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml programmer.html
$(
MAKE
)
-C
sgml programmer.html
abssrcdir
=
`
cd
$(
srcdir
)
&&
pwd
`
;
\
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
-C
$$
abssrcdir/graphics catalogs.gif connections.gif
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
*
.css
-C
$$
abssrcdir/graphics catalogs.gif connections.gif
tutorial.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml tutorial.html
$(
MAKE
)
-C
sgml tutorial.html
abssrcdir
=
`
cd
$(
srcdir
)
&&
pwd
`
;
\
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
-C
$$
abssrcdir/graphics clientserver.gif
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
*
.css
-C
$$
abssrcdir/graphics clientserver.gif
postgres.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml postgres.html
$(
MAKE
)
-C
sgml postgres.html
abssrcdir
=
`
cd
$(
srcdir
)
&&
pwd
`
;
\
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
-C
$$
abssrcdir/graphics catalogs.gif clientserver.gif connections.gif
cd
sgml
&&
$(
TAR
)
-cf
../
$@
$(
TAREXCLUDE
)
*
.html
*
.css
-C
$$
abssrcdir/graphics catalogs.gif clientserver.gif connections.gif
man.tar
:
$(
MAKE
)
-C
sgml man
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/stylesheet.css
0 → 100644
+
58
−
0
View file @
184c4afc
/* $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.css,v 1.1 2001/09/14 20:37:55 petere Exp $ */
/* color scheme similar to www.postgresql.org */
BODY
{
color
:
#000000
;
background
:
#FFFFFF
;
}
A
:link
{
color
:
#000066
;
}
A
:visited
{
color
:
#000099
;
}
A
:active
{
color
:
#FF0000
;
}
/* center titles */
BODY
.book
H1
.title
,
BODY
.set
H1
.title
{
text-align
:
center
;
font-size
:
250%
;
font-family
:
sans-serif
;
color
:
#020167
;
}
BODY
.book
H3
.corpauthor
,
BODY
.set
H3
.corpauthor
{
text-align
:
center
;
font-style
:
italic
;
font-weight
:
normal
;
}
BODY
.book
.copyright
,
BODY
.set
.copyright
{
text-align
:
center
;
}
/* decoration for formal examples */
DIV
.example
{
padding-left
:
15px
;
border-style
:
solid
;
border-width
:
0px
;
border-left-width
:
2px
;
border-color
:
black
;
}
/* less dense spacing of TOC */
.set
.toc
DL
DT
,
.book
.toc
DL
DT
{
padding-top
:
1.5ex
;
padding-bottom
:
1.5ex
;
}
.set
.toc
DL
DL
DT
,
.book
.toc
DL
DL
DT
{
padding-top
:
0ex
;
padding-bottom
:
0ex
;
}
/* miscellaneous */
.navheader
TH
{
font-style
:
italic
;
}
.comment
{
color
:
red
;
}
This diff is collapsed.
Click to expand it.
doc/src/sgml/stylesheet.dsl
+
9
−
1
View file @
184c4afc
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.
8
2001/0
5
/1
2
2
2:51:3
5 petere Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.
9
2001/0
9
/1
4
2
0:37:5
5 petere Exp $ -->
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!-- must turn on one of these with -i on the jade command line -->
...
...
@@ -28,6 +28,7 @@
(define %refentry-xref-manvolnum% #f)
(define %callout-graphics% #f)
(define %show-comments% #f)
(define %content-title-end-punct%
'(#\. #\! #\? #\:))
...
...
@@ -45,6 +46,7 @@
(define %html-ext% ".html")
(define %link-mailto-url% (string-append "mailto:" pgsql-docs-list))
(define %use-id-as-filename% #t)
(define %stylesheet% "stylesheet.css")
;; Returns the depth of auto TOC that should be made at the nd-level
(define (toc-depth nd)
...
...
@@ -54,6 +56,12 @@
((string=? (gi nd) (normalize "chapter")) 2)
(else 1)))
;; Put a horizontal line in the set TOC
(define (set-titlepage-separator side)
(if (equal? side 'recto)
(make empty-element gi: "HR")
(empty-sosofo)))
;; Put date of creation into header
(define %html-header-tags%
(list (list "META" '("NAME" "creation") (list "CONTENT" (time->string (time) #t)))))
...
...
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