nitro 0.13.0 → 0.14.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 (64) hide show
  1. data/CHANGELOG +91 -1632
  2. data/INSTALL +44 -0
  3. data/README +1 -1
  4. data/Rakefile +3 -3
  5. data/doc/CHANGELOG.2 +1688 -0
  6. data/doc/RELEASES +84 -1
  7. data/examples/blog/cache/entriesadmin +12 -0
  8. data/examples/blog/conf/apache.conf.new +53 -0
  9. data/examples/blog/conf/lhttpd.conf +23 -180
  10. data/examples/blog/log/apache.error_log +271 -0
  11. data/examples/blog/log/rewrite_log +161 -0
  12. data/examples/blog/public/fcgi.rb +2 -0
  13. data/examples/blog/run.rb +4 -3
  14. data/examples/blog/src/controller.rb +10 -4
  15. data/examples/blog/src/views/index.xhtml +3 -0
  16. data/examples/blog/src/xsl/base.xsl +7 -0
  17. data/examples/no_xsl_blog/conf/lhttpd.conf +24 -181
  18. data/examples/tiny/conf/lhttpd.conf +24 -181
  19. data/examples/tiny/log/apache.error_log +24 -0
  20. data/examples/tiny/public/index.xhtml +0 -6
  21. data/examples/tiny/public/upload.xhtml +12 -14
  22. data/examples/wee_style/run.rb +2 -0
  23. data/examples/why_wiki/run.rb +2 -0
  24. data/lib/nitro.rb +2 -2
  25. data/lib/nitro/adapters/cgi.rb +36 -109
  26. data/lib/nitro/adapters/webrick.rb +76 -62
  27. data/lib/nitro/caching.rb +29 -0
  28. data/lib/nitro/caching/actions.rb +67 -0
  29. data/lib/nitro/caching/fragments.rb +72 -0
  30. data/lib/nitro/caching/invalidation.rb +51 -0
  31. data/lib/nitro/caching/output.rb +72 -0
  32. data/lib/nitro/caching/stores.rb +84 -0
  33. data/lib/nitro/controller.rb +3 -1
  34. data/lib/nitro/dispatcher.rb +0 -1
  35. data/lib/nitro/filters.rb +112 -55
  36. data/lib/nitro/mail.rb +6 -3
  37. data/lib/nitro/render.rb +27 -4
  38. data/lib/nitro/request.rb +13 -1
  39. data/test/nitro/tc_controller.rb +6 -4
  40. data/test/nitro/tc_filters.rb +111 -0
  41. metadata +19 -29
  42. data/examples/why_wiki/wiki.yml +0 -1
  43. data/vendor/README +0 -11
  44. data/vendor/binding_of_caller.rb +0 -81
  45. data/vendor/blankslate.rb +0 -53
  46. data/vendor/breakpoint.rb +0 -523
  47. data/vendor/breakpoint_client.rb +0 -196
  48. data/vendor/extensions/_base.rb +0 -153
  49. data/vendor/extensions/_template.rb +0 -36
  50. data/vendor/extensions/all.rb +0 -21
  51. data/vendor/extensions/array.rb +0 -68
  52. data/vendor/extensions/binding.rb +0 -224
  53. data/vendor/extensions/class.rb +0 -50
  54. data/vendor/extensions/continuation.rb +0 -71
  55. data/vendor/extensions/enumerable.rb +0 -250
  56. data/vendor/extensions/hash.rb +0 -23
  57. data/vendor/extensions/io.rb +0 -58
  58. data/vendor/extensions/kernel.rb +0 -42
  59. data/vendor/extensions/module.rb +0 -114
  60. data/vendor/extensions/numeric.rb +0 -230
  61. data/vendor/extensions/object.rb +0 -164
  62. data/vendor/extensions/ostruct.rb +0 -41
  63. data/vendor/extensions/string.rb +0 -316
  64. data/vendor/extensions/symbol.rb +0 -28
