~ubuntu-branches/ubuntu/precise/graphviz/precise-updates

« back to all changes in this revision

Viewing changes to rtest/graphs/rootlabel.dot

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-02-08 02:06:56 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080208020656-a3cbewe5ly6dpj0s
Tags: 2.16-3ubuntu1
* Merge with Debian; remaining changes:
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev.
  - Build-depend on liblua50-dev instead of liblua5.1-0-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
digraph G {
 
2
  label = "label demo";
 
3
  subgraph cluster0 {
 
4
    a;
 
5
    b;
 
6
    a->b;
 
7
    label = "cluster0";
 
8
    labelloc="bottom"
 
9
  }
 
10
  subgraph cluster1 {
 
11
    c;
 
12
    d;
 
13
    c->d;
 
14
    label = "cluster1";
 
15
    labelloc="top"
 
16
  }
 
17
}