stiki 0.0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -47,6 +47,9 @@ To configure Stiki, create a config in config/initializers/stiki.rb
47
47
 
48
48
  # Optional, use cancan for authorization
49
49
  stiki.authorize_by = :cancan
50
+
51
+ # Optional, enable jQuery javascript
52
+ javascript_enabled = true
50
53
  end
51
54
 
52
55
  === Reloading Stiki in the development environment
@@ -58,6 +61,8 @@ config/environments/development.rb
58
61
  Stiki.reload
59
62
  end
60
63
 
64
+ This will re-apply changes to the Stiki models and controllers that were reloaded.
65
+
61
66
  == License
62
67
  Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
63
68
 
@@ -7,9 +7,15 @@ module Stiki
7
7
  def has_access( action, model )
8
8
  if Stiki.authorize_by == :cancan
9
9
  can? action, model
10
+ else
11
+ true
10
12
  end
11
13
  end
12
14
 
15
+ def javascript_enabled
16
+ Stiki.javascript_enabled == true
17
+ end
18
+
13
19
  def user_name( author )
14
20
  author.user.send( Stiki.user_name_via ) if author && author.user
15
21
  end
@@ -15,12 +15,14 @@
15
15
  </div>
16
16
  <% end -%>
17
17
  <%- if has_access( :create, Stiki::Space ) %>
18
+ <%- if javascript_enabled %>
18
19
  <div class="row-fluid create-space">
19
20
  <div class="span8 well">
20
21
  <a href="#" class="create-space-trigger">Create New Space</a>
21
22
  </div>
22
23
  </div>
23
- <div class="row-fluid create-space" style="display:none">
24
+ <% end -%>
25
+ <div class="row-fluid create-space" style="<%= 'display:none' if javascript_enabled %>">
24
26
  <div class="span8">
25
27
  <div class="row-fluid">
26
28
  <%= form_tag( stiki_routes.spaces_path, :class => 'form-horizontal' ) do |f| %>
@@ -41,12 +43,13 @@
41
43
  </div>
42
44
  </div>
43
45
  </div>
