dbd_onto_engine 0.0.6 → 0.0.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d9bb3d247dccc8534f904224d0623c0959f0f7c1
4
- data.tar.gz: 447adccc400c537d94ab557ba2aca2f15885d4a5
3
+ metadata.gz: d78513edb41eb65582e69932a9c9a6b81d72a7f9
4
+ data.tar.gz: d2c575d0d913dd188c8e0bdb24323514a66f3a96
5
5
  SHA512:
6
- metadata.gz: eb1bf8972ee473482017e8fc8b9cd9170219e4a3926e8fe4d2d87034be3be4b281f6f0d372dbe9cc4920ea8878dd0dd3b8ad40699b3eb0a3bdef415b18fca5a5
7
- data.tar.gz: 818e20ac7b8564d6effa3c9d74d6371be0f389e31fda12bc19a85494b289b268ee579ebeb0791bc710cdb061f95a87054049c56e1ce4a22e1ba7eaccd816c480
6
+ metadata.gz: 5d777d7dbea0a5780e6c800e50050922b271db046ece26268544461fe0b12c8e10933b51e4ba6463d12a8693f0e80b2ae480820bdf2d11e557fa8bd166f9164e
7
+ data.tar.gz: 4b6bcd72c6614e1ab1fdbd75f04bc5ab02d1d0a6af3d801aac138b22b7ae5dc547a4eaf31a7e212552a03fb3504b8c84773eb1fc573a33b0d1ccf915450dbf0a
@@ -9,31 +9,26 @@ module DbdOntoEngine
9
9
 
10
10
  def show
11
11
  @ontology = params[:id]
12
- @ontology_predicates = resources(ontology)
12
+ @ontology_predicates = ontology(@ontology).resources
13
13
  end
14
14
 
15
15
  private
16
16
 
17
17
  def supported_ontologies
18
- %w{context meta schema}
18
+ %w{context meta schema dbd}
19
+ end
20
+
21
+ def ontology(ontology_name)
22
+ ontology_class(ontology_name).new
19
23
  end
20
24
 
21
25
  def ontology_class(ontology_name)
22
- if supported_ontologies.include? @ontology
23
- "DbdOnto::#{@ontology.capitalize}".constantize
26
+ if supported_ontologies.include?(ontology_name)
27
+ "DbdOnto::#{ontology_name.capitalize}".constantize
24
28
  else
25
29
  raise "Invalid ontology"
26
30
  end
27
31
  end
28
32
 
29
- def ontology
30
- ontology_class(@ontology).new
31
- end
32
-
33
- # TODO move this to the Dbd::Graph#resources
34
- def resources(graph)
35
- graph.subjects.map{ |s| graph.by_subject(s) }.select{ |cs| cs.first.class == Dbd::Fact }
36
- end
37
-
38
33
  end
39
34
  end
@@ -1,6 +1,6 @@
1
1
  %tr
2
2
  - used = ontology_predicate.detect{ |fact| fact.predicate == 'meta:predicate_used'}
3
- - uri = ontology_predicate.detect{ |fact| fact.predicate == 'rdf:uri'}.object
3
+ - uri = ontology_predicate.detect{ |fact| fact.predicate == 'dbd:rdf_uri'}.object
4
4
  - defines_predicate = ontology_predicate.detect{ |fact| fact.predicate == 'meta:defines_predicate'}.object
5
5
  %td= used ? 'V' : '-'
6
6
  %td= link_to(defines_predicate, uri)
@@ -1,3 +1,3 @@
1
1
  module DbdOntoEngine
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -9362,3 +9362,1763 @@ Processing by DbdOntoEngine::OntologiesController#show as HTML
9362
9362
  Parameters: {"id"=>"meta"}
9363
9363
  Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
9364
9364
  Completed 200 OK in 3ms (Views: 1.0ms)
