dbd_onto_engine 0.0.1

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 (57) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +4 -0
  4. data/Rakefile +18 -0
  5. data/app/assets/stylesheets/dbd_onto_engine/application.css +13 -0
  6. data/app/controllers/dbd_onto_engine/application_controller.rb +4 -0
  7. data/app/controllers/dbd_onto_engine/ontologies_controller.rb +8 -0
  8. data/app/helpers/dbd_onto_engine/application_helper.rb +4 -0
  9. data/app/views/dbd_onto_engine/ontologies/index.html.erb +2 -0
  10. data/app/views/layouts/dbd_onto_engine/application.html.erb +12 -0
  11. data/config/routes.rb +3 -0
  12. data/lib/dbd_onto_engine.rb +4 -0
  13. data/lib/dbd_onto_engine/engine.rb +11 -0
  14. data/lib/dbd_onto_engine/version.rb +3 -0
  15. data/lib/tasks/dbd_onto_engine_tasks.rake +4 -0
  16. data/spec/controllers/dbd_onto_engine/ontologies_controller_spec.rb +18 -0
  17. data/spec/dummy/README.rdoc +28 -0
  18. data/spec/dummy/Rakefile +6 -0
  19. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  20. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  21. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  22. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  23. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/spec/dummy/bin/bundle +3 -0
  25. data/spec/dummy/bin/rails +4 -0
  26. data/spec/dummy/bin/rake +4 -0
  27. data/spec/dummy/config.ru +4 -0
  28. data/spec/dummy/config/application.rb +27 -0
  29. data/spec/dummy/config/boot.rb +5 -0
  30. data/spec/dummy/config/environment.rb +5 -0
  31. data/spec/dummy/config/environments/development.rb +27 -0
  32. data/spec/dummy/config/environments/production.rb +80 -0
  33. data/spec/dummy/config/environments/test.rb +36 -0
  34. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/spec/dummy/config/initializers/inflections.rb +16 -0
  37. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  38. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  39. data/spec/dummy/config/initializers/session_store.rb +3 -0
  40. data/spec/dummy/config/initializers/wrap_parameters.rb +10 -0
  41. data/spec/dummy/config/locales/en.yml +23 -0
  42. data/spec/dummy/config/routes.rb +3 -0
  43. data/spec/dummy/log/development.log +103 -0
  44. data/spec/dummy/log/test.log +114 -0
  45. data/spec/dummy/public/404.html +58 -0
  46. data/spec/dummy/public/422.html +58 -0
  47. data/spec/dummy/public/500.html +57 -0
  48. data/spec/dummy/public/favicon.ico +0 -0
  49. data/spec/dummy/tmp/cache/assets/development/sprockets/4cba04e119d9e8c0ccd88291fa55b3b7 +0 -0
  50. data/spec/dummy/tmp/cache/assets/development/sprockets/a66f82fffdfe6e75dc678e9581e75033 +0 -0
  51. data/spec/dummy/tmp/cache/assets/development/sprockets/edca038f123a74c625d6b65c35e886d2 +0 -0
  52. data/spec/dummy/tmp/pids/server.pid +1 -0
  53. data/spec/features/dbd_onto_engine/ontologies_spec.rb +12 -0
  54. data/spec/routing/README.txt +3 -0
  55. data/spec/spec_helper.rb +16 -0
  56. data/spec/views/dbd_onto_engine/ontologies/index.html.erb_spec.rb +8 -0
  57. metadata +209 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = 'a75c5887b4d4b80a9c125f709942d0748ef4ed6ca01836fc8189caca8827df03f1a9775063c970931aa77f3120e1d48a93e26de906fbb2f4afe23ae387802a93'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount DbdOntoEngine::Engine => "/ontologies"
