ruport 0.4.5 → 0.4.9
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 +2 -0
- data/CHANGELOG +30 -1
- data/Rakefile +2 -2
- data/TODO +4 -10
- data/examples/simple_mail.rb +15 -0
- data/lib/ruport/data_row.rb +3 -3
- data/lib/ruport/data_set.rb +6 -4
- data/lib/ruport/format/engine.rb +11 -0
- data/lib/ruport/format/plugin.rb +6 -4
- data/lib/ruport/format.rb +3 -1
- data/lib/ruport/{report/mailer.rb → mailer.rb} +21 -19
- data/lib/ruport/rails/reportable.rb +32 -0
- data/lib/ruport/rails.rb +2 -0
- data/lib/ruport/report.rb +1 -18
- data/lib/ruport.rb +5 -1
- data/lib/uport.rb +1 -0
- data/test/tc_config.rb +10 -0
- data/test/tc_data_set.rb +9 -5
- data/test/tc_format_engine.rb +12 -1
- data/test/unit.log +288 -0
- metadata +13 -7
data/AUTHORS
CHANGED
data/CHANGELOG
CHANGED
@@ -1,4 +1,33 @@
|
|
1
|
-
The current version of Ruby Reports is 0.4.
|
1
|
+
The current version of Ruby Reports is 0.4.9
|
2
|
+
|
3
|
+
changes since 0.4.5:
|
4
|
+
|
5
|
+
- Added acts_as_reportable for ActiveRecord / rails. whoo
|
6
|
+
|
7
|
+
- Mailer now can handle attachments and html emails.
|
8
|
+
API Breakage. Needs mailfactory unless you use the hooks for other
|
9
|
+
mailers.
|
10
|
+
|
11
|
+
- Added a rewrite_column action to the tabular engine
|
12
|
+
|
13
|
+
- Added Ruport.configure shortcut interface
|
14
|
+
|
15
|
+
- went back to the old style of output for DataSet.to_s
|
16
|
+
Modified TextPlugin to accomplish this
|
17
|
+
|
18
|
+
- Crackrock feature: Engine forwards enumerable methods to it's data.
|
19
|
+
|
20
|
+
- DataSets and DataRows can now be created without specifying field names.
|
21
|
+
|
22
|
+
- Added uport.rb . I needed to steal from RubyGems :)
|
23
|
+
|
24
|
+
- Fixed some requires
|
25
|
+
|
26
|
+
- Temporarily removed mail support from Ruport::Report
|
27
|
+
|
28
|
+
- Added Ruport::Mailer#deliver simple mail interface
|
29
|
+
|
30
|
+
- Ruport::Report::Mailer is now Ruport::Mailer
|
2
31
|
|
3
32
|
changes since 0.4.4:
|
4
33
|
|
data/Rakefile
CHANGED
@@ -20,8 +20,8 @@ Rake::TestTask.new do |test|
|
|
20
20
|
end
|
21
21
|
|
22
22
|
spec = Gem::Specification.new do |spec|
|
23
|
-
spec.name = LEAN ? "ruport
|
24
|
-
spec.version = "0.4.
|
23
|
+
spec.name = LEAN ? "lean-ruport" : "ruport"
|
24
|
+
spec.version = "0.4.9"
|
25
25
|
spec.platform = Gem::Platform::RUBY
|
26
26
|
spec.summary = "A generalized Ruby report generation and templating engine."
|
27
27
|
spec.files = Dir.glob("{examples,lib,test}/**/**/*") +
|
data/TODO
CHANGED
@@ -4,19 +4,15 @@ Immediate Goals:
|
|
4
4
|
|
5
5
|
Bugs:
|
6
6
|
|
7
|
-
-
|
8
|
-
|
7
|
+
- DataSet deep cloning is broken thanks to activerecord.
|
8
|
+
|
9
|
+
- The format engine doesn't have a good way to give you cloned copies
|
10
|
+
of the Plugins meaningfully
|
9
11
|
|
10
12
|
Features:
|
11
13
|
|
12
14
|
- event system
|
13
15
|
|
14
|
-
- Add in a way to load partial datasets
|
15
|
-
|
16
|
-
- allow DataSet creation without field names.
|
17
|
-
|
18
|
-
- Builder should have a no-fields option
|
19
|
-
|
20
16
|
- Composite key selection
|
21
17
|
|
22
18
|
- Value modification predicate.
|
@@ -43,8 +39,6 @@ Community Requests:
|
|
43
39
|
|
44
40
|
Other (Unordered) Goals:
|
45
41
|
|
46
|
-
- Make mailer more robust via MailFactory | TMail | ActiveRecord
|
47
|
-
|
48
42
|
- Support KirbyBase
|
49
43
|
|
50
44
|
- More Secure passwords for SQL
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require "ruport"
|
2
|
+
|
3
|
+
Ruport.configure do |conf|
|
4
|
+
conf.mailer :default,
|
5
|
+
:host => "mail.adelphia.net", :address => "gregory.t.brown@gmail.com"
|
6
|
+
end
|
7
|
+
|
8
|
+
mailer = Ruport::Mailer.new
|
9
|
+
|
10
|
+
mailer.attach "README"
|
11
|
+
|
12
|
+
mailer.deliver :to => "gregory.t.brown@gmail.com",
|
13
|
+
:from => "gregory.t.brown@gmail.com",
|
14
|
+
:subject => "Hey there",
|
15
|
+
:text => "This is what you asked for"
|
data/lib/ruport/data_row.rb
CHANGED
@@ -50,13 +50,13 @@ module Ruport
|
|
50
50
|
# => #<Ruport::DataRow:0xb77bb4d4 @fields=[:a, :b, :c, :d, :e],
|
51
51
|
# @data=[1, 2, 3, 0, 0], @tags=["cat", "dog"]>
|
52
52
|
#
|
53
|
-
def initialize(fields, options={})
|
53
|
+
def initialize(fields=nil, options={})
|
54
54
|
|
55
55
|
#checks to ensure data is convertable
|
56
56
|
verify options[:data]
|
57
57
|
data = options[:data].dup
|
58
58
|
|
59
|
-
@fields = fields.dup
|
59
|
+
@fields = fields ? fields.dup : ( 0...data.length ).to_a
|
60
60
|
@tags = (options[:tags] || {}).dup
|
61
61
|
@data = []
|
62
62
|
|
@@ -109,7 +109,7 @@ module Ruport
|
|
109
109
|
|
110
110
|
# Converts the DataRow to a plain old Array
|
111
111
|
def to_a
|
112
|
-
@data
|
112
|
+
@data.clone
|
113
113
|
end
|
114
114
|
|
115
115
|
def to_h
|
data/lib/ruport/data_set.rb
CHANGED
@@ -38,7 +38,7 @@ module Ruport
|
|
38
38
|
# DataSet supports the following Array methods through delegators
|
39
39
|
# length, empty?, delete_at, first, last, pop
|
40
40
|
#
|
41
|
-
def initialize(fields=
|
41
|
+
def initialize(fields=nil, options={})
|
42
42
|
@fields = fields
|
43
43
|
@default = options[:default] || default
|
44
44
|
@data = []
|
@@ -67,6 +67,8 @@ module Ruport
|
|
67
67
|
self.class.new(@fields, :data => @data)
|
68
68
|
end
|
69
69
|
|
70
|
+
alias_method :dup, :clone
|
71
|
+
|
70
72
|
# Creates a new DataSet with the same shape as this one, but empty.
|
71
73
|
def empty_clone
|
72
74
|
self.class.new(@fields)
|
@@ -96,11 +98,11 @@ module Ruport
|
|
96
98
|
# data << { :some_field_name => 3, :other => 2, :another => 1 }
|
97
99
|
def << ( stuff, filler=@default )
|
98
100
|
if stuff.kind_of?(DataRow)
|
99
|
-
@data << stuff
|
101
|
+
@data << stuff.clone
|
100
102
|
elsif stuff.kind_of?(Array) && stuff[0].kind_of?(DataRow)
|
101
103
|
@data.concat(stuff)
|
102
104
|
else
|
103
|
-
@data << DataRow.new(@fields, :data => stuff,:default => filler)
|
105
|
+
@data << DataRow.new(@fields, :data => stuff.clone,:default => filler)
|
104
106
|
end
|
105
107
|
return self
|
106
108
|
end
|
@@ -259,7 +261,7 @@ module Ruport
|
|
259
261
|
|
260
262
|
# Readable string representation of the DataSet
|
261
263
|
def to_s; as(:text) end
|
262
|
-
|
264
|
+
|
263
265
|
end
|
264
266
|
end
|
265
267
|
|
data/lib/ruport/format/engine.rb
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
module Ruport
|
2
2
|
class Format::Engine
|
3
|
+
require "forwardable"
|
4
|
+
|
3
5
|
|
4
6
|
class << self
|
7
|
+
|
8
|
+
include Enumerable
|
9
|
+
extend Forwardable
|
10
|
+
|
11
|
+
def_delegator :@data, :each
|
5
12
|
|
6
13
|
def renderer(&block)
|
7
14
|
block = lambda { data } unless block_given?
|
@@ -87,6 +94,10 @@ module Ruport
|
|
87
94
|
data.to_a[0..index] + [filler] + data.to_a[index+1..-1]
|
88
95
|
end
|
89
96
|
end
|
97
|
+
|
98
|
+
def rewrite_column(key,&block)
|
99
|
+
data.each { |r| r[key] = block[r] }
|
100
|
+
end
|
90
101
|
|
91
102
|
attr_accessor :show_field_names
|
92
103
|
|
data/lib/ruport/format/plugin.rb
CHANGED
@@ -45,13 +45,14 @@ module Ruport
|
|
45
45
|
|
46
46
|
|
47
47
|
class CSVPlugin < Format::Plugin
|
48
|
-
|
49
|
-
|
48
|
+
|
50
49
|
format_field_names do
|
50
|
+
require "fastercsv"
|
51
51
|
FasterCSV.generate { |csv| csv << data.fields }
|
52
52
|
end
|
53
53
|
|
54
54
|
renderer :table do
|
55
|
+
require "fastercsv"
|
55
56
|
rendered_field_names +
|
56
57
|
FasterCSV.generate { |csv| data.each { |r| csv << r } }
|
57
58
|
end
|
@@ -66,12 +67,13 @@ module Ruport
|
|
66
67
|
renderer :document
|
67
68
|
|
68
69
|
renderer :table do
|
70
|
+
indices = (0...data.length).to_a
|
69
71
|
data.inject(rendered_field_names){ |s,r|
|
70
|
-
s << "
|
72
|
+
s << "row#{indices.shift}: ( #{r.to_a.join(', ')} )\n"
|
71
73
|
}
|
72
74
|
end
|
73
75
|
format_field_names do
|
74
|
-
"
|
76
|
+
"fields: ( #{data.fields.join(', ')} )\n"
|
75
77
|
end
|
76
78
|
|
77
79
|
register_on :table_engine
|
data/lib/ruport/format.rb
CHANGED
@@ -8,7 +8,6 @@
|
|
8
8
|
# your choice of the GNU General Public License or the Ruby License.
|
9
9
|
#
|
10
10
|
# See LICENSE and COPYING for details
|
11
|
-
begin; require "faster_csv"; rescue LoadError; require "csv"; end
|
12
11
|
module Ruport
|
13
12
|
|
14
13
|
|
@@ -83,6 +82,9 @@ module Ruport
|
|
83
82
|
|
84
83
|
options[:auto_render] = true unless options.has_key? :auto_render
|
85
84
|
|
85
|
+
|
86
|
+
options[:data] &&= options[:data].dup
|
87
|
+
|
86
88
|
options.each do |k,v|
|
87
89
|
my_engine.send("#{k}=",v) if my_engine.respond_to? k
|
88
90
|
end
|
@@ -5,30 +5,26 @@
|
|
5
5
|
# under your choice of the Ruby license or the GNU GPL
|
6
6
|
# See LICENSE for details
|
7
7
|
require "net/smtp"
|
8
|
+
require "forwardable"
|
8
9
|
module Ruport
|
9
|
-
class Report
|
10
10
|
class Mailer
|
11
|
+
extend Forwardable
|
11
12
|
|
12
13
|
def initialize( mailer_label=:default )
|
13
|
-
select_mailer(mailer_label)
|
14
|
-
|
15
|
-
|
14
|
+
select_mailer(mailer_label); mail_object
|
15
|
+
rescue
|
16
|
+
raise "you need to specify a mailer to use"
|
16
17
|
end
|
18
|
+
|
19
|
+
def_delegators( :@mail, :to, :to=, :from, :from=,
|
20
|
+
:subject, :subject=, :attach,
|
21
|
+
:text, :text=, :html, :html= )
|
17
22
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
#The body of the message to be sent
|
22
|
-
attr_accessor :body
|
23
|
-
|
24
|
-
# This takes _report_name_ as argument and sends the contents of @body to
|
25
|
-
# @recipients
|
26
|
-
def send_report(report_name="No Subject")
|
27
|
-
return if @body.empty?
|
23
|
+
def deliver(options={})
|
24
|
+
options.each { |k,v| send("#{k}=",v) if respond_to? "#{k}=" }
|
25
|
+
|
28
26
|
Net::SMTP.start(@host,@port,@host,@user,@password,@auth) do |smtp|
|
29
|
-
smtp.send_message(
|
30
|
-
@address,
|
31
|
-
@recipients )
|
27
|
+
smtp.send_message((options[:mail_object] || mail_object).to_s, options[:from], options[:to] )
|
32
28
|
end
|
33
29
|
end
|
34
30
|
|
@@ -40,9 +36,15 @@ module Ruport
|
|
40
36
|
@address = mailer.address
|
41
37
|
@port = mailer.port || 25
|
42
38
|
@auth = mailer.auth_type || :plain
|
39
|
+
@mail_klass = mailer.mail_klass
|
40
|
+
end
|
41
|
+
|
42
|
+
def mail_object
|
43
|
+
return @mail if @mail
|
44
|
+
return @mail ||= @mail_klass.new if @mail_klass
|
45
|
+
require "mailfactory"
|
46
|
+
@mail ||= MailFactory.new
|
43
47
|
end
|
44
|
-
|
45
48
|
|
46
49
|
end
|
47
|
-
end
|
48
50
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Ruport
|
2
|
+
module Reportable
|
3
|
+
def formatted_table(type,options={},&block)
|
4
|
+
to_ds({:find => options[:find]}).as(type) do |e|
|
5
|
+
block[e] if block_given?
|
6
|
+
e.data.select_columns! *options[:columns] if options[:columns]
|
7
|
+
end
|
8
|
+
end
|
9
|
+
def to_ds(options={})
|
10
|
+
find(:all,options[:find]).to_ds(options[:columns] || column_names)
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
14
|
+
class DataSet
|
15
|
+
alias_method :old_append, :<<
|
16
|
+
def <<( stuff, filler=@default )
|
17
|
+
if stuff.kind_of?(ActiveRecord::Base)
|
18
|
+
@data << stuff.attributes
|
19
|
+
else
|
20
|
+
old_append(stuff,filler)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
class ActiveRecord::Base
|
27
|
+
def self.acts_as_reportable
|
28
|
+
extend Ruport::Reportable
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
|
data/lib/ruport/rails.rb
ADDED
data/lib/ruport/report.rb
CHANGED
@@ -3,30 +3,18 @@
|
|
3
3
|
#load the needed standard libraries.
|
4
4
|
%w[erb yaml date logger fileutils].each { |lib| require lib }
|
5
5
|
|
6
|
-
require "ruport/
|
7
|
-
|
8
|
-
#load Optional libs if they're around.
|
9
|
-
begin
|
10
|
-
require "redcloth"
|
11
|
-
rescue LoadError
|
12
|
-
nil
|
13
|
-
end
|
6
|
+
require "ruport/mailer"
|
14
7
|
|
15
8
|
module Ruport
|
16
9
|
class Report
|
17
10
|
def initialize( source_name=:default, mailer_name=:default )
|
18
|
-
|
19
11
|
@source = source_name
|
20
12
|
|
21
|
-
if Ruport::Config.mailers[mailer_name]
|
22
|
-
@mailer = Mailer.new(mailer_name)
|
23
|
-
end
|
24
13
|
@report_name = @report = ""
|
25
14
|
@file = nil
|
26
15
|
end
|
27
16
|
|
28
17
|
attr_accessor :file,:report
|
29
|
-
attr_reader :mailer
|
30
18
|
|
31
19
|
# High level interface to Ruport::Query
|
32
20
|
# - Can read SQL statements from file or string
|
@@ -80,12 +68,7 @@ module Ruport
|
|
80
68
|
else
|
81
69
|
File.open(@file,"w") { |f| f.puts @report }
|
82
70
|
end
|
83
|
-
unless @mailer.nil? || @mailer.recipients.empty?
|
84
|
-
@mailer.body = @report if @mailer.body.empty?
|
85
|
-
@mailer.send_report(@report_name)
|
86
|
-
end
|
87
71
|
@post.call if @post
|
88
|
-
|
89
72
|
end
|
90
73
|
|
91
74
|
# sets the active source to the Ruport::Config source requested by label.
|
data/lib/ruport.rb
CHANGED
@@ -14,7 +14,7 @@ module Ruport
|
|
14
14
|
|
15
15
|
begin; require 'rubygems'; rescue LoadError; nil end
|
16
16
|
|
17
|
-
VERSION = "Ruby Reports Version 0.4.
|
17
|
+
VERSION = "Ruby Reports Version 0.4.9"
|
18
18
|
|
19
19
|
# Ruports logging and error interface.
|
20
20
|
# Can generate warnings or raise fatal errors
|
@@ -53,6 +53,10 @@ module Ruport
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
56
|
+
def Ruport.configure(&block)
|
57
|
+
block.call(Ruport::Config)
|
58
|
+
end
|
59
|
+
|
56
60
|
end
|
57
61
|
|
58
62
|
|
data/lib/uport.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "ruport"
|
data/test/tc_config.rb
CHANGED
@@ -54,6 +54,16 @@ class TestConfiguration < Test::Unit::TestCase
|
|
54
54
|
assert_equal("dbi:mysql:test2", Ruport::Config.sources[:bar].dsn)
|
55
55
|
end
|
56
56
|
|
57
|
+
def test_simple_interface
|
58
|
+
Ruport.configure do |c|
|
59
|
+
c.source :foo, :dsn => "dbi:odbc:test"
|
60
|
+
c.source :bar, :dsn => "dbi:odbc:test2"
|
61
|
+
end
|
62
|
+
assert_equal("dbi:odbc:test",Ruport::Config.sources[:foo].dsn)
|
63
|
+
assert_equal("dbi:odbc:test2",Ruport::Config.sources[:bar].dsn)
|
64
|
+
end
|
65
|
+
|
66
|
+
|
57
67
|
def test_logger
|
58
68
|
# We have a logger running now, dont we?
|
59
69
|
assert(Ruport::Config.logger.kind_of?(Logger))
|
data/test/tc_data_set.rb
CHANGED
@@ -295,10 +295,7 @@ class TestDataSet < Test::Unit::TestCase
|
|
295
295
|
assert_raise(ArgumentError) {
|
296
296
|
%w[d e f].to_ds(%w[a b c])
|
297
297
|
}
|
298
|
-
assert_raise(
|
299
|
-
[:foo,:bar,:dog].to_ds(%w[tree cat animal])
|
300
|
-
}
|
301
|
-
assert_raise(ArgumentError) {
|
298
|
+
assert_raise(TypeError) {
|
302
299
|
[1,2,3].to_ds(%w[foo bar soup])
|
303
300
|
}
|
304
301
|
|
@@ -322,5 +319,12 @@ class TestDataSet < Test::Unit::TestCase
|
|
322
319
|
data2 << %w[ a b c ] << { "col1" => "d", "col3" => "e" }
|
323
320
|
assert_equal @data, data2
|
324
321
|
end
|
325
|
-
|
322
|
+
|
323
|
+
def test_no_fields
|
324
|
+
data2 = DataSet.new
|
325
|
+
data2 << [1,2,3]
|
326
|
+
data2 << [4,5,6]
|
327
|
+
assert_equal([1,2,3],data2[0].to_a)
|
328
|
+
assert_equal([4,5,6],data2[1].to_a)
|
329
|
+
end
|
326
330
|
end
|
data/test/tc_format_engine.rb
CHANGED
@@ -67,7 +67,18 @@ class TestTabularFormatEngine < Test::Unit::TestCase
|
|
67
67
|
actual = Format.table(:plugin => :csv, :data => [[1,2],[3,4]])
|
68
68
|
assert_equal(expected,actual)
|
69
69
|
end
|
70
|
-
|
70
|
+
|
71
|
+
def test_rewrite_column
|
72
|
+
a = @engine.dup
|
73
|
+
a.plugin = :csv
|
74
|
+
a.data = [[1,2],[3,4]].to_ds(%w[a b])
|
75
|
+
a.rewrite_column("a") { |r| r["a"] + 1 }
|
76
|
+
assert_equal "2,2\n4,4\n", a.render
|
77
|
+
a.data = [[5,6],[7,8]]
|
78
|
+
a.rewrite_column(1) { "apple" }
|
79
|
+
assert_equal "5,apple\n7,apple\n", a.render
|
80
|
+
end
|
81
|
+
|
71
82
|
end
|
72
83
|
|
73
84
|
class TestDocumentFormatEngine < Test::Unit::TestCase
|
data/test/unit.log
ADDED
@@ -0,0 +1,288 @@
|
|
1
|
+
# Logfile created on Tue Jun 13 19:26:15 EDT 2006 by logger.rb/1.5.2.7
|
2
|
+
F, [2006-06-13T19:26:16.000039 #21923] FATAL -- : Missing host for mailer bar
|
3
|
+
F, [2006-06-13T19:26:16.001340 #21923] FATAL -- : Missing DSN for source foo!
|
4
|
+
F, [2006-06-13T19:26:16.015257 #21923] FATAL -- : Cannot convert data to DataRow
|
5
|
+
F, [2006-06-13T19:26:16.015749 #21923] FATAL -- : Cannot convert data to DataRow
|
6
|
+
F, [2006-06-13T19:26:16.016161 #21923] FATAL -- : Cannot convert data to DataRow
|
7
|
+
F, [2006-06-13T19:26:16.034208 #21923] FATAL -- : Cannot convert data to DataRow
|
8
|
+
F, [2006-06-13T19:26:16.105119 #21923] FATAL -- : no block given!
|
9
|
+
F, [2006-06-13T19:45:23.042501 #21971] FATAL -- : Missing host for mailer bar
|
10
|
+
F, [2006-06-13T19:45:23.043978 #21971] FATAL -- : Missing DSN for source foo!
|
11
|
+
F, [2006-06-13T19:45:23.081584 #21971] FATAL -- : Cannot convert data to DataRow
|
12
|
+
F, [2006-06-13T19:45:23.082079 #21971] FATAL -- : Cannot convert data to DataRow
|
13
|
+
F, [2006-06-13T19:45:23.082495 #21971] FATAL -- : Cannot convert data to DataRow
|
14
|
+
F, [2006-06-13T19:45:23.104608 #21971] FATAL -- : Cannot convert data to DataRow
|
15
|
+
F, [2006-06-13T19:45:23.173348 #21971] FATAL -- : no block given!
|
16
|
+
F, [2006-06-13T22:27:51.460515 #22439] FATAL -- : Missing host for mailer bar
|
17
|
+
F, [2006-06-13T22:27:51.461855 #22439] FATAL -- : Missing DSN for source foo!
|
18
|
+
F, [2006-06-13T22:27:51.505311 #22439] FATAL -- : Cannot convert data to DataRow
|
19
|
+
F, [2006-06-13T22:27:51.505798 #22439] FATAL -- : Cannot convert data to DataRow
|
20
|
+
F, [2006-06-13T22:27:51.506487 #22439] FATAL -- : Cannot convert data to DataRow
|
21
|
+
F, [2006-06-13T22:27:51.524123 #22439] FATAL -- : Cannot convert data to DataRow
|
22
|
+
F, [2006-06-13T22:27:51.595561 #22439] FATAL -- : no block given!
|
23
|
+
F, [2006-06-14T02:23:18.423043 #23299] FATAL -- : Missing host for mailer bar
|
24
|
+
F, [2006-06-14T02:23:18.447079 #23299] FATAL -- : Missing DSN for source foo!
|
25
|
+
F, [2006-06-14T02:23:18.462260 #23299] FATAL -- : Cannot convert data to DataRow
|
26
|
+
F, [2006-06-14T02:23:18.462897 #23299] FATAL -- : Cannot convert data to DataRow
|
27
|
+
F, [2006-06-14T02:23:18.463316 #23299] FATAL -- : Cannot convert data to DataRow
|
28
|
+
F, [2006-06-14T02:23:18.480896 #23299] FATAL -- : Cannot convert data to DataRow
|
29
|
+
F, [2006-06-14T02:23:18.562916 #23299] FATAL -- : no block given!
|
30
|
+
F, [2006-06-14T02:26:37.672286 #23311] FATAL -- : Missing host for mailer bar
|
31
|
+
F, [2006-06-14T02:26:37.673707 #23311] FATAL -- : Missing DSN for source foo!
|
32
|
+
F, [2006-06-14T02:26:37.700852 #23311] FATAL -- : Cannot convert data to DataRow
|
33
|
+
F, [2006-06-14T02:26:37.701333 #23311] FATAL -- : Cannot convert data to DataRow
|
34
|
+
F, [2006-06-14T02:26:37.701750 #23311] FATAL -- : Cannot convert data to DataRow
|
35
|
+
F, [2006-06-14T02:26:37.718041 #23311] FATAL -- : Cannot convert data to DataRow
|
36
|
+
F, [2006-06-14T02:26:38.417229 #23311] FATAL -- : no block given!
|
37
|
+
F, [2006-06-14T02:27:15.541449 #23314] FATAL -- : Missing host for mailer bar
|
38
|
+
F, [2006-06-14T02:27:15.543359 #23314] FATAL -- : Missing DSN for source foo!
|
39
|
+
F, [2006-06-14T02:27:15.566313 #23314] FATAL -- : Cannot convert data to DataRow
|
40
|
+
F, [2006-06-14T02:27:15.566800 #23314] FATAL -- : Cannot convert data to DataRow
|
41
|
+
F, [2006-06-14T02:27:15.567209 #23314] FATAL -- : Cannot convert data to DataRow
|
42
|
+
F, [2006-06-14T02:27:15.584610 #23314] FATAL -- : Cannot convert data to DataRow
|
43
|
+
F, [2006-06-14T02:27:15.656898 #23314] FATAL -- : no block given!
|
44
|
+
F, [2006-06-14T02:27:55.501452 #23323] FATAL -- : Missing host for mailer bar
|
45
|
+
F, [2006-06-14T02:27:55.502814 #23323] FATAL -- : Missing DSN for source foo!
|
46
|
+
F, [2006-06-14T02:27:55.527215 #23323] FATAL -- : Cannot convert data to DataRow
|
47
|
+
F, [2006-06-14T02:27:55.527950 #23323] FATAL -- : Cannot convert data to DataRow
|
48
|
+
F, [2006-06-14T02:27:55.529954 #23323] FATAL -- : Cannot convert data to DataRow
|
49
|
+
F, [2006-06-14T02:27:55.546854 #23323] FATAL -- : Cannot convert data to DataRow
|
50
|
+
F, [2006-06-14T02:27:55.620500 #23323] FATAL -- : no block given!
|
51
|
+
F, [2006-06-14T02:28:13.044677 #23325] FATAL -- : Missing host for mailer bar
|
52
|
+
F, [2006-06-14T02:28:13.056140 #23325] FATAL -- : Missing DSN for source foo!
|
53
|
+
F, [2006-06-14T02:28:13.070544 #23325] FATAL -- : Cannot convert data to DataRow
|
54
|
+
F, [2006-06-14T02:28:13.071084 #23325] FATAL -- : Cannot convert data to DataRow
|
55
|
+
F, [2006-06-14T02:28:13.071504 #23325] FATAL -- : Cannot convert data to DataRow
|
56
|
+
F, [2006-06-14T02:28:13.089079 #23325] FATAL -- : Cannot convert data to DataRow
|
57
|
+
F, [2006-06-14T02:28:13.162462 #23325] FATAL -- : no block given!
|
58
|
+
F, [2006-06-14T02:29:14.807373 #23327] FATAL -- : Missing host for mailer bar
|
59
|
+
F, [2006-06-14T02:29:14.808753 #23327] FATAL -- : Missing DSN for source foo!
|
60
|
+
F, [2006-06-14T02:29:14.831979 #23327] FATAL -- : Cannot convert data to DataRow
|
61
|
+
F, [2006-06-14T02:29:14.832457 #23327] FATAL -- : Cannot convert data to DataRow
|
62
|
+
F, [2006-06-14T02:29:14.832863 #23327] FATAL -- : Cannot convert data to DataRow
|
63
|
+
F, [2006-06-14T02:29:14.851516 #23327] FATAL -- : Cannot convert data to DataRow
|
64
|
+
F, [2006-06-14T02:29:14.925750 #23327] FATAL -- : no block given!
|
65
|
+
F, [2006-06-14T02:31:43.691229 #23336] FATAL -- : Missing host for mailer bar
|
66
|
+
F, [2006-06-14T02:31:43.692597 #23336] FATAL -- : Missing DSN for source foo!
|
67
|
+
F, [2006-06-14T02:31:43.716803 #23336] FATAL -- : Cannot convert data to DataRow
|
68
|
+
F, [2006-06-14T02:31:43.717267 #23336] FATAL -- : Cannot convert data to DataRow
|
69
|
+
F, [2006-06-14T02:31:43.717680 #23336] FATAL -- : Cannot convert data to DataRow
|
70
|
+
F, [2006-06-14T02:31:43.735398 #23336] FATAL -- : Cannot convert data to DataRow
|
71
|
+
F, [2006-06-14T02:31:43.809643 #23336] FATAL -- : no block given!
|
72
|
+
F, [2006-06-14T02:32:09.993298 #23341] FATAL -- : Missing host for mailer bar
|
73
|
+
F, [2006-06-14T02:32:09.994655 #23341] FATAL -- : Missing DSN for source foo!
|
74
|
+
F, [2006-06-14T02:32:10.017024 #23341] FATAL -- : Cannot convert data to DataRow
|
75
|
+
F, [2006-06-14T02:32:10.017523 #23341] FATAL -- : Cannot convert data to DataRow
|
76
|
+
F, [2006-06-14T02:32:10.017931 #23341] FATAL -- : Cannot convert data to DataRow
|
77
|
+
F, [2006-06-14T02:32:10.036228 #23341] FATAL -- : Cannot convert data to DataRow
|
78
|
+
F, [2006-06-14T02:32:10.050251 #23341] FATAL -- : Cannot convert data to DataRow
|
79
|
+
F, [2006-06-14T02:32:10.108823 #23341] FATAL -- : no block given!
|
80
|
+
F, [2006-06-14T02:32:31.720736 #23349] FATAL -- : Missing host for mailer bar
|
81
|
+
F, [2006-06-14T02:32:31.722141 #23349] FATAL -- : Missing DSN for source foo!
|
82
|
+
F, [2006-06-14T02:32:31.745591 #23349] FATAL -- : Cannot convert data to DataRow
|
83
|
+
F, [2006-06-14T02:32:31.746256 #23349] FATAL -- : Cannot convert data to DataRow
|
84
|
+
F, [2006-06-14T02:32:31.746689 #23349] FATAL -- : Cannot convert data to DataRow
|
85
|
+
F, [2006-06-14T02:32:31.763948 #23349] FATAL -- : Cannot convert data to DataRow
|
86
|
+
F, [2006-06-14T02:32:31.840141 #23349] FATAL -- : no block given!
|
87
|
+
F, [2006-06-14T02:34:03.761919 #23364] FATAL -- : Missing host for mailer bar
|
88
|
+
F, [2006-06-14T02:34:03.763571 #23364] FATAL -- : Missing DSN for source foo!
|
89
|
+
F, [2006-06-14T02:34:03.787052 #23364] FATAL -- : Cannot convert data to DataRow
|
90
|
+
F, [2006-06-14T02:34:03.787560 #23364] FATAL -- : Cannot convert data to DataRow
|
91
|
+
F, [2006-06-14T02:34:03.788397 #23364] FATAL -- : Cannot convert data to DataRow
|
92
|
+
F, [2006-06-14T02:34:03.806002 #23364] FATAL -- : Cannot convert data to DataRow
|
93
|
+
F, [2006-06-14T02:34:03.880043 #23364] FATAL -- : no block given!
|
94
|
+
F, [2006-06-14T02:34:25.520706 #23369] FATAL -- : Missing host for mailer bar
|
95
|
+
F, [2006-06-14T02:34:25.522702 #23369] FATAL -- : Missing DSN for source foo!
|
96
|
+
F, [2006-06-14T02:34:25.544843 #23369] FATAL -- : Cannot convert data to DataRow
|
97
|
+
F, [2006-06-14T02:34:25.545755 #23369] FATAL -- : Cannot convert data to DataRow
|
98
|
+
F, [2006-06-14T02:34:25.546194 #23369] FATAL -- : Cannot convert data to DataRow
|
99
|
+
F, [2006-06-14T02:34:25.563392 #23369] FATAL -- : Cannot convert data to DataRow
|
100
|
+
F, [2006-06-14T02:34:25.637363 #23369] FATAL -- : no block given!
|
101
|
+
F, [2006-06-14T02:34:54.236904 #23374] FATAL -- : Missing host for mailer bar
|
102
|
+
F, [2006-06-14T02:34:54.238278 #23374] FATAL -- : Missing DSN for source foo!
|
103
|
+
F, [2006-06-14T02:34:54.261458 #23374] FATAL -- : Cannot convert data to DataRow
|
104
|
+
F, [2006-06-14T02:34:54.261945 #23374] FATAL -- : Cannot convert data to DataRow
|
105
|
+
F, [2006-06-14T02:34:54.262398 #23374] FATAL -- : Cannot convert data to DataRow
|
106
|
+
F, [2006-06-14T02:34:54.281324 #23374] FATAL -- : Cannot convert data to DataRow
|
107
|
+
F, [2006-06-14T02:34:54.352850 #23374] FATAL -- : no block given!
|
108
|
+
F, [2006-06-14T13:16:35.764590 #24000] FATAL -- : Missing host for mailer bar
|
109
|
+
F, [2006-06-14T13:16:35.765863 #24000] FATAL -- : Missing DSN for source foo!
|
110
|
+
F, [2006-06-14T13:16:35.788178 #24000] FATAL -- : Cannot convert data to DataRow
|
111
|
+
F, [2006-06-14T13:16:35.788772 #24000] FATAL -- : Cannot convert data to DataRow
|
112
|
+
F, [2006-06-14T13:16:35.789187 #24000] FATAL -- : Cannot convert data to DataRow
|
113
|
+
F, [2006-06-14T13:16:35.806773 #24000] FATAL -- : Cannot convert data to DataRow
|
114
|
+
F, [2006-06-14T13:16:35.874788 #24000] FATAL -- : no block given!
|
115
|
+
F, [2006-06-15T19:24:42.538584 #5668] FATAL -- : Missing host for mailer bar
|
116
|
+
F, [2006-06-15T19:24:42.540172 #5668] FATAL -- : Missing DSN for source foo!
|
117
|
+
F, [2006-06-15T19:24:42.563822 #5668] FATAL -- : Cannot convert data to DataRow
|
118
|
+
F, [2006-06-15T19:24:42.564303 #5668] FATAL -- : Cannot convert data to DataRow
|
119
|
+
F, [2006-06-15T19:24:42.564702 #5668] FATAL -- : Cannot convert data to DataRow
|
120
|
+
F, [2006-06-15T19:24:42.582486 #5668] FATAL -- : Cannot convert data to DataRow
|
121
|
+
F, [2006-06-15T19:24:42.668472 #5668] FATAL -- : no block given!
|
122
|
+
F, [2006-06-15T20:26:14.900408 #5835] FATAL -- : Missing host for mailer bar
|
123
|
+
F, [2006-06-15T20:26:14.902743 #5835] FATAL -- : Missing DSN for source foo!
|
124
|
+
F, [2006-06-15T20:26:14.926561 #5835] FATAL -- : Cannot convert data to DataRow
|
125
|
+
F, [2006-06-15T20:26:14.927048 #5835] FATAL -- : Cannot convert data to DataRow
|
126
|
+
F, [2006-06-15T20:26:14.927457 #5835] FATAL -- : Cannot convert data to DataRow
|
127
|
+
F, [2006-06-15T20:26:14.944924 #5835] FATAL -- : Cannot convert data to DataRow
|
128
|
+
F, [2006-06-15T20:26:15.026618 #5835] FATAL -- : no block given!
|
129
|
+
F, [2006-06-15T20:56:57.572476 #5945] FATAL -- : Missing host for mailer bar
|
130
|
+
F, [2006-06-15T20:56:57.573952 #5945] FATAL -- : Missing DSN for source foo!
|
131
|
+
F, [2006-06-15T20:56:57.599657 #5945] FATAL -- : Cannot convert data to DataRow
|
132
|
+
F, [2006-06-15T20:56:57.684041 #5945] FATAL -- : Cannot convert data to DataRow
|
133
|
+
F, [2006-06-15T20:56:57.743276 #5945] FATAL -- : no block given!
|
134
|
+
F, [2006-06-15T20:58:09.690478 #5950] FATAL -- : Missing host for mailer bar
|
135
|
+
F, [2006-06-15T20:58:09.691906 #5950] FATAL -- : Missing DSN for source foo!
|
136
|
+
F, [2006-06-15T20:58:09.716375 #5950] FATAL -- : Cannot convert data to DataRow
|
137
|
+
F, [2006-06-15T20:58:09.771058 #5950] FATAL -- : Cannot convert data to DataRow
|
138
|
+
F, [2006-06-15T20:58:09.828380 #5950] FATAL -- : no block given!
|
139
|
+
F, [2006-06-15T20:58:29.906803 #5952] FATAL -- : Missing host for mailer bar
|
140
|
+
F, [2006-06-15T20:58:29.916737 #5952] FATAL -- : Missing DSN for source foo!
|
141
|
+
F, [2006-06-15T20:58:29.932170 #5952] FATAL -- : Cannot convert data to DataRow
|
142
|
+
F, [2006-06-15T20:58:29.986730 #5952] FATAL -- : Cannot convert data to DataRow
|
143
|
+
F, [2006-06-15T20:58:30.045555 #5952] FATAL -- : no block given!
|
144
|
+
F, [2006-06-15T20:58:54.232990 #5960] FATAL -- : Missing host for mailer bar
|
145
|
+
F, [2006-06-15T20:58:54.243375 #5960] FATAL -- : Missing DSN for source foo!
|
146
|
+
F, [2006-06-15T20:58:54.260194 #5960] FATAL -- : Cannot convert data to DataRow
|
147
|
+
F, [2006-06-15T20:58:54.279218 #5960] FATAL -- : Cannot convert data to DataRow
|
148
|
+
F, [2006-06-15T20:58:54.366271 #5960] FATAL -- : no block given!
|
149
|
+
F, [2006-06-15T22:07:46.738964 #6055] FATAL -- : Missing host for mailer bar
|
150
|
+
F, [2006-06-15T22:07:46.749241 #6055] FATAL -- : Missing DSN for source foo!
|
151
|
+
F, [2006-06-15T22:07:46.765791 #6055] FATAL -- : Cannot convert data to DataRow
|
152
|
+
F, [2006-06-15T22:07:46.783800 #6055] FATAL -- : Cannot convert data to DataRow
|
153
|
+
F, [2006-06-15T22:07:46.868623 #6055] FATAL -- : no block given!
|
154
|
+
F, [2006-06-15T22:23:30.840464 #6105] FATAL -- : Missing host for mailer bar
|
155
|
+
F, [2006-06-15T22:23:30.865994 #6105] FATAL -- : Missing DSN for source foo!
|
156
|
+
F, [2006-06-15T22:23:30.882332 #6105] FATAL -- : Cannot convert data to DataRow
|
157
|
+
F, [2006-06-15T22:23:30.901303 #6105] FATAL -- : Cannot convert data to DataRow
|
158
|
+
F, [2006-06-15T22:23:30.983962 #6105] FATAL -- : no block given!
|
159
|
+
F, [2006-06-15T22:41:45.778792 #6191] FATAL -- : Missing host for mailer bar
|
160
|
+
F, [2006-06-15T22:41:45.806178 #6191] FATAL -- : Missing DSN for source foo!
|
161
|
+
F, [2006-06-15T22:41:45.819680 #6191] FATAL -- : Cannot convert data to DataRow
|
162
|
+
F, [2006-06-15T22:41:45.838147 #6191] FATAL -- : Cannot convert data to DataRow
|
163
|
+
F, [2006-06-15T22:41:45.916544 #6191] FATAL -- : no block given!
|
164
|
+
F, [2006-06-15T22:53:23.885880 #6226] FATAL -- : Missing host for mailer bar
|
165
|
+
F, [2006-06-15T22:53:23.887216 #6226] FATAL -- : Missing DSN for source foo!
|
166
|
+
F, [2006-06-15T22:53:23.924456 #6226] FATAL -- : Cannot convert data to DataRow
|
167
|
+
F, [2006-06-15T22:53:23.943041 #6226] FATAL -- : Cannot convert data to DataRow
|
168
|
+
F, [2006-06-15T22:53:24.019700 #6226] FATAL -- : no block given!
|
169
|
+
F, [2006-06-15T22:53:57.233736 #6228] FATAL -- : Missing host for mailer bar
|
170
|
+
F, [2006-06-15T22:53:57.235097 #6228] FATAL -- : Missing DSN for source foo!
|
171
|
+
F, [2006-06-15T22:53:57.273219 #6228] FATAL -- : Cannot convert data to DataRow
|
172
|
+
F, [2006-06-15T22:53:57.291250 #6228] FATAL -- : Cannot convert data to DataRow
|
173
|
+
F, [2006-06-15T22:53:57.370284 #6228] FATAL -- : no block given!
|
174
|
+
F, [2006-06-15T22:54:18.360229 #6230] FATAL -- : Missing host for mailer bar
|
175
|
+
F, [2006-06-15T22:54:18.361548 #6230] FATAL -- : Missing DSN for source foo!
|
176
|
+
F, [2006-06-15T22:54:18.400180 #6230] FATAL -- : Cannot convert data to DataRow
|
177
|
+
F, [2006-06-15T22:54:18.418491 #6230] FATAL -- : Cannot convert data to DataRow
|
178
|
+
F, [2006-06-15T22:54:18.497004 #6230] FATAL -- : no block given!
|
179
|
+
F, [2006-06-15T22:56:25.839631 #6233] FATAL -- : Missing host for mailer bar
|
180
|
+
F, [2006-06-15T22:56:25.841137 #6233] FATAL -- : Missing DSN for source foo!
|
181
|
+
F, [2006-06-15T22:56:25.879281 #6233] FATAL -- : Cannot convert data to DataRow
|
182
|
+
F, [2006-06-15T22:56:25.898055 #6233] FATAL -- : Cannot convert data to DataRow
|
183
|
+
F, [2006-06-15T22:56:25.977743 #6233] FATAL -- : no block given!
|
184
|
+
F, [2006-06-15T22:57:33.288640 #6245] FATAL -- : Missing host for mailer bar
|
185
|
+
F, [2006-06-15T22:57:33.290111 #6245] FATAL -- : Missing DSN for source foo!
|
186
|
+
F, [2006-06-15T22:57:33.327666 #6245] FATAL -- : Cannot convert data to DataRow
|
187
|
+
F, [2006-06-15T22:57:33.346096 #6245] FATAL -- : Cannot convert data to DataRow
|
188
|
+
F, [2006-06-15T22:57:33.424081 #6245] FATAL -- : no block given!
|
189
|
+
F, [2006-06-15T22:57:47.205762 #6247] FATAL -- : Missing host for mailer bar
|
190
|
+
F, [2006-06-15T22:57:47.207178 #6247] FATAL -- : Missing DSN for source foo!
|
191
|
+
F, [2006-06-15T22:57:47.243633 #6247] FATAL -- : Cannot convert data to DataRow
|
192
|
+
F, [2006-06-15T22:57:47.261742 #6247] FATAL -- : Cannot convert data to DataRow
|
193
|
+
F, [2006-06-15T22:57:47.338297 #6247] FATAL -- : no block given!
|
194
|
+
F, [2006-06-15T22:58:11.296356 #6249] FATAL -- : Missing host for mailer bar
|
195
|
+
F, [2006-06-15T22:58:11.297970 #6249] FATAL -- : Missing DSN for source foo!
|
196
|
+
F, [2006-06-15T22:58:11.334712 #6249] FATAL -- : Cannot convert data to DataRow
|
197
|
+
F, [2006-06-15T22:58:11.352876 #6249] FATAL -- : Cannot convert data to DataRow
|
198
|
+
F, [2006-06-15T22:58:11.431629 #6249] FATAL -- : no block given!
|
199
|
+
F, [2006-06-15T22:58:31.804545 #6251] FATAL -- : Missing host for mailer bar
|
200
|
+
F, [2006-06-15T22:58:31.805995 #6251] FATAL -- : Missing DSN for source foo!
|
201
|
+
F, [2006-06-15T22:58:31.842639 #6251] FATAL -- : Cannot convert data to DataRow
|
202
|
+
F, [2006-06-15T22:58:31.861973 #6251] FATAL -- : Cannot convert data to DataRow
|
203
|
+
F, [2006-06-15T22:58:31.939445 #6251] FATAL -- : no block given!
|
204
|
+
F, [2006-06-15T22:59:23.801425 #6257] FATAL -- : Missing host for mailer bar
|
205
|
+
F, [2006-06-15T22:59:23.802861 #6257] FATAL -- : Missing DSN for source foo!
|
206
|
+
F, [2006-06-15T22:59:23.840412 #6257] FATAL -- : Cannot convert data to DataRow
|
207
|
+
F, [2006-06-15T22:59:23.858910 #6257] FATAL -- : Cannot convert data to DataRow
|
208
|
+
F, [2006-06-15T22:59:23.937649 #6257] FATAL -- : no block given!
|
209
|
+
F, [2006-06-15T23:04:58.147433 #6266] FATAL -- : Missing host for mailer bar
|
210
|
+
F, [2006-06-15T23:04:58.148777 #6266] FATAL -- : Missing DSN for source foo!
|
211
|
+
F, [2006-06-15T23:04:58.161481 #6266] FATAL -- : Cannot convert data to DataRow
|
212
|
+
F, [2006-06-15T23:04:58.179775 #6266] FATAL -- : Cannot convert data to DataRow
|
213
|
+
F, [2006-06-15T23:04:58.256771 #6266] FATAL -- : no block given!
|
214
|
+
F, [2006-06-15T23:05:23.588103 #6272] FATAL -- : Missing host for mailer bar
|
215
|
+
F, [2006-06-15T23:05:23.589456 #6272] FATAL -- : Missing DSN for source foo!
|
216
|
+
F, [2006-06-15T23:05:23.627309 #6272] FATAL -- : Cannot convert data to DataRow
|
217
|
+
F, [2006-06-15T23:05:23.645546 #6272] FATAL -- : Cannot convert data to DataRow
|
218
|
+
F, [2006-06-15T23:05:23.723395 #6272] FATAL -- : no block given!
|
219
|
+
F, [2006-06-15T23:06:36.383194 #6286] FATAL -- : Missing host for mailer bar
|
220
|
+
F, [2006-06-15T23:06:36.384517 #6286] FATAL -- : Missing DSN for source foo!
|
221
|
+
F, [2006-06-15T23:06:36.422476 #6286] FATAL -- : Cannot convert data to DataRow
|
222
|
+
F, [2006-06-15T23:06:36.440978 #6286] FATAL -- : Cannot convert data to DataRow
|
223
|
+
F, [2006-06-15T23:06:36.518568 #6286] FATAL -- : no block given!
|
224
|
+
F, [2006-06-16T02:11:50.641356 #6794] FATAL -- : Missing host for mailer bar
|
225
|
+
F, [2006-06-16T02:11:50.642656 #6794] FATAL -- : Missing DSN for source foo!
|
226
|
+
F, [2006-06-16T02:11:50.663162 #6794] FATAL -- : Cannot convert data to DataRow
|
227
|
+
F, [2006-06-16T02:11:50.681241 #6794] FATAL -- : Cannot convert data to DataRow
|
228
|
+
F, [2006-06-16T02:11:50.755233 #6794] FATAL -- : no block given!
|
229
|
+
F, [2006-06-16T17:55:41.034728 #8218] FATAL -- : Missing host for mailer bar
|
230
|
+
F, [2006-06-16T17:55:41.036029 #8218] FATAL -- : Missing DSN for source foo!
|
231
|
+
F, [2006-06-16T17:55:41.057492 #8218] FATAL -- : Cannot convert data to DataRow
|
232
|
+
F, [2006-06-16T17:55:41.075665 #8218] FATAL -- : Cannot convert data to DataRow
|
233
|
+
F, [2006-06-16T17:55:41.149997 #8218] FATAL -- : no block given!
|
234
|
+
F, [2006-06-16T18:16:13.207992 #8250] FATAL -- : Missing host for mailer bar
|
235
|
+
F, [2006-06-16T18:16:13.209295 #8250] FATAL -- : Missing DSN for source foo!
|
236
|
+
F, [2006-06-16T18:16:13.244740 #8250] FATAL -- : Cannot convert data to DataRow
|
237
|
+
F, [2006-06-16T18:16:13.263281 #8250] FATAL -- : Cannot convert data to DataRow
|
238
|
+
F, [2006-06-16T18:16:13.338439 #8250] FATAL -- : no block given!
|
239
|
+
F, [2006-06-16T19:20:57.744619 #8417] FATAL -- : Missing host for mailer bar
|
240
|
+
F, [2006-06-16T19:20:57.745890 #8417] FATAL -- : Missing DSN for source foo!
|
241
|
+
F, [2006-06-16T19:20:57.781984 #8417] FATAL -- : Cannot convert data to DataRow
|
242
|
+
F, [2006-06-16T19:20:57.799752 #8417] FATAL -- : Cannot convert data to DataRow
|
243
|
+
F, [2006-06-16T19:20:57.875171 #8417] FATAL -- : no block given!
|
244
|
+
F, [2006-06-16T19:21:52.864153 #8423] FATAL -- : Missing host for mailer bar
|
245
|
+
F, [2006-06-16T19:21:52.865431 #8423] FATAL -- : Missing DSN for source foo!
|
246
|
+
F, [2006-06-16T19:21:52.901406 #8423] FATAL -- : Cannot convert data to DataRow
|
247
|
+
F, [2006-06-16T19:21:52.919800 #8423] FATAL -- : Cannot convert data to DataRow
|
248
|
+
F, [2006-06-16T19:21:52.997052 #8423] FATAL -- : no block given!
|
249
|
+
F, [2006-06-16T19:23:59.356661 #8442] FATAL -- : Missing host for mailer bar
|
250
|
+
F, [2006-06-16T19:23:59.357937 #8442] FATAL -- : Missing DSN for source foo!
|
251
|
+
F, [2006-06-16T19:23:59.395523 #8442] FATAL -- : Cannot convert data to DataRow
|
252
|
+
F, [2006-06-16T19:23:59.414105 #8442] FATAL -- : Cannot convert data to DataRow
|
253
|
+
F, [2006-06-16T19:23:59.489977 #8442] FATAL -- : no block given!
|
254
|
+
F, [2006-06-16T19:26:56.305918 #8451] FATAL -- : Missing host for mailer bar
|
255
|
+
F, [2006-06-16T19:26:56.307202 #8451] FATAL -- : Missing DSN for source foo!
|
256
|
+
F, [2006-06-16T19:26:56.344991 #8451] FATAL -- : Cannot convert data to DataRow
|
257
|
+
F, [2006-06-16T19:26:56.363279 #8451] FATAL -- : Cannot convert data to DataRow
|
258
|
+
F, [2006-06-16T19:26:56.438750 #8451] FATAL -- : no block given!
|
259
|
+
F, [2006-06-16T19:27:52.384319 #8453] FATAL -- : Missing host for mailer bar
|
260
|
+
F, [2006-06-16T19:27:52.385938 #8453] FATAL -- : Missing DSN for source foo!
|
261
|
+
F, [2006-06-16T19:27:52.526977 #8453] FATAL -- : Cannot convert data to DataRow
|
262
|
+
F, [2006-06-16T19:27:52.544478 #8453] FATAL -- : Cannot convert data to DataRow
|
263
|
+
F, [2006-06-16T19:27:52.619524 #8453] FATAL -- : no block given!
|
264
|
+
F, [2006-06-16T19:28:11.067647 #8459] FATAL -- : Missing host for mailer bar
|
265
|
+
F, [2006-06-16T19:28:11.069133 #8459] FATAL -- : Missing DSN for source foo!
|
266
|
+
F, [2006-06-16T19:28:11.106225 #8459] FATAL -- : Cannot convert data to DataRow
|
267
|
+
F, [2006-06-16T19:28:11.124739 #8459] FATAL -- : Cannot convert data to DataRow
|
268
|
+
F, [2006-06-16T19:28:11.200621 #8459] FATAL -- : no block given!
|
269
|
+
F, [2006-06-16T19:33:53.341694 #8465] FATAL -- : Missing host for mailer bar
|
270
|
+
F, [2006-06-16T19:33:53.342969 #8465] FATAL -- : Missing DSN for source foo!
|
271
|
+
F, [2006-06-16T19:33:53.378816 #8465] FATAL -- : Cannot convert data to DataRow
|
272
|
+
F, [2006-06-16T19:33:53.395358 #8465] FATAL -- : Cannot convert data to DataRow
|
273
|
+
F, [2006-06-16T19:33:53.470945 #8465] FATAL -- : no block given!
|
274
|
+
F, [2006-06-16T19:34:33.074958 #8468] FATAL -- : Missing host for mailer bar
|
275
|
+
F, [2006-06-16T19:34:33.076252 #8468] FATAL -- : Missing DSN for source foo!
|
276
|
+
F, [2006-06-16T19:34:33.111857 #8468] FATAL -- : Cannot convert data to DataRow
|
277
|
+
F, [2006-06-16T19:34:33.129535 #8468] FATAL -- : Cannot convert data to DataRow
|
278
|
+
F, [2006-06-16T19:34:33.206574 #8468] FATAL -- : no block given!
|
279
|
+
F, [2006-06-16T19:38:39.194371 #8482] FATAL -- : Missing host for mailer bar
|
280
|
+
F, [2006-06-16T19:38:39.196161 #8482] FATAL -- : Missing DSN for source foo!
|
281
|
+
F, [2006-06-16T19:38:39.231301 #8482] FATAL -- : Cannot convert data to DataRow
|
282
|
+
F, [2006-06-16T19:38:39.249190 #8482] FATAL -- : Cannot convert data to DataRow
|
283
|
+
F, [2006-06-16T19:38:39.324692 #8482] FATAL -- : no block given!
|
284
|
+
F, [2006-06-16T19:56:29.785127 #8537] FATAL -- : Missing host for mailer bar
|
285
|
+
F, [2006-06-16T19:56:29.786392 #8537] FATAL -- : Missing DSN for source foo!
|
286
|
+
F, [2006-06-16T19:56:29.820781 #8537] FATAL -- : Cannot convert data to DataRow
|
287
|
+
F, [2006-06-16T19:56:29.838026 #8537] FATAL -- : Cannot convert data to DataRow
|
288
|
+
F, [2006-06-16T19:56:29.913895 #8537] FATAL -- : no block given!
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.99
|
3
3
|
specification_version: 1
|
4
4
|
name: ruport
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.4.
|
7
|
-
date: 2006-06-
|
6
|
+
version: 0.4.9
|
7
|
+
date: 2006-06-16 00:00:00 -04:00
|
8
8
|
summary: A generalized Ruby report generation and templating engine.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -25,40 +25,45 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
25
25
|
platform: ruby
|
26
26
|
signing_key:
|
27
27
|
cert_chain:
|
28
|
+
post_install_message:
|
28
29
|
authors:
|
29
30
|
- Gregory Brown
|
30
31
|
files:
|
31
|
-
- examples/fieldless_table.rb
|
32
32
|
- examples/line_plotter.rb
|
33
33
|
- examples/pdf.rb
|
34
34
|
- examples/long.txt
|
35
35
|
- examples/new_plugin.rb
|
36
|
+
- examples/fieldless_table.rb
|
37
|
+
- examples/simple_mail.rb
|
36
38
|
- lib/ruport
|
37
39
|
- lib/ruport.rb
|
40
|
+
- lib/uport.rb
|
38
41
|
- lib/ruport/query
|
39
42
|
- lib/ruport/format
|
40
|
-
- lib/ruport/
|
43
|
+
- lib/ruport/rails
|
41
44
|
- lib/ruport/data_row.rb
|
42
45
|
- lib/ruport/data_set.rb
|
46
|
+
- lib/ruport/rails.rb
|
43
47
|
- lib/ruport/config.rb
|
44
48
|
- lib/ruport/query.rb
|
45
49
|
- lib/ruport/format.rb
|
46
50
|
- lib/ruport/report.rb
|
47
51
|
- lib/ruport/parser.rb
|
52
|
+
- lib/ruport/mailer.rb
|
48
53
|
- lib/ruport/query/sql_split.rb
|
49
54
|
- lib/ruport/format/document.rb
|
50
55
|
- lib/ruport/format/builder.rb
|
51
56
|
- lib/ruport/format/open_node.rb
|
52
57
|
- lib/ruport/format/engine.rb
|
53
58
|
- lib/ruport/format/plugin.rb
|
54
|
-
- lib/ruport/
|
59
|
+
- lib/ruport/rails/reportable.rb
|
55
60
|
- test/samples
|
56
|
-
- test/tc_format_engine.rb
|
57
61
|
- test/tc_element.rb
|
58
62
|
- test/tc_format.rb
|
59
63
|
- test/ts_all.rb
|
60
64
|
- test/tc_data_row.rb
|
61
65
|
- test/tc_ruport.rb
|
66
|
+
- test/unit.log
|
62
67
|
- test/tc_section.rb
|
63
68
|
- test/tc_database.rb
|
64
69
|
- test/tc_query.rb
|
@@ -74,6 +79,7 @@ files:
|
|
74
79
|
- test/tc_data_set.rb
|
75
80
|
- test/tc_builder.rb
|
76
81
|
- test/tc_data_set.rb~
|
82
|
+
- test/tc_format_engine.rb
|
77
83
|
- test/tc_plugin.rb
|
78
84
|
- test/samples/five_paragraphs.txt
|
79
85
|
- test/samples/ross_report.txt
|