Differences between revisions 1 and 9 (spanning 8 versions)
Revision 1 as of 2006-12-18 18:02:19
Size: 380
Editor: mpm
Comment:
Revision 9 as of 2010-11-04 09:01:50
Size: 1911
Editor: abuehl
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma section-numbers 2
= Drawing Graphs =

How to add graphs to this wiki.

<<TableOfContents>>

== Drawing revision graphs ==
Line 15: Line 24:
{{{#!dot { { {#!dot
Line 22: Line 31:
} } }
Line 23: Line 33:

For consistency, use {{{[shape=box]}}} for Mercurial revisions, {{{[shape=ellipse]}}} for the working directory, and {{{rankdir=LR}}} (left-to-right) or {{{rankdir=BT}}} (bottom-to-top) for revision graphs.

== Drawing flowcharts ==

To draw a flowchart like this:

{{{#!dot
digraph G {
  {node[shape=box] push pull merge}
  {node[shape=diamond] succeed}

  push [label="try to push"]
  succeed [label="did push succeed?"]
  pull [label="pull unsynced changes"]
  merge [label="merge"]

  start -> push -> succeed
  pull -> merge -> push:n
  succeed:e -> pull [label=n]
  succeed:s -> done [label=y]
}
Line 24: Line 56:

Use:

{{{
{ { {#!dot
digraph G {
  {node[shape=box] push pull merge}
  {node[shape=diamond] succeed}

  push [label="try to push"]
  succeed [label="did push succeed?"]
  pull [label="pull unsynced changes"]
  merge [label="merge"]

  start -> push -> succeed
  pull -> merge -> push:n
  succeed:e -> pull [label=n]
  succeed:s -> done [label=y]
}
} } }
}}}

Note the use of compass points to control edge start and end points.

== See also ==

 * [[http://www.graphviz.org/doc/info/attrs.html|Graphviz documentation]] for additional attributes
 * UnderstandingMercurial and ConcatenatingChangesets for examples on this wiki
 * [[http://www.graphviz.org/Gallery.php|"Graphviz Gallery"]] for more examples

----
CategoryWiki

Drawing Graphs

How to add graphs to this wiki.

1. Drawing revision graphs

The Mercurial wiki allows easily adding graph diagrams to pages. To draw a graph like this:

add a section like this:

{ { {#!dot
    digraph G {
      rankdir=LR
      node [shape=box]
      a -> b -> c -> d -> e
      d->f
    }
} } }

For consistency, use [shape=box] for Mercurial revisions, [shape=ellipse] for the working directory, and rankdir=LR (left-to-right) or rankdir=BT (bottom-to-top) for revision graphs.

2. Drawing flowcharts

To draw a flowchart like this:

Use:

{ { {#!dot
digraph G {
  {node[shape=box] push pull merge}
  {node[shape=diamond] succeed}

  push [label="try to push"]
  succeed [label="did push succeed?"]
  pull [label="pull unsynced changes"]
  merge [label="merge"]

  start -> push -> succeed
  pull -> merge -> push:n
  succeed:e -> pull [label=n]
  succeed:s -> done [label=y]
}
} } }

Note the use of compass points to control edge start and end points.

3. See also


CategoryWiki

DrawingGraphs (last edited 2015-10-20 14:56:52 by Rain)