3
+ end
@@ -0,0 +1,103 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-06-07 08:03:32 +0200
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /Users/peter_v/.rvm/gems/ruby-2.0.0-p195@dbd_onto_engine/gems/railties-4.0.0.rc1/lib/rails/templates/rails/welcome/index.html.erb (21.1ms)
6
+ Completed 200 OK in 81ms (Views: 80.9ms)
7
+
8
+
9
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 08:03:42 +0200
10
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
11
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.3ms)
12
+ Completed 200 OK in 219ms (Views: 218.6ms)
13
+
14
+
15
+ Started GET "/assets/dbd_onto_engine/application.css?body=1" for 127.0.0.1 at 2013-06-07 08:03:42 +0200
16
+
17
+
18
+ Started GET "/javascripts/dbd_onto_engine/application.js" for 127.0.0.1 at 2013-06-07 08:03:42 +0200
19
+
20
+ ActionController::RoutingError (No route matches [GET] "/javascripts/dbd_onto_engine/application.js"):
21
+ actionpack (4.0.0.rc1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
22
+ actionpack (4.0.0.rc1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
23
+ railties (4.0.0.rc1) lib/rails/rack/logger.rb:38:in `call_app'
24
+ railties (4.0.0.rc1) lib/rails/rack/logger.rb:21:in `block in call'
25
+ activesupport (4.0.0.rc1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
26
+ activesupport (4.0.0.rc1) lib/active_support/tagged_logging.rb:25:in `tagged'
27
+ activesupport (4.0.0.rc1) lib/active_support/tagged_logging.rb:67:in `tagged'
28
+ railties (4.0.0.rc1) lib/rails/rack/logger.rb:21:in `call'
29
+ actionpack (4.0.0.rc1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
30
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
31
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
32
+ activesupport (4.0.0.rc1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
33
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
34
+ actionpack (4.0.0.rc1) lib/action_dispatch/middleware/static.rb:64:in `call'
35
+ railties (4.0.0.rc1) lib/rails/engine.rb:511:in `call'
36
+ railties (4.0.0.rc1) lib/rails/application.rb:96:in `call'
37
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
38
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
39
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
40
+ /Users/peter_v/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
41
+ /Users/peter_v/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
42
+ /Users/peter_v/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
43
+
44
+
45
+ Rendered /Users/peter_v/.rvm/gems/ruby-2.0.0-p195@dbd_onto_engine/gems/actionpack-4.0.0.rc1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
46
+ Rendered /Users/peter_v/.rvm/gems/ruby-2.0.0-p195@dbd_onto_engine/gems/actionpack-4.0.0.rc1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
47
+ Rendered /Users/peter_v/.rvm/gems/ruby-2.0.0-p195@dbd_onto_engine/gems/actionpack-4.0.0.rc1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
48
+ Rendered /Users/peter_v/.rvm/gems/ruby-2.0.0-p195@dbd_onto_engine/gems/actionpack-4.0.0.rc1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (49.1ms)
49
+ Rendered /Users/peter_v/.rvm/gems/ruby-2.0.0-p195@dbd_onto_engine/gems/actionpack-4.0.0.rc1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (93.5ms)
50
+
51
+
52
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 08:04:43 +0200
53
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
54
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.0ms)
55
+ Completed 200 OK in 3ms (Views: 3.3ms)
56
+
57
+
58
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 08:04:49 +0200
59
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
60
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.0ms)
61
+ Completed 200 OK in 2ms (Views: 2.4ms)
62
+
63
+
64
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 08:16:17 +0200
65
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
66
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.1ms)
67
+ Completed 200 OK in 3ms (Views: 2.9ms)
68
+
69
+
70
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 08:20:54 +0200
71
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
72
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.1ms)
73
+ Completed 200 OK in 3ms (Views: 3.3ms)
74
+
75
+
76
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 08:20:58 +0200
77
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
78
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.0ms)
79
+ Completed 200 OK in 2ms (Views: 2.3ms)
80
+
81
+
82
+ Started GET "/" for 127.0.0.1 at 2013-06-07 08:56:26 +0200
83
+ Processing by Rails::WelcomeController#index as HTML
84
+ Rendered /Users/peter_v/.rvm/gems/ruby-2.0.0-p195@dbd_onto_engine/gems/railties-4.0.0.rc1/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
85
+ Completed 200 OK in 29ms (Views: 29.4ms)
86
+
87
+
88
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 08:56:33 +0200
89
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
90
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.1ms)
91
+ Completed 200 OK in 3ms (Views: 2.9ms)
92
+
93
+
94
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 09:09:04 +0200
95
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
96
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.0ms)
97
+ Completed 200 OK in 3ms (Views: 2.5ms)
98
+
99
+
100
+ Started GET "/ontologies" for 127.0.0.1 at 2013-06-07 09:35:25 +0200
101
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
102
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.0ms)
103
+ Completed 200 OK in 3ms (Views: 2.8ms)
@@ -0,0 +1,114 @@
1
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (0.9ms)
2
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (1.0ms)
3
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (0.9ms)
4
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (1.0ms)
5
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:04:13 +0200
6
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
7
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
8
+ Completed 200 OK in 7ms (Views: 6.5ms)
9
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:04:33 +0200
10
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
11
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (1.0ms)
12
+ Completed 200 OK in 7ms (Views: 6.7ms)
13
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:04:50 +0200
14
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
15
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
16
+ Completed 200 OK in 7ms (Views: 6.4ms)
17
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:04:55 +0200
18
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
19
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
20
+ Completed 200 OK in 7ms (Views: 6.5ms)
21
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:05:07 +0200
22
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
23
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
24
+ Completed 200 OK in 6ms (Views: 6.2ms)
25
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:05:11 +0200
26
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
27
+ Completed 200 OK in 29ms (Views: 29.3ms)
28
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (0.9ms)
29
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:08:02 +0200
30
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
31
+ Completed 200 OK in 3ms (Views: 2.8ms)
32
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (0.9ms)
33
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:08:56 +0200
34
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
35
+ Completed 200 OK in 28ms (Views: 27.7ms)
36
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:09:55 +0200
37
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
38
+ Completed 200 OK in 3ms (Views: 2.8ms)
39
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (1.2ms)
40
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:10:55 +0200
41
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
42
+ Completed 200 OK in 3ms (Views: 2.9ms)
43
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:11:39 +0200
44
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
45
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
46
+ Completed 200 OK in 7ms (Views: 6.3ms)
47
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:11:57 +0200
48
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
49
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
50
+ Completed 200 OK in 7ms (Views: 6.4ms)
51
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:12:29 +0200
52
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
53
+ Completed 200 OK in 28ms (Views: 28.2ms)
54
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:12:38 +0200
55
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
56
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
57
+ Completed 200 OK in 7ms (Views: 6.4ms)
58
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:13:27 +0200
59
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
60
+ Completed 200 OK in 28ms (Views: 28.0ms)
61
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (0.9ms)
62
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:13:43 +0200
63
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
64
+ Completed 200 OK in 3ms (Views: 2.7ms)
65
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:23:49 +0200
66
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
67
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
68
+ Completed 200 OK in 7ms (Views: 6.5ms)
69
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:23:51 +0200
70
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
71
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
72
+ Completed 200 OK in 7ms (Views: 6.4ms)
73
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:24:03 +0200
74
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
75
+ Completed 200 OK in 3ms (Views: 2.9ms)
76
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:24:08 +0200
77
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
78
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
79
+ Completed 200 OK in 7ms (Views: 6.5ms)
80
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:24:22 +0200
81
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
82
+ Completed 200 OK in 29ms (Views: 28.7ms)
83
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:24:32 +0200
84
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
85
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
86
+ Completed 200 OK in 7ms (Views: 6.4ms)
87
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:24:54 +0200
88
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
89
+ Completed 200 OK in 3ms (Views: 2.9ms)
90
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:33:00 +0200
91
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
92
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
93
+ Completed 200 OK in 28ms (Views: 28.1ms)
94
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (1.0ms)
95
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:35:32 +0200
96
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
97
+ Completed 200 OK in 3ms (Views: 2.9ms)
98
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:37:02 +0200
99
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
100
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
101
+ Completed 200 OK in 7ms (Views: 6.7ms)
102
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (0.4ms)
103
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:37:59 +0200
104
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
105
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
106
+ Completed 200 OK in 7ms (Views: 6.7ms)
107
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:39:42 +0200
108
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
109
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb within layouts/dbd_onto_engine/application (0.9ms)
110
+ Completed 200 OK in 7ms (Views: 6.4ms)
111
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.erb (0.4ms)
112
+ Started GET "/ontologies/" for 127.0.0.1 at 2013-06-07 09:46:25 +0200
113
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
114
+ Completed 200 OK in 7ms (Views: 6.4ms)
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>