~ubuntu-branches/ubuntu/precise/graphviz/precise-security

« back to all changes in this revision

Viewing changes to rtest/graphs/labelroot-ftr.gv

  • Committer: Bazaar Package Importer
  • Author(s): David Claughton
  • Date: 2010-03-24 22:45:18 UTC
  • mfrom: (1.2.7 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100324224518-do441tthbqjaqjzd
Tags: 2.26.3-4
Add patch to fix segfault in circo. Backported from upstream snapshot
release.  Thanks to Francis Russell for his work on this.
(Closes: #575255)

Show diffs side-by-side

added added

removed removed

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