9365
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:50:04 +0200
9366
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9367
+ Parameters: {"id"=>"context"}
9368
+ Completed 500 Internal Server Error in 6ms
9369
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:50:04 +0200
9370
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9371
+ Parameters: {"id"=>"context"}
9372
+ Completed 500 Internal Server Error in 6ms
9373
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:04 +0200
9374
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9375
+ Parameters: {"id"=>"schema"}
9376
+ Completed 500 Internal Server Error in 214ms
9377
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:04 +0200
9378
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9379
+ Parameters: {"id"=>"schema"}
9380
+ Completed 500 Internal Server Error in 244ms
9381
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:05 +0200
9382
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9383
+ Parameters: {"id"=>"schema"}
9384
+ Completed 500 Internal Server Error in 217ms
9385
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:05 +0200
9386
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9387
+ Parameters: {"id"=>"schema"}
9388
+ Completed 500 Internal Server Error in 246ms
9389
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:05 +0200
9390
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9391
+ Parameters: {"id"=>"schema"}
9392
+ Completed 500 Internal Server Error in 218ms
9393
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:05 +0200
9394
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9395
+ Parameters: {"id"=>"schema"}
9396
+ Completed 500 Internal Server Error in 249ms
9397
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:06 +0200
9398
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9399
+ Parameters: {"id"=>"schema"}
9400
+ Completed 500 Internal Server Error in 221ms
9401
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:06 +0200
9402
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9403
+ Parameters: {"id"=>"schema"}
9404
+ Completed 500 Internal Server Error in 252ms
9405
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:06 +0200
9406
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9407
+ Parameters: {"id"=>"schema"}
9408
+ Completed 500 Internal Server Error in 252ms
9409
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:06 +0200
9410
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9411
+ Parameters: {"id"=>"schema"}
9412
+ Completed 500 Internal Server Error in 224ms
9413
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9414
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9415
+ Parameters: {"id"=>"schema"}
9416
+ Completed 500 Internal Server Error in 253ms
9417
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9418
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9419
+ Parameters: {"id"=>"schema"}
9420
+ Completed 500 Internal Server Error in 256ms
9421
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9422
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9423
+ Parameters: {"id"=>"foobar"}
9424
+ Completed 500 Internal Server Error in 0ms
9425
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9426
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9427
+ Parameters: {"id"=>"meta"}
9428
+ Completed 500 Internal Server Error in 3ms
9429
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9430
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9431
+ Parameters: {"id"=>"meta"}
9432
+ Completed 500 Internal Server Error in 3ms
9433
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9434
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9435
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.9ms)
9436
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (6.5ms)
9437
+ Completed 200 OK in 97ms (Views: 96.4ms)
9438
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9439
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9440
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9441
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
9442
+ Completed 200 OK in 1ms (Views: 1.2ms)
9443
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9444
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9445
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9446
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
9447
+ Completed 200 OK in 1ms (Views: 1.1ms)
9448
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:50:07 +0200
9449
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9450
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9451
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
9452
+ Completed 200 OK in 1ms (Views: 1.1ms)
9453
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.0ms)
9454
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9455
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9456
+ Parameters: {"id"=>"context"}
9457
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (40.9ms)
9458
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (46.1ms)
9459
+ Completed 500 Internal Server Error in 57ms
9460
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9461
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9462
+ Parameters: {"id"=>"context"}
9463
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9464
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.6ms)
9465
+ Completed 500 Internal Server Error in 7ms
9466
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9467
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9468
+ Parameters: {"id"=>"schema"}
9469
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9470
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9471
+ Completed 500 Internal Server Error in 46ms
9472
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9473
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9474
+ Parameters: {"id"=>"schema"}
9475
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9476
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9477
+ Completed 500 Internal Server Error in 75ms
9478
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9479
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9480
+ Parameters: {"id"=>"schema"}
9481
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9482
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9483
+ Completed 500 Internal Server Error in 47ms
9484
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9485
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9486
+ Parameters: {"id"=>"schema"}
9487
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9488
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9489
+ Completed 500 Internal Server Error in 78ms
9490
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9491
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9492
+ Parameters: {"id"=>"schema"}
9493
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9494
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9495
+ Completed 500 Internal Server Error in 48ms
9496
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9497
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9498
+ Parameters: {"id"=>"schema"}
9499
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9500
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9501
+ Completed 500 Internal Server Error in 76ms
9502
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9503
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9504
+ Parameters: {"id"=>"schema"}
9505
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9506
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9507
+ Completed 500 Internal Server Error in 47ms
9508
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9509
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9510
+ Parameters: {"id"=>"schema"}
9511
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9512
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9513
+ Completed 500 Internal Server Error in 48ms
9514
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:52:48 +0200
9515
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9516
+ Parameters: {"id"=>"schema"}
9517
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9518
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9519
+ Completed 500 Internal Server Error in 75ms
9520
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9521
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9522
+ Parameters: {"id"=>"schema"}
9523
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (3.1ms)
9524
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (7.8ms)
9525
+ Completed 500 Internal Server Error in 58ms
9526
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9527
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9528
+ Parameters: {"id"=>"schema"}
9529
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9530
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9531
+ Completed 500 Internal Server Error in 74ms
9532
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9533
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9534
+ Parameters: {"id"=>"schema"}
9535
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9536
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.4ms)
9537
+ Completed 500 Internal Server Error in 47ms
9538
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9539
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9540
+ Parameters: {"id"=>"schema"}
9541
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9542
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.4ms)
9543
+ Completed 500 Internal Server Error in 48ms
9544
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9545
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9546
+ Parameters: {"id"=>"schema"}
9547
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9548
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9549
+ Completed 500 Internal Server Error in 76ms
9550
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9551
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9552
+ Parameters: {"id"=>"schema"}
9553
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9554
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9555
+ Completed 500 Internal Server Error in 48ms
9556
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9557
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9558
+ Parameters: {"id"=>"schema"}
9559
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9560
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9561
+ Completed 500 Internal Server Error in 75ms
9562
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9563
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9564
+ Parameters: {"id"=>"schema"}
9565
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9566
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.6ms)
9567
+ Completed 500 Internal Server Error in 47ms
9568
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9569
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9570
+ Parameters: {"id"=>"schema"}
9571
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9572
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.4ms)
9573
+ Completed 500 Internal Server Error in 76ms
9574
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9575
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9576
+ Parameters: {"id"=>"context"}
9577
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9578
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.4ms)
9579
+ Completed 500 Internal Server Error in 7ms
9580
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:57:55 +0200
9581
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9582
+ Parameters: {"id"=>"context"}
9583
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9584
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.4ms)
9585
+ Completed 500 Internal Server Error in 7ms
9586
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.0ms)
9587
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml (13.7ms)
9588
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9589
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9590
+ Parameters: {"id"=>"schema"}
9591
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (3.7ms)
9592
+ Completed 500 Internal Server Error in 113ms
9593
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9594
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9595
+ Parameters: {"id"=>"schema"}
9596
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9597
+ Completed 500 Internal Server Error in 106ms
9598
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9599
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9600
+ Parameters: {"id"=>"schema"}
9601
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9602
+ Completed 500 Internal Server Error in 109ms
9603
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9604
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9605
+ Parameters: {"id"=>"schema"}
9606
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9607
+ Completed 500 Internal Server Error in 109ms
9608
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9609
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9610
+ Parameters: {"id"=>"schema"}
9611
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9612
+ Completed 500 Internal Server Error in 106ms
9613
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9614
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9615
+ Parameters: {"id"=>"schema"}
9616
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.3ms)
9617
+ Completed 500 Internal Server Error in 106ms
9618
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9619
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9620
+ Parameters: {"id"=>"schema"}
9621
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9622
+ Completed 500 Internal Server Error in 111ms
9623
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9624
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9625
+ Parameters: {"id"=>"schema"}
9626
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9627
+ Completed 500 Internal Server Error in 113ms
9628
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:01 +0200
9629
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9630
+ Parameters: {"id"=>"schema"}
9631
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9632
+ Completed 500 Internal Server Error in 106ms
9633
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9634
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9635
+ Parameters: {"id"=>"schema"}
9636
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9637
+ Completed 500 Internal Server Error in 105ms
9638
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9639
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9640
+ Parameters: {"id"=>"schema"}
9641
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9642
+ Completed 500 Internal Server Error in 105ms
9643
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9644
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9645
+ Parameters: {"id"=>"schema"}
9646
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9647
+ Completed 500 Internal Server Error in 108ms
9648
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9649
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9650
+ Parameters: {"id"=>"context"}
9651
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9652
+ Completed 500 Internal Server Error in 7ms
9653
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9654
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9655
+ Parameters: {"id"=>"context"}
9656
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.3ms)
9657
+ Completed 500 Internal Server Error in 7ms
9658
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9659
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9660
+ Parameters: {"id"=>"foobar"}
9661
+ Completed 500 Internal Server Error in 0ms
9662
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9663
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9664
+ Parameters: {"id"=>"meta"}
9665
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9666
+ Completed 500 Internal Server Error in 5ms
9667
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9668
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9669
+ Parameters: {"id"=>"meta"}
9670
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.3ms)
9671
+ Completed 500 Internal Server Error in 5ms
9672
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9673
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9674
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.9ms)
9675
+ Completed 200 OK in 10ms (Views: 9.9ms)
9676
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9677
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9678
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9679
+ Completed 200 OK in 1ms (Views: 1.1ms)
9680
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9681
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9682
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9683
+ Completed 200 OK in 1ms (Views: 1.1ms)
9684
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 22:58:02 +0200
9685
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9686
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9687
+ Completed 200 OK in 1ms (Views: 1.1ms)
9688
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:55 +0200
9689
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9690
+ Parameters: {"id"=>"schema"}
9691
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (3.2ms)
9692
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (8.0ms)
9693
+ Completed 500 Internal Server Error in 58ms
9694
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:55 +0200
9695
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9696
+ Parameters: {"id"=>"schema"}
9697
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9698
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.6ms)
9699
+ Completed 500 Internal Server Error in 75ms
9700
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:55 +0200
9701
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9702
+ Parameters: {"id"=>"schema"}
9703
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9704
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.6ms)
9705
+ Completed 500 Internal Server Error in 47ms
9706
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:55 +0200
9707
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9708
+ Parameters: {"id"=>"schema"}
9709
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9710
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9711
+ Completed 500 Internal Server Error in 48ms
9712
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:55 +0200
9713
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9714
+ Parameters: {"id"=>"schema"}
9715
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9716
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9717
+ Completed 500 Internal Server Error in 76ms
9718
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:56 +0200
9719
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9720
+ Parameters: {"id"=>"schema"}
9721
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9722
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9723
+ Completed 500 Internal Server Error in 47ms
9724
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:56 +0200
9725
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9726
+ Parameters: {"id"=>"schema"}
9727
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9728
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.4ms)
9729
+ Completed 500 Internal Server Error in 75ms
9730
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:56 +0200
9731
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9732
+ Parameters: {"id"=>"schema"}
9733
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9734
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.6ms)
9735
+ Completed 500 Internal Server Error in 48ms
9736
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:56 +0200
9737
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9738
+ Parameters: {"id"=>"schema"}
9739
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.2ms)
9740
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9741
+ Completed 500 Internal Server Error in 76ms
9742
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:56 +0200
9743
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9744
+ Parameters: {"id"=>"schema"}
9745
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9746
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9747
+ Completed 500 Internal Server Error in 47ms
9748
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 22:58:56 +0200
9749
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9750
+ Parameters: {"id"=>"schema"}
9751
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.1ms)
9752
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.5ms)
9753
+ Completed 500 Internal Server Error in 76ms
9754
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:59:00 +0200
9755
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9756
+ Parameters: {"id"=>"context"}
9757
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (3.3ms)
9758
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (8.2ms)
9759
+ Completed 500 Internal Server Error in 19ms
9760
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 22:59:40 +0200
9761
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9762
+ Parameters: {"id"=>"context"}
9763
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (3.5ms)
9764
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (8.9ms)
9765
+ Completed 500 Internal Server Error in 20ms
9766
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:01:07 +0200
9767
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9768
+ Parameters: {"id"=>"context"}
9769
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.5ms)
9770
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (6.3ms)
9771
+ Completed 200 OK in 23ms (Views: 18.0ms)
9772
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:01:22 +0200
9773
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9774
+ Parameters: {"id"=>"context"}
9775
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.6ms)
9776
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (6.4ms)
9777
+ Completed 200 OK in 23ms (Views: 17.9ms)
9778
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9779
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9780
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.8ms)
9781
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (4.7ms)
9782
+ Completed 200 OK in 16ms (Views: 15.7ms)
9783
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9784
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9785
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9786
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
9787
+ Completed 200 OK in 1ms (Views: 1.3ms)
9788
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9789
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9790
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9791
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
9792
+ Completed 200 OK in 1ms (Views: 1.1ms)
9793
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9794
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9795
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9796
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
9797
+ Completed 200 OK in 1ms (Views: 1.1ms)
9798
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9799
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9800
+ Parameters: {"id"=>"context"}
9801
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.6ms)
9802
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (4.0ms)
9803
+ Completed 200 OK in 10ms (Views: 5.4ms)
9804
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9805
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9806
+ Parameters: {"id"=>"context"}
9807
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
9808
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.7ms)
9809
+ Completed 200 OK in 6ms (Views: 1.4ms)
9810
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9811
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9812
+ Parameters: {"id"=>"schema"}
9813
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (37.0ms)
9814
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (37.7ms)
9815
+ Completed 200 OK in 140ms (Views: 38.7ms)
9816
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:43 +0200
9817
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9818
+ Parameters: {"id"=>"schema"}
9819
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.3ms)
9820
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (62.8ms)
9821
+ Completed 200 OK in 174ms (Views: 63.7ms)
9822
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:44 +0200
9823
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9824
+ Parameters: {"id"=>"schema"}
9825
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.8ms)
9826
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.3ms)
9827
+ Completed 200 OK in 141ms (Views: 36.2ms)
9828
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:46 +0200
9829
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9830
+ Parameters: {"id"=>"schema"}
9831
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.8ms)
9832
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (37.3ms)
9833
+ Completed 200 OK in 141ms (Views: 38.3ms)
9834
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:46 +0200
9835
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9836
+ Parameters: {"id"=>"schema"}
9837
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.9ms)
9838
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (63.4ms)
9839
+ Completed 200 OK in 175ms (Views: 64.4ms)
9840
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:46 +0200
9841
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9842
+ Parameters: {"id"=>"schema"}
9843
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.4ms)
9844
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (62.9ms)
9845
+ Completed 200 OK in 174ms (Views: 63.8ms)
9846
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:46 +0200
9847
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9848
+ Parameters: {"id"=>"schema"}
9849
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.4ms)
9850
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (62.9ms)
9851
+ Completed 200 OK in 175ms (Views: 63.9ms)
9852
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:47 +0200
9853
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9854
+ Parameters: {"id"=>"schema"}
9855
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.2ms)
9856
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.7ms)
9857
+ Completed 200 OK in 141ms (Views: 36.6ms)
9858
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:48 +0200
9859
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9860
+ Parameters: {"id"=>"schema"}
9861
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.2ms)
9862
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (63.8ms)
9863
+ Completed 200 OK in 175ms (Views: 64.7ms)
9864
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:49 +0200
9865
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9866
+ Parameters: {"id"=>"schema"}
9867
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.2ms)
9868
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.7ms)
9869
+ Completed 200 OK in 142ms (Views: 36.7ms)
9870
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:49 +0200
9871
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9872
+ Parameters: {"id"=>"schema"}
9873
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.4ms)
9874
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (62.9ms)
9875
+ Completed 200 OK in 175ms (Views: 63.9ms)
9876
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:01:50 +0200
9877
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9878
+ Parameters: {"id"=>"schema"}
9879
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.2ms)
9880
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.8ms)
9881
+ Completed 200 OK in 142ms (Views: 36.7ms)
9882
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:01:51 +0200
9883
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9884
+ Parameters: {"id"=>"meta"}
9885
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.3ms)
9886
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.6ms)
9887
+ Completed 200 OK in 34ms (Views: 1.5ms)
9888
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:01:51 +0200
9889
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9890
+ Parameters: {"id"=>"meta"}
9891
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
9892
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.6ms)
9893
+ Completed 200 OK in 4ms (Views: 1.3ms)
9894
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:01:51 +0200
9895
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9896
+ Parameters: {"id"=>"foobar"}
9897
+ Completed 500 Internal Server Error in 0ms
9898
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9899
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9900
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.9ms)
9901
+ Completed 200 OK in 16ms (Views: 15.9ms)
9902
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9903
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9904
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9905
+ Completed 200 OK in 1ms (Views: 1.0ms)
9906
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9907
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9908
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9909
+ Completed 200 OK in 1ms (Views: 1.1ms)
9910
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9911
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
9912
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
9913
+ Completed 200 OK in 1ms (Views: 1.1ms)
9914
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9915
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9916
+ Parameters: {"id"=>"schema"}
9917
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (67.4ms)
9918
+ Completed 200 OK in 176ms (Views: 72.2ms)
9919
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9920
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9921
+ Parameters: {"id"=>"schema"}
9922
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.9ms)
9923
+ Completed 200 OK in 175ms (Views: 64.3ms)
9924
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9925
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9926
+ Parameters: {"id"=>"schema"}
9927
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.1ms)
9928
+ Completed 200 OK in 147ms (Views: 35.5ms)
9929
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9930
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9931
+ Parameters: {"id"=>"schema"}
9932
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.6ms)
9933
+ Completed 200 OK in 175ms (Views: 64.0ms)
9934
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:00 +0200
9935
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9936
+ Parameters: {"id"=>"schema"}
9937
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.2ms)
9938
+ Completed 200 OK in 175ms (Views: 64.6ms)
9939
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:01 +0200
9940
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9941
+ Parameters: {"id"=>"schema"}
9942
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.9ms)
9943
+ Completed 200 OK in 176ms (Views: 64.3ms)
9944
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:02 +0200
9945
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9946
+ Parameters: {"id"=>"schema"}
9947
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (37.3ms)
9948
+ Completed 200 OK in 146ms (Views: 38.8ms)
9949
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:03 +0200
9950
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9951
+ Parameters: {"id"=>"schema"}
9952
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.7ms)
9953
+ Completed 200 OK in 143ms (Views: 36.2ms)
9954
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:05 +0200
9955
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9956
+ Parameters: {"id"=>"schema"}
9957
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.1ms)
9958
+ Completed 200 OK in 145ms (Views: 37.6ms)
9959
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:05 +0200
9960
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9961
+ Parameters: {"id"=>"schema"}
9962
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.9ms)
9963
+ Completed 200 OK in 178ms (Views: 64.4ms)
9964
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:06 +0200
9965
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9966
+ Parameters: {"id"=>"schema"}
9967
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.9ms)
9968
+ Completed 200 OK in 144ms (Views: 36.4ms)
9969
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:08 +0200
9970
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9971
+ Parameters: {"id"=>"schema"}
9972
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.7ms)
9973
+ Completed 200 OK in 178ms (Views: 64.2ms)
9974
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:02:08 +0200
9975
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9976
+ Parameters: {"id"=>"context"}
9977
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.5ms)
9978
+ Completed 200 OK in 7ms (Views: 1.6ms)
9979
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:02:08 +0200
9980
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9981
+ Parameters: {"id"=>"context"}
9982
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
9983
+ Completed 200 OK in 6ms (Views: 1.3ms)
9984
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:02:08 +0200
9985
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9986
+ Parameters: {"id"=>"meta"}
9987
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
9988
+ Completed 200 OK in 4ms (Views: 1.1ms)
9989
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:02:08 +0200
9990
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9991
+ Parameters: {"id"=>"meta"}
9992
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
9993
+ Completed 200 OK in 3ms (Views: 1.0ms)
9994
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:02:08 +0200
9995
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
9996
+ Parameters: {"id"=>"foobar"}
9997
+ Completed 500 Internal Server Error in 0ms
9998
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:19 +0200
9999
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10000
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (1.0ms)
10001
+ Completed 200 OK in 17ms (Views: 16.6ms)
10002
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:19 +0200
10003
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10004
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10005
+ Completed 200 OK in 1ms (Views: 1.0ms)
10006
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:19 +0200
10007
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10008
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10009
+ Completed 200 OK in 1ms (Views: 1.1ms)
10010
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:02:19 +0200
10011
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10012
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10013
+ Completed 200 OK in 1ms (Views: 1.1ms)
10014
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10015
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10016
+ Parameters: {"id"=>"context"}
10017
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.7ms)
10018
+ Completed 200 OK in 11ms (Views: 5.7ms)
10019
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10020
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10021
+ Parameters: {"id"=>"context"}
10022
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.5ms)
10023
+ Completed 200 OK in 6ms (Views: 1.4ms)
10024
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10025
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10026
+ Parameters: {"id"=>"meta"}
10027
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10028
+ Completed 200 OK in 4ms (Views: 1.1ms)
10029
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10030
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10031
+ Parameters: {"id"=>"meta"}
10032
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10033
+ Completed 200 OK in 3ms (Views: 1.0ms)
10034
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10035
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10036
+ Parameters: {"id"=>"foobar"}
10037
+ Completed 500 Internal Server Error in 0ms
10038
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10039
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10040
+ Parameters: {"id"=>"schema"}
10041
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.4ms)
10042
+ Completed 200 OK in 141ms (Views: 38.1ms)
10043
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10044
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10045
+ Parameters: {"id"=>"schema"}
10046
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.5ms)
10047
+ Completed 200 OK in 175ms (Views: 64.0ms)
10048
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10049
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10050
+ Parameters: {"id"=>"schema"}
10051
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.5ms)
10052
+ Completed 200 OK in 174ms (Views: 63.9ms)
10053
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:20 +0200
10054
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10055
+ Parameters: {"id"=>"schema"}
10056
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.5ms)
10057
+ Completed 200 OK in 175ms (Views: 63.9ms)
10058
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:22 +0200
10059
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10060
+ Parameters: {"id"=>"schema"}
10061
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (38.4ms)
10062
+ Completed 200 OK in 146ms (Views: 39.9ms)
10063
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:22 +0200
10064
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10065
+ Parameters: {"id"=>"schema"}
10066
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.4ms)
10067
+ Completed 200 OK in 174ms (Views: 63.8ms)
10068
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:22 +0200
10069
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10070
+ Parameters: {"id"=>"schema"}
10071
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.7ms)
10072
+ Completed 200 OK in 174ms (Views: 64.2ms)
10073
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:23 +0200
10074
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10075
+ Parameters: {"id"=>"schema"}
10076
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.4ms)
10077
+ Completed 200 OK in 140ms (Views: 35.9ms)
10078
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:25 +0200
10079
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10080
+ Parameters: {"id"=>"schema"}
10081
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.4ms)
10082
+ Completed 200 OK in 170ms (Views: 63.9ms)
10083
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:26 +0200
10084
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10085
+ Parameters: {"id"=>"schema"}
10086
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.7ms)
10087
+ Completed 200 OK in 168ms (Views: 65.1ms)
10088
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:26 +0200
10089
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10090
+ Parameters: {"id"=>"schema"}
10091
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.3ms)
10092
+ Completed 200 OK in 150ms (Views: 35.8ms)
10093
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:02:28 +0200
10094
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10095
+ Parameters: {"id"=>"schema"}
10096
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (65.7ms)
10097
+ Completed 200 OK in 174ms (Views: 67.1ms)
10098
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:06:04 +0200
10099
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10100
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.9ms)
10101
+ Completed 200 OK in 17ms (Views: 16.7ms)
10102
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10103
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10104
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10105
+ Completed 200 OK in 1ms (Views: 1.0ms)
10106
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10107
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10108
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10109
+ Completed 200 OK in 1ms (Views: 1.2ms)
10110
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10111
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10112
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10113
+ Completed 200 OK in 1ms (Views: 1.0ms)
10114
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10115
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10116
+ Parameters: {"id"=>"meta"}
10117
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.4ms)
10118
+ Completed 200 OK in 8ms (Views: 5.3ms)
10119
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10120
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10121
+ Parameters: {"id"=>"meta"}
10122
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10123
+ Completed 200 OK in 4ms (Views: 1.0ms)
10124
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10125
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10126
+ Parameters: {"id"=>"foobar"}
10127
+ Completed 500 Internal Server Error in 0ms
10128
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10129
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10130
+ Parameters: {"id"=>"context"}
10131
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
10132
+ Completed 200 OK in 6ms (Views: 1.3ms)
10133
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10134
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10135
+ Parameters: {"id"=>"context"}
10136
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
10137
+ Completed 200 OK in 6ms (Views: 1.3ms)
10138
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:05 +0200
10139
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10140
+ Parameters: {"id"=>"schema"}
10141
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.6ms)
10142
+ Completed 200 OK in 140ms (Views: 38.2ms)
10143
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:06 +0200
10144
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10145
+ Parameters: {"id"=>"schema"}
10146
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (61.7ms)
10147
+ Completed 200 OK in 168ms (Views: 63.4ms)
10148
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:06 +0200
10149
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10150
+ Parameters: {"id"=>"schema"}
10151
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (61.4ms)
10152
+ Completed 200 OK in 171ms (Views: 62.7ms)
10153
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:07 +0200
10154
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10155
+ Parameters: {"id"=>"schema"}
10156
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.3ms)
10157
+ Completed 200 OK in 139ms (Views: 35.8ms)
10158
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:08 +0200
10159
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10160
+ Parameters: {"id"=>"schema"}
10161
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (60.8ms)
10162
+ Completed 200 OK in 170ms (Views: 62.2ms)
10163
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:09 +0200
10164
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10165
+ Parameters: {"id"=>"schema"}
10166
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.2ms)
10167
+ Completed 200 OK in 140ms (Views: 36.6ms)
10168
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:09 +0200
10169
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10170
+ Parameters: {"id"=>"schema"}
10171
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.2ms)
10172
+ Completed 200 OK in 174ms (Views: 63.6ms)
10173
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:09 +0200
10174
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10175
+ Parameters: {"id"=>"schema"}
10176
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.2ms)
10177
+ Completed 200 OK in 174ms (Views: 63.7ms)
10178
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:10 +0200
10179
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10180
+ Parameters: {"id"=>"schema"}
10181
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.4ms)
10182
+ Completed 200 OK in 175ms (Views: 63.8ms)
10183
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:11 +0200
10184
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10185
+ Parameters: {"id"=>"schema"}
10186
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.7ms)
10187
+ Completed 200 OK in 141ms (Views: 36.2ms)
10188
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:11 +0200
10189
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10190
+ Parameters: {"id"=>"schema"}
10191
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.1ms)
10192
+ Completed 200 OK in 175ms (Views: 64.5ms)
10193
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:06:11 +0200
10194
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10195
+ Parameters: {"id"=>"schema"}
10196
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.5ms)
10197
+ Completed 200 OK in 176ms (Views: 65.9ms)
10198
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:17 +0200
10199
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10200
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.8ms)
10201
+ Completed 200 OK in 16ms (Views: 15.7ms)
10202
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:17 +0200
10203
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10204
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10205
+ Completed 200 OK in 1ms (Views: 1.0ms)
10206
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:17 +0200
10207
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10208
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10209
+ Completed 200 OK in 1ms (Views: 1.0ms)
10210
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:17 +0200
10211
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10212
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10213
+ Completed 200 OK in 1ms (Views: 1.1ms)
10214
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:07:17 +0200
10215
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10216
+ Parameters: {"id"=>"foobar"}
10217
+ Completed 500 Internal Server Error in 0ms
10218
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:07:17 +0200
10219
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10220
+ Parameters: {"id"=>"meta"}
10221
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.4ms)
10222
+ Completed 200 OK in 8ms (Views: 5.3ms)
10223
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:07:17 +0200
10224
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10225
+ Parameters: {"id"=>"meta"}
10226
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.3ms)
10227
+ Completed 200 OK in 4ms (Views: 1.1ms)
10228
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:07:18 +0200
10229
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10230
+ Parameters: {"id"=>"context"}
10231
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
10232
+ Completed 200 OK in 6ms (Views: 1.3ms)
10233
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:07:18 +0200
10234
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10235
+ Parameters: {"id"=>"context"}
10236
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
10237
+ Completed 200 OK in 6ms (Views: 1.3ms)
10238
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:18 +0200
10239
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10240
+ Parameters: {"id"=>"schema"}
10241
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.3ms)
10242
+ Completed 200 OK in 138ms (Views: 37.9ms)
10243
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:18 +0200
10244
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10245
+ Parameters: {"id"=>"schema"}
10246
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (60.5ms)
10247
+ Completed 200 OK in 170ms (Views: 61.9ms)
10248
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:18 +0200
10249
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10250
+ Parameters: {"id"=>"schema"}
10251
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (61.2ms)
10252
+ Completed 200 OK in 172ms (Views: 62.6ms)
10253
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:18 +0200
10254
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10255
+ Parameters: {"id"=>"schema"}
10256
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (61.1ms)
10257
+ Completed 200 OK in 171ms (Views: 62.5ms)
10258
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:20 +0200
10259
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10260
+ Parameters: {"id"=>"schema"}
10261
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.0ms)
10262
+ Completed 200 OK in 137ms (Views: 65.4ms)
10263
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:20 +0200
10264
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10265
+ Parameters: {"id"=>"schema"}
10266
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.9ms)
10267
+ Completed 200 OK in 175ms (Views: 64.3ms)
10268
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:20 +0200
10269
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10270
+ Parameters: {"id"=>"schema"}
10271
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (61.7ms)
10272
+ Completed 200 OK in 174ms (Views: 63.1ms)
10273
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:20 +0200
10274
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10275
+ Parameters: {"id"=>"schema"}
10276
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.3ms)
10277
+ Completed 200 OK in 174ms (Views: 63.7ms)
10278
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:21 +0200
10279
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10280
+ Parameters: {"id"=>"schema"}
10281
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.0ms)
10282
+ Completed 200 OK in 140ms (Views: 35.4ms)
10283
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:23 +0200
10284
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10285
+ Parameters: {"id"=>"schema"}
10286
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.0ms)
10287
+ Completed 200 OK in 170ms (Views: 64.4ms)
10288
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:24 +0200
10289
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10290
+ Parameters: {"id"=>"schema"}
10291
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.2ms)
10292
+ Completed 200 OK in 140ms (Views: 35.6ms)
10293
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:25 +0200
10294
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10295
+ Parameters: {"id"=>"schema"}
10296
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (33.7ms)
10297
+ Completed 200 OK in 138ms (Views: 35.1ms)
10298
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10299
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10300
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.8ms)
10301
+ Completed 200 OK in 16ms (Views: 15.8ms)
10302
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10303
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10304
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10305
+ Completed 200 OK in 1ms (Views: 1.0ms)
10306
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10307
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10308
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10309
+ Completed 200 OK in 1ms (Views: 1.2ms)
10310
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10311
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10312
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10313
+ Completed 200 OK in 1ms (Views: 1.0ms)
10314
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10315
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10316
+ Parameters: {"id"=>"schema"}
10317
+ Completed 500 Internal Server Error in 107ms
10318
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10319
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10320
+ Parameters: {"id"=>"schema"}
10321
+ Completed 500 Internal Server Error in 103ms
10322
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10323
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10324
+ Parameters: {"id"=>"schema"}
10325
+ Completed 500 Internal Server Error in 102ms
10326
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10327
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10328
+ Parameters: {"id"=>"schema"}
10329
+ Completed 500 Internal Server Error in 102ms
10330
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10331
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10332
+ Parameters: {"id"=>"schema"}
10333
+ Completed 500 Internal Server Error in 103ms
10334
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10335
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10336
+ Parameters: {"id"=>"schema"}
10337
+ Completed 500 Internal Server Error in 103ms
10338
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:47 +0200
10339
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10340
+ Parameters: {"id"=>"schema"}
10341
+ Completed 500 Internal Server Error in 103ms
10342
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10343
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10344
+ Parameters: {"id"=>"schema"}
10345
+ Completed 500 Internal Server Error in 103ms
10346
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10347
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10348
+ Parameters: {"id"=>"schema"}
10349
+ Completed 500 Internal Server Error in 104ms
10350
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10351
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10352
+ Parameters: {"id"=>"schema"}
10353
+ Completed 500 Internal Server Error in 103ms
10354
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10355
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10356
+ Parameters: {"id"=>"schema"}
10357
+ Completed 500 Internal Server Error in 103ms
10358
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10359
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10360
+ Parameters: {"id"=>"schema"}
10361
+ Completed 500 Internal Server Error in 103ms
10362
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10363
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10364
+ Parameters: {"id"=>"foobar"}
10365
+ Completed 500 Internal Server Error in 0ms
10366
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10367
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10368
+ Parameters: {"id"=>"meta"}
10369
+ Completed 500 Internal Server Error in 4ms
10370
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10371
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10372
+ Parameters: {"id"=>"meta"}
10373
+ Completed 500 Internal Server Error in 4ms
10374
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10375
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10376
+ Parameters: {"id"=>"context"}
10377
+ Completed 500 Internal Server Error in 6ms
10378
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:07:48 +0200
10379
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10380
+ Parameters: {"id"=>"context"}
10381
+ Completed 500 Internal Server Error in 7ms
10382
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10383
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10384
+ Parameters: {"id"=>"schema"}
10385
+ Completed 500 Internal Server Error in 0ms
10386
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10387
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10388
+ Parameters: {"id"=>"schema"}
10389
+ Completed 500 Internal Server Error in 0ms
10390
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10391
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10392
+ Parameters: {"id"=>"schema"}
10393
+ Completed 500 Internal Server Error in 0ms
10394
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10395
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10396
+ Parameters: {"id"=>"schema"}
10397
+ Completed 500 Internal Server Error in 0ms
10398
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10399
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10400
+ Parameters: {"id"=>"schema"}
10401
+ Completed 500 Internal Server Error in 0ms
10402
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10403
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10404
+ Parameters: {"id"=>"schema"}
10405
+ Completed 500 Internal Server Error in 0ms
10406
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10407
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10408
+ Parameters: {"id"=>"schema"}
10409
+ Completed 500 Internal Server Error in 0ms
10410
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10411
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10412
+ Parameters: {"id"=>"schema"}
10413
+ Completed 500 Internal Server Error in 0ms
10414
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10415
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10416
+ Parameters: {"id"=>"schema"}
10417
+ Completed 500 Internal Server Error in 0ms
10418
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10419
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10420
+ Parameters: {"id"=>"schema"}
10421
+ Completed 500 Internal Server Error in 0ms
10422
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:07 +0200
10423
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10424
+ Parameters: {"id"=>"schema"}
10425
+ Completed 500 Internal Server Error in 0ms
10426
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10427
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10428
+ Parameters: {"id"=>"schema"}
10429
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (4.5ms)
10430
+ Completed 500 Internal Server Error in 55ms
10431
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10432
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10433
+ Parameters: {"id"=>"schema"}
10434
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.2ms)
10435
+ Completed 500 Internal Server Error in 47ms
10436
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10437
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10438
+ Parameters: {"id"=>"schema"}
10439
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.1ms)
10440
+ Completed 500 Internal Server Error in 74ms
10441
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10442
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10443
+ Parameters: {"id"=>"schema"}
10444
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.1ms)
10445
+ Completed 500 Internal Server Error in 49ms
10446
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10447
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10448
+ Parameters: {"id"=>"schema"}
10449
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.1ms)
10450
+ Completed 500 Internal Server Error in 75ms
10451
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10452
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10453
+ Parameters: {"id"=>"schema"}
10454
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.2ms)
10455
+ Completed 500 Internal Server Error in 47ms
10456
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10457
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10458
+ Parameters: {"id"=>"schema"}
10459
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.2ms)
10460
+ Completed 500 Internal Server Error in 76ms
10461
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10462
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10463
+ Parameters: {"id"=>"schema"}
10464
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.2ms)
10465
+ Completed 500 Internal Server Error in 48ms
10466
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10467
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10468
+ Parameters: {"id"=>"schema"}
10469
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.1ms)
10470
+ Completed 500 Internal Server Error in 76ms
10471
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10472
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10473
+ Parameters: {"id"=>"schema"}
10474
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.1ms)
10475
+ Completed 500 Internal Server Error in 47ms
10476
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:13 +0200
10477
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10478
+ Parameters: {"id"=>"schema"}
10479
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.1ms)
10480
+ Completed 500 Internal Server Error in 76ms
10481
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:23 +0200
10482
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10483
+ Parameters: {"id"=>"schema"}
10484
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (37.8ms)
10485
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (42.7ms)
10486
+ Completed 200 OK in 99ms (Views: 55.0ms)
10487
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:24 +0200
10488
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10489
+ Parameters: {"id"=>"schema"}
10490
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (32.6ms)
10491
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (33.2ms)
10492
+ Completed 200 OK in 112ms (Views: 34.1ms)
10493
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:26 +0200
10494
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10495
+ Parameters: {"id"=>"schema"}
10496
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (72.7ms)
10497
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (73.2ms)
10498
+ Completed 200 OK in 117ms (Views: 74.1ms)
10499
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:27 +0200
10500
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10501
+ Parameters: {"id"=>"schema"}
10502
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (32.9ms)
10503
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (33.4ms)
10504
+ Completed 200 OK in 78ms (Views: 34.3ms)
10505
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:27 +0200
10506
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10507
+ Parameters: {"id"=>"schema"}
10508
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.4ms)
10509
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (34.9ms)
10510
+ Completed 200 OK in 79ms (Views: 35.8ms)
10511
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:27 +0200
10512
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10513
+ Parameters: {"id"=>"schema"}
10514
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.1ms)
10515
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (36.6ms)
10516
+ Completed 200 OK in 81ms (Views: 37.6ms)
10517
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:27 +0200
10518
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10519
+ Parameters: {"id"=>"schema"}
10520
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (33.6ms)
10521
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (34.1ms)
10522
+ Completed 200 OK in 79ms (Views: 35.1ms)
10523
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:28 +0200
10524
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10525
+ Parameters: {"id"=>"schema"}
10526
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (33.7ms)
10527
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (34.2ms)
10528
+ Completed 200 OK in 125ms (Views: 35.2ms)
10529
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:28 +0200
10530
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10531
+ Parameters: {"id"=>"schema"}
10532
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (75.8ms)
10533
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (76.4ms)
10534
+ Completed 200 OK in 120ms (Views: 77.3ms)
10535
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:29 +0200
10536
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10537
+ Parameters: {"id"=>"schema"}
10538
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.0ms)
10539
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (34.6ms)
10540
+ Completed 200 OK in 116ms (Views: 35.5ms)
10541
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:29 +0200
10542
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10543
+ Parameters: {"id"=>"schema"}
10544
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (75.4ms)
10545
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (75.9ms)
10546
+ Completed 200 OK in 120ms (Views: 76.9ms)
10547
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10548
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10549
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.9ms)
10550
+ Completed 200 OK in 16ms (Views: 16.0ms)
10551
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10552
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10553
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10554
+ Completed 200 OK in 1ms (Views: 1.1ms)
10555
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10556
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10557
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.3ms)
10558
+ Completed 200 OK in 1ms (Views: 1.1ms)
10559
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10560
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10561
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.3ms)
10562
+ Completed 200 OK in 1ms (Views: 1.1ms)
10563
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10564
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10565
+ Parameters: {"id"=>"context"}
10566
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.7ms)
10567
+ Completed 200 OK in 10ms (Views: 5.7ms)
10568
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10569
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10570
+ Parameters: {"id"=>"context"}
10571
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
10572
+ Completed 200 OK in 6ms (Views: 1.3ms)
10573
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10574
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10575
+ Parameters: {"id"=>"foobar"}
10576
+ Completed 500 Internal Server Error in 0ms
10577
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10578
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10579
+ Parameters: {"id"=>"meta"}
10580
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10581
+ Completed 200 OK in 4ms (Views: 1.1ms)
10582
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10583
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10584
+ Parameters: {"id"=>"meta"}
10585
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10586
+ Completed 200 OK in 4ms (Views: 1.1ms)
10587
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10588
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10589
+ Parameters: {"id"=>"schema"}
10590
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (37.0ms)
10591
+ Completed 200 OK in 140ms (Views: 38.5ms)
10592
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:41 +0200
10593
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10594
+ Parameters: {"id"=>"schema"}
10595
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.0ms)
10596
+ Completed 200 OK in 172ms (Views: 63.4ms)
10597
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:42 +0200
10598
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10599
+ Parameters: {"id"=>"schema"}
10600
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.9ms)
10601
+ Completed 200 OK in 140ms (Views: 37.3ms)
10602
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:43 +0200
10603
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10604
+ Parameters: {"id"=>"schema"}
10605
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (61.8ms)
10606
+ Completed 200 OK in 174ms (Views: 63.2ms)
10607
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:43 +0200
10608
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10609
+ Parameters: {"id"=>"schema"}
10610
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.1ms)
10611
+ Completed 200 OK in 172ms (Views: 63.5ms)
10612
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:44 +0200
10613
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10614
+ Parameters: {"id"=>"schema"}
10615
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.0ms)
10616
+ Completed 200 OK in 167ms (Views: 63.4ms)
10617
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:45 +0200
10618
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10619
+ Parameters: {"id"=>"schema"}
10620
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.4ms)
10621
+ Completed 200 OK in 142ms (Views: 37.8ms)
10622
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:47 +0200
10623
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10624
+ Parameters: {"id"=>"schema"}
10625
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.8ms)
10626
+ Completed 200 OK in 170ms (Views: 64.2ms)
10627
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:48 +0200
10628
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10629
+ Parameters: {"id"=>"schema"}
10630
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.3ms)
10631
+ Completed 200 OK in 170ms (Views: 64.7ms)
10632
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:48 +0200
10633
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10634
+ Parameters: {"id"=>"schema"}
10635
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.1ms)
10636
+ Completed 200 OK in 149ms (Views: 36.5ms)
10637
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:48 +0200
10638
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10639
+ Parameters: {"id"=>"schema"}
10640
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (68.8ms)
10641
+ Completed 200 OK in 182ms (Views: 70.3ms)
10642
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:49 +0200
10643
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10644
+ Parameters: {"id"=>"schema"}
10645
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.2ms)
10646
+ Completed 200 OK in 195ms (Views: 65.6ms)
10647
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.0ms)
10648
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:08:52 +0200
10649
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10650
+ Parameters: {"id"=>"meta"}
10651
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.7ms)
10652
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (7.9ms)
10653
+ Completed 200 OK in 30ms (Views: 25.7ms)
10654
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:08:52 +0200
10655
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10656
+ Parameters: {"id"=>"meta"}
10657
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.3ms)
10658
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.9ms)
10659
+ Completed 200 OK in 6ms (Views: 1.9ms)
10660
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:08:52 +0200
10661
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10662
+ Parameters: {"id"=>"context"}
10663
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.5ms)
10664
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.8ms)
10665
+ Completed 200 OK in 10ms (Views: 1.6ms)
10666
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:08:52 +0200
10667
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10668
+ Parameters: {"id"=>"context"}
10669
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.8ms)
10670
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (1.1ms)
10671
+ Completed 200 OK in 11ms (Views: 2.0ms)
10672
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:52 +0200
10673
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10674
+ Parameters: {"id"=>"schema"}
10675
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (66.3ms)
10676
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (67.0ms)
10677
+ Completed 200 OK in 179ms (Views: 68.1ms)
10678
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:52 +0200
10679
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10680
+ Parameters: {"id"=>"schema"}
10681
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.7ms)
10682
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (36.2ms)
10683
+ Completed 200 OK in 157ms (Views: 37.2ms)
10684
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:52 +0200
10685
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10686
+ Parameters: {"id"=>"schema"}
10687
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (61.9ms)
10688
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (62.4ms)
10689
+ Completed 200 OK in 174ms (Views: 63.4ms)
10690
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:54 +0200
10691
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10692
+ Parameters: {"id"=>"schema"}
10693
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.9ms)
10694
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.5ms)
10695
+ Completed 200 OK in 141ms (Views: 36.5ms)
10696
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:55 +0200
10697
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10698
+ Parameters: {"id"=>"schema"}
10699
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.0ms)
10700
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (62.6ms)
10701
+ Completed 200 OK in 171ms (Views: 63.6ms)
10702
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:57 +0200
10703
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10704
+ Parameters: {"id"=>"schema"}
10705
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.9ms)
10706
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (36.4ms)
10707
+ Completed 200 OK in 145ms (Views: 37.4ms)
10708
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:57 +0200
10709
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10710
+ Parameters: {"id"=>"schema"}
10711
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.6ms)
10712
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (65.1ms)
10713
+ Completed 200 OK in 153ms (Views: 66.1ms)
10714
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:58 +0200
10715
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10716
+ Parameters: {"id"=>"schema"}
10717
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.1ms)
10718
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.6ms)
10719
+ Completed 200 OK in 142ms (Views: 36.6ms)
10720
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:08:59 +0200
10721
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10722
+ Parameters: {"id"=>"schema"}
10723
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.6ms)
10724
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (63.1ms)
10725
+ Completed 200 OK in 170ms (Views: 64.1ms)
10726
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10727
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10728
+ Parameters: {"id"=>"schema"}
10729
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.4ms)
10730
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (65.0ms)
10731
+ Completed 200 OK in 178ms (Views: 66.2ms)
10732
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10733
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10734
+ Parameters: {"id"=>"schema"}
10735
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.6ms)
10736
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (63.1ms)
10737
+ Completed 200 OK in 180ms (Views: 64.1ms)
10738
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10739
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10740
+ Parameters: {"id"=>"schema"}
10741
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.5ms)
10742
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.1ms)
10743
+ Completed 200 OK in 158ms (Views: 36.0ms)
10744
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10745
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10746
+ Parameters: {"id"=>"foobar"}
10747
+ Completed 500 Internal Server Error in 0ms
10748
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10749
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10750
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.9ms)
10751
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (2.7ms)
10752
+ Completed 200 OK in 4ms (Views: 4.2ms)
10753
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10754
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10755
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10756
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
10757
+ Completed 200 OK in 1ms (Views: 1.1ms)
10758
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10759
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10760
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10761
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
10762
+ Completed 200 OK in 1ms (Views: 1.2ms)
10763
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:00 +0200
10764
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10765
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10766
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
10767
+ Completed 200 OK in 1ms (Views: 1.1ms)
10768
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10769
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10770
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (1.1ms)
10771
+ Completed 200 OK in 18ms (Views: 17.3ms)
10772
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10773
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10774
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10775
+ Completed 200 OK in 1ms (Views: 1.1ms)
10776
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10777
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10778
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10779
+ Completed 200 OK in 1ms (Views: 1.0ms)
10780
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10781
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10782
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10783
+ Completed 200 OK in 1ms (Views: 1.1ms)
10784
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10785
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10786
+ Parameters: {"id"=>"context"}
10787
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.6ms)
10788
+ Completed 200 OK in 11ms (Views: 5.7ms)
10789
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10790
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10791
+ Parameters: {"id"=>"context"}
10792
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.5ms)
10793
+ Completed 200 OK in 6ms (Views: 1.4ms)
10794
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10795
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10796
+ Parameters: {"id"=>"foobar"}
10797
+ Completed 500 Internal Server Error in 0ms
10798
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10799
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10800
+ Parameters: {"id"=>"schema"}
10801
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (65.4ms)
10802
+ Completed 200 OK in 170ms (Views: 67.0ms)
10803
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10804
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10805
+ Parameters: {"id"=>"schema"}
10806
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.0ms)
10807
+ Completed 200 OK in 198ms (Views: 64.1ms)
10808
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:04 +0200
10809
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10810
+ Parameters: {"id"=>"schema"}
10811
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (106.0ms)
10812
+ Completed 200 OK in 285ms (Views: 108.1ms)
10813
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:05 +0200
10814
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10815
+ Parameters: {"id"=>"schema"}
10816
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (66.1ms)
10817
+ Completed 200 OK in 232ms (Views: 67.6ms)
10818
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:05 +0200
10819
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10820
+ Parameters: {"id"=>"schema"}
10821
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.0ms)
10822
+ Completed 200 OK in 176ms (Views: 64.5ms)
10823
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:05 +0200
10824
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10825
+ Parameters: {"id"=>"schema"}
10826
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (69.6ms)
10827
+ Completed 200 OK in 195ms (Views: 71.3ms)
10828
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:05 +0200
10829
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10830
+ Parameters: {"id"=>"schema"}
10831
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.8ms)
10832
+ Completed 200 OK in 148ms (Views: 36.2ms)
10833
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:07 +0200
10834
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10835
+ Parameters: {"id"=>"schema"}
10836
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.4ms)
10837
+ Completed 200 OK in 177ms (Views: 65.8ms)
10838
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:08 +0200
10839
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10840
+ Parameters: {"id"=>"schema"}
10841
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (53.5ms)
10842
+ Completed 200 OK in 181ms (Views: 55.3ms)
10843
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:10 +0200
10844
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10845
+ Parameters: {"id"=>"schema"}
10846
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (44.9ms)
10847
+ Completed 200 OK in 182ms (Views: 46.6ms)
10848
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:11 +0200
10849
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10850
+ Parameters: {"id"=>"schema"}
10851
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.7ms)
10852
+ Completed 200 OK in 140ms (Views: 36.0ms)
10853
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:09:13 +0200
10854
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10855
+ Parameters: {"id"=>"schema"}
10856
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (36.5ms)
10857
+ Completed 200 OK in 145ms (Views: 38.0ms)
10858
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:09:13 +0200
10859
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10860
+ Parameters: {"id"=>"meta"}
10861
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10862
+ Completed 200 OK in 4ms (Views: 1.1ms)
10863
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:09:13 +0200
10864
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10865
+ Parameters: {"id"=>"meta"}
10866
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10867
+ Completed 200 OK in 4ms (Views: 1.2ms)
10868
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10869
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10870
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.8ms)
10871
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (4.7ms)
10872
+ Completed 200 OK in 16ms (Views: 15.9ms)
10873
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10874
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10875
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10876
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
10877
+ Completed 200 OK in 1ms (Views: 1.2ms)
10878
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10879
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10880
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10881
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.4ms)
10882
+ Completed 200 OK in 1ms (Views: 1.1ms)
10883
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10884
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
10885
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
10886
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/index.html.haml within layouts/dbd_onto_engine/application (0.5ms)
10887
+ Completed 200 OK in 1ms (Views: 1.2ms)
10888
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10889
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10890
+ Parameters: {"id"=>"schema"}
10891
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (39.4ms)
10892
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (43.1ms)
10893
+ Completed 200 OK in 148ms (Views: 45.0ms)
10894
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10895
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10896
+ Parameters: {"id"=>"schema"}
10897
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.3ms)
10898
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (62.9ms)
10899
+ Completed 200 OK in 175ms (Views: 63.9ms)
10900
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10901
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10902
+ Parameters: {"id"=>"schema"}
10903
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.9ms)
10904
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (63.4ms)
10905
+ Completed 200 OK in 175ms (Views: 64.4ms)
10906
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:10 +0200
10907
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10908
+ Parameters: {"id"=>"schema"}
10909
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.8ms)
10910
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (63.3ms)
10911
+ Completed 200 OK in 175ms (Views: 64.3ms)
10912
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:12 +0200
10913
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10914
+ Parameters: {"id"=>"schema"}
10915
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.1ms)
10916
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (35.7ms)
10917
+ Completed 200 OK in 142ms (Views: 36.7ms)
10918
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:12 +0200
10919
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10920
+ Parameters: {"id"=>"schema"}
10921
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (65.3ms)
10922
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (65.9ms)
10923
+ Completed 200 OK in 179ms (Views: 66.9ms)
10924
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:13 +0200
10925
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10926
+ Parameters: {"id"=>"schema"}
10927
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (65.7ms)
10928
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (66.3ms)
10929
+ Completed 200 OK in 170ms (Views: 67.2ms)
10930
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:15 +0200
10931
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10932
+ Parameters: {"id"=>"schema"}
10933
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.8ms)
10934
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (36.4ms)
10935
+ Completed 200 OK in 145ms (Views: 37.4ms)
10936
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:16 +0200
10937
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10938
+ Parameters: {"id"=>"schema"}
10939
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.5ms)
10940
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (36.0ms)
10941
+ Completed 200 OK in 145ms (Views: 37.1ms)
10942
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:17 +0200
10943
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10944
+ Parameters: {"id"=>"schema"}
10945
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.7ms)
10946
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (36.2ms)
10947
+ Completed 200 OK in 145ms (Views: 37.2ms)
10948
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10949
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10950
+ Parameters: {"id"=>"schema"}
10951
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.2ms)
10952
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (64.7ms)
10953
+ Completed 200 OK in 179ms (Views: 65.7ms)
10954
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10955
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10956
+ Parameters: {"id"=>"schema"}
10957
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.3ms)
10958
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (64.9ms)
10959
+ Completed 200 OK in 179ms (Views: 65.9ms)
10960
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10961
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10962
+ Parameters: {"id"=>"foobar"}
10963
+ Completed 500 Internal Server Error in 0ms
10964
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10965
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10966
+ Parameters: {"id"=>"meta"}
10967
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10968
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.6ms)
10969
+ Completed 200 OK in 4ms (Views: 1.3ms)
10970
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10971
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10972
+ Parameters: {"id"=>"meta"}
10973
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
10974
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.5ms)
10975
+ Completed 200 OK in 5ms (Views: 1.3ms)
10976
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10977
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10978
+ Parameters: {"id"=>"context"}
10979
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
10980
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.7ms)
10981
+ Completed 200 OK in 6ms (Views: 1.4ms)
10982
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10983
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10984
+ Parameters: {"id"=>"context"}
10985
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.4ms)
10986
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.7ms)
10987
+ Completed 200 OK in 6ms (Views: 1.4ms)
10988
+ Started GET "/ontologies/dbd" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10989
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10990
+ Parameters: {"id"=>"dbd"}
10991
+ Completed 500 Internal Server Error in 0ms
10992
+ Started GET "/ontologies/dbd" for 127.0.0.1 at 2013-10-23 23:10:18 +0200
10993
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10994
+ Parameters: {"id"=>"dbd"}
10995
+ Completed 500 Internal Server Error in 0ms
10996
+ Started GET "/ontologies/dbd" for 127.0.0.1 at 2013-10-23 23:10:28 +0200
10997
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
10998
+ Parameters: {"id"=>"dbd"}
10999
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.4ms)
11000
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (6.4ms)
11001
+ Completed 200 OK in 20ms (Views: 17.9ms)
11002
+ Started GET "/ontologies/dbd" for 127.0.0.1 at 2013-10-23 23:10:28 +0200
11003
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11004
+ Parameters: {"id"=>"dbd"}
11005
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
11006
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (0.5ms)
11007
+ Completed 200 OK in 3ms (Views: 1.2ms)
11008
+ Started GET "/ontologies/dbd" for 127.0.0.1 at 2013-10-23 23:10:46 +0200
11009
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11010
+ Parameters: {"id"=>"dbd"}
11011
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (1.3ms)
11012
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/show.html.haml within layouts/dbd_onto_engine/application (6.2ms)
11013
+ Completed 200 OK in 20ms (Views: 17.6ms)
11014
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:52 +0200
11015
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
11016
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.9ms)
11017
+ Completed 200 OK in 16ms (Views: 16.0ms)
11018
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:52 +0200
11019
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
11020
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.3ms)
11021
+ Completed 200 OK in 1ms (Views: 1.1ms)
11022
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:52 +0200
11023
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
11024
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.3ms)
11025
+ Completed 200 OK in 1ms (Views: 1.1ms)
11026
+ Started GET "/ontologies" for 127.0.0.1 at 2013-10-23 23:10:52 +0200
11027
+ Processing by DbdOntoEngine::OntologiesController#index as HTML
11028
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.2ms)
11029
+ Completed 200 OK in 1ms (Views: 1.1ms)
11030
+ Started GET "/ontologies/foobar" for 127.0.0.1 at 2013-10-23 23:10:52 +0200
11031
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11032
+ Parameters: {"id"=>"foobar"}
11033
+ Completed 500 Internal Server Error in 0ms
11034
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:52 +0200
11035
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11036
+ Parameters: {"id"=>"schema"}
11037
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (66.7ms)
11038
+ Completed 200 OK in 177ms (Views: 71.5ms)
11039
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:53 +0200
11040
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11041
+ Parameters: {"id"=>"schema"}
11042
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.5ms)
11043
+ Completed 200 OK in 139ms (Views: 36.0ms)
11044
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:55 +0200
11045
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11046
+ Parameters: {"id"=>"schema"}
11047
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.2ms)
11048
+ Completed 200 OK in 172ms (Views: 65.5ms)
11049
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:55 +0200
11050
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11051
+ Parameters: {"id"=>"schema"}
11052
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (35.1ms)
11053
+ Completed 200 OK in 148ms (Views: 36.4ms)
11054
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:55 +0200
11055
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11056
+ Parameters: {"id"=>"schema"}
11057
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (66.7ms)
11058
+ Completed 200 OK in 179ms (Views: 68.2ms)
11059
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:55 +0200
11060
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11061
+ Parameters: {"id"=>"schema"}
11062
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.4ms)
11063
+ Completed 200 OK in 179ms (Views: 65.0ms)
11064
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:55 +0200
11065
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11066
+ Parameters: {"id"=>"schema"}
11067
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.5ms)
11068
+ Completed 200 OK in 179ms (Views: 66.0ms)
11069
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:57 +0200
11070
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11071
+ Parameters: {"id"=>"schema"}
11072
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.0ms)
11073
+ Completed 200 OK in 167ms (Views: 63.4ms)
11074
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:58 +0200
11075
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11076
+ Parameters: {"id"=>"schema"}
11077
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (34.7ms)
11078
+ Completed 200 OK in 143ms (Views: 36.1ms)
11079
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:10:59 +0200
11080
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11081
+ Parameters: {"id"=>"schema"}
11082
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (64.1ms)
11083
+ Completed 200 OK in 174ms (Views: 65.5ms)
11084
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11085
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11086
+ Parameters: {"id"=>"schema"}
11087
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (63.1ms)
11088
+ Completed 200 OK in 173ms (Views: 64.5ms)
11089
+ Started GET "/ontologies/schema" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11090
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11091
+ Parameters: {"id"=>"schema"}
11092
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (62.7ms)
11093
+ Completed 200 OK in 175ms (Views: 64.1ms)
11094
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11095
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11096
+ Parameters: {"id"=>"context"}
11097
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.6ms)
11098
+ Completed 200 OK in 7ms (Views: 1.6ms)
11099
+ Started GET "/ontologies/context" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11100
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11101
+ Parameters: {"id"=>"context"}
11102
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (40.1ms)
11103
+ Completed 200 OK in 47ms (Views: 41.1ms)
11104
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11105
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11106
+ Parameters: {"id"=>"meta"}
11107
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
11108
+ Completed 200 OK in 4ms (Views: 1.1ms)
11109
+ Started GET "/ontologies/meta" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11110
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11111
+ Parameters: {"id"=>"meta"}
11112
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
11113
+ Completed 200 OK in 4ms (Views: 1.1ms)
11114
+ Started GET "/ontologies/dbd" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11115
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11116
+ Parameters: {"id"=>"dbd"}
11117
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.1ms)
11118
+ Completed 200 OK in 3ms (Views: 0.9ms)
11119
+ Started GET "/ontologies/dbd" for 127.0.0.1 at 2013-10-23 23:11:00 +0200
11120
+ Processing by DbdOntoEngine::OntologiesController#show as HTML
11121
+ Parameters: {"id"=>"dbd"}
11122
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_predicate.html.haml (0.2ms)
11123
+ Completed 200 OK in 3ms (Views: 1.0ms)
11124
+ Rendered /Users/peter_v/Documents/data/github/petervandenabeele/dbd_onto_engine/app/views/dbd_onto_engine/ontologies/_ontology_title.html.haml (0.0ms)