~ubuntu-branches/ubuntu/utopic/python-chaco/utopic

« back to all changes in this revision

Viewing changes to examples/tutorials/tutorials.cfg

  • Committer: Package Import Robot
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2014-06-01 17:04:08 UTC
  • mfrom: (7.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20140601170408-m86xvdjd83a4qon0
Tags: 4.4.1-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
 - Let the binary-predeb target work on the usr/lib/python* directory
   as we don't have usr/share/pyshared anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[global]
2
 
# A common option for all of the examples
3
 
destdir = Chaco
4
 
 
5
 
# The syntax for examples is:
6
 
# [Example Name]
7
 
# files = filespec
8
 
# destdir = dirspec  (optional)
9
 
#
10
 
# **filespec** is a name, a glob, or a comma-separated list of names/globs.
11
 
# The files will be stored in the archive with their relative paths intact.
12
 
#
13
 
# **destdir** is the directory to install all the files into.  This should be
14
 
# a relative path, and the installer/unpacker on the destination machine
15
 
# can determine what the absolute path should be.
16
 
#
17
 
# Each section can be either a single examples or a container/directory
18
 
# of additional, nested examples.
19
 
 
20
 
[SciPy 2008]
21
 
sourcedir = scipy2008
22
 
 
23
 
    [[Basic line plot]]
24
 
    files = first_plot.py
25
 
 
26
 
    [[Basic scatter plot]]
27
 
    files = scatter.py
28
 
 
29
 
    [[Basic image plot]]
30
 
    files = image.py
31
 
 
32
 
    [[Image plot with origin trait]]
33
 
    files = traits_image.py
34
 
 
35
 
    [[Configuring plot options with Traits]]
36
 
    files = traits.py
37
 
 
38
 
    [[Overlapping plots]]
39
 
    files = overlapping.py
40
 
 
41
 
    [[Multiple data sets]]
42
 
    files = data_chooser.py
43
 
 
44
 
    [[Chaco Pan & Zoom tools]]
45
 
    files = tools.py
46
 
 
47
 
    [[Configuring Chaco tool choices]]
48
 
    files = tool_chooser.py
49
 
 
50
 
    [[Linked plots]]
51
 
    sourcedir = ''
52
 
        [[[Basic]]]
53
 
        files = connected_range.py
54
 
 
55
 
        [[[With different orientations]]]
56
 
        files = connected_orientation.py
57
 
 
58
 
        [[[Linked plots on tabs]]]
59
 
        files = ploteditor.py
60
 
 
61
 
    [[Plot Containers]]
62
 
    sourcedir = ''
63
 
 
64
 
        [[[Horizontal]]]
65
 
        files = container.py
66
 
 
67
 
        [[[Vertical]]]
68
 
        files = container_vertical.py
69
 
 
70
 
        [[[No spacing]]]
71
 
        files = container_nospace.py
72
 
 
73
 
    [[Custom overlays]]
74
 
    sourcedir = ''
75
 
 
76
 
        [[[Basic]]]
77
 
        files = custom_overlay.py
78
 
 
79
 
        [[[Mapped in dataspace]]]
80
 
        files = custom_overlay_dataspace.py
81
 
 
82
 
        [[[With right-click move tool]]]
83
 
        files = custom_overlay_movetool.py
84
 
 
85
 
    [[Custom tools]]
86
 
    sourcedir = ''
87
 
 
88
 
        [[[Mouse click event]]]
89
 
        files = custom_tool_click.py
90
 
 
91
 
        [[[Mouse move event]]]
92
 
        files = custom_tool_screen.py
93
 
 
94
 
        [[[Mouse click and move events]]]
95
 
        files = custom_tool.py
96
 
 
97
 
[Tutorial 1]
98
 
    files = tutorial1.py
99
 
 
100
 
[Tutorial 2]
101
 
files = tutorial2.py
102
 
 
103
 
[Tutorial 2 IPython]
104
 
files = tutorial2_ipython.py
105
 
 
106
 
[Tutorial 3]
107
 
files = tutorial3.py
108
 
 
109
 
[Tutorial 4]
110
 
files = tutorial4.py
111
 
 
112
 
[Tutorial 5]
113
 
files = tutorial5.py
114
 
 
115
 
[Tutorial 6]
116
 
files = tutorial6.py
117
 
 
118
 
[Tutorial 7]
119
 
files = tutorial7.py
120
 
 
121
 
[Tutorial 8]
122
 
files = tutorial8.py
123
 
 
124
 
[Tutorial 9]
125
 
files = tutorial9.py
126
 
 
127
 
[Tutorial 9b]
128
 
files = tutorial9b.py
129
 
 
130
 
[Tutorial 10]
131
 
files = tutorial10.py
132
 
 
133
 
[Tutorial 10b]
134
 
files = tutorial10b.py
135
 
 
136
 
[Tutorial 11]
137
 
files = tutorial11.py
138
 
 
139