Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 25
- Log:
Configured for temporary /rails/collaboa location on Alpha. Changed
database schema so 'completed' flag in 'milestones' table is an integer
rather than a boolean because there are comparisons with zero in a few
places in the code, but PostgreSQL strongly types booleans and will not
automatically or cast it or allow it to be explicitly cast. It was
simpler to change the database type to match the code.Added a local copy of RedCloth since it didn't appear in the right
place (this appears in 'vendor'). Updated the 'syntax' library to use
more explicit 'require' paths - some of the files looked like they were
expecting 'require' to work from the directory in which the file itself
resided, but Ruby/Rails, at least on Alpha, treats them as coming from
the application root at all times.As housekeeping, deleted spurious log files.
- Author:
- adh
- Date:
- Mon Jul 24 22:03:51 +0100 2006
- Size:
- 855 Bytes
- Properties:
- Property svn:executable is set
1 | #!/bin/env ruby |
2 | # |
3 | # You may specify the path to the FastCGI crash log (a log of unhandled |
4 | # exceptions which forced the FastCGI instance to exit, great for debugging) |
5 | # and the number of requests to process before running garbage collection. |
6 | # |
7 | # By default, the FastCGI crash log is RAILS_ROOT/log/fastcgi.crash.log |
8 | # and the GC period is nil (turned off). A reasonable number of requests |
9 | # could range from 10-100 depending on the memory footprint of your app. |
10 | # |
11 | # Example: |
12 | # # Default log path, normal GC behavior. |
13 | # RailsFCGIHandler.process! |
14 | # |
15 | # # Default log path, 50 requests between GC. |
16 | # RailsFCGIHandler.process! nil, 50 |
17 | # |
18 | # # Custom log path, normal GC behavior. |
19 | # RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log' |
20 | # |
21 | require File.dirname(__FILE__) + "/../config/environment" |
22 | require 'fcgi_handler' |
23 | |
24 | RailsFCGIHandler.process! |