ruport 0.5.4 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +13 -4
- data/CHANGELOG +15 -1
- data/Rakefile +1 -1
- data/bin/rope +5 -1
- data/examples/basic_grouping.rb +13 -3
- data/examples/latex_table.rb +17 -0
- data/examples/line_graph_report.rb +23 -0
- data/examples/line_graph_report.rb.rej +15 -0
- data/examples/line_graph_report.rb~ +23 -0
- data/examples/line_plotter.rb +1 -0
- data/examples/sql_erb.rb +20 -0
- data/examples/template.rb +1 -1
- data/examples/text_processors.rb +3 -9
- data/lib/ruport.rb +2 -3
- data/lib/ruport.rb~ +69 -0
- data/lib/ruport/attempt.rb +63 -0
- data/lib/ruport/data.rb +1 -1
- data/lib/ruport/data.rb.rej +5 -0
- data/lib/ruport/data.rb~ +1 -0
- data/lib/ruport/data/groupable.rb +20 -0
- data/lib/ruport/data/record.rb +18 -13
- data/lib/ruport/data/table.rb +92 -26
- data/lib/ruport/data/table.rb~ +329 -0
- data/lib/ruport/format.rb +7 -1
- data/lib/ruport/format/engine/table.rb +2 -1
- data/lib/ruport/format/plugin.rb +8 -8
- data/lib/ruport/format/plugin/csv_plugin.rb +5 -1
- data/lib/ruport/format/plugin/html_plugin.rb +12 -8
- data/lib/ruport/format/plugin/latex_plugin.rb +50 -0
- data/lib/ruport/format/plugin/text_plugin.rb +38 -33
- data/lib/ruport/meta_tools.rb +3 -3
- data/lib/ruport/query.rb +21 -9
- data/lib/ruport/report.rb +35 -20
- data/lib/ruport/report/graph.rb +14 -0
- data/lib/ruport/system_extensions.rb +9 -8
- data/test/_test_groupable.rb +0 -0
- data/test/samples/data.tsv +3 -0
- data/test/samples/erb_test.sql +1 -0
- data/test/samples/query_test.sql +1 -0
- data/test/test_collection.rb +1 -1
- data/test/test_format.rb +1 -1
- data/test/test_format_engine.rb +17 -0
- data/test/test_groupable.rb +41 -0
- data/test/test_invoice.rb +1 -1
- data/test/test_latex.rb +20 -0
- data/test/test_plugin.rb +59 -29
- data/test/test_query.rb +12 -6
- data/test/test_record.rb +23 -4
- data/test/test_record.rb.rej +46 -0
- data/test/test_report.rb +32 -7
- data/test/test_table.rb +152 -4
- data/test/ts_all.rb +21 -0
- data/test/unit.log +61 -154
- metadata +32 -12
- data/lib/ruport/rails.rb +0 -2
- data/lib/ruport/rails/reportable.rb +0 -58
data/test/test_report.rb
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
require "test/unit"
|
7
7
|
require "ruport"
|
8
|
-
require "rubygems" rescue LoadError nil
|
8
|
+
begin; require "rubygems"; rescue LoadError; nil; end
|
9
9
|
class TestReport < Test::Unit::TestCase
|
10
10
|
include Ruport
|
11
11
|
|
@@ -16,17 +16,17 @@ class TestReport < Test::Unit::TestCase
|
|
16
16
|
@query1.cached_data = [[1,2,3],[4,5,6],[7,8,9]].to_table(%w[a b c])
|
17
17
|
end
|
18
18
|
|
19
|
-
def
|
20
|
-
result = @report.
|
19
|
+
def test_process_text
|
20
|
+
result = @report.process_text "<%= 2 + 3 %>",
|
21
21
|
:filters => [:erb]
|
22
22
|
assert_equal("5",result)
|
23
23
|
|
24
24
|
if defined? RedCloth
|
25
|
-
result = @report.
|
25
|
+
result = @report.process_text '"foo":http://foo.com',
|
26
26
|
:filters => [:red_cloth]
|
27
27
|
|
28
28
|
assert_equal('<p><a href="http://foo.com">foo</a></p>',result)
|
29
|
-
result = @report.
|
29
|
+
result = @report.process_text %{"<%= 2 + 3%>":http://foo.com },
|
30
30
|
:filters => [:erb, :red_cloth]
|
31
31
|
assert_equal('<p><a href="http://foo.com">5</a></p>',result)
|
32
32
|
end
|
@@ -41,7 +41,12 @@ class TestReport < Test::Unit::TestCase
|
|
41
41
|
assert_equal %w[a b c], r.attributes
|
42
42
|
}
|
43
43
|
assert_equal "a,b,c\n1,2,3\n4,5,6\n7,8,9\n",
|
44
|
-
@report.query("blah",:query_obj => @query1, :as => :csv)
|
44
|
+
@report.query("blah",:query_obj => @query1, :as => :csv)
|
45
|
+
end
|
46
|
+
|
47
|
+
# ticket:86
|
48
|
+
def test_table_shortcut
|
49
|
+
# FIXME: Dinko, look at ticket and implement feature
|
45
50
|
end
|
46
51
|
|
47
52
|
class MyReport < Report; end
|
@@ -73,10 +78,30 @@ class TestReport < Test::Unit::TestCase
|
|
73
78
|
|
74
79
|
expected = %w[foo bar]
|
75
80
|
|
76
|
-
rep_klass.run
|
81
|
+
rep_klass.run :reports => [report1,report2] do |rep|
|
77
82
|
assert_equal expected.shift, rep.results
|
78
83
|
end
|
79
84
|
|
80
85
|
end
|
81
86
|
|
87
|
+
|
88
|
+
def test_timeout
|
89
|
+
rep_klass = MyReport.dup
|
90
|
+
rep_klass.generate { raise }
|
91
|
+
|
92
|
+
assert_raises(RuntimeError){
|
93
|
+
rep_klass.run(:tries => 3, :interval => 1, :log_level => :log_only)
|
94
|
+
}
|
95
|
+
|
96
|
+
rep_klass.generate { sleep 1.1 }
|
97
|
+
|
98
|
+
assert_raises(Timeout::Error) {
|
99
|
+
rep_klass.run( :tries => 2,
|
100
|
+
:timeout => 1,
|
101
|
+
:interval => 1,
|
102
|
+
:log_level => :log_only)
|
103
|
+
}
|
104
|
+
|
105
|
+
end
|
106
|
+
|
82
107
|
end
|
data/test/test_table.rb
CHANGED
@@ -10,17 +10,61 @@ class TestTable < Test::Unit::TestCase
|
|
10
10
|
table4 = Ruport::Data::Table.new :column_names => %w[col1 col2 col3],
|
11
11
|
:data => [[1,2,3]]
|
12
12
|
tables = [table,table2,table3,table4]
|
13
|
-
tables.zip([
|
13
|
+
tables.zip([[],%w[a b c], [], %w[col1 col2 col3]]).each do |t,n|
|
14
14
|
assert_equal n, t.column_names
|
15
|
+
|
16
|
+
t = [[1,2,3],[4,5,6]].to_table(%w[a b c])
|
17
|
+
t[0].tag :foo
|
18
|
+
t[1].tag :bar
|
19
|
+
table_from_records = t.data.to_table(t.column_names)
|
20
|
+
assert_equal [:foo], table_from_records[0].tags
|
21
|
+
assert_equal [:bar], table_from_records[1].tags
|
15
22
|
end
|
16
23
|
|
17
24
|
a = Ruport::Data::Record.new [1,2,3]
|
18
|
-
assert a.respond_to?(:[])
|
25
|
+
assert a.respond_to?(:[])
|
19
26
|
b = a.dup
|
20
27
|
b.attributes = %w[col1 col2 col3]
|
21
28
|
tables.zip([[],[],[a],[b]]).each { |t,n| assert_equal n, t.data }
|
22
29
|
end
|
23
30
|
|
31
|
+
def test_ensure_table_creation_allows_record_coercion
|
32
|
+
table = [[1,2,3],[4,5,6],[7,8,9]].to_table
|
33
|
+
table_with_names = [[1,2,3],[4,5,6],[7,8,9]].to_table(%w[a b c])
|
34
|
+
|
35
|
+
a,b,c = nil
|
36
|
+
assert_nothing_raised { a = table.to_a.to_table(%w[a b c]) }
|
37
|
+
assert_nothing_raised { b = table.to_a.to_table(%w[d e f]) }
|
38
|
+
assert_nothing_raised { c = table_with_names.to_a.to_table }
|
39
|
+
|
40
|
+
[a,b,c].each { |t| assert_equal(3,t.length) }
|
41
|
+
assert_equal %w[a b c], a.column_names
|
42
|
+
a.each { |r|
|
43
|
+
assert_equal %w[a b c], r.attributes
|
44
|
+
assert_nothing_raised { r.a; r.b; r.c }
|
45
|
+
[r.a,r.b,r.c].each { |i| assert(i.kind_of?(Numeric)) }
|
46
|
+
}
|
47
|
+
assert_equal %w[d e f], b.column_names
|
48
|
+
b.each { |r|
|
49
|
+
assert_equal %w[d e f], r.attributes
|
50
|
+
assert_nothing_raised { r.d; r.e; r.f }
|
51
|
+
[r.d,r.e,r.f].each { |i| assert(i.kind_of?(Numeric)) }
|
52
|
+
}
|
53
|
+
c.each { |r|
|
54
|
+
assert_nothing_raised { r[0]; r[1]; r[2] }
|
55
|
+
[r[0],r[1],r[2]].each { |i| assert(i.kind_of?(Numeric)) }
|
56
|
+
}
|
57
|
+
end
|
58
|
+
|
59
|
+
def test_sigma
|
60
|
+
table = [[1,2],[3,4],[5,6]].to_table(%w[col1 col2])
|
61
|
+
assert table.respond_to?(:sigma)
|
62
|
+
assert table.respond_to?(:sum)
|
63
|
+
assert_equal(9,table.sigma(0))
|
64
|
+
assert_equal(9,table.sigma("col1"))
|
65
|
+
assert_equal(21,table.sigma { |r| r.col1 + r.col2 })
|
66
|
+
end
|
67
|
+
|
24
68
|
def test_append_record
|
25
69
|
table = Ruport::Data::Table.new :column_names => %w[a b c]
|
26
70
|
table << Ruport::Data::Record.new([1,2,3], :attributes => %w[a b c])
|
@@ -33,14 +77,69 @@ class TestTable < Test::Unit::TestCase
|
|
33
77
|
assert_raise(ArgumentError) { table << [].to_table }
|
34
78
|
end
|
35
79
|
|
80
|
+
def test_append_table
|
81
|
+
first = Ruport::Data::Table.new :column_names => %w[a b c],
|
82
|
+
:data => [[1,2,3],[4,5,6]]
|
83
|
+
|
84
|
+
second = Ruport::Data::Table.new :column_names => %w[a b c],
|
85
|
+
:data => [[7,8,9],[10,11,12]]
|
86
|
+
|
87
|
+
combo = first + second
|
88
|
+
|
89
|
+
assert_equal Ruport::Data::Table.new(:column_names => %w[a b c],
|
90
|
+
:data => [[1,2,3],[4,5,6],[7,8,9],[10,11,12]]), combo
|
91
|
+
end
|
92
|
+
|
36
93
|
def test_csv_load
|
37
94
|
table = Ruport::Data::Table.load("test/samples/data.csv")
|
38
95
|
assert_equal %w[col1 col2 col3], table.column_names
|
39
96
|
rows = [%w[a b c],["d",nil,"e"]]
|
40
97
|
table.each { |r| assert_equal rows.shift, r.data
|
41
98
|
assert_equal %w[col1 col2 col3], r.attributes }
|
99
|
+
expected = [%w[1 2 3],%w[4 5 6]].to_table(%w[a b c])
|
100
|
+
|
101
|
+
# ticket:94
|
102
|
+
table = Ruport::Data::Table.load( "test/samples/data.tsv",
|
103
|
+
:csv_options => { :col_sep => "\t" } )
|
104
|
+
assert_equal expected, table
|
105
|
+
|
106
|
+
table = Ruport::Data::Table.load("test/samples/data.csv", :has_names => false)
|
107
|
+
assert_equal([],table.column_names)
|
108
|
+
assert_equal([%w[col1 col2 col3],%w[a b c],["d",nil,"e"]].to_table, table)
|
109
|
+
|
42
110
|
end
|
43
111
|
|
112
|
+
# ticket:76
|
113
|
+
def test_parse
|
114
|
+
|
115
|
+
assert_nothing_raised {
|
116
|
+
Ruport::Data::Table.parse("a,b,c\n1,2,3\n")
|
117
|
+
}
|
118
|
+
|
119
|
+
table = Ruport::Data::Table.parse("a,b,c\n1,2,3\n4,5,6\n")
|
120
|
+
expected = [%w[1 2 3],%w[4 5 6]].to_table(%w[a b c])
|
121
|
+
|
122
|
+
table = Ruport::Data::Table.parse( "a\tb\tc\n1\t2\t3\n4\t5\t6\n",
|
123
|
+
:csv_options => { :col_sep => "\t" } )
|
124
|
+
assert_equal expected, table
|
125
|
+
|
126
|
+
table = Ruport::Data::Table.parse("a,b,c\n1,2,3\n4,5,6\n", :has_names => false)
|
127
|
+
assert_equal([],table.column_names)
|
128
|
+
assert_equal([%w[a b c],%w[1 2 3], %w[4 5 6]].to_table, table)
|
129
|
+
|
130
|
+
end
|
131
|
+
|
132
|
+
def test_csv_block_form
|
133
|
+
expected = [%w[a b],%w[1 2],%w[3 4]]
|
134
|
+
t = Ruport::Data::Table.send(:get_table_from_csv,
|
135
|
+
:parse, "a,b\n1,2\n3,4", :has_names => false) do |s,r|
|
136
|
+
assert_equal expected.shift, r
|
137
|
+
s << r
|
138
|
+
end
|
139
|
+
assert_equal [%w[a b],%w[1 2],%w[3 4]].to_table, t
|
140
|
+
end
|
141
|
+
|
142
|
+
|
44
143
|
def test_reorder
|
45
144
|
table = Ruport::Data::Table.load("test/samples/data.csv")
|
46
145
|
table.reorder! *%w[col1 col3]
|
@@ -84,6 +183,10 @@ class TestTable < Test::Unit::TestCase
|
|
84
183
|
|
85
184
|
def test_remove_column
|
86
185
|
a = [[1,2],[3,4],[5,6]].to_table(%w[a b])
|
186
|
+
b = a.dup
|
187
|
+
|
188
|
+
b.remove_column("b")
|
189
|
+
assert_equal [[1],[3],[5]].to_table(%w[a]), b
|
87
190
|
a.append_column(:name => "c")
|
88
191
|
assert_not_equal [[1,2],[3,4],[5,6]].to_table(%w[a b]), a
|
89
192
|
a.remove_column(:name => "c")
|
@@ -106,7 +209,11 @@ class TestTable < Test::Unit::TestCase
|
|
106
209
|
table << ['d',9,10]
|
107
210
|
|
108
211
|
group = table.split :group => "c1"
|
109
|
-
|
212
|
+
assert group.respond_to?(:each_group)
|
213
|
+
expected = %w[a d b]
|
214
|
+
|
215
|
+
group.each_group { |g| assert_equal(expected.shift, g) }
|
216
|
+
|
110
217
|
t = table.reorder("c2","c3")
|
111
218
|
|
112
219
|
data = [[t[0],t[2]],[t[1],t[4]],[t[3]]]
|
@@ -119,6 +226,11 @@ class TestTable < Test::Unit::TestCase
|
|
119
226
|
table << ['d',9,11]
|
120
227
|
|
121
228
|
group = table.split :group => %w[c1 c2]
|
229
|
+
assert group.respond_to?(:each_group)
|
230
|
+
expected = %w[a_2 d_5 a_4 b_3 d_9]
|
231
|
+
|
232
|
+
group.each_group { |g| assert_equal(expected.shift, g) }
|
233
|
+
|
122
234
|
t = table.reorder("c3")
|
123
235
|
data = [[t[0],t[5]],[t[1]],[t[2]],[t[3]],[t[4],t[6]]]
|
124
236
|
|
@@ -157,7 +269,7 @@ class TestTable < Test::Unit::TestCase
|
|
157
269
|
def test_array_hack
|
158
270
|
t = [[1,2],[3,4],[5,6]].to_table
|
159
271
|
assert_instance_of Ruport::Data::Table, t
|
160
|
-
assert_equal
|
272
|
+
assert_equal [], t.column_names
|
161
273
|
assert_equal Ruport::Data::Record.new([3,4]), t[1]
|
162
274
|
t = [[1,2],[3,4],[5,6]].to_table :column_names => %w[a b]
|
163
275
|
table = Ruport::Data::Table.new :column_names => %w[a b],
|
@@ -172,4 +284,40 @@ class TestTable < Test::Unit::TestCase
|
|
172
284
|
|
173
285
|
end
|
174
286
|
|
287
|
+
def test_ensure_coerce_sum
|
288
|
+
|
289
|
+
s = [["1"],["3"],["5"] ].to_table
|
290
|
+
t = [["1.23"],["1.5"]].to_table
|
291
|
+
|
292
|
+
assert_equal(9,s.sum(0))
|
293
|
+
assert_equal(2.73,t.sum(0))
|
294
|
+
|
295
|
+
end
|
296
|
+
|
297
|
+
def test_table_shortcut
|
298
|
+
self.class.send(:include,Ruport::Data::TableHelper)
|
299
|
+
|
300
|
+
a = table(%w[a b c]) do |t|
|
301
|
+
[[1,2,3],[4,5,6]].each { |r| t << r }
|
302
|
+
end
|
303
|
+
|
304
|
+
assert_equal([[1,2,3],[4,5,6]].to_table(%w[a b c]),a)
|
305
|
+
|
306
|
+
end
|
307
|
+
|
308
|
+
def test_setting_column_names_changes_record_attributes
|
309
|
+
table = Ruport::Data::Table.new :column_names => %w[a b c],
|
310
|
+
:data => [[1,2,3],[4,5,6]]
|
311
|
+
|
312
|
+
assert_equal %w[a b c], table.column_names
|
313
|
+
assert_equal %w[a b c], table.data[0].attributes
|
314
|
+
assert_equal %w[a b c], table.data[1].attributes
|
315
|
+
|
316
|
+
table.column_names = %w[d e f]
|
317
|
+
|
318
|
+
assert_equal %w[d e f], table.column_names
|
319
|
+
assert_equal %w[d e f], table.data[0].attributes
|
320
|
+
assert_equal %w[d e f], table.data[1].attributes
|
321
|
+
end
|
322
|
+
|
175
323
|
end
|
data/test/ts_all.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
begin; require "tesly_reporter"; rescue LoadError; nil; end
|
2
|
+
%w[
|
3
|
+
test_collection.rb
|
4
|
+
test_config.rb
|
5
|
+
test_format.rb
|
6
|
+
test_format_engine.rb
|
7
|
+
test_graph.rb
|
8
|
+
test_invoice.rb
|
9
|
+
test_latex.rb
|
10
|
+
test_mailer.rb
|
11
|
+
test_meta_tools.rb
|
12
|
+
test_plugin.rb
|
13
|
+
test_query.rb
|
14
|
+
test_record.rb
|
15
|
+
test_report.rb
|
16
|
+
test_ruport.rb
|
17
|
+
test_set.rb
|
18
|
+
test_sql_split.rb
|
19
|
+
test_table.rb
|
20
|
+
test_taggable.rb
|
21
|
+
].each { |t| require "test/#{t}" }
|
data/test/unit.log
CHANGED
@@ -1,154 +1,61 @@
|
|
1
|
-
# Logfile created on
|
2
|
-
F, [2006-
|
3
|
-
F, [2006-
|
4
|
-
F, [2006-
|
5
|
-
F, [2006-
|
6
|
-
F, [2006-
|
7
|
-
F, [2006-
|
8
|
-
F, [2006-
|
9
|
-
F, [2006-
|
10
|
-
F, [2006-
|
11
|
-
F, [2006-
|
12
|
-
F, [2006-
|
13
|
-
F, [2006-
|
14
|
-
F, [2006-
|
15
|
-
F, [2006-
|
16
|
-
F, [2006-
|
17
|
-
F, [2006-
|
18
|
-
F, [2006-
|
19
|
-
F, [2006-
|
20
|
-
F, [2006-
|
21
|
-
F, [2006-
|
22
|
-
F, [2006-
|
23
|
-
F, [2006-
|
24
|
-
F, [2006-
|
25
|
-
F, [2006-
|
26
|
-
F, [2006-
|
27
|
-
F, [2006-
|
28
|
-
F, [2006-
|
29
|
-
F, [2006-
|
30
|
-
F, [2006-
|
31
|
-
F, [2006-
|
32
|
-
F, [2006-
|
33
|
-
F, [2006-
|
34
|
-
F, [2006-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
F, [2006-
|
39
|
-
F, [2006-
|
40
|
-
F, [2006-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
F, [2006-
|
45
|
-
F, [2006-
|
46
|
-
F, [2006-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
F, [2006-
|
51
|
-
F, [2006-
|
52
|
-
F, [2006-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
F, [2006-
|
57
|
-
F, [2006-
|
58
|
-
F, [2006-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
F, [2006-09-10T23:47:10.565187 #3129] FATAL -- : Missing host for mailer bar
|
63
|
-
F, [2006-09-10T23:47:10.566720 #3129] FATAL -- : Missing DSN for source foo!
|
64
|
-
F, [2006-09-10T23:47:12.022613 #3129] FATAL -- : no block given!
|
65
|
-
F, [2006-09-13T20:46:21.960919 #2337] FATAL -- : Missing host for mailer bar
|
66
|
-
F, [2006-09-13T20:46:21.982106 #2337] FATAL -- : Missing DSN for source foo!
|
67
|
-
F, [2006-09-13T20:46:23.480527 #2337] FATAL -- : no block given!
|
68
|
-
F, [2006-09-13T20:48:24.836142 #2382] FATAL -- : Missing host for mailer bar
|
69
|
-
F, [2006-09-13T20:48:24.837660 #2382] FATAL -- : Missing DSN for source foo!
|
70
|
-
F, [2006-09-13T20:48:26.328458 #2382] FATAL -- : no block given!
|
71
|
-
F, [2006-09-13T20:49:11.334379 #2397] FATAL -- : Missing host for mailer bar
|
72
|
-
F, [2006-09-13T20:49:11.335947 #2397] FATAL -- : Missing DSN for source foo!
|
73
|
-
F, [2006-09-13T20:49:12.840600 #2397] FATAL -- : no block given!
|
74
|
-
F, [2006-09-14T14:55:40.003769 #2286] FATAL -- : Missing host for mailer bar
|
75
|
-
F, [2006-09-14T14:55:40.034439 #2286] FATAL -- : Missing DSN for source foo!
|
76
|
-
F, [2006-09-14T14:55:41.420531 #2286] FATAL -- : no block given!
|
77
|
-
F, [2006-09-14T14:57:33.765321 #2314] FATAL -- : Missing host for mailer bar
|
78
|
-
F, [2006-09-14T14:57:33.766633 #2314] FATAL -- : Missing DSN for source foo!
|
79
|
-
F, [2006-09-14T14:57:35.134511 #2314] FATAL -- : no block given!
|
80
|
-
F, [2006-09-14T15:09:44.869755 #2389] FATAL -- : Missing host for mailer bar
|
81
|
-
F, [2006-09-14T15:09:44.870964 #2389] FATAL -- : Missing DSN for source foo!
|
82
|
-
F, [2006-09-14T15:09:46.241647 #2389] FATAL -- : no block given!
|
83
|
-
F, [2006-09-14T15:10:39.003512 #2406] FATAL -- : Missing host for mailer bar
|
84
|
-
F, [2006-09-14T15:10:39.004723 #2406] FATAL -- : Missing DSN for source foo!
|
85
|
-
F, [2006-09-14T15:10:40.390227 #2406] FATAL -- : no block given!
|
86
|
-
F, [2006-09-14T15:13:47.931038 #2474] FATAL -- : Missing host for mailer bar
|
87
|
-
F, [2006-09-14T15:13:47.932247 #2474] FATAL -- : Missing DSN for source foo!
|
88
|
-
F, [2006-09-14T15:13:49.301237 #2474] FATAL -- : no block given!
|
89
|
-
F, [2006-09-14T15:15:33.282728 #2504] FATAL -- : Missing host for mailer bar
|
90
|
-
F, [2006-09-14T15:15:33.283937 #2504] FATAL -- : Missing DSN for source foo!
|
91
|
-
F, [2006-09-14T15:15:34.671120 #2504] FATAL -- : no block given!
|
92
|
-
F, [2006-09-14T15:19:23.897944 #2541] FATAL -- : Missing host for mailer bar
|
93
|
-
F, [2006-09-14T15:19:23.899149 #2541] FATAL -- : Missing DSN for source foo!
|
94
|
-
F, [2006-09-14T15:19:25.270930 #2541] FATAL -- : no block given!
|
95
|
-
F, [2006-09-14T15:21:45.369960 #2569] FATAL -- : Missing host for mailer bar
|
96
|
-
F, [2006-09-14T15:21:45.371195 #2569] FATAL -- : Missing DSN for source foo!
|
97
|
-
F, [2006-09-14T15:21:46.732855 #2569] FATAL -- : no block given!
|
98
|
-
F, [2006-09-14T15:29:00.285359 #2626] FATAL -- : Missing host for mailer bar
|
99
|
-
F, [2006-09-14T15:29:00.286595 #2626] FATAL -- : Missing DSN for source foo!
|
100
|
-
F, [2006-09-14T15:29:01.667713 #2626] FATAL -- : no block given!
|
101
|
-
F, [2006-09-14T15:36:10.757949 #2664] FATAL -- : Missing host for mailer bar
|
102
|
-
F, [2006-09-14T15:36:10.759201 #2664] FATAL -- : Missing DSN for source foo!
|
103
|
-
F, [2006-09-14T15:36:12.184753 #2664] FATAL -- : no block given!
|
104
|
-
F, [2006-09-14T15:38:50.563309 #2686] FATAL -- : Missing host for mailer bar
|
105
|
-
F, [2006-09-14T15:38:50.564546 #2686] FATAL -- : Missing DSN for source foo!
|
106
|
-
F, [2006-09-14T15:38:51.987976 #2686] FATAL -- : no block given!
|
107
|
-
F, [2006-09-14T15:43:01.826129 #2747] FATAL -- : Missing host for mailer bar
|
108
|
-
F, [2006-09-14T15:43:01.827337 #2747] FATAL -- : Missing DSN for source foo!
|
109
|
-
F, [2006-09-14T15:43:03.220988 #2747] FATAL -- : no block given!
|
110
|
-
F, [2006-09-14T15:44:57.026175 #2795] FATAL -- : Missing host for mailer bar
|
111
|
-
F, [2006-09-14T15:44:57.027386 #2795] FATAL -- : Missing DSN for source foo!
|
112
|
-
F, [2006-09-14T15:44:58.401789 #2795] FATAL -- : no block given!
|
113
|
-
F, [2006-09-15T22:15:33.543076 #2687] FATAL -- : Missing host for mailer bar
|
114
|
-
F, [2006-09-15T22:15:33.544463 #2687] FATAL -- : Missing DSN for source foo!
|
115
|
-
F, [2006-09-15T22:15:34.930062 #2687] FATAL -- : no block given!
|
116
|
-
F, [2006-09-15T22:38:15.020965 #2749] FATAL -- : Missing host for mailer bar
|
117
|
-
F, [2006-09-15T22:38:15.022562 #2749] FATAL -- : Missing DSN for source foo!
|
118
|
-
F, [2006-09-15T22:38:16.392428 #2749] FATAL -- : no block given!
|
119
|
-
F, [2006-09-16T12:16:28.334123 #3531] FATAL -- : Missing host for mailer bar
|
120
|
-
F, [2006-09-16T12:16:28.335300 #3531] FATAL -- : Missing DSN for source foo!
|
121
|
-
F, [2006-09-16T12:16:31.349294 #3531] FATAL -- : no block given!
|
122
|
-
F, [2006-09-22T10:57:48.979238 #2296] FATAL -- : Missing host for mailer bar
|
123
|
-
F, [2006-09-22T10:57:48.980766 #2296] FATAL -- : Missing DSN for source foo!
|
124
|
-
F, [2006-09-22T10:57:50.420679 #2296] FATAL -- : no block given!
|
125
|
-
F, [2006-09-22T11:28:10.025473 #2436] FATAL -- : Missing host for mailer bar
|
126
|
-
F, [2006-09-22T11:28:10.026722 #2436] FATAL -- : Missing DSN for source foo!
|
127
|
-
F, [2006-09-22T11:28:11.452947 #2436] FATAL -- : no block given!
|
128
|
-
F, [2006-09-22T11:29:34.369510 #2455] FATAL -- : Missing host for mailer bar
|
129
|
-
F, [2006-09-22T11:29:34.370692 #2455] FATAL -- : Missing DSN for source foo!
|
130
|
-
F, [2006-09-22T11:29:35.789372 #2455] FATAL -- : no block given!
|
131
|
-
F, [2006-09-22T12:22:11.125513 #2685] FATAL -- : Missing host for mailer bar
|
132
|
-
F, [2006-09-22T12:22:11.127121 #2685] FATAL -- : Missing DSN for source foo!
|
133
|
-
F, [2006-09-22T12:22:12.542014 #2685] FATAL -- : no block given!
|
134
|
-
F, [2006-09-22T12:24:39.561416 #2706] FATAL -- : Missing host for mailer bar
|
135
|
-
F, [2006-09-22T12:24:39.562607 #2706] FATAL -- : Missing DSN for source foo!
|
136
|
-
F, [2006-09-22T12:24:40.955523 #2706] FATAL -- : no block given!
|
137
|
-
F, [2006-09-22T12:25:58.299119 #2728] FATAL -- : Missing host for mailer bar
|
138
|
-
F, [2006-09-22T12:25:58.300290 #2728] FATAL -- : Missing DSN for source foo!
|
139
|
-
F, [2006-09-22T12:25:59.700961 #2728] FATAL -- : no block given!
|
140
|
-
F, [2006-09-22T12:26:20.389344 #2746] FATAL -- : Missing host for mailer bar
|
141
|
-
F, [2006-09-22T12:26:20.390526 #2746] FATAL -- : Missing DSN for source foo!
|
142
|
-
F, [2006-09-22T12:26:21.775565 #2746] FATAL -- : no block given!
|
143
|
-
F, [2006-09-22T12:28:27.008090 #2763] FATAL -- : Missing host for mailer bar
|
144
|
-
F, [2006-09-22T12:28:27.009264 #2763] FATAL -- : Missing DSN for source foo!
|
145
|
-
F, [2006-09-22T12:28:28.432881 #2763] FATAL -- : no block given!
|
146
|
-
F, [2006-09-23T20:49:21.609220 #3403] FATAL -- : Missing host for mailer bar
|
147
|
-
F, [2006-09-23T20:49:21.610861 #3403] FATAL -- : Missing DSN for source foo!
|
148
|
-
F, [2006-09-23T20:49:23.197684 #3403] FATAL -- : no block given!
|
149
|
-
F, [2006-09-23T20:50:04.754598 #3412] FATAL -- : Missing host for mailer bar
|
150
|
-
F, [2006-09-23T20:50:04.756157 #3412] FATAL -- : Missing DSN for source foo!
|
151
|
-
F, [2006-09-23T20:50:06.211906 #3412] FATAL -- : no block given!
|
152
|
-
F, [2006-09-23T20:50:29.074940 #3421] FATAL -- : Missing host for mailer bar
|
153
|
-
F, [2006-09-23T20:50:29.076482 #3421] FATAL -- : Missing DSN for source foo!
|
154
|
-
F, [2006-09-23T20:50:30.553625 #3421] FATAL -- : no block given!
|
1
|
+
# Logfile created on Thu Oct 12 16:21:40 EDT 2006 by logger.rb/1.5.2.7
|
2
|
+
F, [2006-10-12T16:21:40.460134 #5027] FATAL -- : Missing host for mailer bar
|
3
|
+
F, [2006-10-12T16:21:40.483797 #5027] FATAL -- : Missing DSN for source foo!
|
4
|
+
F, [2006-10-12T16:21:43.782797 #5027] FATAL -- : no block given!
|
5
|
+
F, [2006-10-12T16:23:14.364832 #5051] FATAL -- : Missing host for mailer bar
|
6
|
+
F, [2006-10-12T16:23:14.410221 #5051] FATAL -- : Missing DSN for source foo!
|
7
|
+
F, [2006-10-12T16:23:18.629766 #5051] FATAL -- : no block given!
|
8
|
+
F, [2006-10-12T16:23:58.694612 #5114] FATAL -- : Missing host for mailer bar
|
9
|
+
F, [2006-10-12T16:23:58.696098 #5114] FATAL -- : Missing DSN for source foo!
|
10
|
+
F, [2006-10-12T16:24:02.234876 #5114] FATAL -- : no block given!
|
11
|
+
F, [2006-10-12T16:25:45.669661 #5158] FATAL -- : Missing host for mailer bar
|
12
|
+
F, [2006-10-12T16:25:45.671160 #5158] FATAL -- : Missing DSN for source foo!
|
13
|
+
F, [2006-10-12T16:25:49.107436 #5158] FATAL -- : no block given!
|
14
|
+
F, [2006-10-14T10:13:25.274132 #11051] FATAL -- : Missing host for mailer bar
|
15
|
+
F, [2006-10-14T10:13:25.299206 #11051] FATAL -- : Missing DSN for source foo!
|
16
|
+
F, [2006-10-14T10:13:28.483790 #11051] FATAL -- : no block given!
|
17
|
+
F, [2006-10-15T10:54:50.895142 #16097] FATAL -- : Missing host for mailer bar
|
18
|
+
F, [2006-10-15T10:54:50.896634 #16097] FATAL -- : Missing DSN for source foo!
|
19
|
+
F, [2006-10-15T10:54:53.763506 #16097] FATAL -- : no block given!
|
20
|
+
F, [2006-10-15T11:18:35.628192 #16342] FATAL -- : Missing host for mailer bar
|
21
|
+
F, [2006-10-15T11:18:35.629748 #16342] FATAL -- : Missing DSN for source foo!
|
22
|
+
F, [2006-10-15T11:18:38.430945 #16342] FATAL -- : no block given!
|
23
|
+
F, [2006-10-15T11:19:16.975981 #16357] FATAL -- : Missing host for mailer bar
|
24
|
+
F, [2006-10-15T11:19:16.977348 #16357] FATAL -- : Missing DSN for source foo!
|
25
|
+
F, [2006-10-15T11:19:19.767345 #16357] FATAL -- : no block given!
|
26
|
+
F, [2006-10-15T11:19:46.772099 #16368] FATAL -- : Missing host for mailer bar
|
27
|
+
F, [2006-10-15T11:19:46.773521 #16368] FATAL -- : Missing DSN for source foo!
|
28
|
+
F, [2006-10-15T11:19:49.577739 #16368] FATAL -- : no block given!
|
29
|
+
F, [2006-10-15T16:27:17.967530 #16689] FATAL -- : Missing host for mailer bar
|
30
|
+
F, [2006-10-15T16:27:17.968898 #16689] FATAL -- : Missing DSN for source foo!
|
31
|
+
F, [2006-10-15T16:27:20.905450 #16689] FATAL -- : no block given!
|
32
|
+
F, [2006-10-19T23:37:07.867740 #2651] FATAL -- : Missing host for mailer bar
|
33
|
+
F, [2006-10-19T23:37:07.893228 #2651] FATAL -- : Missing DSN for source foo!
|
34
|
+
F, [2006-10-19T23:37:10.892764 #2651] FATAL -- : no block given!
|
35
|
+
W, [2006-10-19T23:37:10.932142 #2651] WARN -- : Error on attempt # 1: ; retrying
|
36
|
+
W, [2006-10-19T23:37:11.930135 #2651] WARN -- : Error on attempt # 2: ; retrying
|
37
|
+
W, [2006-10-19T23:37:13.934886 #2651] WARN -- : Error on attempt # 1: execution expired; retrying
|
38
|
+
F, [2006-10-20T00:10:08.245390 #2715] FATAL -- : Missing host for mailer bar
|
39
|
+
F, [2006-10-20T00:10:08.275234 #2715] FATAL -- : Missing DSN for source foo!
|
40
|
+
F, [2006-10-20T00:10:11.384452 #2715] FATAL -- : no block given!
|
41
|
+
W, [2006-10-20T00:10:11.469467 #2715] WARN -- : Error on attempt # 1: ; retrying
|
42
|
+
W, [2006-10-20T00:10:12.466239 #2715] WARN -- : Error on attempt # 2: ; retrying
|
43
|
+
W, [2006-10-20T00:10:14.470966 #2715] WARN -- : Error on attempt # 1: execution expired; retrying
|
44
|
+
F, [2006-10-21T00:14:49.478407 #2859] FATAL -- : Missing host for mailer bar
|
45
|
+
F, [2006-10-21T00:14:49.511268 #2859] FATAL -- : Missing DSN for source foo!
|
46
|
+
F, [2006-10-21T00:14:52.789754 #2859] FATAL -- : no block given!
|
47
|
+
W, [2006-10-21T00:14:52.821559 #2859] WARN -- : Error on attempt # 1: ; retrying
|
48
|
+
W, [2006-10-21T00:14:53.819180 #2859] WARN -- : Error on attempt # 2: ; retrying
|
49
|
+
W, [2006-10-21T00:14:55.824176 #2859] WARN -- : Error on attempt # 1: execution expired; retrying
|
50
|
+
F, [2006-10-23T15:59:47.298636 #2649] FATAL -- : Missing host for mailer bar
|
51
|
+
F, [2006-10-23T15:59:47.322856 #2649] FATAL -- : Missing DSN for source foo!
|
52
|
+
F, [2006-10-23T15:59:50.619700 #2649] FATAL -- : no block given!
|
53
|
+
W, [2006-10-23T15:59:50.708205 #2649] WARN -- : Error on attempt # 1: ; retrying
|
54
|
+
W, [2006-10-23T15:59:51.707123 #2649] WARN -- : Error on attempt # 2: ; retrying
|
55
|
+
W, [2006-10-23T15:59:53.711857 #2649] WARN -- : Error on attempt # 1: execution expired; retrying
|
56
|
+
F, [2006-10-23T23:25:14.080864 #2942] FATAL -- : Missing host for mailer bar
|
57
|
+
F, [2006-10-23T23:25:14.082410 #2942] FATAL -- : Missing DSN for source foo!
|
58
|
+
F, [2006-10-23T23:25:18.068856 #2942] FATAL -- : no block given!
|
59
|
+
W, [2006-10-23T23:25:18.162893 #2942] WARN -- : Error on attempt # 1: ; retrying
|
60
|
+
W, [2006-10-23T23:25:19.162676 #2942] WARN -- : Error on attempt # 2: ; retrying
|
61
|
+
W, [2006-10-23T23:25:21.167571 #2942] WARN -- : Error on attempt # 1: execution expired; retrying
|