Changeset 83
- Timestamp:
- 08/24/06 21:06:58 (2 years ago)
- Files:
-
- trunk/demo/app/controllers/admin (added)
- trunk/demo/app/controllers/admin/backend_controller.rb (added)
- trunk/demo/app/controllers/admin_area_controller.rb (added)
- trunk/demo/app/controllers/application.rb (modified) (1 diff)
- trunk/demo/app/helpers/admin (added)
- trunk/demo/app/helpers/admin/backend_helper.rb (added)
- trunk/demo/app/views/admin (added)
- trunk/demo/app/views/admin/backend (added)
- trunk/demo/app/views/admin/backend/search.rhtml (added)
- trunk/demo/config/lighttpd.conf (modified) (2 diffs)
- trunk/demo/test/functional/admin (added)
- trunk/demo/test/functional/admin/backend_controller_test.rb (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/demo/app/controllers/application.rb
r5 r83 3 3 class ApplicationController < ActionController::Base 4 4 end 5 trunk/demo/config/lighttpd.conf
r5 r83 2 2 # Start using ./script/server lighttpd 3 3 4 server.port = 300 04 server.port = 3001 5 5 6 6 server.modules = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi" ) 7 7 server.error-handler-404 = "/dispatch.fcgi" 8 server.document-root = "public/"8 server.document-root = CWD + "/public/" 9 9 10 server.errorlog = "log/lighttpd.error.log"11 accesslog.filename = "log/lighttpd.access.log"10 server.errorlog = CWD + "/log/lighttpd.error.log" 11 accesslog.filename = CWD + "/log/lighttpd.access.log" 12 12 13 13 url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" ) … … 20 20 "min-procs" => 1, 21 21 "max-procs" => 1, 22 "socket" => "log/fcgi.socket",23 "bin-path" => "public/dispatch.fcgi",22 "socket" => CWD + "/tmp/sockets/fcgi.socket", 23 "bin-path" => CWD + "/public/dispatch.fcgi", 24 24 "bin-environment" => ( "RAILS_ENV" => "development" ) 25 25 )
