reflexive 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. data/Gemfile +16 -0
  2. data/Rakefile +31 -0
  3. data/config.ru +3 -0
  4. data/reflexive.gemspec +1 -1
  5. data/spec/coderay_html_encoder_spec.rb +57 -0
  6. data/spec/coderay_ruby_scanner_spec.rb +194 -0
  7. data/spec/io_interceptor.rb +64 -0
  8. data/spec/method_lookup_spec.rb +0 -0
  9. data/spec/methods_spec.rb +202 -0
  10. data/spec/rails_integration_spec.rb +139 -0
  11. data/spec/rails_integration_spec_helper.rb +115 -0
  12. data/spec/reflexive_ripper_spec.rb +351 -0
  13. data/spec/reflexive_spec.rb +98 -0
  14. data/spec/ripper_events_recorder.rb +50 -0
  15. data/spec/ripper_spec.rb +758 -0
  16. data/spec/sexp_builder_with_scanner_events.rb +39 -0
  17. data/spec/shell_out.rb +417 -0
  18. data/spec/spec_helper.rb +4 -0
  19. data/spec/test_apps/rails2_test_app/README +243 -0
  20. data/spec/test_apps/rails2_test_app/Rakefile +10 -0
  21. data/spec/test_apps/rails2_test_app/app/controllers/application_controller.rb +10 -0
  22. data/spec/test_apps/rails2_test_app/app/controllers/posts_controller.rb +85 -0
  23. data/spec/test_apps/rails2_test_app/app/helpers/application_helper.rb +3 -0
  24. data/spec/test_apps/rails2_test_app/app/helpers/posts_helper.rb +2 -0
  25. data/spec/test_apps/rails2_test_app/app/models/post.rb +5 -0
  26. data/spec/test_apps/rails2_test_app/app/views/layouts/posts.html.erb +17 -0
  27. data/spec/test_apps/rails2_test_app/app/views/posts/edit.html.erb +12 -0
  28. data/spec/test_apps/rails2_test_app/app/views/posts/index.html.erb +18 -0
  29. data/spec/test_apps/rails2_test_app/app/views/posts/new.html.erb +11 -0
  30. data/spec/test_apps/rails2_test_app/app/views/posts/show.html.erb +3 -0
  31. data/spec/test_apps/rails2_test_app/config/boot.rb +110 -0
  32. data/spec/test_apps/rails2_test_app/config/database.yml +22 -0
  33. data/spec/test_apps/rails2_test_app/config/environment.rb +43 -0
  34. data/spec/test_apps/rails2_test_app/config/environments/development.rb +17 -0
  35. data/spec/test_apps/rails2_test_app/config/environments/production.rb +28 -0
  36. data/spec/test_apps/rails2_test_app/config/environments/test.rb +28 -0
  37. data/spec/test_apps/rails2_test_app/config/initializers/backtrace_silencers.rb +7 -0
  38. data/spec/test_apps/rails2_test_app/config/initializers/inflections.rb +10 -0
  39. data/spec/test_apps/rails2_test_app/config/initializers/mime_types.rb +5 -0
  40. data/spec/test_apps/rails2_test_app/config/initializers/new_rails_defaults.rb +21 -0
  41. data/spec/test_apps/rails2_test_app/config/initializers/session_store.rb +15 -0
  42. data/spec/test_apps/rails2_test_app/config/locales/en.yml +5 -0
  43. data/spec/test_apps/rails2_test_app/config/routes.rb +45 -0
  44. data/spec/test_apps/rails2_test_app/db/development.sqlite3 +0 -0
  45. data/spec/test_apps/rails2_test_app/db/migrate/20100512073155_create_posts.rb +12 -0
  46. data/spec/test_apps/rails2_test_app/db/schema.rb +19 -0
  47. data/spec/test_apps/rails2_test_app/db/seeds.rb +7 -0
  48. data/spec/test_apps/rails2_test_app/doc/README_FOR_APP +2 -0
  49. data/spec/test_apps/rails2_test_app/log/development.log +251 -0
  50. data/spec/test_apps/rails2_test_app/log/production.log +0 -0
  51. data/spec/test_apps/rails2_test_app/log/server.log +0 -0
  52. data/spec/test_apps/rails2_test_app/log/test.log +0 -0
  53. data/spec/test_apps/rails2_test_app/public/404.html +30 -0
  54. data/spec/test_apps/rails2_test_app/public/422.html +30 -0
  55. data/spec/test_apps/rails2_test_app/public/500.html +30 -0
  56. data/spec/test_apps/rails2_test_app/public/favicon.ico +0 -0
  57. data/spec/test_apps/rails2_test_app/public/images/rails.png +0 -0
  58. data/spec/test_apps/rails2_test_app/public/index.html +275 -0
  59. data/spec/test_apps/rails2_test_app/public/javascripts/application.js +2 -0
  60. data/spec/test_apps/rails2_test_app/public/javascripts/controls.js +963 -0
  61. data/spec/test_apps/rails2_test_app/public/javascripts/dragdrop.js +973 -0
  62. data/spec/test_apps/rails2_test_app/public/javascripts/effects.js +1128 -0
  63. data/spec/test_apps/rails2_test_app/public/javascripts/prototype.js +4320 -0
  64. data/spec/test_apps/rails2_test_app/public/robots.txt +5 -0
  65. data/spec/test_apps/rails2_test_app/public/stylesheets/1.css +0 -0
  66. data/spec/test_apps/rails2_test_app/public/stylesheets/scaffold.css +54 -0
  67. data/spec/test_apps/rails2_test_app/script/about +4 -0
  68. data/spec/test_apps/rails2_test_app/script/console +3 -0
  69. data/spec/test_apps/rails2_test_app/script/dbconsole +3 -0
  70. data/spec/test_apps/rails2_test_app/script/destroy +3 -0
  71. data/spec/test_apps/rails2_test_app/script/generate +3 -0
  72. data/spec/test_apps/rails2_test_app/script/performance/benchmarker +3 -0
  73. data/spec/test_apps/rails2_test_app/script/performance/profiler +3 -0
  74. data/spec/test_apps/rails2_test_app/script/plugin +3 -0
  75. data/spec/test_apps/rails2_test_app/script/runner +3 -0
  76. data/spec/test_apps/rails2_test_app/script/server +3 -0
  77. data/spec/test_apps/rails2_test_app/test/fixtures/posts.yml +7 -0
  78. data/spec/test_apps/rails2_test_app/test/functional/posts_controller_test.rb +45 -0
  79. data/spec/test_apps/rails2_test_app/test/performance/browsing_test.rb +9 -0
  80. data/spec/test_apps/rails2_test_app/test/test_helper.rb +38 -0
  81. data/spec/test_apps/rails2_test_app/test/unit/helpers/posts_helper_test.rb +4 -0
  82. data/spec/test_apps/rails2_test_app/test/unit/post_test.rb +8 -0
  83. data/spec/test_apps/rails3_test_app/Gemfile +28 -0
  84. data/spec/test_apps/rails3_test_app/README +244 -0
  85. data/spec/test_apps/rails3_test_app/Rakefile +10 -0
  86. data/spec/test_apps/rails3_test_app/app/controllers/application_controller.rb +4 -0
  87. data/spec/test_apps/rails3_test_app/app/controllers/posts_controller.rb +83 -0
  88. data/spec/test_apps/rails3_test_app/app/helpers/application_helper.rb +2 -0
  89. data/spec/test_apps/rails3_test_app/app/helpers/posts_helper.rb +2 -0
  90. data/spec/test_apps/rails3_test_app/app/models/post.rb +2 -0
  91. data/spec/test_apps/rails3_test_app/app/views/layouts/application.html.erb +14 -0
  92. data/spec/test_apps/rails3_test_app/app/views/posts/_form.html.erb +16 -0
  93. data/spec/test_apps/rails3_test_app/app/views/posts/edit.html.erb +6 -0
  94. data/spec/test_apps/rails3_test_app/app/views/posts/index.html.erb +21 -0
  95. data/spec/test_apps/rails3_test_app/app/views/posts/new.html.erb +5 -0
  96. data/spec/test_apps/rails3_test_app/app/views/posts/show.html.erb +5 -0
  97. data/spec/test_apps/rails3_test_app/config/application.rb +49 -0
  98. data/spec/test_apps/rails3_test_app/config/boot.rb +6 -0
  99. data/spec/test_apps/rails3_test_app/config/database.yml +22 -0
  100. data/spec/test_apps/rails3_test_app/config/environment.rb +5 -0
  101. data/spec/test_apps/rails3_test_app/config/environments/development.rb +19 -0
  102. data/spec/test_apps/rails3_test_app/config/environments/production.rb +42 -0
  103. data/spec/test_apps/rails3_test_app/config/environments/test.rb +32 -0
  104. data/spec/test_apps/rails3_test_app/config/initializers/backtrace_silencers.rb +7 -0
  105. data/spec/test_apps/rails3_test_app/config/initializers/inflections.rb +10 -0
  106. data/spec/test_apps/rails3_test_app/config/initializers/mime_types.rb +5 -0
  107. data/spec/test_apps/rails3_test_app/config/initializers/secret_token.rb +7 -0
  108. data/spec/test_apps/rails3_test_app/config/initializers/session_store.rb +8 -0
  109. data/spec/test_apps/rails3_test_app/config/locales/en.yml +5 -0
  110. data/spec/test_apps/rails3_test_app/config/routes.rb +60 -0
  111. data/spec/test_apps/rails3_test_app/config.ru +4 -0
  112. data/spec/test_apps/rails3_test_app/db/development.sqlite3 +0 -0
  113. data/spec/test_apps/rails3_test_app/db/migrate/20100512075428_create_posts.rb +12 -0
  114. data/spec/test_apps/rails3_test_app/db/schema.rb +19 -0
  115. data/spec/test_apps/rails3_test_app/db/seeds.rb +7 -0
  116. data/spec/test_apps/rails3_test_app/doc/README_FOR_APP +2 -0
  117. data/spec/test_apps/rails3_test_app/log/development.log +349 -0
  118. data/spec/test_apps/rails3_test_app/log/production.log +0 -0
  119. data/spec/test_apps/rails3_test_app/log/server.log +0 -0
  120. data/spec/test_apps/rails3_test_app/log/test.log +0 -0
  121. data/spec/test_apps/rails3_test_app/public/404.html +26 -0
  122. data/spec/test_apps/rails3_test_app/public/422.html +26 -0
  123. data/spec/test_apps/rails3_test_app/public/500.html +26 -0
  124. data/spec/test_apps/rails3_test_app/public/favicon.ico +0 -0
  125. data/spec/test_apps/rails3_test_app/public/images/rails.png +0 -0
  126. data/spec/test_apps/rails3_test_app/public/index.html +279 -0
  127. data/spec/test_apps/rails3_test_app/public/javascripts/application.js +2 -0
  128. data/spec/test_apps/rails3_test_app/public/javascripts/controls.js +965 -0
  129. data/spec/test_apps/rails3_test_app/public/javascripts/dragdrop.js +974 -0
  130. data/spec/test_apps/rails3_test_app/public/javascripts/effects.js +1123 -0
  131. data/spec/test_apps/rails3_test_app/public/javascripts/prototype.js +4874 -0
  132. data/spec/test_apps/rails3_test_app/public/javascripts/rails.js +118 -0
  133. data/spec/test_apps/rails3_test_app/public/robots.txt +5 -0
  134. data/spec/test_apps/rails3_test_app/public/stylesheets/scaffold.css +60 -0
  135. data/spec/test_apps/rails3_test_app/script/rails +9 -0
  136. data/spec/test_apps/rails3_test_app/test/fixtures/posts.yml +11 -0
  137. data/spec/test_apps/rails3_test_app/test/functional/posts_controller_test.rb +49 -0
  138. data/spec/test_apps/rails3_test_app/test/performance/browsing_test.rb +9 -0
  139. data/spec/test_apps/rails3_test_app/test/test_helper.rb +13 -0
  140. data/spec/test_apps/rails3_test_app/test/unit/helpers/posts_helper_test.rb +4 -0
  141. data/spec/test_apps/rails3_test_app/test/unit/post_test.rb +8 -0
  142. metadata +142 -2
