nitro 0.4.1 → 0.5.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.
Files changed (84) hide show
  1. data/AUTHORS +9 -1
  2. data/ChangeLog +107 -1
  3. data/README +1 -1
  4. data/RELEASES +14 -0
  5. data/Rakefile +73 -28
  6. data/bin/cluster.rb +2 -2
  7. data/examples/blog/app.rb +2 -2
  8. data/examples/blog/config.rb +14 -15
  9. data/examples/blog/lib/blog.rb +13 -20
  10. data/examples/blog/root/entry_form.xhtml +0 -1
  11. data/examples/blog/root/m/rss.gif +0 -0
  12. data/examples/blog/root/style.css +17 -0
  13. data/examples/blog/root/style.xsl +17 -5
  14. data/examples/blog/root/view_entry.xml +12 -0
  15. data/examples/og/run.rb +2 -3
  16. data/examples/tiny/config.rb +7 -8
  17. data/lib/glue.rb +52 -0
  18. data/lib/{nitro/utils → glue}/array.rb +2 -2
  19. data/lib/{nitro/utils → glue}/cache.rb +2 -2
  20. data/lib/{nitro/utils → glue}/hash.rb +2 -2
  21. data/lib/glue/inflector.rb +91 -0
  22. data/lib/{nitro → glue}/logger.rb +1 -1
  23. data/lib/{nitro/macros.rb → glue/macro.rb} +1 -1
  24. data/lib/{nitro → glue}/mixins.rb +3 -4
  25. data/lib/{nitro/utils → glue}/number.rb +3 -3
  26. data/lib/{nitro/utils → glue}/pool.rb +2 -2
  27. data/lib/{nitro/properties.rb → glue/property.rb} +8 -8
  28. data/lib/{nitro/utils → glue}/string.rb +3 -2
  29. data/lib/{nitro/utils → glue}/time.rb +3 -3
  30. data/lib/nitro.rb +2 -43
  31. data/lib/nitro/application.rb +2 -2
  32. data/lib/nitro/builders/rss.rb +43 -0
  33. data/lib/nitro/config.rb +13 -4
  34. data/lib/nitro/{utils/html.rb → html.rb} +2 -2
  35. data/lib/nitro/{utils/http.rb → http.rb} +1 -1
  36. data/lib/nitro/{utils/mail.rb → mail.rb} +1 -1
  37. data/lib/nitro/scaffold.rb +80 -0
  38. data/lib/nitro/server/appserver.rb +2 -2
  39. data/lib/nitro/server/cluster.rb +2 -2
  40. data/lib/nitro/server/dispatcher.rb +2 -5
  41. data/lib/nitro/server/filters/autologin.rb +2 -2
  42. data/lib/nitro/server/fragment.rb +5 -5
  43. data/lib/nitro/server/handlers.rb +3 -3
  44. data/lib/nitro/server/render.rb +145 -22
  45. data/lib/nitro/server/request.rb +7 -7
  46. data/lib/nitro/server/requestpart.rb +4 -4
  47. data/lib/nitro/server/script.rb +4 -4
  48. data/lib/nitro/server/server.rb +2 -2
  49. data/lib/nitro/server/session.rb +4 -4
  50. data/lib/nitro/server/webrick.rb +2 -2
  51. data/lib/nitro/service.rb +2 -1
  52. data/lib/nitro/sitemap.rb +3 -3
  53. data/lib/nitro/{utils/uri.rb → uri.rb} +3 -3
  54. data/lib/nitro/version.rb +2 -2
  55. data/lib/og.rb +8 -8
  56. data/lib/og/backends/mysql.rb +16 -12
  57. data/lib/og/backends/psql.rb +6 -2
  58. data/lib/og/connection.rb +4 -4
  59. data/lib/og/meta.rb +7 -1
  60. data/lib/og/version.rb +8 -0
  61. data/lib/xsl/base.xsl +10 -0
  62. data/test/{n/utils → glue}/tc_cache.rb +3 -3
  63. data/test/{n/utils → glue}/tc_hash.rb +2 -3
  64. data/test/{n/utils/tc_number.rb → glue/tc_numbers.rb} +3 -4
  65. data/test/{n → glue}/tc_properties.rb +2 -2
  66. data/test/glue/tc_strings.rb +103 -0
  67. data/test/{n → nitro}/server/tc_cookie.rb +0 -0
  68. data/test/{n → nitro}/server/tc_filters.rb +0 -0
  69. data/test/{n → nitro}/server/tc_request.rb +1 -1
  70. data/test/{n → nitro}/server/tc_requestpart.rb +0 -0
  71. data/test/{n → nitro}/server/tc_session.rb +0 -0
  72. data/test/{n → nitro}/tc_events.rb +0 -0
  73. data/test/{n/utils → nitro}/tc_html.rb +1 -1
  74. data/test/{n/utils → nitro}/tc_http.rb +1 -1
  75. data/test/{n → nitro}/tc_sitemap.rb +1 -1
  76. data/test/{n/utils → nitro}/tc_uri.rb +1 -1
  77. data/test/{n → nitro}/ui/tc_pager.rb +1 -1
  78. data/test/{n/tc_og.rb → tc_og.rb} +5 -2
  79. metadata +48 -44
  80. data/examples/blog/log/app.log +0 -117
  81. data/examples/tiny/log/app.log +0 -23
  82. data/lib/nitro/utils/gfx.rb +0 -107
  83. data/lib/nitro/utils/template.rb +0 -36
  84. data/test/n/utils/tc_strings.rb +0 -104
