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

« back to all changes in this revision

Viewing changes to rtest/graphs/b56.dot

  • 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
 
        graph [
3
 
                concentrate="true" /* Edges are merged and have common endpoints*/
4
 
                charset=latin1
5
 
                fontsize = "14"
6
 
                fontname = "Helvetica"
7
 
                fontcolor = "black"
8
 
                color = "black"
9
 
                rankdir="LR"
10
 
                ratio="compress"
11
 
        ]
12
 
        
13
 
        node [
14
 
                fontsize = "14"
15
 
                fontname = "Helvetica"
16
 
                fontcolor = "black"
17
 
                shape = "plaintext"
18
 
                color = "black"
19
 
                
20
 
        ]
21
 
        edge [
22
 
                fontsize = "14"
23
 
                fontname = "Times-Roman"
24
 
                fontcolor = "black"
25
 
                color = "black"
26
 
                
27
 
                
28
 
                
29
 
        ]
30
 
        
31
 
        
32
 
        
33
 
        
34
 
        /*generation*/
35
 
        Torwaechter [label="Torw�chter"];
36
 
        Torschluessel [label="Torschl�ssel"]; /* tests the �*/
37
 
        Schluesseloel [label="Schluessel�l"]; /* tests the �*/
38
 
        Schluesseltraeger [label="Schlue�eltr�ger"]; /*tests the �*/
39
 
        Tor -> Schlosstor ;
40
 
        Tor -> Torfenster;
41
 
        Tor -> Torschluessel ;
42
 
        Tor -> Torwaechter;
43
 
        Torschluessel -> Schluesselbund;
44
 
        Torschluessel -> Schluesseltraeger;
45
 
        Torschluessel -> Schluesseloel;
46
 
        Torwaechter -> Torwaechterhaeuschen;
47
 
        
48
 
        
49
 
        /*Derivation with plaintext*/
50
 
        Prefix[label="ge\nPr�fix"];
51
 
        Stem[label="legen\nStamm"];
52
 
        Suffix[label="heit\nSuffix"];
53
 
        Prefix->Wort[style="invis"];
54
 
        Stem->Wort;
55
 
        Suffix->Wort[style="invis"];
56
 
        Dieb -> Wort;
57
 
        
58
 
        
59
 
        /* mit records und node ports*/
60
 
        creation[shape="record",label="<f0>ge\nPr�fix|<f1>legen\nStamm|<f2>heit\nSuffix", style="invis"]
61
 
        creation1[shape="record",label="<f0>ge\nPr�fix|<f1>Dieb\nStamm|<f2>heit\nSuffix", style="invis"]
62
 
        "creation":f1 -> Fragewort
63
 
        "creation1":f1 ->Fragewort
64
 
        
65
 
}