From: Peter Eisentraut Date: Sun, 30 Sep 2001 16:05:54 +0000 (+0000) Subject: Use instead of for forward compatibility. Be more X-Git-Tag: REL7_2_BETA1~269 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14d330b5b6063cadcb3291cd71606b9e1922c506;p=postgresql Use instead of for forward compatibility. Be more flexible about the extension of the graphic files, allow for other formats in print output. (Generating these formats is not implemented yet.) --- diff --git a/doc/src/sgml/arch-pg.sgml b/doc/src/sgml/arch-pg.sgml index b2f2b962db..3c5e44098b 100644 --- a/doc/src/sgml/arch-pg.sgml +++ b/doc/src/sgml/arch-pg.sgml @@ -43,10 +43,15 @@ which in turn starts a new backend server process ((b)) -
-How a connection is established - -
+
+ How a connection is established + + + + + + +
and connects the frontend process to the new server ((c)). diff --git a/doc/src/sgml/extend.sgml b/doc/src/sgml/extend.sgml index d448237962..58453bc5ec 100644 --- a/doc/src/sgml/extend.sgml +++ b/doc/src/sgml/extend.sgml @@ -1,5 +1,5 @@ @@ -191,7 +191,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.12 2001/09/13 15:55:22 pete
The major <productname>Postgres</productname> system catalogs - + + + + +
The Reference Manual gives a more detailed explanation diff --git a/doc/src/sgml/stylesheet.dsl b/doc/src/sgml/stylesheet.dsl index d3fa0ba20d..db655f47df 100644 --- a/doc/src/sgml/stylesheet.dsl +++ b/doc/src/sgml/stylesheet.dsl @@ -1,4 +1,4 @@ - + @@ -48,6 +48,7 @@ (define %link-mailto-url% (string-append "mailto:" pgsql-docs-list)) (define %use-id-as-filename% #t) (define %stylesheet% "stylesheet.css") +(define %graphic-default-extension% "gif") ;; Returns the depth of auto TOC that should be made at the nd-level (define (toc-depth nd) @@ -116,6 +117,10 @@ (define %hyphenation% (if tex-backend #t #f)) +(define %graphic-default-extension% + (cond (tex-backend "eps") + (rtf-backend "ai"))) ;; ApplixWare? + ]]>