@@ -1,11 +1,10 @@
1
1
  # :nodoc: all
2
2
 
3
3
  require "test/unit"
4
- require "nitro/utils/number"
4
+ require "glue/number"
5
5
 
6
6
  class TC_N_NumberUtils < Test::Unit::TestCase
7
7
  # :nodoc: all
8
- include N
9
8
 
10
9
  def setup
11
10
  end
@@ -14,8 +13,8 @@ class TC_N_NumberUtils < Test::Unit::TestCase
14
13
  end
15
14
 
16
15
  def test_ceil_multiple
17
- assert_equal(20, NumberUtils.ceil_multiple(15, 10))
18
- assert_equal(10, NumberUtils.ceil_multiple(1, 10))
16
+ assert_equal(20, G::NumberUtils.ceil_multiple(15, 10))
17
+ assert_equal(10, G::NumberUtils.ceil_multiple(1, 10))
19
18
  end
20
19
 
21
20
  end
@@ -1,8 +1,8 @@
1
1
  require "test/unit"
2
2
 
3
- require "nitro/logger"; $log = Logger.new(STDERR) unless $log
3
+ require "glue/logger"; $log = Logger.new(STDERR) unless $log
4
4
 
5
- require "nitro/properties"
5
+ require "glue/property"
6
6
 
7
7
  module Test # :nodoc: all
8
8
 
@@ -0,0 +1,103 @@
1
+ # :nodoc: all
2
+
3
+ require "test/unit"
4
+ require "glue/string"
5
+
6
+ class TC_StringUtilsUtils < Test::Unit::TestCase
7
+ # :nodoc: all
8
+
9
+ def setup
10
+ @s = "this is any cool test"
11
+ end
12
+
13
+ def test_valid?
14
+ assert_equal(true, G::StringUtils.valid?("test"))
15
+ assert_equal(false, G::StringUtils.valid?(""))
16
+ assert_equal(false, G::StringUtils.valid?(nil))
17
+ end
18
+
19
+ def test_head
20
+ assert_equal(nil, G::StringUtils.head(nil))
21
+ assert_equal("this...", G::StringUtils.head(@s, 3))
22
+ assert_equal("this+++", G::StringUtils.head(@s, 3, false, "+++"))
23
+ assert_equal("thi...", G::StringUtils.head(@s, 3, true))
24
+ assert_equal("this is...", G::StringUtils.head(@s, 8))
25
+ assert_equal(nil, G::StringUtils.head(@s, 0))
26
+ assert_equal(nil, G::StringUtils.head(@s, 0, true))
27
+ assert_equal("this is...", G::StringUtils.head(@s, 8, true))
28
+ end
29
+
30
+ def test_rewrite
31
+ rules = [
32
+ [/\/\$/, "../n1"],
33
+ [/\$/, "../n1"],
34
+ [/^games/, "../../games"],
35
+ [/^tmp/, "/n/theseas/var/tmp"],
36
+ ]
37
+ string = G::StringUtils.rewrite("games/arkanoid.html", rules)
38
+ assert_equal("../../games/arkanoid.html", string)
39
+ string = G::StringUtils.rewrite("tmp/garbage.html", rules)
40
+ assert_equal("/n/theseas/var/tmp/garbage.html", string)
41
+ string = G::StringUtils.rewrite("root/index.html", rules)
42
+ assert_equal("root/index.html", string)
43
+ assert_equal(nil, G::StringUtils.rewrite(nil, rules))
44
+ assert_equal("", G::StringUtils.rewrite("", rules))
45
+
46
+ assert_raises(ArgumentError) {
47
+ assert_equal("koko", G::StringUtils.rewrite("koko", nil))
48
+ }
49
+
50
+ # bug: should keep order
51
+ s = G::StringUtils.rewrite("/$/koko.html", rules)
52
+ assert_equal("../n1/koko.html", s)
53
+ end
54
+
55
+ def test_wrap
56
+ s = "1234567890abcdefghijklmnopqrstu"
57
+ r = "1234 5678 90ab cdef ghij klmn opqr stu"
58
+ assert_equal(r, G::StringUtils::wrap(s, 4, " "))
59
+
60
+ s = "111111111111111111111111111111111111111111111111"
61
+ r = "1111111111 1111111111 1111111111 1111111111 11111111"
62
+ assert_equal(r, G::StringUtils::wrap(s, 10, " "))
63
+
64
+ s = "jackdaws love my big sphinx of quartz"
65
+ r = "jackdaws love my big sphinx of quartz"
66
+ assert_equal(r, G::StringUtils::wrap(s, 10, " "))
67
+
68
+ s = "jackdaws love my big sphinx of quartz"
69
+ r = "jack daws love my big sphi nx of quar tz"
70
+ assert_equal(r, G::StringUtils::wrap(s, 4, " "))
71
+
72
+ s = "jack.daws love my big sphinx of quartz"
73
+ r = "jack .daw s love my big sphi nx of quar tz"
74
+ assert_equal(r, G::StringUtils::wrap(s, 4, " "))
75
+
76
+ assert_equal("", G::StringUtils::wrap("", 4, " "))
77
+ assert_equal(nil, G::StringUtils::wrap(nil, 4, " "))
78
+ end
79
+
80
+ def test_rationalize_filename
81
+ filename = G::StringUtils.rationalize_filename("hello my friend!.gif")
82
+ assert_equal("hello-my-friend.gif", filename)
83
+ filename = G::StringUtils.rationalize_filename("���� ����.gif")
84
+ assert_equal("pame-pali.gif", filename)
85
+ filename = G::StringUtils.rationalize_filename("�� ���.gif")
86
+ assert_equal("ti-les.gif", filename)
87
+
88
+ # bug:
89
+ filename = G::StringUtils.rationalize_filename("image-(10).gif")
90
+ assert_equal("image-10.gif", filename)
91
+ end
92
+
93
+ def test_random_string
94
+ s1 = G::StringUtils.random()
95
+ s2 = G::StringUtils.random()
96
+ assert_not_equal(s1, s2)
97
+ assert(s1.size == s2.size)
98
+ end
99
+
100
+ def teardown
101
+ @s = nil
102
+ end
103
+ end
File without changes
File without changes
@@ -2,7 +2,7 @@
2
2
 
3
3
  require "test/unit"
4
4
 
5
- require "nitro/logger"; $log = Logger.new(STDERR) unless $log
5
+ require "glue/logger"; $log = Logger.new(STDERR) unless $log
6
6
 
7
7
  require "nitro/server/cookie"
8
8
  require "nitro/server/request"
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
 
2
2
  require "test/unit"
3
- require "nitro/utils/html"
3
+ require "nitro/html"
4
4
 
5
5
  include N
6
6
 
@@ -1,5 +1,5 @@
1
1
  require "test/unit"
2
- require "nitro/utils/http"
2
+ require "nitro/http"
3
3
 
4
4
  class TC_HttpUtils < Test::Unit::TestCase
5
5
  # :nodoc: all
@@ -2,7 +2,7 @@
2
2
 
3
3
  require "test/unit"
4
4
 
5
- require "nitro/logger"; $log = Logger.new(STDERR) unless $log
5
+ require "glue/logger"; $log = Logger.new(STDERR) unless $log
6
6
 
7
7
  require "nitro/sitemap"
8
8
 
@@ -1,5 +1,5 @@
1
1
  require "test/unit"
2
- require "nitro/utils/uri"
2
+ require "nitro/uri"
3
3
 
4
4
  include N
5
5
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  require "test/unit"
4
4
 
5
- require "nitro/logger"; $log = Logger.new(STDERR) unless $log
5
+ require "glue/logger"; $log = Logger.new(STDERR) unless $log
6
6
 
7
7
  require "og"
8
8
  require "nitro/ui/pager"
@@ -1,11 +1,11 @@
1
1
  require "test/unit"
2
2
 
3
- require "nitro/logger"; $log = Logger.new(STDERR) unless $log
3
+ require "glue/logger"; $log = Logger.new(STDERR) unless $log
4
4
  require "og"
5
5
 
6
6
  module Test # :nodoc: all
7
7
 
8
- # bug: creates a table that fucksup postgres if not
8
+ # bug: creates a table that fucks-up postgres if not
9
9
  # correctly escaped.
10
10
  class User
11
11
  prop_accessor :name, String
@@ -20,6 +20,9 @@ class Comment; end
20
20
  class Article
21
21
  prop_accessor :title, String
22
22
  prop_accessor :body, String
23
+ prop_accessor :owner_oid, Fixnum, :sql_index => true
24
+ prop_accessor :another_oid, Fixnum
25
+ sql_index 'owner_oid, another_oid'
23
26
  prop_accessor :options, Hash
24
27
  has_many :comments, Test::Comment
25
28
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.1
3
3
  specification_version: 1
4
4
  name: nitro
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.4.1
7
- date: 2004-11-15
6
+ version: 0.5.0
7
+ date: 2004-11-23
8
8
  summary: Web Engine
9
9
  require_paths:
10
10
  - lib
@@ -13,7 +13,7 @@ email: gm@navel.gr
13
13
  homepage: http://www.navel.gr/nitro
14
14
  rubyforge_project: nitro
15
15
  description: "An efficient, yet simple engine for Web Applications"
16
- autorequire: n/std
16
+ autorequire: nitro
17
17
  default_executable:
18
18
  bindir: bin
19
19
  has_rdoc: true
@@ -42,7 +42,6 @@ files:
42
42
  - examples/tiny/root
43
43
  - examples/tiny/README
44
44
  - examples/tiny/config.rb
45
- - examples/tiny/log/app.log
46
45
  - examples/tiny/root/index.xhtml
47
46
  - examples/blog/log
48
47
  - examples/blog/app.rb
@@ -51,10 +50,10 @@ files:
51
50
  - examples/blog/README
52
51
  - examples/blog/config.rb
53
52
  - examples/blog/lib
54
- - examples/blog/log/app.log
55
53
  - examples/blog/root/login.xhtml
56
54
  - examples/blog/root/style.xsl
57
55
  - examples/blog/root/entry_form.xhtml
56
+ - examples/blog/root/view_entry.xml
58
57
  - examples/blog/root/m
59
58
  - examples/blog/root/recent_posts.xhtml
60
59
  - examples/blog/root/view_entry.xhtml
@@ -69,6 +68,7 @@ files:
69
68
  - examples/blog/root/m/sidebar_bg.gif
70
69
  - examples/blog/root/m/garrow.gif
71
70
  - examples/blog/root/m/gbull.gif
71
+ - examples/blog/root/m/rss.gif
72
72
  - examples/blog/root/m/down.gif
73
73
  - examples/blog/root/m/comments_curve.gif
74
74
  - examples/blog/root/m/side_title_bg.gif
@@ -83,35 +83,26 @@ files:
83
83
  - lib/xsl
84
84
  - lib/og
85
85
  - lib/nitro.rb
86
+ - lib/glue
86
87
  - lib/og.rb
88
+ - lib/glue.rb
87
89
  - lib/nitro/sitemap.rb
88
- - lib/nitro/properties.rb
89
- - lib/nitro/utils
90
- - lib/nitro/macros.rb
90
+ - lib/nitro/mail.rb
91
91
  - lib/nitro/service.rb
92
+ - lib/nitro/builders
93
+ - lib/nitro/scaffold.rb
94
+ - lib/nitro/uri.rb
92
95
  - lib/nitro/server.rb
93
96
  - lib/nitro/server
94
97
  - lib/nitro/events.rb
95
- - lib/nitro/mixins.rb
98
+ - lib/nitro/html.rb
96
99
  - lib/nitro/l10n.rb
97
100
  - lib/nitro/ui
98
101
  - lib/nitro/application.rb
99
102
  - lib/nitro/config.rb
100
- - lib/nitro/logger.rb
103
+ - lib/nitro/http.rb
101
104
  - lib/nitro/version.rb
102
- - lib/nitro/utils/pool.rb
103
- - lib/nitro/utils/time.rb
104
- - lib/nitro/utils/mail.rb
105
- - lib/nitro/utils/array.rb
106
- - lib/nitro/utils/number.rb
107
- - lib/nitro/utils/uri.rb
108
- - lib/nitro/utils/gfx.rb
109
- - lib/nitro/utils/cache.rb
110
- - lib/nitro/utils/html.rb
111
- - lib/nitro/utils/template.rb
112
- - lib/nitro/utils/string.rb
113
- - lib/nitro/utils/http.rb
114
- - lib/nitro/utils/hash.rb
105
+ - lib/nitro/builders/rss.rb
115
106
  - lib/nitro/server/filters
116
107
  - lib/nitro/server/session.rb
117
108
  - lib/nitro/server/request.rb
@@ -141,29 +132,42 @@ files:
141
132
  - lib/og/connection.rb
142
133
  - lib/og/backend.rb
143
134
  - lib/og/meta.rb
135
+ - lib/og/version.rb
144
136
  - lib/og/backends/psql.rb
145
137
  - lib/og/backends/mysql.rb
146
- - test/n
147
- - test/n/utils
148
- - test/n/tc_og.rb
149
- - test/n/tc_sitemap.rb
150
- - test/n/server
151
- - test/n/tc_events.rb
152
- - test/n/ui
153
- - test/n/tc_properties.rb
154
- - test/n/utils/tc_cache.rb
155
- - test/n/utils/tc_hash.rb
156
- - test/n/utils/tc_http.rb
157
- - test/n/utils/tc_strings.rb
158
- - test/n/utils/tc_html.rb
159
- - test/n/utils/tc_uri.rb
160
- - test/n/utils/tc_number.rb
161
- - test/n/server/tc_filters.rb
162
- - test/n/server/tc_requestpart.rb
163
- - test/n/server/tc_cookie.rb
164
- - test/n/server/tc_session.rb
165
- - test/n/server/tc_request.rb
166
- - test/n/ui/tc_pager.rb
138
+ - lib/glue/pool.rb
139
+ - lib/glue/time.rb
140
+ - lib/glue/macro.rb
141
+ - lib/glue/inflector.rb
142
+ - lib/glue/array.rb
143
+ - lib/glue/number.rb
144
+ - lib/glue/cache.rb
145
+ - lib/glue/mixins.rb
146
+ - lib/glue/property.rb
147
+ - lib/glue/string.rb
148
+ - lib/glue/hash.rb
149
+ - lib/glue/logger.rb
150
+ - test/nitro
151
+ - test/tc_og.rb
152
+ - test/glue
153
+ - test/nitro/tc_sitemap.rb
154
+ - test/nitro/server
155
+ - test/nitro/tc_events.rb
156
+ - test/nitro/ui
157
+ - test/nitro/tc_http.rb
158
+ - test/nitro/tc_html.rb
159
+ - test/nitro/tc_uri.rb
160
+ - test/nitro/server/tc_filters.rb
161
+ - test/nitro/server/tc_requestpart.rb
162
+ - test/nitro/server/tc_cookie.rb
163
+ - test/nitro/server/tc_session.rb
164
+ - test/nitro/server/tc_request.rb
165
+ - test/nitro/ui/tc_pager.rb
166
+ - test/glue/tc_cache.rb
167
+ - test/glue/tc_hash.rb
168
+ - test/glue/tc_numbers.rb
169
+ - test/glue/tc_strings.rb
170
+ - test/glue/tc_properties.rb
167
171
  test_files: []
168
172
  rdoc_options:
169
173
  - "--main"
@@ -1,117 +0,0 @@
1
- # Logfile created on Mon Nov 08 17:37:14 EET 2004 by logger.rb/1.5.2.4
2
- I: Connecting to database 'blog' using backend 'psql'.
3
- I: Og auto manages the following classes:
4
- I: [N::BlogEntry, N::Blog]
5
- I: Web Server listening at http://127.0.0.1:8080
6
- I: App Server listening at http://127.0.0.1:9090
7
- I: Connecting to database 'blog' using backend 'psql'.
8
- I: Og auto manages the following classes:
9
- I: [N::BlogEntry, N::Blog]
10
- I: Web Server listening at http://127.0.0.1:8080
11
- I: App Server listening at http://127.0.0.1:9090
12
- I: Connecting to database 'blog' using backend 'psql'.
13
- I: Og auto manages the following classes:
14
- I: [N::BlogEntry, N::Blog]
15
- I: Web Server listening at http://127.0.0.1:8080
16
- I: App Server listening at http://127.0.0.1:9090
17
- I: Connecting to database 'blog' using backend 'psql'.
18
- I: Og auto manages the following classes:
19
- I: [N::BlogEntry, N::Blog]
20
- I: Web Server listening at http://127.0.0.1:8080
21
- I: App Server listening at http://127.0.0.1:9090
22
- I: Connecting to database 'blog' using backend 'psql'.
23
- I: Og auto manages the following classes:
24
- I: [N::BlogEntry, N::Blog]
25
- I: Web Server listening at http://127.0.0.1:8080
26
- I: App Server listening at http://127.0.0.1:9090
27
- I: Connecting to database 'blog' using backend 'psql'.
28
- I: Og auto manages the following classes:
29
- I: [N::BlogEntry, N::Blog]
30
- I: Web Server listening at http://127.0.0.1:8080
31
- I: App Server listening at http://127.0.0.1:9090
32
- I: Connecting to database 'blog' using backend 'psql'.
33
- I: Og auto manages the following classes:
34
- I: [N::BlogEntry, N::Blog]
35
- I: Web Server listening at http://127.0.0.1:8080
36
- I: App Server listening at http://127.0.0.1:9090
37
- I: Connecting to database 'blog' using backend 'psql'.
38
- I: Og auto manages the following classes:
39
- I: [N::BlogEntry, N::Blog]
40
- I: Web Server listening at http://127.0.0.1:8080
41
- I: App Server listening at http://127.0.0.1:9090
42
- I: Connecting to database 'blog' using backend 'psql'.
43
- I: Og auto manages the following classes:
44
- I: [N::BlogEntry, N::Blog]
45
- I: Web Server listening at http://127.0.0.1:8080
46
- I: App Server listening at http://127.0.0.1:9090
47
- I: Connecting to database 'blog' using backend 'psql'.
48
- I: Og auto manages the following classes:
49
- I: [N::BlogEntry, N::Blog]
50
- I: Web Server listening at http://127.0.0.1:8080
51
- I: App Server listening at http://127.0.0.1:9090
52
- I: Connecting to database 'blog' using backend 'psql'.
53
- I: Og auto manages the following classes:
54
- I: [N::BlogEntry, N::Blog, N::Common]
55
- I: Web Server listening at http://127.0.0.1:8080
56
- I: App Server listening at http://127.0.0.1:9090
57
- I: Connecting to database 'blog' using backend 'psql'.
58
- I: Og auto manages the following classes:
59
- I: [N::BlogEntry, N::Blog, N::Common]
60
- I: Web Server listening at http://127.0.0.1:8080
61
- I: App Server listening at http://127.0.0.1:8080
62
- I: Connecting to database 'blog' using backend 'psql'.
63
- I: Og auto manages the following classes:
64
- I: [N::BlogEntry, N::Blog, N::Common]
65
- I: Web Server listening at http://127.0.0.1:8080
66
- I: App Server listening at http://127.0.0.1:8080
67
- I: Connecting to database 'blog' using backend 'psql'.
68
- I: Og auto manages the following classes:
69
- I: [N::BlogEntry, N::Blog, N::Common]
70
- I: Web Server listening at http://127.0.0.1:8080
71
- I: App Server listening at http://127.0.0.1:8080
72
- I: Connecting to database 'blog' using backend 'psql'.
73
- I: Og auto manages the following classes:
74
- I: [N::Comment, N::Blog, N::BlogEntry, N::Common]
75
- I: Web Server listening at http://127.0.0.1:8080
76
- I: App Server listening at http://127.0.0.1:8080
77
- I: Connecting to database 'blog' using backend 'psql'.
78
- I: Og auto manages the following classes:
79
- I: [N::BlogEntry, N::Comment, N::Common]
80
- I: Web Server listening at http://127.0.0.1:8080
81
- I: App Server listening at http://127.0.0.1:8080
82
- I: Connecting to database 'blog' using backend 'psql'.
83
- I: Og auto manages the following classes:
84
- I: [N::BlogEntry, N::Comment, N::Common]
85
- I: Web Server listening at http://127.0.0.1:8080
86
- I: App Server listening at http://127.0.0.1:8080
87
- I: Connecting to database 'blog' using backend 'psql'.
88
- I: Og auto manages the following classes:
89
- I: [N::BlogEntry, N::Comment, N::Common]
90
- I: Web Server listening at http://127.0.0.1:8080
91
- I: App Server listening at http://127.0.0.1:8080
92
- I: Connecting to database 'blog' using backend 'psql'.
93
- I: Og auto manages the following classes:
94
- I: [N::BlogEntry, N::Comment, N::Common]
95
- I: Web Server listening at http://127.0.0.1:8080
96
- I: App Server listening at http://127.0.0.1:8080
97
- I: Connecting to database 'blog' using backend 'psql'.
98
- I: Og auto manages the following classes:
99
- I: [N::BlogEntry, N::Comment, N::Common]
100
- I: Web Server listening at http://127.0.0.1:8080
101
- I: App Server listening at http://127.0.0.1:8080
102
- I: Connecting to database 'blog' using backend 'psql'.
103
- I: Og auto manages the following classes:
104
- I: [N::BlogEntry, N::Comment, N::Common]
105
- I: Connecting to database 'blog' using backend 'psql'.
106
- I: Og auto manages the following classes:
107
- I: [N::BlogEntry, N::Comment, N::Common]
108
- I: Connecting to database 'blog' using backend 'psql'.
109
- I: Og auto manages the following classes:
110
- I: [N::BlogEntry, N::Comment, N::Common]
111
- I: Web Server listening at http://127.0.0.1:8080
112
- I: App Server listening at http://127.0.0.1:8080
113
- I: Connecting to database 'blog' using backend 'psql'.
114
- I: Og auto manages the following classes:
115
- I: [N::BlogEntry, N::Comment, N::Common]
116
- I: Web Server listening at http://127.0.0.1:8080
117
- I: App Server listening at http://127.0.0.1:8080