data/doc/RELEASES CHANGED
@@ -1,4 +1,87 @@
1
- == Version 0.13.0 was released on 07/03/2005.
1
+ == Version 0.14.0 was released on 28/03/2005.
2
+
3
+ This release fixes *important* bugs amd improves various
4
+ aspects of the platform. Moreover, we included some
5
+ great *new* features for your pleasure.
6
+
7
+ Most notable additions:
8
+
9
+ * Fixed IMPORTANT bug in property inheritance.
10
+
11
+ * Fine grained caching. Nitro allows you to cache
12
+ whole pages (output caching), actions and fine-grained
13
+ fragments.
14
+
15
+ class MyController < Controller
16
+ cache_output :my_action
17
+
18
+ def my_action
19
+ end
20
+ end
21
+
22
+ Stores the whole page created by the my_action method
23
+ to the disk to be displayed by the web server thus completely
24
+ Nitro and Ruby.
25
+
26
+ or
27
+
28
+ <strong>Here is some cached code</strong>
29
+ <cache>
30
+ <ul>
31
+ <?r for a in Article.all ?>
32
+ <li>#{a.title}: #{a.body}</li>
33
+ <?r end ?>
34
+ </ul>
35
+ </cache>
36
+
37
+ or
38
+
39
+ <strong>Another one</strong>
40
+ <?r cache('variant', :admin => session[:admin]) do ?>
41
+ ...
42
+ <?r end ?>
43
+
44
+ Cached fragments can be stored in memory, filesystem.
45
+
46
+ While this feature is fully operational, the API will be finalised in
47
+ the next version.
48
+
49
+ * Introduced support for Og mixins. In this version a List
50
+ mixin is provided:
51
+
52
+ class Article
53
+ has_many :comments, Comment, :order => 'position DESC'
54
+ end
55
+
56
+ class Comment
57
+ belongs_to :article, Article
58
+ acts_as_list :scope => :article
59
+ end
60
+
61
+ An AR compatible API is provided. An alternative
62
+ API is planned for the near future to give you more choice.
63
+
64
+ * Reimplemented filtering infrastructure, allows
65
+ for inheritance, conditional application of filters
66
+ (:only/:except) modifiers, more performant Filters
67
+ as Strings and more.
68
+
69
+ * Fixed multipart support in fastcgi, added file upload
70
+ example (tiny example).
71
+
72
+ * The webrick adapter reuses the fastcgi infrastructure, making
73
+ the adapters more compatible with each other.
74
+
75
+ * Added many useful Og enchant methods.
76
+
77
+ * Cleaned up configuration files for lighttpd/apache.
78
+
79
+ * More compatible with win32.
80
+
81
+ * Fixed examples and all reported bugs.
82
+
83
+
84
+ == Version 0.13.0 was released on 17/03/2005.
2
85
 
3
86
  A snapshot of the latest code. The Nitro project is now
4
87
  split in three gems (nitro, og, glue) and the code is
@@ -0,0 +1,12 @@
1
+ <div class="entry"><h2 class="date">March 28, 2005</h2><div class="post"><h3 class="title">kokok</h3>lalal<div class="footer">posted by George Moschovitis at <a href="view_entry/14">11:32 AM</a> | <a href="view_entry/14#comments">1 comments</a>.</div></div></div><div class="entry"><h2 class="date">March 28, 2005</h2><div class="post"><h3 class="title">UNCACHE</h3>it bastard<div class="footer">posted by at <a href="view_entry/13">11:31 AM</a> | <a href="view_entry/13#comments">0 comments</a>.</div></div></div><div class="entry"><h2 class="date">March 28, 2005</h2><div class="post"><h3 class="title">UNCACHE</h3>it bastard<div class="footer">posted by George Moschovitis at <a href="view_entry/12">11:26 AM</a> | <a href="view_entry/12#comments">0 comments</a>.</div></div></div><div class="pager">
2
+ <div class="last"><a href="/?__pgentries=4">Last</a></div>
3
+ <div class="next"><a href="/?__pgentries=2">Next</a></div>
4
+ <ul>
5
+ <li class="active">1</li>
6
+
7
+ <li><a href="/?__pgentries=2">2</a></li>
8
+
9
+ <li><a href="/?__pgentries=3">3</a></li>
10
+
11
+ <li><a href="/?__pgentries=4">4</a></li>
12
+ </ul><div class="clear">.</div></div>
@@ -0,0 +1,53 @@
1
+ # Apache configuration file.
2
+ # Change as appropriate for your apache configuration.
3
+ # $Id$
4
+
5
+ Listen 9999
6
+
7
+ PidFile /var/tmp/httpd.pid
8
+ TypesConfig /etc/mime.types
9
+ DocumentRoot /home/gmosx/navel/nitro/examples/blog/public
10
+
11
+ # The error log.
12
+
13
+ ErrorLog log/apache.error_log
14
+ # CustomLog log/access_log combined
15
+
16
+ # Load dynamic modules.
17
+
18
+ LoadModule fastcgi_module /usr/local/apache2/modules/mod_fastcgi.so
19
+ # LoadModule rewrite_module /usr/local/apache2/modules/mod_rewrite.so
20
+
21
+ FastCgiIpcDir /var/tmp/fcgi
22
+ # gmosx: if you have installed the gems
23
+ # distribution the -I is not needed.
24
+ FastCgiConfig -initial-env 'RUBYOPT=-rubygems -I/home/gmosx/navel/nitro/lib -I/home/gmosx/navel/og/lib -I/home/gmosx/navel/glue/lib'
25
+
26
+ AddHandler fastcgi-script fcgi rb
27
+ AddHandler cgi-script cgi rb
28
+ Options +FollowSymLinks +ExecCGI
29
+
30
+ # Redirect all requests not available on the filesystem
31
+ # to Nitro. By default the cgi dispatcher is used which
32
+ # is very slow. For better performance replace the
33
+ # dispatcher with the fastcgi one
34
+ #
35
+ # Example:
36
+ # RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
37
+
38
+ RewriteEngine On
39
+ RewriteRule ^/$ /index.html [QSA]
40
+ RewriteRule ^([^.]+)$ $1.html [QSA]
41
+ RewriteCond %{REQUEST_FILENAME} !-f
42
+ RewriteRule ^(.*)$ /fcgi.rb [QSA,L]
43
+ RewriteLog log/rewrite_log
44
+ RewriteLogLevel 3
45
+
46
+ # In case Nitro experiences terminal errors.
47
+ # Instead of displaying this message you can supply a
48
+ # file here which will be rendered instead.
49
+ #
50
+ # Example:
51
+ # ErrorDocument 500 /500.html
52
+
53
+ ErrorDocument 500 "<h2>Application error</h2>Nitro failed to start properly"
@@ -1,43 +1,35 @@
1
1
  # Lighttpd configuration file