@@ -0,0 +1,251 @@
1
+ /!\ FAILSAFE /!\ 2010-05-05 08:51:15 -0700
2
+ Status: 500 Internal Server Error
3
+ no such file to load -- sqlite3
4
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require'
5
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `block in require'
6
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:521:in `new_constants_in'
7
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require'
8
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/requires.rb:7:in `block in require_library_or_gem'
9
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/reporting.rb:11:in `silence_warnings'
10
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/requires.rb:5:in `require_library_or_gem'
11
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/sqlite3_adapter.rb:10:in `sqlite3_connection'
12
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:223:in `new_connection'
13
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:245:in `checkout_new_connection'
14
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:188:in `block (2 levels) in checkout'
15
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `loop'
16
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `block in checkout'
17
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/monitor.rb:201:in `mon_synchronize'
18
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:183:in `checkout'
19
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:98:in `connection'
20
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:326:in `retrieve_connection'
21
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_specification.rb:123:in `retrieve_connection'
22
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_specification.rb:115:in `connection'
23
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/query_cache.rb:9:in `cache'
24
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/query_cache.rb:28:in `call'
25
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call'
26
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/string_coercion.rb:25:in `call'
27
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/head.rb:9:in `call'
28
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call'
29
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/params_parser.rb:15:in `call'
30
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/session/cookie_store.rb:93:in `call'
31
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/failsafe.rb:26:in `call'
32
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:450:in `forward'
33
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:531:in `route_missing'
34
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:516:in `route!'
35
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:510:in `route!'
36
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:601:in `dispatch!'
37
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:411:in `block in call!'
38
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `instance_eval'
39
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `block in invoke'
40
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `catch'
41
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `invoke'
42
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:411:in `call!'
43
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:399:in `call'
44
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/showexceptions.rb:24:in `call'
45
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/lock.rb:11:in `block in call'
46
+ <internal:prelude>:10:in `synchronize'
47
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call'
48
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/dispatcher.rb:114:in `block in call'
49
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/reloader.rb:34:in `run'
50
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/dispatcher.rb:108:in `call'
51
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rails-2.3.5/lib/rails/rack/static.rb:31:in `call'
52
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `block in call'
53
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each'
54
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call'
55
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rails-2.3.5/lib/rails/rack/log_tailer.rb:17:in `call'
56
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call'
57
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/handler/webrick.rb:50:in `service'
58
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
59
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
60
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
61
+ /!\ FAILSAFE /!\ 2010-05-05 08:51:57 -0700
62
+ Status: 500 Internal Server Error
63
+ no such file to load -- sqlite3
64
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require'
65
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `block in require'
66
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:521:in `new_constants_in'
67
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require'
68
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/requires.rb:7:in `block in require_library_or_gem'
69
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/reporting.rb:11:in `silence_warnings'
70
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/requires.rb:5:in `require_library_or_gem'
71
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/sqlite3_adapter.rb:10:in `sqlite3_connection'
72
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:223:in `new_connection'
73
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:245:in `checkout_new_connection'
74
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:188:in `block (2 levels) in checkout'
75
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `loop'
76
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `block in checkout'
77
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/monitor.rb:201:in `mon_synchronize'
78
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:183:in `checkout'
79
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:98:in `connection'
80
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:326:in `retrieve_connection'
81
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_specification.rb:123:in `retrieve_connection'
82
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_specification.rb:115:in `connection'
83
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/query_cache.rb:9:in `cache'
84
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/query_cache.rb:28:in `call'
85
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call'
86
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/string_coercion.rb:25:in `call'
87
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/head.rb:9:in `call'
88
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call'
89
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/params_parser.rb:15:in `call'
90
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/session/cookie_store.rb:93:in `call'
91
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/failsafe.rb:26:in `call'
92
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:450:in `forward'
93
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:531:in `route_missing'
94
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:516:in `route!'
95
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:510:in `route!'
96
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:601:in `dispatch!'
97
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:411:in `block in call!'
98
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `instance_eval'
99
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `block in invoke'
100
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `catch'
101
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `invoke'
102
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:411:in `call!'
103
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:399:in `call'
104
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/showexceptions.rb:24:in `call'
105
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/lock.rb:11:in `block in call'
106
+ <internal:prelude>:10:in `synchronize'
107
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call'
108
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/dispatcher.rb:114:in `block in call'
109
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/reloader.rb:34:in `run'
110
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/dispatcher.rb:108:in `call'
111
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rails-2.3.5/lib/rails/rack/static.rb:31:in `call'
112
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `block in call'
113
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each'
114
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call'
115
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rails-2.3.5/lib/rails/rack/log_tailer.rb:17:in `call'
116
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call'
117
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/handler/webrick.rb:50:in `service'
118
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
119
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
120
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
121
+ /!\ FAILSAFE /!\ 2010-05-05 08:52:07 -0700
122
+ Status: 500 Internal Server Error
123
+ no such file to load -- sqlite3
124
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require'
125
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `block in require'
126
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:521:in `new_constants_in'
127
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:156:in `require'
128
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/requires.rb:7:in `block in require_library_or_gem'
129
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/reporting.rb:11:in `silence_warnings'
130
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activesupport-2.3.5/lib/active_support/core_ext/kernel/requires.rb:5:in `require_library_or_gem'
131
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/sqlite3_adapter.rb:10:in `sqlite3_connection'
132
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:223:in `new_connection'
133
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:245:in `checkout_new_connection'
134
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:188:in `block (2 levels) in checkout'
135
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `loop'
136
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `block in checkout'
137
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/monitor.rb:201:in `mon_synchronize'
138
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:183:in `checkout'
139
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:98:in `connection'
140
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:326:in `retrieve_connection'
141
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_specification.rb:123:in `retrieve_connection'
142
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_specification.rb:115:in `connection'
143
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/query_cache.rb:9:in `cache'
144
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/query_cache.rb:28:in `call'
145
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/activerecord-2.3.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call'
146
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/string_coercion.rb:25:in `call'
147
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/head.rb:9:in `call'
148
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/methodoverride.rb:24:in `call'
149
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/params_parser.rb:15:in `call'
150
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/session/cookie_store.rb:93:in `call'
151
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/failsafe.rb:26:in `call'
152
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:450:in `forward'
153
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:531:in `route_missing'
154
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:516:in `route!'
155
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:510:in `route!'
156
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:601:in `dispatch!'
157
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:411:in `block in call!'
158
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `instance_eval'
159
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `block in invoke'
160
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `catch'
161
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:566:in `invoke'
162
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:411:in `call!'
163
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/sinatra-1.0/lib/sinatra/base.rb:399:in `call'
164
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/showexceptions.rb:24:in `call'
165
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/lock.rb:11:in `block in call'
166
+ <internal:prelude>:10:in `synchronize'
167
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call'
168
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/dispatcher.rb:114:in `block in call'
169
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/reloader.rb:34:in `run'
170
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/actionpack-2.3.5/lib/action_controller/dispatcher.rb:108:in `call'
171
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rails-2.3.5/lib/rails/rack/static.rb:31:in `call'
172
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `block in call'
173
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each'
174
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call'
175
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rails-2.3.5/lib/rails/rack/log_tailer.rb:17:in `call'
176
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call'
177
+ /usr/local/rvm/gems/ruby-1.9.2-head@reflexive_rails2/gems/rack-1.0.1/lib/rack/handler/webrick.rb:50:in `service'
178
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
179
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
180
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
181
+ SQL (3.0ms)  SELECT name
182
+ FROM sqlite_master
183
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
184
+ 
185
+ SQL (0.3ms) select sqlite_version(*)
186
+ SQL (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
187
+ SQL (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
188
+ SQL (0.5ms)  SELECT name
189
+ FROM sqlite_master
190
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
191
+ 
192
+ SQL (0.4ms) SELECT version FROM schema_migrations
193
+ Migrating to CreatePosts (20100512073155)
194
+ SQL (2.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
195
+ SQL (0.4ms) INSERT INTO schema_migrations (version) VALUES ('20100512073155')
196
+ SQL (0.5ms)  SELECT name
197
+ FROM sqlite_master
198
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
199
+ 
200
+ SQL (0.3ms) SELECT version FROM schema_migrations
201
+ SQL (0.4ms)  SELECT name
202
+ FROM sqlite_master
203
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
204
+ 
205
+ SQL (0.1ms) PRAGMA index_list("posts")
206
+
207
+
208
+ Processing ApplicationController#index (for 192.168.74.1 at 2010-05-12 00:35:38) [GET]
209
+
210
+ ActionController::RoutingError (No route matches "/reflexive/constants/ActiveRecord::Base/class_methods/connected%3F" with {:method=>:get}):
211
+ sinatra (1.0) lib/sinatra/base.rb:450:in `forward'
212
+ sinatra (1.0) lib/sinatra/base.rb:531:in `route_missing'
213
+ sinatra (1.0) lib/sinatra/base.rb:516:in `route!'
214
+ sinatra (1.0) lib/sinatra/base.rb:510:in `route!'
215
+ sinatra (1.0) lib/sinatra/base.rb:601:in `dispatch!'
216
+ sinatra (1.0) lib/sinatra/base.rb:411:in `block in call!'
217
+ sinatra (1.0) lib/sinatra/base.rb:566:in `instance_eval'
218
+ sinatra (1.0) lib/sinatra/base.rb:566:in `block in invoke'
219
+ sinatra (1.0) lib/sinatra/base.rb:566:in `catch'
220
+ sinatra (1.0) lib/sinatra/base.rb:566:in `invoke'
221
+ sinatra (1.0) lib/sinatra/base.rb:411:in `call!'
222
+ sinatra (1.0) lib/sinatra/base.rb:399:in `call'
223
+ <internal:prelude>:10:in `synchronize'
224
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
225
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
226
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
227
+
228
+ Rendering rescues/layout (not_found)
229
+
230
+
231
+ Processing ApplicationController#index (for 192.168.74.1 at 2010-05-12 00:35:38) [GET]
232
+
233
+ ActionController::RoutingError (No route matches "/reflexive/constants/ActiveRecord::Base/class_methods/connected%3F" with {:method=>:get}):
234
+ reflexive (9.9.9) lib/reflexive/application.rb:155:in `block in <class:Application>'
235
+ sinatra (1.0) lib/sinatra/base.rb:641:in `instance_eval'
236
+ sinatra (1.0) lib/sinatra/base.rb:641:in `block in error_block!'
237
+ sinatra (1.0) lib/sinatra/base.rb:636:in `each'
238
+ sinatra (1.0) lib/sinatra/base.rb:636:in `error_block!'
239
+ sinatra (1.0) lib/sinatra/base.rb:412:in `block in call!'
240
+ sinatra (1.0) lib/sinatra/base.rb:566:in `instance_eval'
241
+ sinatra (1.0) lib/sinatra/base.rb:566:in `block in invoke'
242
+ sinatra (1.0) lib/sinatra/base.rb:566:in `catch'
243
+ sinatra (1.0) lib/sinatra/base.rb:566:in `invoke'
244
+ sinatra (1.0) lib/sinatra/base.rb:412:in `call!'
245
+ sinatra (1.0) lib/sinatra/base.rb:399:in `call'
246
+ <internal:prelude>:10:in `synchronize'
247
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
248
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
249
+ /usr/local/rvm/rubies/ruby-1.9.2-head/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
250
+
251
+ Rendering rescues/layout (not_found)
File without changes
File without changes
File without changes
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>The page you were looking for doesn't exist (404)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/404.html -->
25
+ <div class="dialog">
26
+ <h1>The page you were looking for doesn't exist.</h1>
27
+ <p>You may have mistyped the address or the page may have moved.</p>
28
+ </div>
29
+ </body>
30
+ </html>
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>The change you wanted was rejected (422)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/422.html -->
25
+ <div class="dialog">
26
+ <h1>The change you wanted was rejected.</h1>
27
+ <p>Maybe you tried to change something you didn't have access to.</p>
28
+ </div>
29
+ </body>
30
+ </html>
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>We're sorry, but something went wrong (500)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/500.html -->
25
+ <div class="dialog">
26
+ <h1>We're sorry, but something went wrong.</h1>
27
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
28
+ </div>
29
+ </body>
30
+ </html>
File without changes