~ubuntu-branches/ubuntu/trusty/dot2tex/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/testgraphs/parsetests/multilines.dot

  • Committer: Bazaar Package Importer
  • Author(s): Peter Collingbourne, Peter Collingbourne, Piotr Ożarowski
  • Date: 2008-06-12 14:04:56 UTC
  • mfrom: (1.2.1 upstream) (4.1.4 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080612140456-d3g7i81ln1jn71oj
Tags: 2.8.2-1
[ Peter Collingbourne ]
* New upstream release
* debian/patches/01-shebang.patch: removed, applied upstream
* debian/rules: simple-patchsys removed, no longer required
* debian/control
  - updated Standards-Version
  - removed references to tetex
  - removed unnecessary ~ in python version number

[ Piotr Ożarowski ]
* Added DM-Upload-Allowed: yes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Test line joining and multiline stuff*/
 
2
digraph G {
 
3
        a [label="partA"+"partB"];
 
4
        b [label="Line1\
 
5
line2\
 
6
line3"];
 
7
        d [label="Test",
 
8
                color=red,
 
9
                style=filled];
 
10
e [shape = record,label="\n\nDecl|{name|access|decl_flags|extern_c_linkage}"];
 
11
f [label="Line1\lLine2\rLine3\nLine4",width=2];
 
12
        a -> b -> c -> d -> e -> f;
 
13
}
 
 
b'\\ No newline at end of file'