2
2
  # $Id$
3
3
 
4
- ############ Options you really have to take care of ####################
5
-
6
- ## modules to load
7
- # at least mod_access and mod_accesslog should be loaded
8
- # all other module should only be loaded if really neccesary
9
- # - saves some time
10
- # - saves memory
4
+ server.port = 9999
5
+ server.bind = "127.0.0.1"
6
+ # server.event-handler = "freebsd-kqueue" # needed on OS X
11
7
 
12
- server.modules = (
13
- "mod_rewrite",
14
- # "mod_redirect",
15
- "mod_access",
16
- # "mod_auth",
17
- # "mod_status",
18
- "mod_fastcgi",
19
- # "mod_simple_vhost",
20
- # "mod_evhost",
21
- # "mod_cgi",
22
- # "mod_compress",
23
- # "mod_ssi",
24
- # "mod_usertrack",
25
- # "mod_rrdtool",
26
- "mod_accesslog"
27
- )
8
+ server.modules = ( "mod_rewrite", "mod_fastcgi", "mod_access", "mod_accesslog" )
28
9
 
29
- ## a static document-root, for virtual-hosting take look at the
30
- ## server.virtual-* options
31
10
  server.document-root = "/home/gmosx/navel/nitro/examples/blog/public/"
32
-
33
- ## where to send error-messages to
34
11
  server.errorlog = "/home/gmosx/navel/nitro/examples/blog/log/lighttpd.error.log"
12
+ accesslog.filename = "/home/gmosx/navel/nitro/examples/blog/log/access.log"
13
+
14
+ server.indexfiles = ( "index.html" )
15
+ url.access-deny = ( "~", ".inc" )
16
+
17
+ url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
18
+ server.error-handler-404 = "/fcgi.rb"
35
19
 
36
- # files to check for if .../ is requested
37
- server.indexfiles = ( "index.html" )
20
+ fastcgi.server = ( ".rb" =>
21
+ ( "localhost" =>
22
+ (
23
+ "min-procs" => 1,
24
+ "max-procs" => 1,
25
+ "socket" => "/tmp/blog.fcgi.socket",
26
+ "bin-path" => "/home/gmosx/navel/nitro/examples/blog/public/fcgi.rb",
27
+ "bin-environment" => ( "NITRO_ENV" => "development" )
28
+ )
29
+ )
30
+ )
38
31
 
