Skip to content
Snippets Groups Projects
Commit 14d330b5 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Use <mediaobject> instead of <graphic> 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.)
parent b600319c
No related branches found
No related tags found
No related merge requests found
...@@ -43,10 +43,15 @@ ...@@ -43,10 +43,15 @@
which in turn starts a new backend server process which in turn starts a new backend server process
(<XRef LinkEnd="PGARCH-CONNECTIONS">(b)) (<XRef LinkEnd="PGARCH-CONNECTIONS">(b))
<Figure Id="PGARCH-CONNECTIONS"> <figure id="PGARCH-CONNECTIONS">
<Title>How a connection is established</Title> <title>How a connection is established</title>
<Graphic Align="center" FileRef="connections.gif" Format="GIF"></Graphic>
</Figure> <mediaobject>
<imageobject>
<imagedata align="center" fileref="connections">
</imageobject>
</mediaobject>
</figure>
and connects the frontend process to the new server and connects the frontend process to the new server
(<XRef LinkEnd="PGARCH-CONNECTIONS">(c)). (<XRef LinkEnd="PGARCH-CONNECTIONS">(c)).
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.12 2001/09/13 15:55:22 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.13 2001/09/30 16:05:54 petere Exp $
--> -->
<chapter id="extend"> <chapter id="extend">
...@@ -191,7 +191,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.12 2001/09/13 15:55:22 pete ...@@ -191,7 +191,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.12 2001/09/13 15:55:22 pete
<para> <para>
<figure float="1" id="EXTEND-CATALOGS"> <figure float="1" id="EXTEND-CATALOGS">
<title>The major <productname>Postgres</productname> system catalogs</title> <title>The major <productname>Postgres</productname> system catalogs</title>
<graphic fileref="catalogs.gif" format="GIF" align="center"></graphic> <mediaobject>
<imageobject>
<imagedata fileref="catalogs" align="center">
</imageobject>
</mediaobject>
</figure> </figure>
The Reference Manual gives a more detailed explanation The Reference Manual gives a more detailed explanation
......
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.11 2001/09/18 12:08:27 petere Exp $ --> <!-- $Header: /cvsroot/pgsql/doc/src/sgml/stylesheet.dsl,v 1.12 2001/09/30 16:05:54 petere Exp $ -->
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [ <!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!-- must turn on one of these with -i on the jade command line --> <!-- must turn on one of these with -i on the jade command line -->
...@@ -48,6 +48,7 @@ ...@@ -48,6 +48,7 @@
(define %link-mailto-url% (string-append "mailto:" pgsql-docs-list)) (define %link-mailto-url% (string-append "mailto:" pgsql-docs-list))
(define %use-id-as-filename% #t) (define %use-id-as-filename% #t)
(define %stylesheet% "stylesheet.css") (define %stylesheet% "stylesheet.css")
(define %graphic-default-extension% "gif")
;; Returns the depth of auto TOC that should be made at the nd-level ;; Returns the depth of auto TOC that should be made at the nd-level
(define (toc-depth nd) (define (toc-depth nd)
...@@ -116,6 +117,10 @@ ...@@ -116,6 +117,10 @@
(define %hyphenation% (define %hyphenation%
(if tex-backend #t #f)) (if tex-backend #t #f))
(define %graphic-default-extension%
(cond (tex-backend "eps")
(rtf-backend "ai"))) ;; ApplixWare?
]]> <!-- %output-print --> ]]> <!-- %output-print -->
<![ %output-text; [ <![ %output-text; [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment