nitro 0.17.0 → 0.18.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 (161) hide show
  1. data/CHANGELOG +124 -0
  2. data/README +2 -2
  3. data/Rakefile +4 -12
  4. data/bin/nitro +1 -1
  5. data/bin/nitrogen +47 -31
  6. data/doc/AUTHORS +3 -3
  7. data/doc/RELEASES +50 -1
  8. data/examples/README +7 -0
  9. data/lib/nitro.rb +5 -4
  10. data/lib/nitro/{adapters → adapter}/cgi.rb +2 -4
  11. data/lib/nitro/{adapters → adapter}/fastcgi.rb +1 -1
  12. data/lib/nitro/{adapters → adapter}/webrick.rb +5 -10
  13. data/lib/nitro/buffering.rb +6 -0
  14. data/lib/nitro/{builders → builder}/atom.rb +1 -5
  15. data/lib/nitro/{builders → builder}/form.rb +1 -5
  16. data/lib/nitro/{builders → builder}/rss.rb +3 -1
  17. data/lib/nitro/{builders → builder}/table.rb +2 -4
  18. data/lib/nitro/{builders → builder}/xhtml.rb +3 -5
  19. data/lib/nitro/{builders → builder}/xml.rb +2 -4
  20. data/lib/nitro/caching.rb +6 -4
  21. data/lib/nitro/caching/output.rb +18 -11
  22. data/lib/nitro/context.rb +3 -1
  23. data/lib/nitro/controller.rb +29 -18
  24. data/lib/nitro/dispatcher.rb +2 -4
  25. data/lib/nitro/element.rb +2 -0
  26. data/lib/nitro/environment.rb +2 -4
  27. data/lib/nitro/errors.rb +69 -0
  28. data/lib/nitro/mail.rb +2 -4
  29. data/lib/nitro/markup.rb +20 -3
  30. data/lib/nitro/output.rb +5 -9
  31. data/lib/nitro/part.rb +2 -3
  32. data/lib/nitro/render.rb +49 -30
  33. data/lib/nitro/request.rb +2 -1
  34. data/lib/nitro/runner.rb +23 -12
  35. data/lib/nitro/scaffold.rb +5 -3
  36. data/lib/nitro/service.rb +22 -0
  37. data/lib/nitro/service/xmlrpc.rb +42 -0
  38. data/lib/nitro/session.rb +2 -4
  39. data/lib/nitro/template.rb +8 -10
  40. data/lib/nitro/testing.rb +0 -4
  41. data/proto/public/error.xhtml +27 -2
  42. data/test/nitro/{adapters → adapter}/raw_post1.bin +0 -0
  43. data/test/nitro/{adapters → adapter}/tc_cgi.rb +1 -1
  44. data/test/nitro/{adapters → adapter}/tc_webrick.rb +1 -1
  45. data/test/nitro/{builders → builder}/tc_atom.rb +1 -1
  46. data/test/nitro/{builders → builder}/tc_rss.rb +1 -1
  47. data/test/nitro/{builders → builder}/tc_table.rb +1 -1
  48. data/test/nitro/{builders → builder}/tc_xhtml.rb +1 -1
  49. data/test/nitro/{builders → builder}/tc_xml.rb +1 -1
  50. data/test/nitro/tc_caching.rb +18 -0
  51. data/test/nitro/tc_controller.rb +1 -1
  52. data/test/nitro/tc_mail.rb +3 -1
  53. metadata +33 -168
  54. data/examples/README.windows +0 -9
  55. data/examples/ajax/controller.rb +0 -21
  56. data/examples/ajax/public/index.xhtml +0 -72
  57. data/examples/ajax/public/js/ajax.js +0 -64
  58. data/examples/ajax/run.rb +0 -14
  59. data/examples/blog/README +0 -70
  60. data/examples/blog/conf/apache.conf +0 -30
  61. data/examples/blog/conf/apache.conf.new +0 -53
  62. data/examples/blog/conf/lhttpd.conf +0 -79
  63. data/examples/blog/conf/locales/de.yml +0 -4
  64. data/examples/blog/conf/locales/en.yml +0 -4
  65. data/examples/blog/log/README +0 -3
  66. data/examples/blog/log/apache.error_log +0 -6647
  67. data/examples/blog/log/rewrite_log +0 -161
  68. data/examples/blog/public/base.xsl +0 -153
  69. data/examples/blog/public/fcgi.rb +0 -5
  70. data/examples/blog/public/m/bubbles.gif +0 -0
  71. data/examples/blog/public/m/comments_curve.gif +0 -0
  72. data/examples/blog/public/m/down.gif +0 -0
  73. data/examples/blog/public/m/footer_bg.gif +0 -0
  74. data/examples/blog/public/m/garrow.gif +0 -0
  75. data/examples/blog/public/m/gbull.gif +0 -0
  76. data/examples/blog/public/m/grbull.gif +0 -0
  77. data/examples/blog/public/m/h1_bg.gif +0 -0
  78. data/examples/blog/public/m/header_bg.gif +0 -0
  79. data/examples/blog/public/m/nitro.gif +0 -0
  80. data/examples/blog/public/m/obull.gif +0 -0
  81. data/examples/blog/public/m/page_bg.gif +0 -0
  82. data/examples/blog/public/m/rss.gif +0 -0
  83. data/examples/blog/public/m/side_title_bg.gif +0 -0
  84. data/examples/blog/public/m/sidebar_bg.gif +0 -0
  85. data/examples/blog/public/style.css +0 -305
  86. data/examples/blog/run.rb +0 -43
  87. data/examples/blog/src/blog.rb +0 -21
  88. data/examples/blog/src/controller.rb +0 -151
  89. data/examples/blog/src/mailer.rb +0 -23
  90. data/examples/blog/src/models/blog.rb +0 -33
  91. data/examples/blog/src/models/content.rb +0 -18
  92. data/examples/blog/src/views/blog_entry_email.xhtml +0 -16
  93. data/examples/blog/src/views/comments.xhtml +0 -36
  94. data/examples/blog/src/views/entry_form.xhtml +0 -22
  95. data/examples/blog/src/views/error.xhtml +0 -56
  96. data/examples/blog/src/views/index.xhtml +0 -49
  97. data/examples/blog/src/views/login.xhtml +0 -26
  98. data/examples/blog/src/views/recent_posts.xhtml +0 -14
  99. data/examples/blog/src/views/view_entry.xhtml +0 -37
  100. data/examples/blog/src/views/view_entry.xml +0 -12
  101. data/examples/blog/src/xsl/base.xsl +0 -160
  102. data/examples/blog/src/xsl/style.xsl +0 -143
  103. data/examples/blog/test/tc_blog.rb +0 -43
  104. data/examples/flash/log/README +0 -3
  105. data/examples/flash/root/index.xhtml +0 -16
  106. data/examples/flash/root/show_inline_text.xhtml +0 -17
  107. data/examples/flash/run.rb +0 -7
  108. data/examples/no_xsl_blog/README +0 -24
  109. data/examples/no_xsl_blog/conf/apache.conf +0 -30
  110. data/examples/no_xsl_blog/conf/lhttpd.conf +0 -79
  111. data/examples/no_xsl_blog/conf/locales/de.yml +0 -4
  112. data/examples/no_xsl_blog/conf/locales/en.yml +0 -4
  113. data/examples/no_xsl_blog/lib/blog.rb +0 -16
  114. data/examples/no_xsl_blog/lib/blog/controller.rb +0 -116
  115. data/examples/no_xsl_blog/lib/blog/model.rb +0 -35
  116. data/examples/no_xsl_blog/lib/blog/template.rb +0 -138
  117. data/examples/no_xsl_blog/lib/content.rb +0 -47
  118. data/examples/no_xsl_blog/log/README +0 -3
  119. data/examples/no_xsl_blog/log/apache.error_log +0 -473
  120. data/examples/no_xsl_blog/public/comments.xhtml +0 -36
  121. data/examples/no_xsl_blog/public/entry_form.xhtml +0 -22
  122. data/examples/no_xsl_blog/public/fcgi.rb +0 -5
  123. data/examples/no_xsl_blog/public/index.xhtml +0 -39
  124. data/examples/no_xsl_blog/public/login.xhtml +0 -21
  125. data/examples/no_xsl_blog/public/m/bubbles.gif +0 -0
  126. data/examples/no_xsl_blog/public/m/comments_curve.gif +0 -0
  127. data/examples/no_xsl_blog/public/m/down.gif +0 -0
  128. data/examples/no_xsl_blog/public/m/footer_bg.gif +0 -0
  129. data/examples/no_xsl_blog/public/m/garrow.gif +0 -0
  130. data/examples/no_xsl_blog/public/m/gbull.gif +0 -0
  131. data/examples/no_xsl_blog/public/m/grbull.gif +0 -0
  132. data/examples/no_xsl_blog/public/m/h1_bg.gif +0 -0
  133. data/examples/no_xsl_blog/public/m/header_bg.gif +0 -0
  134. data/examples/no_xsl_blog/public/m/nitro.gif +0 -0
  135. data/examples/no_xsl_blog/public/m/obull.gif +0 -0
  136. data/examples/no_xsl_blog/public/m/page_bg.gif +0 -0
  137. data/examples/no_xsl_blog/public/m/rss.gif +0 -0
  138. data/examples/no_xsl_blog/public/m/side_title_bg.gif +0 -0
  139. data/examples/no_xsl_blog/public/m/sidebar_bg.gif +0 -0
  140. data/examples/no_xsl_blog/public/recent_posts.xhtml +0 -14
  141. data/examples/no_xsl_blog/public/style.css +0 -299
  142. data/examples/no_xsl_blog/public/view_entry.xhtml +0 -25
  143. data/examples/no_xsl_blog/public/view_entry.xml +0 -12
  144. data/examples/no_xsl_blog/run.rb +0 -35
  145. data/examples/tiny/README +0 -14
  146. data/examples/tiny/conf/apache.conf +0 -30
  147. data/examples/tiny/conf/lhttpd.conf +0 -79
  148. data/examples/tiny/log/README +0 -3
  149. data/examples/tiny/log/apache.error_log +0 -154
  150. data/examples/tiny/public/deep/dir/hello.xhtml +0 -3
  151. data/examples/tiny/public/fcgi.rb +0 -5
  152. data/examples/tiny/public/include.xhtml +0 -3
  153. data/examples/tiny/public/index.xhtml +0 -55
  154. data/examples/tiny/public/nitro.png +0 -0
  155. data/examples/tiny/public/upload.xhtml +0 -21
  156. data/examples/tiny/run.rb +0 -7
  157. data/examples/wee_style/README +0 -10
  158. data/examples/wee_style/run.rb +0 -50
  159. data/examples/why_wiki/README +0 -5
  160. data/examples/why_wiki/run.rb +0 -59
  161. data/proto/public/js/ajax.js +0 -63
@@ -1,47 +0,0 @@
1
- require 'nitro/markup'
2
-
3
- # The foundamental Content Unit.
4
-
5
- module BaseContent
6
- include Nitro::Markup
7
-
8
- property :title, String
9
- property :body, String, :markup => true, :ui => :textarea
10
- end
11
-
12
- # CreateTime mixin.
13
-
14
- module CreateTime
15
- property :create_time, Time
16
- property :update_time, Time
17
-
18
- def og_pre_insert(conn)
19
- @create_time = @update_time = Time.now
20
- end
21
-
22
- def og_pre_update(conn)
23
- @update_time = Time.now
24
- end
25
- end
26
-
27
- # The foundamental Content Unit.
28
- #--
29
- # THINK: rename this to Entity?
30
- #++
31
-
32
- module Content
33
- include BaseContent
34
- property :name, String
35
- property :ctime, Time
36
- property :mtime, Time
37
-
38
- def initialize(*args)
39
- @ctime = @mtime = Time.now
40
- end
41
- end
42
-
43
- # A Category.
44
-
45
- class Category
46
- include BaseContent
47
- end
@@ -1,3 +0,0 @@
1
- = Logs
2
-
3
- Various logs come here.
@@ -1,473 +0,0 @@
1
- [Sun Feb 27 14:41:24 2005] [notice] Digest: generating secret for digest authentication ...
2
- [Sun Feb 27 14:41:24 2005] [notice] Digest: done
3
- [Sun Feb 27 14:41:25 2005] [notice] FastCGI: process manager initialized (pid 4716)
4
- [Sun Feb 27 14:41:25 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
5
- [Sun Feb 27 14:41:31 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" started (pid 4722)
6
- /usr/bin/env: ruby: No such file or directory
7
- [Sun Feb 27 14:41:32 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" (pid 4722) terminated by calling exit with status '127'
8
- /usr/bin/env: ruby: No such file or directory
9
- [Sun Feb 27 14:41:36 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" restarted (pid 4724)
10
- [Sun Feb 27 14:41:36 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" (pid 4724) terminated by calling exit with status '127'
11
- [Sun Feb 27 14:41:41 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" restarted (pid 4725)
12
- /usr/bin/env: ruby: No such file or directory
13
- [Sun Feb 27 14:41:41 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" (pid 4725) terminated by calling exit with status '127'
14
- [Sun Feb 27 14:41:46 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" restarted (pid 4726)
15
- /usr/bin/env: ruby: No such file or directory
16
- [Sun Feb 27 14:41:46 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" (pid 4726) terminated by calling exit with status '127'
17
- [Sun Feb 27 14:41:46 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
18
- [Sun Feb 27 14:41:47 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
19
- [Sun Feb 27 14:41:50 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
20
- [Sun Feb 27 14:41:53 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
21
- [Sun Feb 27 14:41:56 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
22
- [Sun Feb 27 14:41:59 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
23
- [Sun Feb 27 14:42:02 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
24
- [Sun Feb 27 14:42:05 2005] [error] [client 127.0.0.1] FastCGI: comm with (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" aborted: (first read) idle timeout (30 sec), referer: http://0.0.0.0:9999/
25
- [Sun Feb 27 14:42:05 2005] [error] [client 127.0.0.1] FastCGI: incomplete headers (0 bytes) received from server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb", referer: http://0.0.0.0:9999/
26
- [Sun Feb 27 14:42:05 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
27
- [Sun Feb 27 14:42:52 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
28
- [Sun Feb 27 14:42:56 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
29
- [Sun Feb 27 14:42:59 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
30
- [Sun Feb 27 14:43:02 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
31
- [Sun Feb 27 14:43:05 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
32
- [Sun Feb 27 14:43:08 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
33
- [Sun Feb 27 14:43:11 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
34
- [Sun Feb 27 14:43:12 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
35
- [Sun Feb 27 14:43:12 2005] [notice] caught SIGTERM, shutting down
36
- [Sun Feb 27 14:43:21 2005] [notice] Digest: generating secret for digest authentication ...
37
- [Sun Feb 27 14:43:21 2005] [notice] Digest: done
38
- [Sun Feb 27 14:43:22 2005] [notice] FastCGI: process manager initialized (pid 4736)
39
- [Sun Feb 27 14:43:22 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
40
- [Sun Feb 27 14:43:25 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/root/fcgi.rb" started (pid 4742)
41
- INFO: Connecting to database 'blog' using the 'mysql' adapter.
42
- DEBUG: Og auto manages the following classes:
43
- DEBUG: [BlogEntry, N::Category, Comment]
44
- DEBUG: Rendering '/'.
45
- DEBUG: Compiling action 'root/index'
46
- DEBUG: Transforming 'root/index.xhtml'
47
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
48
- DEBUG: SELECT COUNT(*) FROM og_blogentry
49
- DEBUG: Rendering '/'.
50
- DEBUG: Compiling action 'root/index'
51
- DEBUG: Transforming 'root/index.xhtml'
52
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
53
- DEBUG: SELECT COUNT(*) FROM og_blogentry
54
- DEBUG: Rendering '/login'.
55
- DEBUG: Compiling action 'root/login'
56
- DEBUG: Transforming 'root/login.xhtml'
57
- DEBUG: Rendering '/login'.
58
- DEBUG: Compiling action 'root/login'
59
- DEBUG: Transforming 'root/login.xhtml'
60
- DEBUG: Rendering '/'.
61
- DEBUG: Compiling action 'root/index'
62
- DEBUG: Transforming 'root/index.xhtml'
63
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
64
- DEBUG: SELECT COUNT(*) FROM og_blogentry
65
- DEBUG: Rendering '/entry_form'.
66
- DEBUG: Compiling action 'root/entry_form'
67
- DEBUG: Transforming 'root/entry_form.xhtml'
68
- [Sun Feb 27 14:44:37 2005] [notice] caught SIGTERM, shutting down
69
- [Thu Mar 17 12:22:34 2005] [notice] Digest: generating secret for digest authentication ...
70
- [Thu Mar 17 12:22:34 2005] [notice] Digest: done
71
- [Thu Mar 17 12:22:35 2005] [notice] FastCGI: process manager initialized (pid 4791)
72
- [Thu Mar 17 12:22:35 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
73
- [Thu Mar 17 12:22:36 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/public/fcgi.rb" started (pid 4797)
74
- INFO: Connecting to database 'blog' using the 'mysql' adapter.
75
- DEBUG: Og auto manages the following classes:
76
- DEBUG: [BlogEntry, N::Category, Comment]
77
- DEBUG: Rendering '/'.
78
- DEBUG: Compiling action 'root/index'
79
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
80
- DEBUG: SELECT COUNT(*) FROM og_blogentry
81
- DEBUG: Rendering '/'.
82
- DEBUG: Compiling action 'root/index'
83
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
84
- DEBUG: SELECT COUNT(*) FROM og_blogentry
85
- DEBUG: Rendering '/'.
86
- DEBUG: Compiling action 'root/index'
87
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
88
- DEBUG: SELECT COUNT(*) FROM og_blogentry
89
- DEBUG: Rendering '/'.
90
- DEBUG: Compiling action 'root/index'
91
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
92
- DEBUG: SELECT COUNT(*) FROM og_blogentry
93
- DEBUG: Rendering '/'.
94
- DEBUG: Compiling action 'root/index'
95
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
96
- DEBUG: SELECT COUNT(*) FROM og_blogentry
97
- DEBUG: Rendering '/'.
98
- DEBUG: Compiling action 'root/index'
99
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
100
- DEBUG: SELECT COUNT(*) FROM og_blogentry
101
- DEBUG: Rendering '/'.
102
- DEBUG: Compiling action 'root/index'
103
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
104
- DEBUG: SELECT COUNT(*) FROM og_blogentry
105
- DEBUG: Rendering '/'.
106
- DEBUG: Compiling action 'root/index'
107
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
108
- DEBUG: SELECT COUNT(*) FROM og_blogentry
109
- DEBUG: Rendering '/'.
110
- DEBUG: Compiling action 'root/index'
111
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
112
- DEBUG: SELECT COUNT(*) FROM og_blogentry
113
- DEBUG: Rendering '/'.
114
- DEBUG: Compiling action 'root/index'
115
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
116
- DEBUG: SELECT COUNT(*) FROM og_blogentry
117
- DEBUG: Rendering '/'.
118
- DEBUG: Compiling action 'root/index'
119
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
120
- DEBUG: SELECT COUNT(*) FROM og_blogentry
121
- DEBUG: Rendering '/'.
122
- DEBUG: Compiling action 'root/index'
123
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
124
- DEBUG: SELECT COUNT(*) FROM og_blogentry
125
- DEBUG: Rendering '/'.
126
- DEBUG: Compiling action 'root/index'
127
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
128
- DEBUG: SELECT COUNT(*) FROM og_blogentry
129
- DEBUG: Rendering '/'.
130
- DEBUG: Compiling action 'root/index'
131
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
132
- DEBUG: SELECT COUNT(*) FROM og_blogentry
133
- DEBUG: Rendering '/'.
134
- DEBUG: Compiling action 'root/index'
135
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
136
- DEBUG: SELECT COUNT(*) FROM og_blogentry
137
- DEBUG: Rendering '/'.
138
- DEBUG: Compiling action 'root/index'
139
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
140
- DEBUG: SELECT COUNT(*) FROM og_blogentry
141
- DEBUG: Rendering '/'.
142
- DEBUG: Compiling action 'root/index'
143
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
144
- DEBUG: SELECT COUNT(*) FROM og_blogentry
145
- DEBUG: Rendering '/'.
146
- DEBUG: Compiling action 'root/index'
147
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
148
- DEBUG: SELECT COUNT(*) FROM og_blogentry
149
- DEBUG: Rendering '/'.
150
- DEBUG: Compiling action 'root/index'
151
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
152
- DEBUG: SELECT COUNT(*) FROM og_blogentry
153
- DEBUG: Rendering '/'.
154
- DEBUG: Compiling action 'root/index'
155
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
156
- DEBUG: SELECT COUNT(*) FROM og_blogentry
157
- DEBUG: Rendering '/'.
158
- DEBUG: Compiling action 'root/index'
159
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
160
- DEBUG: SELECT COUNT(*) FROM og_blogentry
161
- DEBUG: Rendering '/'.
162
- DEBUG: Compiling action 'root/index'
163
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
164
- DEBUG: SELECT COUNT(*) FROM og_blogentry
165
- DEBUG: Rendering '/'.
166
- DEBUG: Compiling action 'root/index'
167
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
168
- DEBUG: SELECT COUNT(*) FROM og_blogentry
169
- DEBUG: Rendering '/'.
170
- DEBUG: Compiling action 'root/index'
171
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
172
- DEBUG: SELECT COUNT(*) FROM og_blogentry
173
- DEBUG: Rendering '/'.
174
- DEBUG: Compiling action 'root/index'
175
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
176
- DEBUG: SELECT COUNT(*) FROM og_blogentry
177
- DEBUG: Rendering '/'.
178
- DEBUG: Compiling action 'root/index'
179
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
180
- DEBUG: SELECT COUNT(*) FROM og_blogentry
181
- DEBUG: Rendering '/'.
182
- DEBUG: Compiling action 'root/index'
183
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
184
- DEBUG: SELECT COUNT(*) FROM og_blogentry
185
- DEBUG: Rendering '/'.
186
- DEBUG: Compiling action 'root/index'
187
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
188
- DEBUG: SELECT COUNT(*) FROM og_blogentry
189
- DEBUG: Rendering '/'.
190
- DEBUG: Compiling action 'root/index'
191
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
192
- DEBUG: SELECT COUNT(*) FROM og_blogentry
193
- DEBUG: Rendering '/'.
194
- DEBUG: Compiling action 'root/index'
195
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
196
- DEBUG: SELECT COUNT(*) FROM og_blogentry
197
- DEBUG: Rendering '/'.
198
- DEBUG: Compiling action 'root/index'
199
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
200
- DEBUG: SELECT COUNT(*) FROM og_blogentry
201
- DEBUG: Rendering '/'.
202
- DEBUG: Compiling action 'root/index'
203
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
204
- DEBUG: SELECT COUNT(*) FROM og_blogentry
205
- DEBUG: Rendering '/'.
206
- DEBUG: Compiling action 'root/index'
207
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
208
- DEBUG: SELECT COUNT(*) FROM og_blogentry
209
- DEBUG: Rendering '/'.
210
- DEBUG: Compiling action 'root/index'
211
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
212
- DEBUG: SELECT COUNT(*) FROM og_blogentry
213
- DEBUG: Rendering '/'.
214
- DEBUG: Compiling action 'root/index'
215
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
216
- DEBUG: SELECT COUNT(*) FROM og_blogentry
217
- DEBUG: Rendering '/'.
218
- DEBUG: Compiling action 'root/index'
219
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
220
- DEBUG: SELECT COUNT(*) FROM og_blogentry
221
- DEBUG: Rendering '/'.
222
- DEBUG: Compiling action 'root/index'
223
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
224
- DEBUG: SELECT COUNT(*) FROM og_blogentry
225
- DEBUG: Rendering '/'.
226
- DEBUG: Compiling action 'root/index'
227
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
228
- DEBUG: SELECT COUNT(*) FROM og_blogentry
229
- DEBUG: Rendering '/'.
230
- DEBUG: Compiling action 'root/index'
231
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
232
- DEBUG: SELECT COUNT(*) FROM og_blogentry
233
- DEBUG: Rendering '/'.
234
- DEBUG: Compiling action 'root/index'
235
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
236
- DEBUG: SELECT COUNT(*) FROM og_blogentry
237
- DEBUG: Rendering '/'.
238
- DEBUG: Compiling action 'root/index'
239
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
240
- DEBUG: SELECT COUNT(*) FROM og_blogentry
241
- DEBUG: Rendering '/'.
242
- DEBUG: Compiling action 'root/index'
243
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
244
- DEBUG: SELECT COUNT(*) FROM og_blogentry
245
- [Thu Mar 17 12:23:22 2005] [notice] caught SIGTERM, shutting down
246
- [Thu Mar 17 12:25:18 2005] [notice] Digest: generating secret for digest authentication ...
247
- [Thu Mar 17 12:25:18 2005] [notice] Digest: done
248
- [Thu Mar 17 12:25:19 2005] [notice] FastCGI: process manager initialized (pid 4824)
249
- [Thu Mar 17 12:25:19 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
250
- [Thu Mar 17 12:25:21 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/public/fcgi.rb" started (pid 4830)
251
- INFO: Connecting to database 'blog' using the 'mysql' adapter.
252
- DEBUG: Og auto manages the following classes:
253
- DEBUG: [BlogEntry, N::Category, Comment]
254
- DEBUG: Rendering '/view_entry/3'.
255
- DEBUG: Compiling action 'root/view_entry'
256
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
257
- DEBUG: Rendering '/view_entry/3'.
258
- DEBUG: Compiling action 'root/view_entry'
259
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
260
- DEBUG: Rendering '/view_entry/3'.
261
- DEBUG: Compiling action 'root/view_entry'
262
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
263
- DEBUG: Rendering '/view_entry/3'.
264
- DEBUG: Compiling action 'root/view_entry'
265
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
266
- DEBUG: Rendering '/view_entry/3'.
267
- DEBUG: Compiling action 'root/view_entry'
268
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
269
- DEBUG: Rendering '/view_entry/3'.
270
- DEBUG: Compiling action 'root/view_entry'
271
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
272
- DEBUG: Rendering '/view_entry/3'.
273
- DEBUG: Compiling action 'root/view_entry'
274
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
275
- DEBUG: Rendering '/view_entry/3'.
276
- DEBUG: Compiling action 'root/view_entry'
277
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
278
- DEBUG: Rendering '/view_entry/3'.
279
- DEBUG: Compiling action 'root/view_entry'
280
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
281
- DEBUG: Rendering '/view_entry/3'.
282
- DEBUG: Compiling action 'root/view_entry'
283
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
284
- DEBUG: Rendering '/view_entry/3'.
285
- DEBUG: Compiling action 'root/view_entry'
286
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
287
- DEBUG: Rendering '/view_entry/3'.
288
- DEBUG: Compiling action 'root/view_entry'
289
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
290
- DEBUG: Rendering '/view_entry/3'.
291
- DEBUG: Compiling action 'root/view_entry'
292
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
293
- DEBUG: Rendering '/view_entry/3'.
294
- DEBUG: Compiling action 'root/view_entry'
295
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
296
- DEBUG: Rendering '/view_entry/3'.
297
- DEBUG: Compiling action 'root/view_entry'
298
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
299
- DEBUG: Rendering '/view_entry/3'.
300
- DEBUG: Compiling action 'root/view_entry'
301
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
302
- DEBUG: Rendering '/view_entry/3'.
303
- DEBUG: Compiling action 'root/view_entry'
304
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
305
- DEBUG: Rendering '/view_entry/3'.
306
- DEBUG: Compiling action 'root/view_entry'
307
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
308
- DEBUG: Rendering '/view_entry/3'.
309
- DEBUG: Compiling action 'root/view_entry'
310
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
311
- DEBUG: Rendering '/view_entry/3'.
312
- DEBUG: Compiling action 'root/view_entry'
313
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
314
- DEBUG: Rendering '/view_entry/3'.
315
- DEBUG: Compiling action 'root/view_entry'
316
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
317
- [Thu Mar 17 12:26:18 2005] [notice] caught SIGTERM, shutting down
318
- [Thu Mar 17 12:26:25 2005] [notice] Digest: generating secret for digest authentication ...
319
- [Thu Mar 17 12:26:25 2005] [notice] Digest: done
320
- [Thu Mar 17 12:26:26 2005] [notice] FastCGI: process manager initialized (pid 4846)
321
- [Thu Mar 17 12:26:26 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
322
- [Thu Mar 17 12:26:31 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/no_xsl_blog/public/fcgi.rb" started (pid 4853)
323
- INFO: Connecting to database 'blog' using the 'mysql' adapter.
324
- DEBUG: Og auto manages the following classes:
325
- DEBUG: [BlogEntry, N::Category, Comment]
326
- DEBUG: Rendering '/view_entry/3'.
327
- DEBUG: Compiling action 'root/view_entry'
328
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
329
- DEBUG: Rendering '/view_entry/3'.
330
- DEBUG: Compiling action 'root/view_entry'
331
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
332
- DEBUG: Rendering '/view_entry/3'.
333
- DEBUG: Compiling action 'root/view_entry'
334
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
335
- DEBUG: Rendering '/view_entry/3'.
336
- DEBUG: Compiling action 'root/view_entry'
337
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
338
- DEBUG: Rendering '/view_entry/3'.
339
- DEBUG: Compiling action 'root/view_entry'
340
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
341
- DEBUG: Rendering '/view_entry/3'.
342
- DEBUG: Compiling action 'root/view_entry'
343
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
344
- DEBUG: Rendering '/view_entry/3'.
345
- DEBUG: Compiling action 'root/view_entry'
346
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
347
- DEBUG: Rendering '/view_entry/3'.
348
- DEBUG: Compiling action 'root/view_entry'
349
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
350
- DEBUG: Rendering '/view_entry/3'.
351
- DEBUG: Compiling action 'root/view_entry'
352
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
353
- DEBUG: Rendering '/view_entry/3'.
354
- DEBUG: Compiling action 'root/view_entry'
355
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
356
- DEBUG: Rendering '/view_entry/3'.
357
- DEBUG: Compiling action 'root/view_entry'
358
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
359
- DEBUG: Rendering '/view_entry/3'.
360
- DEBUG: Compiling action 'root/view_entry'
361
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
362
- DEBUG: Rendering '/view_entry/3'.
363
- DEBUG: Compiling action 'root/view_entry'
364
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
365
- DEBUG: Rendering '/view_entry/3'.
366
- DEBUG: Compiling action 'root/view_entry'
367
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
368
- DEBUG: Rendering '/view_entry/3'.
369
- DEBUG: Compiling action 'root/view_entry'
370
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
371
- DEBUG: Rendering '/view_entry/3'.
372
- DEBUG: Compiling action 'root/view_entry'
373
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
374
- DEBUG: Rendering '/view_entry/3'.
375
- DEBUG: Compiling action 'root/view_entry'
376
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
377
- DEBUG: Rendering '/view_entry/3'.
378
- DEBUG: Compiling action 'root/view_entry'
379
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
380
- DEBUG: Rendering '/view_entry/3'.
381
- DEBUG: Compiling action 'root/view_entry'
382
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
383
- DEBUG: Rendering '/view_entry/3'.
384
- DEBUG: Compiling action 'root/view_entry'
385
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
386
- DEBUG: Rendering '/view_entry/3'.
387
- DEBUG: Compiling action 'root/view_entry'
388
- DEBUG: SELECT * FROM og_blogentry WHERE oid=3
389
- DEBUG: Rendering '/'.
390
- DEBUG: Compiling action 'root/index'
391
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
392
- DEBUG: SELECT COUNT(*) FROM og_blogentry
393
- DEBUG: Rendering '/'.
394
- DEBUG: Compiling action 'root/index'
395
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
396
- DEBUG: SELECT COUNT(*) FROM og_blogentry
397
- DEBUG: Rendering '/'.
398
- DEBUG: Compiling action 'root/index'
399
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
400
- DEBUG: SELECT COUNT(*) FROM og_blogentry
401
- DEBUG: Rendering '/'.
402
- DEBUG: Compiling action 'root/index'
403
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
404
- DEBUG: SELECT COUNT(*) FROM og_blogentry
405
- DEBUG: Rendering '/'.
406
- DEBUG: Compiling action 'root/index'
407
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
408
- DEBUG: SELECT COUNT(*) FROM og_blogentry
409
- DEBUG: Rendering '/'.
410
- DEBUG: Compiling action 'root/index'
411
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
412
- DEBUG: SELECT COUNT(*) FROM og_blogentry
413
- DEBUG: Rendering '/'.
414
- DEBUG: Compiling action 'root/index'
415
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
416
- DEBUG: SELECT COUNT(*) FROM og_blogentry
417
- DEBUG: Rendering '/'.
418
- DEBUG: Compiling action 'root/index'
419
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
420
- DEBUG: SELECT COUNT(*) FROM og_blogentry
421
- DEBUG: Rendering '/'.
422
- DEBUG: Compiling action 'root/index'
423
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
424
- DEBUG: SELECT COUNT(*) FROM og_blogentry
425
- DEBUG: Rendering '/'.
426
- DEBUG: Compiling action 'root/index'
427
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
428
- DEBUG: SELECT COUNT(*) FROM og_blogentry
429
- DEBUG: Rendering '/'.
430
- DEBUG: Compiling action 'root/index'
431
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
432
- DEBUG: SELECT COUNT(*) FROM og_blogentry
433
- DEBUG: Rendering '/'.
434
- DEBUG: Compiling action 'root/index'
435
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
436
- DEBUG: SELECT COUNT(*) FROM og_blogentry
437
- DEBUG: Rendering '/'.
438
- DEBUG: Compiling action 'root/index'
439
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
440
- DEBUG: SELECT COUNT(*) FROM og_blogentry
441
- DEBUG: Rendering '/'.
442
- DEBUG: Compiling action 'root/index'
443
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
444
- DEBUG: SELECT COUNT(*) FROM og_blogentry
445
- DEBUG: Rendering '/'.
446
- DEBUG: Compiling action 'root/index'
447
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
448
- DEBUG: SELECT COUNT(*) FROM og_blogentry
449
- DEBUG: Rendering '/'.
450
- DEBUG: Compiling action 'root/index'
451
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
452
- DEBUG: SELECT COUNT(*) FROM og_blogentry
453
- DEBUG: Rendering '/'.
454
- DEBUG: Compiling action 'root/index'
455
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
456
- DEBUG: SELECT COUNT(*) FROM og_blogentry
457
- DEBUG: Rendering '/'.
458
- DEBUG: Compiling action 'root/index'
459
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
460
- DEBUG: SELECT COUNT(*) FROM og_blogentry
461
- DEBUG: Rendering '/'.
462
- DEBUG: Compiling action 'root/index'
463
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
464
- DEBUG: SELECT COUNT(*) FROM og_blogentry
465
- DEBUG: Rendering '/'.
466
- DEBUG: Compiling action 'root/index'
467
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
468
- DEBUG: SELECT COUNT(*) FROM og_blogentry
469
- DEBUG: Rendering '/'.
470
- DEBUG: Compiling action 'root/index'
471
- DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
472
- DEBUG: SELECT COUNT(*) FROM og_blogentry
473
- [Thu Mar 17 12:30:33 2005] [notice] caught SIGTERM, shutting down