~ubuntu-branches/ubuntu/trusty/picviz/trusty

« back to all changes in this revision

Viewing changes to src/libpicviz/tests/bindings/python/test1.pcv

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Chifflier
  • Date: 2009-03-30 10:42:08 UTC
  • Revision ID: james.westby@ubuntu.com-20090330104208-j095obwkp574t1lm
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
header {
 
2
    title = "Test 1";
 
3
}
 
4
axes {
 
5
    timeline t [label="time"];
 
6
    char     i;
 
7
    string   a;
 
8
}
 
9
data {
 
10
   t="14:42", i="123", s="foobar" [color="red"];
 
11
   t="14:45", i="234", s="abcdef";
 
12
}
 
13