From: erg Date: Tue, 14 Mar 2006 18:44:47 +0000 (+0000) Subject: Update info files X-Git-Tag: LAST_LIBGRAPH~32^2~6753 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=187bb5a8d95882dc4848880e8d5d05145f1bf2b2;p=graphviz Update info files --- diff --git a/doc/info/output.html b/doc/info/output.html index ad0977cee..0c45f3c70 100644 --- a/doc/info/output.html +++ b/doc/info/output.html @@ -216,34 +216,28 @@ formats need to be interpreted in this manner. given the dot file
   /* x.dot */
-  digraph G {
+  digraph mainmap {
     URL="http://www.research.att.com/base.html";
     command [URL="http://www.research.att.com/command.html"];
     command -> output [URL="colors.html"];
   }
   
- one would process the graph twice: + one would process the graph and generate two output files:
-  dot -Timap x.dot > x.map
-  dot -Tgif x.dot > x.gif
+  dot -Timap -ox.map -Tgif -ox.gif x.dot
   
and then refer to it in a web page: - <A HREF="x.map"> - <IMG SRC="x.gif" ISMAP> - </A> + <A HREF="x.map"><IMG SRC="x.gif" ismap="ismap" /></A> - For client-side maps, one again processes the graph twice: + For client-side maps, one again generates two output files:
-  dot -Tcmapx x.dot > x.map
-  dot -Tgif x.dot > x.gif
+  dot -Tcmapx -ox.map -Tgif -ox.gif x.dot
   
and uses the HTML - <IMG SRC="x.gif" USEMAP=#mainmap> - <MAP NAME="mainmap"> - ... [content of x.map] ... - </MAP> + <IMG SRC="x.gif" USEMAP="#mainmap" /> + ... [content of x.map] ... URLs can be attached to the root graph, nodes and edges. If a node has a URL, clicking in the node @@ -357,7 +351,7 @@ formats need to be interpreted in this manner.