ctioga2 0.3 → 0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Changelog +18 -0
- data/lib/ctioga2/commands/arguments.rb +17 -2
- data/lib/ctioga2/commands/commands.rb +13 -5
- data/lib/ctioga2/commands/context.rb +53 -0
- data/lib/ctioga2/commands/doc/doc.rb +1 -1
- data/lib/ctioga2/commands/doc/documentation-commands.rb +1 -1
- data/lib/ctioga2/commands/doc/help.rb +1 -1
- data/lib/ctioga2/commands/doc/html.rb +1 -1
- data/lib/ctioga2/commands/doc/introspection.rb +16 -1
- data/lib/ctioga2/commands/doc/man.rb +1 -1
- data/lib/ctioga2/commands/doc/markup.rb +1 -1
- data/lib/ctioga2/commands/doc/wordwrap.rb +1 -1
- data/lib/ctioga2/commands/general-commands.rb +1 -1
- data/lib/ctioga2/commands/general-types.rb +1 -1
- data/lib/ctioga2/commands/groups.rb +1 -1
- data/lib/ctioga2/commands/interpreter.rb +22 -1
- data/lib/ctioga2/commands/parsers/command-line.rb +8 -1
- data/lib/ctioga2/commands/parsers/file.rb +2 -1
- data/lib/ctioga2/commands/strings.rb +1 -1
- data/lib/ctioga2/commands/type.rb +1 -1
- data/lib/ctioga2/commands/variables.rb +1 -1
- data/lib/ctioga2/data/backends/backend.rb +1 -1
- data/lib/ctioga2/data/backends/backends/gnuplot.rb +1 -1
- data/lib/ctioga2/data/backends/backends/math.rb +1 -1
- data/lib/ctioga2/data/backends/backends/text.rb +12 -2
- data/lib/ctioga2/data/backends/description.rb +1 -1
- data/lib/ctioga2/data/backends/factory.rb +1 -1
- data/lib/ctioga2/data/backends/parameter.rb +1 -1
- data/lib/ctioga2/data/datacolumn.rb +1 -1
- data/lib/ctioga2/data/dataset.rb +1 -1
- data/lib/ctioga2/data/filters.rb +1 -1
- data/lib/ctioga2/data/indexed-dtable.rb +1 -1
- data/lib/ctioga2/data/point.rb +1 -1
- data/lib/ctioga2/data/stack.rb +6 -6
- data/lib/ctioga2/graphics/coordinates.rb +1 -1
- data/lib/ctioga2/graphics/elements.rb +1 -1
- data/lib/ctioga2/graphics/elements/containers.rb +1 -1
- data/lib/ctioga2/graphics/elements/contour.rb +1 -1
- data/lib/ctioga2/graphics/elements/curve2d.rb +1 -1
- data/lib/ctioga2/graphics/elements/element.rb +1 -1
- data/lib/ctioga2/graphics/elements/gradient-region.rb +1 -1
- data/lib/ctioga2/graphics/elements/parametric2d.rb +1 -1
- data/lib/ctioga2/graphics/elements/primitive.rb +115 -69
- data/lib/ctioga2/graphics/elements/region.rb +1 -1
- data/lib/ctioga2/graphics/elements/subplot.rb +9 -3
- data/lib/ctioga2/graphics/elements/tangent.rb +1 -1
- data/lib/ctioga2/graphics/elements/xyz-map.rb +1 -1
- data/lib/ctioga2/graphics/generator.rb +1 -1
- data/lib/ctioga2/graphics/legends.rb +5 -7
- data/lib/ctioga2/graphics/legends/area.rb +8 -8
- data/lib/ctioga2/graphics/legends/items.rb +2 -2
- data/lib/ctioga2/graphics/legends/provider.rb +1 -1
- data/lib/ctioga2/graphics/legends/storage.rb +1 -1
- data/lib/ctioga2/graphics/root.rb +1 -1
- data/lib/ctioga2/graphics/styles.rb +5 -0
- data/lib/ctioga2/graphics/styles/arrows.rb +53 -0
- data/lib/ctioga2/graphics/styles/axes.rb +29 -23
- data/lib/ctioga2/graphics/styles/background.rb +12 -10
- data/lib/ctioga2/graphics/styles/base.rb +99 -5
- data/lib/ctioga2/graphics/styles/box.rb +67 -0
- data/lib/ctioga2/graphics/styles/carrays.rb +1 -1
- data/lib/ctioga2/graphics/styles/colormap.rb +1 -1
- data/lib/ctioga2/graphics/styles/curve.rb +7 -1
- data/lib/ctioga2/graphics/styles/drawable.rb +24 -11
- data/lib/ctioga2/graphics/styles/errorbar.rb +1 -1
- data/lib/ctioga2/graphics/styles/factory.rb +1 -1
- data/lib/ctioga2/graphics/styles/gradients.rb +3 -3
- data/lib/ctioga2/graphics/styles/legend.rb +20 -5
- data/lib/ctioga2/graphics/styles/location.rb +3 -3
- data/lib/ctioga2/graphics/styles/map-axes.rb +6 -7
- data/lib/ctioga2/graphics/styles/plot.rb +51 -26
- data/lib/ctioga2/graphics/styles/sets.rb +1 -1
- data/lib/ctioga2/graphics/styles/sheet.rb +348 -0
- data/lib/ctioga2/graphics/styles/texts.rb +45 -64
- data/lib/ctioga2/graphics/subplot-commands.rb +1 -1
- data/lib/ctioga2/graphics/types.rb +1 -3
- data/lib/ctioga2/graphics/types/bijection.rb +1 -1
- data/lib/ctioga2/graphics/types/boundaries.rb +1 -1
- data/lib/ctioga2/graphics/types/boxes.rb +1 -1
- data/lib/ctioga2/graphics/types/dimensions.rb +2 -2
- data/lib/ctioga2/graphics/types/grid.rb +1 -1
- data/lib/ctioga2/graphics/types/location.rb +2 -2
- data/lib/ctioga2/graphics/types/point.rb +1 -1
- data/lib/ctioga2/log.rb +10 -6
- data/lib/ctioga2/metabuilder/type.rb +1 -1
- data/lib/ctioga2/metabuilder/types/coordinates.rb +1 -1
- data/lib/ctioga2/metabuilder/types/data.rb +1 -1
- data/lib/ctioga2/metabuilder/types/dates.rb +1 -1
- data/lib/ctioga2/metabuilder/types/lists.rb +1 -1
- data/lib/ctioga2/metabuilder/types/numbers.rb +1 -1
- data/lib/ctioga2/metabuilder/types/strings.rb +1 -1
- data/lib/ctioga2/metabuilder/types/styles.rb +30 -3
- data/lib/ctioga2/plotmaker.rb +1 -1
- data/lib/ctioga2/postprocess.rb +1 -1
- data/lib/ctioga2/utils.rb +78 -3
- metadata +6 -5
- data/lib/ctioga2/git-fools-svn.rb +0 -7
- data/lib/ctioga2/graphics/elements/redirecting-container.rb~ +0 -123
- data/lib/ctioga2/metabuilder/types/generic.rb~ +0 -225
@@ -25,7 +25,7 @@ require 'ctioga2/graphics/types/grid'
|
|
25
25
|
# This module contains all the classes used by ctioga
|
26
26
|
module CTioga2
|
27
27
|
|
28
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
28
|
+
Version::register_svn_info('$Revision: 344 $', '$Date: 2012-12-23 22:45:22 +0100 (Sun, 23 Dec 2012) $')
|
29
29
|
|
30
30
|
module Graphics
|
31
31
|
|
@@ -48,7 +48,6 @@ module CTioga2
|
|
48
48
|
|
49
49
|
ColorType = CmdType.new('color', {
|
50
50
|
:type => :tioga_color,
|
51
|
-
:namespace => Tioga::ColorConstants
|
52
51
|
}, <<EOD)
|
53
52
|
A color. It can take three forms:
|
54
53
|
* a named color, see
|
@@ -61,7 +60,6 @@ EOD
|
|
61
60
|
ColorOrFalseType =
|
62
61
|
CmdType.new('color-or-false', {
|
63
62
|
:type => :tioga_color,
|
64
|
-
:namespace => Tioga::ColorConstants,
|
65
63
|
:shortcuts => {'none' => false }
|
66
64
|
}, <<EOD)
|
67
65
|
A {type: color}, or false to say that nothing should be drawn.
|
@@ -16,7 +16,7 @@ require 'ctioga2/log'
|
|
16
16
|
|
17
17
|
module CTioga2
|
18
18
|
|
19
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
19
|
+
Version::register_svn_info('$Revision: 125 $', '$Date: 2010-01-12 00:56:15 +0100 (Tue, 12 Jan 2010) $')
|
20
20
|
|
21
21
|
# This module contains all graphical elements of CTioga2
|
22
22
|
module Graphics
|
@@ -16,7 +16,7 @@ require 'ctioga2/log'
|
|
16
16
|
|
17
17
|
module CTioga2
|
18
18
|
|
19
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
19
|
+
Version::register_svn_info('$Revision: 92 $', '$Date: 2009-06-24 01:17:46 +0200 (Wed, 24 Jun 2009) $')
|
20
20
|
|
21
21
|
# This module contains all graphical elements of CTioga2
|
22
22
|
module Graphics
|
@@ -16,7 +16,7 @@ require 'ctioga2/log'
|
|
16
16
|
|
17
17
|
module CTioga2
|
18
18
|
|
19
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
19
|
+
Version::register_svn_info('$Revision: 328 $', '$Date: 2012-11-28 15:11:49 +0100 (Wed, 28 Nov 2012) $')
|
20
20
|
|
21
21
|
module Graphics
|
22
22
|
|
@@ -150,7 +150,7 @@ module CTioga2
|
|
150
150
|
end
|
151
151
|
return Dimension.new(unit, value, orientation)
|
152
152
|
else
|
153
|
-
raise "
|
153
|
+
raise "Unknown Dimension specification: '#{text}'"
|
154
154
|
end
|
155
155
|
end
|
156
156
|
|
@@ -16,7 +16,7 @@ require 'ctioga2/log'
|
|
16
16
|
|
17
17
|
module CTioga2
|
18
18
|
|
19
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
19
|
+
Version::register_svn_info('$Revision: 360 $', '$Date: 2012-12-26 11:09:11 +0100 (Wed, 26 Dec 2012) $')
|
20
20
|
|
21
21
|
module Graphics
|
22
22
|
|
@@ -199,7 +199,7 @@ module CTioga2
|
|
199
199
|
#
|
200
200
|
# So far, no real parsing
|
201
201
|
def self.from_text(str)
|
202
|
-
str.gsub
|
202
|
+
str = str.gsub(/-/,"_") # Avoid problems with frozen strings
|
203
203
|
return PlotLocation.new(str.to_sym)
|
204
204
|
end
|
205
205
|
|
data/lib/ctioga2/log.rb
CHANGED
@@ -16,7 +16,7 @@ require 'logger'
|
|
16
16
|
|
17
17
|
module CTioga2
|
18
18
|
|
19
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
19
|
+
Version::register_svn_info('$Revision: 327 $', '$Date: 2012-11-28 14:47:52 +0100 (Wed, 28 Nov 2012) $')
|
20
20
|
|
21
21
|
# This module should be included (or extended) by every class that
|
22
22
|
# need logging/debugging facilities.
|
@@ -25,30 +25,34 @@ module CTioga2
|
|
25
25
|
# currently executed.
|
26
26
|
module Log
|
27
27
|
|
28
|
+
def self.context
|
29
|
+
return " while processing #{PlotMaker.plotmaker.interpreter.context.to_s}"
|
30
|
+
end
|
31
|
+
|
28
32
|
# Prints a debug message, on channel _channel_. Channel handling
|
29
33
|
# is not implemented yet.
|
30
34
|
def debug(channel = nil)
|
31
|
-
@@logger.debug {yield}
|
35
|
+
@@logger.debug {yield + Log.context}
|
32
36
|
end
|
33
37
|
|
34
38
|
# Prints a warning message
|
35
39
|
def warn
|
36
|
-
@@logger.warn {yield}
|
40
|
+
@@logger.warn {yield + Log.context}
|
37
41
|
end
|
38
42
|
|
39
43
|
# Prints an informational message
|
40
44
|
def info
|
41
|
-
@@logger.info {yield}
|
45
|
+
@@logger.info {yield + Log.context}
|
42
46
|
end
|
43
47
|
|
44
48
|
# Prints an error message
|
45
49
|
def error
|
46
|
-
@@logger.error {yield}
|
50
|
+
@@logger.error {yield + Log.context}
|
47
51
|
end
|
48
52
|
|
49
53
|
# Prints a fatal error message and initiates program termination.
|
50
54
|
def fatal
|
51
|
-
@@logger.fatal {yield}
|
55
|
+
@@logger.fatal {yield + Log.context}
|
52
56
|
exit 1 # Fatal error.
|
53
57
|
end
|
54
58
|
|
@@ -20,7 +20,7 @@ require 'ctioga2/utils'
|
|
20
20
|
|
21
21
|
module CTioga2
|
22
22
|
|
23
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
23
|
+
Version::register_svn_info('$Revision: 151 $', '$Date: 2010-06-19 23:45:20 +0200 (Sat, 19 Jun 2010) $')
|
24
24
|
|
25
25
|
|
26
26
|
# The MetaBuilder module contains a framework to perform
|
@@ -20,7 +20,7 @@ require 'ctioga2/utils'
|
|
20
20
|
|
21
21
|
module CTioga2
|
22
22
|
|
23
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
23
|
+
Version::register_svn_info('$Revision: 351 $', '$Date: 2012-12-25 22:48:10 +0100 (Tue, 25 Dec 2012) $')
|
24
24
|
|
25
25
|
module MetaBuilder
|
26
26
|
module Types
|
@@ -33,8 +33,8 @@ module CTioga2
|
|
33
33
|
type_name :tioga_color, 'color'
|
34
34
|
|
35
35
|
HLSRegexp = /(?:hls):/i
|
36
|
-
|
37
|
-
def
|
36
|
+
|
37
|
+
def parse_one_color(str)
|
38
38
|
if str =~ HLSRegexp
|
39
39
|
hls = true
|
40
40
|
str = str.gsub(HLSRegexp,'')
|
@@ -50,6 +50,13 @@ module CTioga2
|
|
50
50
|
|i| i.to_i(16)/15.0
|
51
51
|
}
|
52
52
|
else
|
53
|
+
begin
|
54
|
+
if Tioga::ColorConstants::const_defined?(str)
|
55
|
+
value = Tioga::ColorConstants::const_get(str)
|
56
|
+
return value
|
57
|
+
end
|
58
|
+
rescue
|
59
|
+
end
|
53
60
|
value = str.split(/\s*,\s*/).map do |s|
|
54
61
|
s.to_f
|
55
62
|
end
|
@@ -63,6 +70,26 @@ module CTioga2
|
|
63
70
|
end
|
64
71
|
return value
|
65
72
|
end
|
73
|
+
|
74
|
+
def string_to_type_internal(str)
|
75
|
+
# We implement a xcolor-like color mix stuff
|
76
|
+
elems = str.split(/!(\d+(?:\.\d+)?)!?/)
|
77
|
+
if (elems.size % 2) == 0
|
78
|
+
elems << "White" # Implicit mix with white
|
79
|
+
end
|
80
|
+
|
81
|
+
temp = parse_one_color(elems.shift).dup
|
82
|
+
|
83
|
+
while elems.size > 0
|
84
|
+
frac = elems.shift.to_f/100.0
|
85
|
+
new_color = parse_one_color(elems.shift)
|
86
|
+
3.times do |i|
|
87
|
+
temp[i] = frac * temp[i] + (1 - frac) * new_color[i]
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
return temp
|
92
|
+
end
|
66
93
|
end
|
67
94
|
|
68
95
|
# A line style for Tioga. It will be represented as:
|
data/lib/ctioga2/plotmaker.rb
CHANGED
@@ -155,7 +155,7 @@ require 'ctioga2/postprocess'
|
|
155
155
|
# displays of rate constants vs potentials)
|
156
156
|
module CTioga2
|
157
157
|
|
158
|
-
Version::register_svn_info('$Revision$', '$Date$')
|
158
|
+
Version::register_svn_info('$Revision: 314 $', '$Date: 2012-08-10 11:59:35 +0200 (Fri, 10 Aug 2012) $')
|
159
159
|
|
160
160
|
# This class is the core of ctioga. It parses the command-line arguments,
|
161
161
|
# reads all necessary files and plots graphs. Most of its functionality
|
data/lib/ctioga2/postprocess.rb
CHANGED
data/lib/ctioga2/utils.rb
CHANGED
@@ -34,7 +34,7 @@ module CTioga2
|
|
34
34
|
# arguments and have the Date and Revision svn:keyword:. Use this
|
35
35
|
# way:
|
36
36
|
#
|
37
|
-
# Version::register_svn_info('$Revision$', '$Date$')
|
37
|
+
# Version::register_svn_info('$Revision: 354 $', '$Date: 2012-12-25 23:39:59 +0100 (Tue, 25 Dec 2012) $')
|
38
38
|
#
|
39
39
|
# To set the correct properties, the following command-line can be
|
40
40
|
# used:
|
@@ -74,7 +74,7 @@ module CTioga2
|
|
74
74
|
}
|
75
75
|
|
76
76
|
# The position of the URL, used for getting the version
|
77
|
-
SVN_URL = '$HeadURL$'
|
77
|
+
SVN_URL = '$HeadURL: svn+ssh://rubyforge.org/var/svn/ctioga2/releases/ctioga2-0.4/lib/ctioga2/utils.rb $'
|
78
78
|
|
79
79
|
# The version of ctioga2
|
80
80
|
CTIOGA_VERSION = if SVN_URL =~ /releases\/ctioga2-([^\/]+)/
|
@@ -83,7 +83,7 @@ module CTioga2
|
|
83
83
|
"SVN version"
|
84
84
|
end
|
85
85
|
|
86
|
-
register_svn_info('$Revision$', '$Date$')
|
86
|
+
register_svn_info('$Revision: 354 $', '$Date: 2012-12-25 23:39:59 +0100 (Tue, 25 Dec 2012) $')
|
87
87
|
|
88
88
|
end
|
89
89
|
|
@@ -165,6 +165,81 @@ module CTioga2
|
|
165
165
|
|
166
166
|
end
|
167
167
|
|
168
|
+
# This class implements a Hash whose values can also be retrieved by
|
169
|
+
# pattern matching.
|
170
|
+
class RegexpHash
|
171
|
+
|
172
|
+
# Hash for non regexp keys
|
173
|
+
attr_accessor :hash
|
174
|
+
|
175
|
+
# Hash for regexp keys
|
176
|
+
attr_accessor :regexp_hash
|
177
|
+
|
178
|
+
def initialize()
|
179
|
+
@hash = {}
|
180
|
+
@regexp_kv = []
|
181
|
+
end
|
182
|
+
|
183
|
+
# Sets the key to the given value
|
184
|
+
def []=(key, value)
|
185
|
+
if Regexp === key
|
186
|
+
@regexp_kv << [key, value]
|
187
|
+
else
|
188
|
+
@hash[key] = value
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
# Gets the value corresponding to the key, using pattern matching
|
193
|
+
# should the need arise.
|
194
|
+
#
|
195
|
+
# If there are several regexps matching a given key, the
|
196
|
+
# implementation guarantees that the last one to have been
|
197
|
+
# inserted that matches is taken
|
198
|
+
def [](key)
|
199
|
+
if @hash.key?(key)
|
200
|
+
return @hash[key]
|
201
|
+
else
|
202
|
+
for k,v in @regexp_kv.reverse
|
203
|
+
if k === key
|
204
|
+
return v
|
205
|
+
end
|
206
|
+
end
|
207
|
+
end
|
208
|
+
return nil
|
209
|
+
end
|
210
|
+
|
211
|
+
def keys_for(value)
|
212
|
+
ret = []
|
213
|
+
for k,v in @hash
|
214
|
+
if value == v
|
215
|
+
ret << k
|
216
|
+
end
|
217
|
+
end
|
218
|
+
return ret
|
219
|
+
end
|
220
|
+
|
221
|
+
end
|
222
|
+
|
223
|
+
end
|
224
|
+
|
225
|
+
# Here, we define an additional function in the Hash class: without
|
226
|
+
class Hash
|
227
|
+
|
228
|
+
# Returns a copy of the hash without the given keys
|
229
|
+
def without(*args)
|
230
|
+
ret = self.dup
|
231
|
+
for a in args.flatten
|
232
|
+
ret.delete(a)
|
233
|
+
end
|
234
|
+
return ret
|
235
|
+
end
|
236
|
+
|
237
|
+
# Renames the given key
|
238
|
+
def rename_key(old, new)
|
239
|
+
self[new] = self[old]
|
240
|
+
self.delete(old)
|
241
|
+
end
|
242
|
+
|
168
243
|
end
|
169
244
|
|
170
245
|
begin
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ctioga2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.4'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-12-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: tioga
|
@@ -75,6 +75,7 @@ files:
|
|
75
75
|
- lib/ctioga2/commands/variables.rb
|
76
76
|
- lib/ctioga2/commands/parsers/file.rb
|
77
77
|
- lib/ctioga2/commands/parsers/command-line.rb
|
78
|
+
- lib/ctioga2/commands/context.rb
|
78
79
|
- lib/ctioga2/commands/groups.rb
|
79
80
|
- lib/ctioga2/commands/interpreter.rb
|
80
81
|
- lib/ctioga2/commands/arguments.rb
|
@@ -84,9 +85,11 @@ files:
|
|
84
85
|
- lib/ctioga2/graphics/styles/errorbar.rb
|
85
86
|
- lib/ctioga2/graphics/styles/gradients.rb
|
86
87
|
- lib/ctioga2/graphics/styles/factory.rb
|
88
|
+
- lib/ctioga2/graphics/styles/sheet.rb
|
87
89
|
- lib/ctioga2/graphics/styles/carrays.rb
|
88
90
|
- lib/ctioga2/graphics/styles/location.rb
|
89
91
|
- lib/ctioga2/graphics/styles/map-axes.rb
|
92
|
+
- lib/ctioga2/graphics/styles/arrows.rb
|
90
93
|
- lib/ctioga2/graphics/styles/drawable.rb
|
91
94
|
- lib/ctioga2/graphics/styles/axes.rb
|
92
95
|
- lib/ctioga2/graphics/styles/background.rb
|
@@ -96,6 +99,7 @@ files:
|
|
96
99
|
- lib/ctioga2/graphics/styles/colormap.rb
|
97
100
|
- lib/ctioga2/graphics/styles/texts.rb
|
98
101
|
- lib/ctioga2/graphics/styles/legend.rb
|
102
|
+
- lib/ctioga2/graphics/styles/box.rb
|
99
103
|
- lib/ctioga2/graphics/styles.rb
|
100
104
|
- lib/ctioga2/graphics/coordinates.rb
|
101
105
|
- lib/ctioga2/graphics/legends/area.rb
|
@@ -104,7 +108,6 @@ files:
|
|
104
108
|
- lib/ctioga2/graphics/legends/provider.rb
|
105
109
|
- lib/ctioga2/graphics/types.rb
|
106
110
|
- lib/ctioga2/graphics/elements/subplot.rb
|
107
|
-
- lib/ctioga2/graphics/elements/redirecting-container.rb~
|
108
111
|
- lib/ctioga2/graphics/elements/parametric2d.rb
|
109
112
|
- lib/ctioga2/graphics/elements/redirecting-container.rb
|
110
113
|
- lib/ctioga2/graphics/elements/primitive.rb
|
@@ -128,7 +131,6 @@ files:
|
|
128
131
|
- lib/ctioga2/graphics/types/grid.rb
|
129
132
|
- lib/ctioga2/graphics/root.rb
|
130
133
|
- lib/ctioga2/utils.rb
|
131
|
-
- lib/ctioga2/git-fools-svn.rb
|
132
134
|
- lib/ctioga2/postprocess.rb
|
133
135
|
- lib/ctioga2/metabuilder/type.rb
|
134
136
|
- lib/ctioga2/metabuilder/types.rb
|
@@ -138,7 +140,6 @@ files:
|
|
138
140
|
- lib/ctioga2/metabuilder/types/styles.rb
|
139
141
|
- lib/ctioga2/metabuilder/types/strings.rb
|
140
142
|
- lib/ctioga2/metabuilder/types/coordinates.rb
|
141
|
-
- lib/ctioga2/metabuilder/types/generic.rb~
|
142
143
|
- lib/ctioga2/metabuilder/types/data.rb
|
143
144
|
- lib/ctioga2/metabuilder/types/generic.rb
|
144
145
|
- COPYING
|