44
-
45
- <script>
46
- $(function() {
47
- $('.create-space-trigger').click( function() {
48
- $('.create-space').slideToggle();
46
+ <%- if javascript_enabled %>
47
+ <script type="text/javascript">
48
+ $(function() {
49
+ $('.create-space-trigger').click( function() {
50
+ $('.create-space').slideToggle();
51
+ });
49
52
  });
50
- });
51
- </script>
53
+ </script>
54
+ <% end -%>
52
55
  <% end -%>
data/lib/stiki/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Stiki
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/stiki.rb CHANGED
@@ -11,8 +11,8 @@ module Stiki
11
11
  mattr_accessor :authenticate_pages
12
12
  mattr_accessor :authenticate_spaces
13
13
  mattr_accessor :auth_mapping
14
-
15
14
  mattr_accessor :authorize_by
15
+ mattr_accessor :javascript_enabled
16
16
 
17
17
  def self.reload
18
18
  config( &@@config_blk ) if @@config_blk
@@ -59360,3 +59360,492 @@ Redirected to http://test.host/wiki/spaces
59360
59360
  Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
59361
59361
   (0.1ms) SELECT COUNT(*) FROM "stiki_spaces"
59362
59362
   (0.0ms) rollback transaction
59363
+ Connecting to database specified by database.yml
59364
+  (0.4ms) begin transaction
59365
+  (0.0ms) SAVEPOINT active_record_1
59366
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test1201208052337570400' OR "slug" LIKE 'test1201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59367
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test1201208052337570400' LIMIT 1
59368
+ SQL (1.0ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test1201208052337570400"], ["slug", "test1201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59370
+  (0.1ms) rollback transaction
59371
+  (0.0ms) begin transaction
59372
+  (0.0ms) SAVEPOINT active_record_1
59373
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test2201208052337570400' OR "slug" LIKE 'test2201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59374
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test2201208052337570400' LIMIT 1
59375
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test2201208052337570400"], ["slug", "test2201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59377
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" LIMIT 1
59378
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test2201208052337570400' OR "slug" LIKE 'test2201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59379
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test2201208052337570400' LIMIT 1
59380
+  (0.1ms) rollback transaction
59381
+  (0.0ms) begin transaction
59382
+  (0.0ms) SAVEPOINT active_record_1
59383
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test3201208052337570400' OR "slug" LIKE 'test3201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59384
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test3201208052337570400' LIMIT 1
59385
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test3201208052337570400"], ["slug", "test3201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59387
+  (0.1ms) SAVEPOINT active_record_1
59388
+ Stiki::Page Load (0.2ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test1201208052337570400' OR "slug" LIKE 'test1201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59389
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test1201208052337570400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59390
+ SQL (0.4ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["parent_id", nil], ["slug", "test1201208052337570400"], ["space_id", 1], ["title", "Test1201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59392
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test1201208052337570400' AND "stiki_pages"."id" != 1 AND "stiki_pages"."space_id" = 1) LIMIT 1
59393
+  (0.2ms) rollback transaction
59394
+  (0.0ms) begin transaction
59395
+  (0.0ms) SAVEPOINT active_record_1
59396
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test4201208052337570400' OR "slug" LIKE 'test4201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59397
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test4201208052337570400' LIMIT 1
59398
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test4201208052337570400"], ["slug", "test4201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59400
+  (0.0ms) SAVEPOINT active_record_1
59401
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test2201208052337570400' OR "slug" LIKE 'test2201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59402
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test2201208052337570400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59403
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["parent_id", nil], ["slug", "test2201208052337570400"], ["space_id", 1], ["title", "Test2201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59405
+  (0.1ms) rollback transaction
59406
+  (0.0ms) begin transaction
59407
+  (0.0ms) SAVEPOINT active_record_1
59408
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test5201208052337570400' OR "slug" LIKE 'test5201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59409
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test5201208052337570400' LIMIT 1
59410
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test5201208052337570400"], ["slug", "test5201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59412
+  (0.0ms) SAVEPOINT active_record_1
59413
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test3201208052337570400' OR "slug" LIKE 'test3201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59414
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test3201208052337570400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59415
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["parent_id", nil], ["slug", "test3201208052337570400"], ["space_id", 1], ["title", "Test3201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59417
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" LIMIT 1
59418
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test3201208052337570400' OR "slug" LIKE 'test3201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59419
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test3201208052337570400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59420
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test3201208052337570400' OR "slug" LIKE 'test3201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59421
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test3201208052337570400' AND "stiki_pages"."space_id" = 2) LIMIT 1
59422
+  (0.1ms) rollback transaction
59423
+  (0.0ms) begin transaction
59424
+  (0.0ms) SAVEPOINT active_record_1
59425
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test6201208052337570400' OR "slug" LIKE 'test6201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59426
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test6201208052337570400' LIMIT 1
59427
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test6201208052337570400"], ["slug", "test6201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59429
+  (0.0ms) SAVEPOINT active_record_1
59430
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test7201208052337570400' OR "slug" LIKE 'test7201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59431
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test7201208052337570400' LIMIT 1
59432
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test7201208052337570400"], ["slug", "test7201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59434
+  (0.0ms) SAVEPOINT active_record_1
59435
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test8201208052337570400' OR "slug" LIKE 'test8201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59436
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test8201208052337570400' LIMIT 1
59437
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test8201208052337570400"], ["slug", "test8201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59439
+ Processing by Stiki::SpacesController#index as HTML
59440
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59441
+ Rendered /home/zinger/devel/projects/swx/wiki/app/views/stiki/spaces/index.html.erb within layouts/application (29.7ms)
59442
+ Completed 200 OK in 68ms (Views: 66.9ms | ActiveRecord: 0.1ms)
59443
+  (0.2ms) rollback transaction
59444
+  (0.0ms) begin transaction
59445
+  (0.0ms) SAVEPOINT active_record_1
59446
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test9201208052337570400' OR "slug" LIKE 'test9201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59447
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test9201208052337570400' LIMIT 1
59448
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test9201208052337570400"], ["slug", "test9201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59450
+  (0.0ms) SAVEPOINT active_record_1
59451
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test10201208052337570400' OR "slug" LIKE 'test10201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59452
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test10201208052337570400' LIMIT 1
59453
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test10201208052337570400"], ["slug", "test10201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59455
+  (0.0ms) SAVEPOINT active_record_1
59456
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test11201208052337570400' OR "slug" LIKE 'test11201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59457
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test11201208052337570400' LIMIT 1
59458
+ SQL (0.1ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test11201208052337570400"], ["slug", "test11201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59460
+ Processing by Stiki::SpacesController#index as HTML
59461
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59462
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
59463
+  (0.1ms) rollback transaction
59464
+  (0.0ms) begin transaction
59465
+  (0.0ms) SAVEPOINT active_record_1
59466
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test12201208052337570400' OR "slug" LIKE 'test12201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59467
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test12201208052337570400' LIMIT 1
59468
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test12201208052337570400"], ["slug", "test12201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59470
+  (0.0ms) SAVEPOINT active_record_1
59471
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test13201208052337570400' OR "slug" LIKE 'test13201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59472
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test13201208052337570400' LIMIT 1
59473
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test13201208052337570400"], ["slug", "test13201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59475
+  (0.0ms) SAVEPOINT active_record_1
59476
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test14201208052337570400' OR "slug" LIKE 'test14201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59477
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test14201208052337570400' LIMIT 1
59478
+ SQL (0.1ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test14201208052337570400"], ["slug", "test14201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59480
+ Processing by Stiki::SpacesController#index as HTML
59481
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59482
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)
59483
+  (0.1ms) rollback transaction
59484
+  (0.0ms) begin transaction
59485
+  (0.0ms) SAVEPOINT active_record_1
59486
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test15201208052337570400' OR "slug" LIKE 'test15201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59487
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test15201208052337570400' LIMIT 1
59488
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test15201208052337570400"], ["slug", "test15201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59490
+  (0.0ms) SAVEPOINT active_record_1
59491
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test16201208052337570400' OR "slug" LIKE 'test16201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59492
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test16201208052337570400' LIMIT 1
59493
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test16201208052337570400"], ["slug", "test16201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59495
+  (0.0ms) SAVEPOINT active_record_1
59496
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test17201208052337570400' OR "slug" LIKE 'test17201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59497
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test17201208052337570400' LIMIT 1
59498
+ SQL (0.1ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test17201208052337570400"], ["slug", "test17201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59500
+ Processing by Stiki::SpacesController#index as HTML
59501
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59502
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
59503
+  (0.1ms) rollback transaction
59504
+  (0.0ms) begin transaction
59505
+  (0.2ms) SELECT COUNT(*) FROM "stiki_spaces" 
59506
+ Processing by Stiki::SpacesController#create as HTML
59507
+ Parameters: {"space"=>{"name"=>"name123"}}
59508
+  (0.0ms) SAVEPOINT active_record_1
59509
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'name123' OR "slug" LIKE 'name123--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59510
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'name123' LIMIT 1
59511
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "name123"], ["slug", "name123"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59513
+ Redirected to http://test.host/wiki/spaces
59514
+ Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
59515
+  (0.1ms) SELECT COUNT(*) FROM "stiki_spaces" 
59516
+  (0.1ms) rollback transaction
59517
+  (0.0ms) begin transaction
59518
+  (0.1ms) SELECT COUNT(*) FROM "stiki_spaces"
59519
+ Processing by Stiki::SpacesController#create as HTML
59520
+  (0.0ms) SAVEPOINT active_record_1
59521
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" IS NULL LIMIT 1
59522
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
59523
+ Redirected to http://test.host/wiki/spaces
59524
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
59525
+  (0.1ms) SELECT COUNT(*) FROM "stiki_spaces"
59526
+  (0.0ms) rollback transaction
59527
+  (0.0ms) begin transaction
59528
+  (0.0ms) rollback transaction
59529
+  (0.0ms) begin transaction
59530
+  (0.0ms) rollback transaction
59531
+  (0.0ms) begin transaction
59532
+  (0.0ms) rollback transaction
59533
+  (0.0ms) begin transaction
59534
+  (0.0ms) rollback transaction
59535
+  (0.1ms) begin transaction
59536
+  (0.0ms) rollback transaction
59537
+  (0.0ms) begin transaction
59538
+  (0.0ms) rollback transaction
59539
+  (0.0ms) begin transaction
59540
+  (0.0ms) SAVEPOINT active_record_1
59541
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test18201208052337570400' OR "slug" LIKE 'test18201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59542
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test18201208052337570400' LIMIT 1
59543
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test18201208052337570400"], ["slug", "test18201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59545
+ Processing by Stiki::PagesController#create as HTML
59546
+ Parameters: {"space_id"=>"test18201208052337570400", "page"=>{"title"=>"title123", "body"=>"body123"}}
59547
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test18201208052337570400' LIMIT 1
59548
+  (0.1ms) SAVEPOINT active_record_1
59549
+ Stiki::Page Load (0.2ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'title123' OR "slug" LIKE 'title123--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59550
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" IS NULL) LIMIT 1
59551
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'title123' AND "stiki_pages"."space_id" = 1) LIMIT 1
59552
+ SQL (0.3ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body123"], ["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["parent_id", nil], ["slug", "title123"], ["space_id", 1], ["title", "title123"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59553
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" = 1) LIMIT 1
59554
+ SQL (0.2ms) INSERT INTO "stiki_authors" ("authorable_id", "authorable_type", "created_at", "creator", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["authorable_id", 1], ["authorable_type", "Stiki::Page"], ["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["creator", true], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["user_id", nil]]
59555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59556
+ Redirected to http://test.host/wiki/spaces/test18201208052337570400/pages/title123
59557
+ Completed 302 Found in 59ms (ActiveRecord: 1.3ms)
59558
+  (0.1ms) rollback transaction
59559
+  (0.0ms) begin transaction
59560
+  (0.0ms) SAVEPOINT active_record_1
59561
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test19201208052337570400' OR "slug" LIKE 'test19201208052337570400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59562
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test19201208052337570400' LIMIT 1
59563
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00], ["name", "Test19201208052337570400"], ["slug", "test19201208052337570400"], ["updated_at", Mon, 06 Aug 2012 03:37:57 UTC +00:00]]
59564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59565
+ Processing by Stiki::PagesController#create as HTML
59566
+ Parameters: {"space_id"=>"test19201208052337570400"}
59567
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test19201208052337570400' LIMIT 1
59568
+  (0.0ms) SAVEPOINT active_record_1
59569
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" IS NULL) LIMIT 1
59570
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" IS NULL AND "stiki_pages"."space_id" = 1) LIMIT 1
59571
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
59572
+ Completed 200 OK in 6ms (Views: 1.8ms | ActiveRecord: 0.3ms)
59573
+  (0.1ms) rollback transaction
59574
+  (0.0ms) begin transaction
59575
+  (0.0ms) SAVEPOINT active_record_1
59576
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test20201208052337580400' OR "slug" LIKE 'test20201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59577
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test20201208052337580400' LIMIT 1
59578
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test20201208052337580400"], ["slug", "test20201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59580
+ Processing by Stiki::PagesController#create as HTML
59581
+ Parameters: {"space_id"=>"test20201208052337580400"}
59582
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test20201208052337580400' LIMIT 1
59583
+  (0.0ms) SAVEPOINT active_record_1
59584
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" IS NULL) LIMIT 1
59585
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" IS NULL AND "stiki_pages"."space_id" = 1) LIMIT 1
59586
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
59587
+ Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.3ms)
59588
+  (0.1ms) rollback transaction
59589
+  (0.0ms) begin transaction
59590
+  (0.0ms) SAVEPOINT active_record_1
59591
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test21201208052337580400' OR "slug" LIKE 'test21201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59592
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test21201208052337580400' LIMIT 1
59593
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test21201208052337580400"], ["slug", "test21201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59595
+ Processing by Stiki::PagesController#create as HTML
59596
+ Parameters: {"space_id"=>"test21201208052337580400"}
59597
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test21201208052337580400' LIMIT 1
59598
+  (0.0ms) SAVEPOINT active_record_1
59599
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" IS NULL) LIMIT 1
59600
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" IS NULL AND "stiki_pages"."space_id" = 1) LIMIT 1
59601
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
59602
+ Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.3ms)
59603
+  (0.1ms) rollback transaction
59604
+  (0.0ms) begin transaction
59605
+  (0.0ms) SAVEPOINT active_record_1
59606
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test22201208052337580400' OR "slug" LIKE 'test22201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59607
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test22201208052337580400' LIMIT 1
59608
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test22201208052337580400"], ["slug", "test22201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59610
+ Processing by Stiki::PagesController#create as HTML
59611
+ Parameters: {"space_id"=>"test22201208052337580400"}
59612
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test22201208052337580400' LIMIT 1
59613
+  (0.0ms) SAVEPOINT active_record_1
59614
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" IS NULL) LIMIT 1
59615
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" IS NULL AND "stiki_pages"."space_id" = 1) LIMIT 1
59616
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
59617
+ Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.3ms)
59618
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" IS NULL) LIMIT 1
59619
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" IS NULL AND "stiki_pages"."space_id" = 1) LIMIT 1
59620
+  (0.1ms) rollback transaction
59621
+  (0.0ms) begin transaction
59622
+  (0.1ms) SAVEPOINT active_record_1
59623
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test23201208052337580400' OR "slug" LIKE 'test23201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59624
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test23201208052337580400' LIMIT 1
59625
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test23201208052337580400"], ["slug", "test23201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59627
+ Processing by Stiki::PagesController#create as HTML
59628
+ Parameters: {"space_id"=>"test23201208052337580400"}
59629
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test23201208052337580400' LIMIT 1
59630
+  (0.0ms) SAVEPOINT active_record_1
59631
+ Stiki::Author Exists (0.1ms) SELECT 1 AS one FROM "stiki_authors" WHERE ("stiki_authors"."creator" = 't' AND "stiki_authors"."authorable_id" IS NULL) LIMIT 1
59632
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" IS NULL AND "stiki_pages"."space_id" = 1) LIMIT 1
59633
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
59634
+ Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.3ms)
59635
+  (0.1ms) rollback transaction
59636
+  (0.0ms) begin transaction
59637
+  (0.0ms) SAVEPOINT active_record_1
59638
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test24201208052337580400' OR "slug" LIKE 'test24201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59639
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test24201208052337580400' LIMIT 1
59640
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test24201208052337580400"], ["slug", "test24201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59642
+ Processing by Stiki::PagesController#new as HTML
59643
+ Parameters: {"space_id"=>"test24201208052337580400"}
59644
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test24201208052337580400' LIMIT 1
59645
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
59646
+  (0.1ms) rollback transaction
59647
+  (0.0ms) begin transaction
59648
+  (0.0ms) SAVEPOINT active_record_1
59649
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test25201208052337580400' OR "slug" LIKE 'test25201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59650
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test25201208052337580400' LIMIT 1
59651
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test25201208052337580400"], ["slug", "test25201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59653
+ Processing by Stiki::PagesController#new as HTML
59654
+ Parameters: {"space_id"=>"test25201208052337580400"}
59655
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test25201208052337580400' LIMIT 1
59656
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
59657
+  (0.1ms) rollback transaction
59658
+  (0.0ms) begin transaction
59659
+  (0.0ms) SAVEPOINT active_record_1
59660
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test26201208052337580400' OR "slug" LIKE 'test26201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59661
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test26201208052337580400' LIMIT 1
59662
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test26201208052337580400"], ["slug", "test26201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59663
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59664
+ Processing by Stiki::PagesController#new as HTML
59665
+ Parameters: {"space_id"=>"test26201208052337580400"}
59666
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test26201208052337580400' LIMIT 1
59667
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
59668
+  (0.1ms) rollback transaction
59669
+  (0.0ms) begin transaction
59670
+  (0.0ms) SAVEPOINT active_record_1
59671
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test27201208052337580400' OR "slug" LIKE 'test27201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59672
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test27201208052337580400' LIMIT 1
59673
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test27201208052337580400"], ["slug", "test27201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59675
+ Processing by Stiki::PagesController#new as HTML
59676
+ Parameters: {"space_id"=>"test27201208052337580400"}
59677
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test27201208052337580400' LIMIT 1
59678
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
59679
+  (0.1ms) rollback transaction
59680
+  (0.0ms) begin transaction
59681
+  (0.0ms) SAVEPOINT active_record_1
59682
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test28201208052337580400' OR "slug" LIKE 'test28201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59683
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test28201208052337580400' LIMIT 1
59684
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test28201208052337580400"], ["slug", "test28201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59686
+ Processing by Stiki::PagesController#new as HTML
59687
+ Parameters: {"space_id"=>"test28201208052337580400"}
59688
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test28201208052337580400' LIMIT 1
59689
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
59690
+  (0.1ms) rollback transaction
59691
+  (0.0ms) begin transaction
59692
+  (0.0ms) SAVEPOINT active_record_1
59693
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test29201208052337580400' OR "slug" LIKE 'test29201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59694
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test29201208052337580400' LIMIT 1
59695
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test29201208052337580400"], ["slug", "test29201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59697
+  (0.0ms) SAVEPOINT active_record_1
59698
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test4201208052337580400' OR "slug" LIKE 'test4201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59699
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test4201208052337580400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59700
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["parent_id", nil], ["slug", "test4201208052337580400"], ["space_id", 1], ["title", "Test4201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59702
+ Processing by Stiki::PagesController#show as HTML
59703
+ Parameters: {"space_id"=>"test29201208052337580400", "id"=>"test4201208052337580400"}
59704
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test29201208052337580400' LIMIT 1
59705
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59706
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE "stiki_pages"."slug" = 'test4201208052337580400' LIMIT 1
59707
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.2ms)
59708
+  (0.1ms) rollback transaction
59709
+  (0.0ms) begin transaction
59710
+  (0.0ms) SAVEPOINT active_record_1
59711
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test30201208052337580400' OR "slug" LIKE 'test30201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59712
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test30201208052337580400' LIMIT 1
59713
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test30201208052337580400"], ["slug", "test30201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59715
+  (0.0ms) SAVEPOINT active_record_1
59716
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test5201208052337580400' OR "slug" LIKE 'test5201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59717
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test5201208052337580400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59718
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["parent_id", nil], ["slug", "test5201208052337580400"], ["space_id", 1], ["title", "Test5201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59720
+ Processing by Stiki::PagesController#show as HTML
59721
+ Parameters: {"space_id"=>"test30201208052337580400", "id"=>"test5201208052337580400"}
59722
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test30201208052337580400' LIMIT 1
59723
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" 
59724
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE "stiki_pages"."slug" = 'test5201208052337580400' LIMIT 1
59725
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
59726
+  (0.1ms) rollback transaction
59727
+  (0.0ms) begin transaction
59728
+  (0.0ms) SAVEPOINT active_record_1
59729
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test31201208052337580400' OR "slug" LIKE 'test31201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59730
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test31201208052337580400' LIMIT 1
59731
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test31201208052337580400"], ["slug", "test31201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59733
+  (0.0ms) SAVEPOINT active_record_1
59734
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test6201208052337580400' OR "slug" LIKE 'test6201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59735
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test6201208052337580400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59736
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["parent_id", nil], ["slug", "test6201208052337580400"], ["space_id", 1], ["title", "Test6201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59738
+ Processing by Stiki::PagesController#show as HTML
59739
+ Parameters: {"space_id"=>"test31201208052337580400", "id"=>"test6201208052337580400"}
59740
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test31201208052337580400' LIMIT 1
59741
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59742
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE "stiki_pages"."slug" = 'test6201208052337580400' LIMIT 1
59743
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.2ms)
59744
+  (0.1ms) rollback transaction
59745
+  (0.0ms) begin transaction
59746
+  (0.0ms) SAVEPOINT active_record_1
59747
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test32201208052337580400' OR "slug" LIKE 'test32201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59748
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test32201208052337580400' LIMIT 1
59749
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test32201208052337580400"], ["slug", "test32201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59751
+  (0.0ms) SAVEPOINT active_record_1
59752
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test7201208052337580400' OR "slug" LIKE 'test7201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59753
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test7201208052337580400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59754
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["parent_id", nil], ["slug", "test7201208052337580400"], ["space_id", 1], ["title", "Test7201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59756
+ Processing by Stiki::PagesController#show as HTML
59757
+ Parameters: {"space_id"=>"test32201208052337580400", "id"=>"test7201208052337580400"}
59758
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test32201208052337580400' LIMIT 1
59759
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" 
59760
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE "stiki_pages"."slug" = 'test7201208052337580400' LIMIT 1
59761
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.3ms)
59762
+  (0.1ms) rollback transaction
59763
+  (1.7ms) begin transaction
59764
+  (0.0ms) SAVEPOINT active_record_1
59765
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test33201208052337580400' OR "slug" LIKE 'test33201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59766
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test33201208052337580400' LIMIT 1
59767
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test33201208052337580400"], ["slug", "test33201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59769
+  (0.0ms) SAVEPOINT active_record_1
59770
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test8201208052337580400' OR "slug" LIKE 'test8201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59771
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test8201208052337580400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59772
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["parent_id", nil], ["slug", "test8201208052337580400"], ["space_id", 1], ["title", "Test8201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59774
+ Processing by Stiki::PagesController#show as HTML
59775
+ Parameters: {"space_id"=>"test33201208052337580400", "id"=>"test8201208052337580400"}
59776
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test33201208052337580400' LIMIT 1
59777
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59778
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE "stiki_pages"."slug" = 'test8201208052337580400' LIMIT 1
59779
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)
59780
+  (0.1ms) rollback transaction
59781
+  (0.0ms) begin transaction
59782
+  (0.0ms) SAVEPOINT active_record_1
59783
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test34201208052337580400' OR "slug" LIKE 'test34201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59784
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test34201208052337580400' LIMIT 1
59785
+ SQL (0.3ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test34201208052337580400"], ["slug", "test34201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59787
+  (0.0ms) SAVEPOINT active_record_1
59788
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE ("slug" = 'test9201208052337580400' OR "slug" LIKE 'test9201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59789
+ Stiki::Page Exists (0.1ms) SELECT 1 AS one FROM "stiki_pages" WHERE ("stiki_pages"."title" = 'Test9201208052337580400' AND "stiki_pages"."space_id" = 1) LIMIT 1
59790
+ SQL (0.2ms) INSERT INTO "stiki_pages" ("body", "created_at", "parent_id", "slug", "space_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["body", "body"], ["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["parent_id", nil], ["slug", "test9201208052337580400"], ["space_id", 1], ["title", "Test9201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59792
+ Processing by Stiki::PagesController#show as HTML
59793
+ Parameters: {"space_id"=>"test34201208052337580400", "id"=>"test9201208052337580400"}
59794
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test34201208052337580400' LIMIT 1
59795
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" 
59796
+ Stiki::Page Load (0.1ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE "stiki_pages"."slug" = 'test9201208052337580400' LIMIT 1
59797
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)
59798
+  (0.1ms) rollback transaction
59799
+  (0.0ms) begin transaction
59800
+  (0.0ms) SAVEPOINT active_record_1
59801
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test35201208052337580400' OR "slug" LIKE 'test35201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59802
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test35201208052337580400' LIMIT 1
59803
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test35201208052337580400"], ["slug", "test35201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59805
+ Processing by Stiki::PagesController#index as HTML
59806
+ Parameters: {"space_id"=>"test35201208052337580400"}
59807
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test35201208052337580400' LIMIT 1
59808
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" 
59809
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.2ms)
59810
+  (0.1ms) rollback transaction
59811
+  (0.0ms) begin transaction
59812
+  (0.0ms) SAVEPOINT active_record_1
59813
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test36201208052337580400' OR "slug" LIKE 'test36201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59814
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test36201208052337580400' LIMIT 1
59815
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test36201208052337580400"], ["slug", "test36201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59817
+ Processing by Stiki::PagesController#index as HTML
59818
+ Parameters: {"space_id"=>"test36201208052337580400"}
59819
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test36201208052337580400' LIMIT 1
59820
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59821
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
59822
+ Stiki::Page Load (0.2ms) SELECT "stiki_pages".* FROM "stiki_pages" WHERE "stiki_pages"."space_id" = 1
59823
+  (0.1ms) rollback transaction
59824
+  (0.0ms) begin transaction
59825
+  (0.0ms) SAVEPOINT active_record_1
59826
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test37201208052337580400' OR "slug" LIKE 'test37201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59827
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test37201208052337580400' LIMIT 1
59828
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test37201208052337580400"], ["slug", "test37201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59830
+ Processing by Stiki::PagesController#index as HTML
59831
+ Parameters: {"space_id"=>"test37201208052337580400"}
59832
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test37201208052337580400' LIMIT 1
59833
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces"
59834
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
59835
+  (0.1ms) rollback transaction
59836
+  (0.0ms) begin transaction
59837
+  (0.0ms) SAVEPOINT active_record_1
59838
+ Stiki::Space Load (0.2ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE ("slug" = 'test38201208052337580400' OR "slug" LIKE 'test38201208052337580400--%'ESCAPE '\') ORDER BY LENGTH("slug") DESC, "slug" DESC LIMIT 1
59839
+ Stiki::Space Exists (0.1ms) SELECT 1 AS one FROM "stiki_spaces" WHERE "stiki_spaces"."name" = 'Test38201208052337580400' LIMIT 1
59840
+ SQL (0.2ms) INSERT INTO "stiki_spaces" ("created_at", "name", "slug", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00], ["name", "Test38201208052337580400"], ["slug", "test38201208052337580400"], ["updated_at", Mon, 06 Aug 2012 03:37:58 UTC +00:00]]
59841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59842
+ Processing by Stiki::PagesController#index as HTML
59843
+ Parameters: {"space_id"=>"test38201208052337580400"}
59844
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" WHERE "stiki_spaces"."slug" = 'test38201208052337580400' LIMIT 1
59845
+ Stiki::Space Load (0.1ms) SELECT "stiki_spaces".* FROM "stiki_spaces" 
59846
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.2ms)
59847
+  (0.1ms) rollback transaction
59848
+  (0.0ms) begin transaction
59849
+  (0.0ms) rollback transaction
59850
+  (0.0ms) begin transaction
59851
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -260,12 +260,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
260
260
  - - ! '>='
261
261
  - !ruby/object:Gem::Version
262
262
  version: '0'
263
+ segments:
264
+ - 0
265
+ hash: -3907906137424960963
263
266
  required_rubygems_version: !ruby/object:Gem::Requirement
264
267
  none: false
265
268
  requirements:
266
269
  - - ! '>='
267
270
  - !ruby/object:Gem::Version
268
271
  version: '0'
272
+ segments:
273
+ - 0
274
+ hash: -3907906137424960963
269
275
  requirements: []
270
276
  rubyforge_project:
271
277
  rubygems_version: 1.8.24