39
- # mimetype mapping
40
- mimetype.assign = (
32
+ mimetype.assign = (
41
33
  ".pdf" => "application/pdf",
42
34
  ".sig" => "application/pgp-signature",
43
35
  ".spl" => "application/futuresplash",
@@ -84,153 +76,4 @@ mimetype.assign = (
84
76
  ".asf" => "video/x-ms-asf",
85
77
  ".asx" => "video/x-ms-asf",
86
78
  ".wmv" => "video/x-ms-wmv"
87
- )
88
-
89
- # Use the "Content-Type" extended attribute to obtain mime type if possible
90
- # mimetypes.use-xattr = "enable"
91
-
92
- #### accesslog module
93
- accesslog.filename = "/home/gmosx/navel/nitro/examples/blog/log/access.log"
94
-
95
- ## deny access the file-extensions
96
- #
97
- # ~ is for backupfiles from vi, emacs, joe, ...
98
- # .inc is often used for code includes which should in general not be part
99
- # of the document-root
100
- url.access-deny = ( "~", ".inc" )
101
-
102
-
103
-
104
- ######### Options that are good to be but not neccesary to be changed #######
105
-
106
- ## bind to port (default: 80)
107
- server.port = 9999
108
-
109
- ## bind to localhost (default: all interfaces)
110
- #server.bind = "grisu.home.kneschke.de"
111
-
112
- ## error-handler for status 404
113
- #server.error-handler-404 = "/error-handler.html"
114
- #server.error-handler-404 = "/error-handler.php"
115
-
116
- ## to help the rc.scripts
117
- # server.pid-file = "/var/run/lighttpd.pid"
118
-
119
-
120
- ###### virtual hosts
121
- ##
122
- ## If you want name-based virtual hosting add the next three settings and load
123
- ## mod_simple_vhost
124
- ##
125
- ## document-root =
126
- ## virtual-server-root + virtual-server-default-host + virtual-server-docroot or
127
- ## virtual-server-root + http-host + virtual-server-docroot
128
- ##
129
- #simple-vhost.server-root = "/home/weigon/wwwroot/servers/"
130
- #simple-vhost.default-host = "grisu.home.kneschke.de"
131
- #simple-vhost.document-root = "/pages/"
132
-
133
-
134
- ##
135
- ## Format: <errorfile-prefix><status>.html
136
- ## -> ..../status-404.html for 'File not found'
137
- #server.errorfile-prefix = "/home/weigon/projects/lighttpd/doc/status-"
138
-
139
- ## virtual directory listings
140
- #server.dir-listing = "enable"
141
-
142
- ## send unhandled HTTP-header headers to error-log
143
- #debug.dump-unknown-headers = "enable"
144
-
145
- ### only root can use these options
146
- #
147
- # chroot() to directory (default: no chroot() )
148
- #server.chroot = "/"
149
-
150
- ## change uid to <uid> (default: don't care)
151
- #server.username = "wwwrun"
152
-
153
- ## change uid to <uid> (default: don't care)
154
- #server.groupname = "wwwrun"
155
-
156
- #### compress module
157
- #compress.cache-dir = "/tmp/lighttpd/cache/compress/"
158
- #compress.filetype = ("text/plain", "text/html")
159
-
160
- #### fastcgi module
161
- ## read fastcgi.txt for more info
162
- fastcgi.server = ( ".rb" =>
163
- ( "localhost" =>
164
- (
165
- "socket" => "/tmp/nitro-fcgi.socket",
166
- "bin-path" => "/home/gmosx/navel/nitro/examples/blog/public/fcgi.rb"
167
- )
168
- )
169
79
  )
170
-
171
- #### CGI module
172
- #cgi.assign = ( ".pl" => "/usr/bin/perl",
173
- # ".cgi" => "/usr/bin/perl" )
174
- #
175
-
176
- #### SSL engine
177
- #ssl.engine = "enable"
178
- #ssl.pemfile = "server.pem"
179
-
180
- #### status module
181
- # status.status-url = "/server-status"
182
- # status.config-url = "/server-config"
183
-
184
- #### auth module
185
- ## read authentification.txt for more info
186
- # auth.backend = "plain"
187
- # auth.backend.plain.userfile = "lighttpd.user"
188
- # auth.backend.plain.groupfile = "lighttpd.group"
189
-
190
- # auth.backend.ldap.hostname = "localhost"
191
- # auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
192
- # auth.backend.ldap.filter = "(uid=$)"
193
-
194
- # auth.require = ( "/server-status" =>
195
- # (
196
- # "method" => "digest",
197
- # "realm" => "download archiv",
198
- # "require" => "group=www|user=jan|host=192.168.2.10"
199
- # ),
200
- # "/server-info" =>
201
- # (
202
- # "method" => "digest",
203
- # "realm" => "download archiv",
204
- # "require" => "group=www|user=jan|host=192.168.2.10"
205
- # )
206
- # )
207
-
208
- #### url handling modules (rewrite, redirect, access)
209
-
210
- url.rewrite = (
211
- "^/([\/\-_a-zA-Z0-9]+)?$" => "/fcgi.rb",
212
- "^/([\/\-_a-zA-Z0-9]+)?\?([\-_a-zA-Z0-9=;&%]*)$" => "/fcgi.rb?$2"
213
- )
214
-
215
- # url.redirect = ( "^/wishlist/(.+)" => "http://www.123.org/$1" )
216
-
217
- #
218
- # define a pattern for the host url finding
219
- # %% => % sign
220
- # %0 => domain name + tld
221
- # %1 => tld
222
- # %2 => domain name without tld
223
- # %3 => subdomain 1 name
224
- # %4 => subdomain 2 name
225
- #
226
- # evhost.path-pattern = "/home/storage/dev/www/%3/htdocs/"
227
-
228
- #### expire module
229
- # expire.url = ( "/buggy/" => "access 2 hours", "/asdhas/" => "access plus 1 seconds 2 minutes")
230
-
231
- #### ssi
232
- # ssi.extension = ( ".shtml" )
233
-
234
- #### rrdtool
235
- # rrdtool.binary = "/usr/bin/rrdtool"
236
- # rrdtool.db-name = "/var/www/lighttpd.rrd"
@@ -6374,3 +6374,274 @@ DEBUG: SELECT * FROM og_comment WHERE entry_oid=10
6374
6374
  INFO: cache (after filter example)
6375
6375
  INFO: cache (after filter example)
6376
6376
  [Thu Mar 17 12:35:20 2005] [notice] caught SIGTERM, shutting down
6377
+ [Fri Mar 25 11:46:35 2005] [notice] Digest: generating secret for digest authentication ...
6378
+ [Fri Mar 25 11:46:35 2005] [notice] Digest: done
6379
+ [Fri Mar 25 11:46:36 2005] [notice] FastCGI: process manager initialized (pid 4284)
6380
+ [Fri Mar 25 11:46:36 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6381
+ [Fri Mar 25 11:50:23 2005] [notice] Digest: generating secret for digest authentication ...
6382
+ [Fri Mar 25 11:50:23 2005] [notice] Digest: done
6383
+ [Fri Mar 25 11:50:24 2005] [notice] FastCGI: process manager initialized (pid 4331)
6384
+ [Fri Mar 25 11:50:24 2005] [warn] pid file /var/tmp/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
6385
+ [Fri Mar 25 11:50:24 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6386
+ [Fri Mar 25 11:51:19 2005] [notice] Digest: generating secret for digest authentication ...
6387
+ [Fri Mar 25 11:51:19 2005] [notice] Digest: done
6388
+ [Fri Mar 25 11:51:20 2005] [notice] FastCGI: process manager initialized (pid 4348)
6389
+ [Fri Mar 25 11:51:20 2005] [warn] pid file /var/tmp/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
6390
+ [Fri Mar 25 11:51:20 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6391
+ [Fri Mar 25 11:52:30 2005] [notice] caught SIGTERM, shutting down
6392
+ [Fri Mar 25 11:52:37 2005] [notice] Digest: generating secret for digest authentication ...
6393
+ [Fri Mar 25 11:52:37 2005] [notice] Digest: done
6394
+ [Fri Mar 25 11:52:38 2005] [notice] FastCGI: process manager initialized (pid 4363)
6395
+ [Fri Mar 25 11:52:38 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6396
+ [Fri Mar 25 11:52:40 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/login
6397
+ [Fri Mar 25 11:53:03 2005] [notice] caught SIGTERM, shutting down
6398
+ [Fri Mar 25 11:53:11 2005] [notice] Digest: generating secret for digest authentication ...
6399
+ [Fri Mar 25 11:53:11 2005] [notice] Digest: done
6400
+ [Fri Mar 25 11:53:12 2005] [notice] FastCGI: process manager initialized (pid 4379)
6401
+ [Fri Mar 25 11:53:12 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6402
+ [Fri Mar 25 11:53:12 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6403
+ [Fri Mar 25 11:53:13 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6404
+ [Fri Mar 25 11:53:14 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6405
+ [Fri Mar 25 11:55:42 2005] [notice] caught SIGTERM, shutting down
6406
+ [Fri Mar 25 11:56:04 2005] [notice] Digest: generating secret for digest authentication ...
6407
+ [Fri Mar 25 11:56:04 2005] [notice] Digest: done
6408
+ [Fri Mar 25 11:56:05 2005] [notice] FastCGI: process manager initialized (pid 4401)
6409
+ [Fri Mar 25 11:56:05 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6410
+ [Fri Mar 25 11:56:56 2005] [notice] caught SIGTERM, shutting down
6411
+ [Fri Mar 25 11:57:02 2005] [notice] Digest: generating secret for digest authentication ...
6412
+ [Fri Mar 25 11:57:02 2005] [notice] Digest: done
6413
+ [Fri Mar 25 11:57:03 2005] [notice] FastCGI: process manager initialized (pid 4418)
6414
+ [Fri Mar 25 11:57:03 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6415
+ [Fri Mar 25 11:57:57 2005] [notice] caught SIGTERM, shutting down
6416
+ [Fri Mar 25 11:58:01 2005] [notice] Digest: generating secret for digest authentication ...
6417
+ [Fri Mar 25 11:58:01 2005] [notice] Digest: done
6418
+ [Fri Mar 25 11:58:02 2005] [notice] FastCGI: process manager initialized (pid 4442)
6419
+ [Fri Mar 25 11:58:02 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6420
+ [Fri Mar 25 12:01:44 2005] [notice] caught SIGTERM, shutting down
6421
+ [Fri Mar 25 12:01:48 2005] [notice] Digest: generating secret for digest authentication ...
6422
+ [Fri Mar 25 12:01:48 2005] [notice] Digest: done
6423
+ [Fri Mar 25 12:01:49 2005] [notice] FastCGI: process manager initialized (pid 4485)
6424
+ [Fri Mar 25 12:01:49 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6425
+ [Fri Mar 25 12:02:33 2005] [notice] caught SIGTERM, shutting down
6426
+ [Fri Mar 25 12:02:38 2005] [notice] Digest: generating secret for digest authentication ...
6427
+ [Fri Mar 25 12:02:38 2005] [notice] Digest: done
6428
+ [Fri Mar 25 12:02:39 2005] [notice] FastCGI: process manager initialized (pid 4506)
6429
+ [Fri Mar 25 12:02:39 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6430
+ [Fri Mar 25 12:03:09 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6431
+ [Fri Mar 25 12:03:11 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6432
+ [Fri Mar 25 12:08:30 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/koko.html
6433
+ [Fri Mar 25 12:08:34 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/k.html
6434
+ [Fri Mar 25 12:08:37 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6435
+ [Fri Mar 25 12:09:03 2005] [notice] caught SIGTERM, shutting down
6436
+ [Fri Mar 25 12:09:09 2005] [notice] Digest: generating secret for digest authentication ...
6437
+ [Fri Mar 25 12:09:09 2005] [notice] Digest: done
6438
+ [Fri Mar 25 12:09:10 2005] [notice] FastCGI: process manager initialized (pid 4529)
6439
+ [Fri Mar 25 12:09:10 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6440
+ [Fri Mar 25 12:09:46 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/koko
6441
+ [Fri Mar 25 12:10:24 2005] [notice] caught SIGTERM, shutting down
6442
+ [Fri Mar 25 12:10:29 2005] [notice] Digest: generating secret for digest authentication ...
6443
+ [Fri Mar 25 12:10:29 2005] [notice] Digest: done
6444
+ [Fri Mar 25 12:10:30 2005] [notice] FastCGI: process manager initialized (pid 4547)
6445
+ [Fri Mar 25 12:10:30 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6446
+ [Fri Mar 25 12:11:05 2005] [notice] caught SIGTERM, shutting down
6447
+ [Fri Mar 25 12:11:09 2005] [notice] Digest: generating secret for digest authentication ...
6448
+ [Fri Mar 25 12:11:09 2005] [notice] Digest: done
6449
+ [Fri Mar 25 12:11:10 2005] [notice] FastCGI: process manager initialized (pid 4563)
6450
+ [Fri Mar 25 12:11:10 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6451
+ [Fri Mar 25 12:12:06 2005] [notice] caught SIGTERM, shutting down
6452
+ [Fri Mar 25 12:12:11 2005] [notice] Digest: generating secret for digest authentication ...
6453
+ [Fri Mar 25 12:12:11 2005] [notice] Digest: done
6454
+ [Fri Mar 25 12:12:12 2005] [notice] FastCGI: process manager initialized (pid 4579)
6455
+ [Fri Mar 25 12:12:12 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6456
+ [Fri Mar 25 12:13:27 2005] [notice] caught SIGTERM, shutting down
6457
+ [Fri Mar 25 12:13:32 2005] [notice] Digest: generating secret for digest authentication ...
6458
+ [Fri Mar 25 12:13:32 2005] [notice] Digest: done
6459
+ [Fri Mar 25 12:13:33 2005] [notice] FastCGI: process manager initialized (pid 4594)
6460
+ [Fri Mar 25 12:13:33 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6461
+ [Fri Mar 25 12:15:00 2005] [notice] caught SIGTERM, shutting down
6462
+ [Fri Mar 25 12:15:04 2005] [notice] Digest: generating secret for digest authentication ...
6463
+ [Fri Mar 25 12:15:04 2005] [notice] Digest: done
6464
+ [Fri Mar 25 12:15:05 2005] [notice] FastCGI: process manager initialized (pid 4611)
6465
+ [Fri Mar 25 12:15:05 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6466
+ [Fri Mar 25 12:15:07 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6467
+ [Fri Mar 25 12:15:43 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6468
+ [Fri Mar 25 12:15:49 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6469
+ [Fri Mar 25 12:16:27 2005] [notice] caught SIGTERM, shutting down
6470
+ [Fri Mar 25 12:16:31 2005] [notice] Digest: generating secret for digest authentication ...
6471
+ [Fri Mar 25 12:16:31 2005] [notice] Digest: done
6472
+ [Fri Mar 25 12:16:32 2005] [notice] FastCGI: process manager initialized (pid 4632)
6473
+ [Fri Mar 25 12:16:32 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6474
+ [Fri Mar 25 12:16:33 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6475
+ [Fri Mar 25 12:17:07 2005] [notice] caught SIGTERM, shutting down
6476
+ [Fri Mar 25 12:17:11 2005] [notice] Digest: generating secret for digest authentication ...
6477
+ [Fri Mar 25 12:17:11 2005] [notice] Digest: done
6478
+ [Fri Mar 25 12:17:12 2005] [notice] FastCGI: process manager initialized (pid 4648)
6479
+ [Fri Mar 25 12:17:12 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6480
+ [Fri Mar 25 12:17:56 2005] [notice] caught SIGTERM, shutting down
6481
+ [Fri Mar 25 12:18:00 2005] [notice] Digest: generating secret for digest authentication ...
6482
+ [Fri Mar 25 12:18:00 2005] [notice] Digest: done
6483
+ [Fri Mar 25 12:18:01 2005] [notice] FastCGI: process manager initialized (pid 4663)
6484
+ [Fri Mar 25 12:18:01 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6485
+ [Fri Mar 25 12:18:42 2005] [notice] caught SIGTERM, shutting down
6486
+ [Fri Mar 25 12:18:46 2005] [notice] Digest: generating secret for digest authentication ...
6487
+ [Fri Mar 25 12:18:46 2005] [notice] Digest: done
6488
+ [Fri Mar 25 12:18:47 2005] [notice] FastCGI: process manager initialized (pid 4679)
6489
+ [Fri Mar 25 12:18:47 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6490
+ [Fri Mar 25 12:18:47 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/.html
6491
+ [Fri Mar 25 12:19:31 2005] [notice] caught SIGTERM, shutting down
6492
+ [Fri Mar 25 12:19:35 2005] [notice] Digest: generating secret for digest authentication ...
6493
+ [Fri Mar 25 12:19:35 2005] [notice] Digest: done
6494
+ [Fri Mar 25 12:19:36 2005] [notice] FastCGI: process manager initialized (pid 4695)
6495
+ [Fri Mar 25 12:19:36 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6496
+ [Fri Mar 25 12:19:49 2005] [error] [client 127.0.0.1] File does not exist: /home/gmosx/navel/nitro/examples/blog/public/koko.html
6497
+ [Fri Mar 25 12:20:22 2005] [notice] caught SIGTERM, shutting down
6498
+ [Fri Mar 25 12:20:27 2005] [notice] Digest: generating secret for digest authentication ...
6499
+ [Fri Mar 25 12:20:27 2005] [notice] Digest: done
6500
+ [Fri Mar 25 12:20:28 2005] [notice] FastCGI: process manager initialized (pid 4712)
6501
+ [Fri Mar 25 12:20:28 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6502
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6503
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] :
6504
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] No such file to load -- nitro
6505
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] (
6506
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] LoadError
6507
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] )
6508
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6509
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4:in `require'
6510
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4
6511
+ [Fri Mar 25 12:20:31 2005] [error] [client 127.0.0.1] Premature end of script headers: fcgi.rb
6512
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6513
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] :
6514
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] No such file to load -- nitro
6515
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] (
6516
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] LoadError
6517
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] )
6518
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6519
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4:in `require'
6520
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4
6521
+ [Fri Mar 25 12:20:44 2005] [error] [client 127.0.0.1] Premature end of script headers: fcgi.rb
6522
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6523
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] :
6524
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] No such file to load -- nitro
6525
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] (
6526
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] LoadError
6527
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] )
6528
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6529
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4:in `require'
6530
+ [Fri Mar 25 12:20:55 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4
6531
+ [Fri Mar 25 12:20:56 2005] [error] [client 127.0.0.1] Premature end of script headers: fcgi.rb
6532
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6533
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] :
6534
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] No such file to load -- nitro
6535
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] (
6536
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] LoadError
6537
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] )
6538
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6539
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4:in `require'
6540
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4
6541
+ [Fri Mar 25 12:21:05 2005] [error] [client 127.0.0.1] Premature end of script headers: fcgi.rb
6542
+ [Fri Mar 25 12:22:52 2005] [notice] caught SIGTERM, shutting down
6543
+ [Fri Mar 25 12:24:10 2005] [notice] Digest: generating secret for digest authentication ...
6544
+ [Fri Mar 25 12:24:10 2005] [notice] Digest: done
6545
+ [Fri Mar 25 12:24:11 2005] [notice] FastCGI: process manager initialized (pid 4750)
6546
+ [Fri Mar 25 12:24:11 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6547
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6548
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] :
6549
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] No such file to load -- nitro
6550
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] (
6551
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] LoadError
6552
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] )
6553
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6554
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:6:in `require'
6555
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:6
6556
+ [Fri Mar 25 12:24:15 2005] [error] [client 127.0.0.1] malformed header from script. Bad header=---------------->: fcgi.rb
6557
+ [Fri Mar 25 12:24:51 2005] [notice] caught SIGTERM, shutting down
6558
+ [Fri Mar 25 12:24:56 2005] [notice] Digest: generating secret for digest authentication ...
6559
+ [Fri Mar 25 12:24:56 2005] [notice] Digest: done
6560
+ [Fri Mar 25 12:24:57 2005] [notice] FastCGI: process manager initialized (pid 4766)
6561
+ [Fri Mar 25 12:24:57 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6562
+ [Fri Mar 25 12:24:57 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:4
6563
+ [Fri Mar 25 12:24:57 2005] [error] [client 127.0.0.1] :
6564
+ [Fri Mar 25 12:24:57 2005] [error] [client 127.0.0.1] uninitialized constant Logger
6565
+ [Fri Mar 25 12:24:57 2005] [error] [client 127.0.0.1] (
6566
+ [Fri Mar 25 12:24:57 2005] [error] [client 127.0.0.1] NameError
6567
+ [Fri Mar 25 12:24:57 2005] [error] [client 127.0.0.1] )
6568
+ [Fri Mar 25 12:24:57 2005] [error] [client 127.0.0.1] malformed header from script. Bad header=---------------->: fcgi.rb
6569
+ [Fri Mar 25 12:25:38 2005] [notice] caught SIGTERM, shutting down
6570
+ [Fri Mar 25 12:25:41 2005] [notice] Digest: generating secret for digest authentication ...
6571
+ [Fri Mar 25 12:25:41 2005] [notice] Digest: done
6572
+ [Fri Mar 25 12:25:42 2005] [notice] FastCGI: process manager initialized (pid 4782)
6573
+ [Fri Mar 25 12:25:42 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6574
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6575
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] :
6576
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] No such file to load -- nitro
6577
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] (
6578
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] LoadError
6579
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] )
6580
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6581
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:6:in `require'
6582
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:6
6583
+ [Fri Mar 25 12:25:43 2005] [error] [client 127.0.0.1] malformed header from script. Bad header=---------------->: fcgi.rb
6584
+ [Fri Mar 25 12:26:42 2005] [notice] caught SIGTERM, shutting down
6585
+ [Fri Mar 25 12:26:46 2005] [notice] Digest: generating secret for digest authentication ...
6586
+ [Fri Mar 25 12:26:46 2005] [notice] Digest: done
6587
+ [Fri Mar 25 12:26:47 2005] [notice] FastCGI: process manager initialized (pid 4800)
6588
+ [Fri Mar 25 12:26:47 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6589
+ [Fri Mar 25 12:26:49 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6590
+ [Fri Mar 25 12:26:49 2005] [error] [client 127.0.0.1] : No such file to load -- nitro (LoadError)
6591
+ [Fri Mar 25 12:26:49 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6592
+ [Fri Mar 25 12:26:49 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:7:in `require'
6593
+ [Fri Mar 25 12:26:49 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:7
6594
+ [Fri Mar 25 12:26:49 2005] [error] [client 127.0.0.1] malformed header from script. Bad header=------->/home/gmosx/navel/nitr: fcgi.rb
6595
+ [Fri Mar 25 12:27:24 2005] [notice] caught SIGTERM, shutting down
6596
+ [Fri Mar 25 12:27:29 2005] [notice] Digest: generating secret for digest authentication ...
6597
+ [Fri Mar 25 12:27:29 2005] [notice] Digest: done
6598
+ [Fri Mar 25 12:27:30 2005] [notice] FastCGI: process manager initialized (pid 4818)
6599
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7:in `require'
6600
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] :
6601
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] No such file to load -- nitro
6602
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] (
6603
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] LoadError
6604
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] )
6605
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/../run.rb:7
6606
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:6:in `require'
6607
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] \tfrom /home/gmosx/navel/nitro/examples/blog/public/fcgi.rb:6
6608
+ [Fri Mar 25 12:27:30 2005] [error] [client 127.0.0.1] malformed header from script. Bad header=/home/gmosx/navel/nitro/exampl: fcgi.rb
6609
+ [Fri Mar 25 12:27:30 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6610
+ [Fri Mar 25 12:39:53 2005] [notice] caught SIGTERM, shutting down
6611
+ [Mon Mar 28 11:57:08 2005] [notice] Digest: generating secret for digest authentication ...
6612
+ [Mon Mar 28 11:57:08 2005] [notice] Digest: done
6613
+ [Mon Mar 28 11:57:09 2005] [notice] FastCGI: process manager initialized (pid 5361)
6614
+ [Mon Mar 28 11:57:09 2005] [notice] Apache/2.0.53 (Unix) DAV/2 mod_fastcgi/2.4.2 configured -- resuming normal operations
6615
+ [Mon Mar 28 11:57:10 2005] [warn] FastCGI: (dynamic) server "/home/gmosx/navel/nitro/examples/blog/public/fcgi.rb" started (pid 5367)
6616
+ INFO: Connecting to database 'blog' using the 'psql' adapter.
6617
+ DEBUG: Og auto manages the following classes:
6618
+ DEBUG: [BlogEntry, Category, Comment]
6619
+ NOTICE: CREATE TABLE will create implicit sequence "og_blogentry_oid_seq" for "serial" column "og_blogentry.oid"
6620
+ NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "og_blogentry_pkey" for table "og_blogentry"
6621
+ NOTICE: CREATE TABLE will create implicit sequence "og_category_oid_seq" for "serial" column "og_category.oid"
6622
+ NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "og_category_pkey" for table "og_category"
6623
+ NOTICE: CREATE TABLE will create implicit sequence "og_comment_oid_seq" for "serial" column "og_comment.oid"
6624
+ NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "og_comment_pkey" for table "og_comment"
6625
+ DEBUG: Rendering '/'.
6626
+ DEBUG: Compiling action 'src/views/index'
6627
+ DEBUG: Transforming 'src/views/index.xhtml'
6628
+ DEBUG: Parsing xsl 'src/xsl/style.xsl'
6629
+ DEBUG: SELECT * FROM og_blogentry ORDER BY oid DESC LIMIT 3
6630
+ DEBUG: SELECT COUNT(*) FROM og_blogentry
6631
+ DEBUG: Rendering '/recent_posts'.
6632
+ DEBUG: Compiling action 'src/views/recent_posts'
6633
+ DEBUG: Transforming 'src/views/recent_posts.xhtml'
6634
+ DEBUG: Parsing xsl 'src/xsl/style.xsl'
6635
+ DEBUG: Rendering '/view_entry/14'.
6636
+ DEBUG: Compiling action 'src/views/view_entry'
6637
+ DEBUG: Transforming 'src/views/view_entry.xhtml'
6638
+ DEBUG: Parsing xsl 'src/xsl/style.xsl'
6639
+ DEBUG: SELECT * FROM og_blogentry WHERE oid=14
6640
+ DEBUG: Rendering '/comments'.
6641
+ DEBUG: Compiling action 'src/views/comments'
6642
+ DEBUG: Transforming 'src/views/comments.xhtml'
6643
+ DEBUG: Parsing xsl 'src/xsl/style.xsl'
6644
+ DEBUG: SELECT COUNT(*) FROM og_comment WHERE entry_oid=14
6645
+ DEBUG: SELECT * FROM og_comment WHERE entry_oid=14
6646
+ [Mon Mar 28 11:58:46 2005] [notice] caught SIGTERM, shutting down
6647
+ /home/gmosx/navel/nitro/examples/blog/public