Skip to content

Commit

Permalink
Pulled the gateway.cgi until we can make it work properly out the gates
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1724 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Jul 6, 2005
1 parent 38e78c6 commit ac38081
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions railties/CHANGELOG
Expand Up @@ -2,8 +2,6 @@


* Changed the default logging level in config/environment.rb to INFO for production (so SQL statements won't be logged) * Changed the default logging level in config/environment.rb to INFO for production (so SQL statements won't be logged)


* Added an EXPERIMENTAL gateway.cgi for getting high-speed performance through vanilla CGI using a long-running, DRb-backed server in the background (using script/listener and script/tracker) #1603 [Nicholas Seckar]

* Added migration generator: ./script/generate migration add_system_settings * Added migration generator: ./script/generate migration add_system_settings


* Added "migrate" as rake task to execute all the pending migrations from db/migrate * Added "migrate" as rake task to execute all the pending migrations from db/migrate
Expand Down
6 changes: 3 additions & 3 deletions railties/Rakefile
Expand Up @@ -26,7 +26,7 @@ TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/test )


LOG_FILES = %w( server.log development.log test.log production.log ) LOG_FILES = %w( server.log development.log test.log production.log )
HTML_FILES = %w( 404.html 500.html index.html favicon.ico javascripts/prototype.js javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js ) HTML_FILES = %w( 404.html 500.html index.html favicon.ico javascripts/prototype.js javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js )
BIN_FILES = %w( generate destroy breakpointer console server update runner profiler benchmarker listener tracker ) BIN_FILES = %w( generate destroy breakpointer console server update runner profiler benchmarker ) # listener tracker


VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties ) VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties )


Expand Down Expand Up @@ -136,8 +136,8 @@ task :copy_dispatches do
copy_with_rewritten_ruby_path("dispatches/dispatch.fcgi", "#{PKG_DESTINATION}/public/dispatch.fcgi") copy_with_rewritten_ruby_path("dispatches/dispatch.fcgi", "#{PKG_DESTINATION}/public/dispatch.fcgi")
chmod 0755, "#{PKG_DESTINATION}/public/dispatch.fcgi" chmod 0755, "#{PKG_DESTINATION}/public/dispatch.fcgi"


copy_with_rewritten_ruby_path("dispatches/gateway.cgi", "#{PKG_DESTINATION}/public/gateway.cgi") # copy_with_rewritten_ruby_path("dispatches/gateway.cgi", "#{PKG_DESTINATION}/public/gateway.cgi")
chmod 0755, "#{PKG_DESTINATION}/public/gateway.cgi" # chmod 0755, "#{PKG_DESTINATION}/public/gateway.cgi"
end end


task :copy_html_files do task :copy_html_files do
Expand Down
Expand Up @@ -42,8 +42,8 @@ def manifest
m.file "environments/development.rb", "config/environments/development.rb" m.file "environments/development.rb", "config/environments/development.rb"
m.file "environments/test.rb", "config/environments/test.rb" m.file "environments/test.rb", "config/environments/test.rb"


# Scripts # Scripts (tracker listener)
%w(console destroy generate server runner benchmarker profiler tracker listener).each do |file| %w(console destroy generate server runner benchmarker profiler ).each do |file|
m.file "bin/#{file}", "script/#{file}", script_options m.file "bin/#{file}", "script/#{file}", script_options
end end
if options[:gem] if options[:gem]
Expand All @@ -56,7 +56,7 @@ def manifest
m.file "dispatches/dispatch.rb", "public/dispatch.rb", script_options m.file "dispatches/dispatch.rb", "public/dispatch.rb", script_options
m.file "dispatches/dispatch.rb", "public/dispatch.cgi", script_options m.file "dispatches/dispatch.rb", "public/dispatch.cgi", script_options
m.file "dispatches/dispatch.fcgi", "public/dispatch.fcgi", script_options m.file "dispatches/dispatch.fcgi", "public/dispatch.fcgi", script_options
m.file "dispatches/gateway.cgi", "public/gateway.cgi", script_options # m.file "dispatches/gateway.cgi", "public/gateway.cgi", script_options


# HTML files # HTML files
%w(404 500 index).each do |file| %w(404 500 index).each do |file|
Expand Down

0 comments on commit ac38081

Please sign in to comment.