1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-30 06:01:21 +03:00

Add User's Guide chapters on Data Definition and Data Manipulation.

Still needs to be filled with more information, but it gives us a
framework to have a User's Guide with complete coverage of the basic
SQL operations.  Move arrays into data type chapter, inheritance into
DDL chapter (for now).

Make <comment>s show up in the output while the version number ends in
"devel".

Allow cross-book references with entities &cite-user; etc.
This commit is contained in:
Peter Eisentraut
2002-08-05 19:43:31 +00:00
parent 15fe086fba
commit 6f4a9fb119
11 changed files with 67 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.20 2002/06/01 20:56:00 petere Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.21 2002/08/05 19:43:31 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,8 @@
<!-- (applicable to all output formats) -->
(define draft-mode #f)
(define pgsql-docs-list "pgsql-docs@postgresql.org")
;; Don't show manpage volume numbers
@@ -37,9 +39,8 @@
;; it needs extra work.)
(define %callout-graphics% #f)
;; Don't show comments. (We ought to show them, at least during the
;; development stage.)
(define %show-comments% #f)
;; Show comments during the development stage.
(define %show-comments% draft-mode)
;; Don't append period if run-in title ends with any of these
;; characters. We had to add the colon here. This is fixed in
@@ -57,6 +58,7 @@
(element structname ($mono-seq$))
(element symbol ($mono-seq$))
(element type ($mono-seq$))
(element (programlisting emphasis) ($bold-seq$)) ;; to highlight sections of code
;; Indentation of verbatim environments
(define %indent-programlisting-lines% " ")