spud_cms 0.9.17 → 0.9.18
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.
- data/app/helpers/spud/cms/application_helper.rb +22 -18
- data/app/models/spud_page_partial.rb +16 -11
- data/app/models/spud_page_partial_revision.rb +4 -1
- data/lib/generators/spud/cms/template_generator.rb +17 -0
- data/lib/generators/spud/cms/templates/template.html.erb +28 -0
- data/lib/spud_cms/version.rb +1 -1
- data/spec/dummy/log/development.log +182 -0
- data/spec/dummy/log/test.log +1192 -1195
- metadata +8 -4
@@ -45,7 +45,7 @@ module Spud::Cms::ApplicationHelper
|
|
45
45
|
content = "<ul #{"class='#{options[:class]}'" if options.has_key?(:class)}>"
|
46
46
|
end
|
47
47
|
if options.has_key?(:active_class)
|
48
|
-
active_class = options[:
|
48
|
+
active_class = options[:active_class]
|
49
49
|
end
|
50
50
|
if options.has_key?(:max_depth)
|
51
51
|
max_depth = options[:max_depth]
|
@@ -87,7 +87,12 @@ module Spud::Cms::ApplicationHelper
|
|
87
87
|
menu = SpudMenu
|
88
88
|
menu_id = nil
|
89
89
|
menu_key = ""
|
90
|
+
link_options = {}
|
90
91
|
start_menu_item = nil
|
92
|
+
active_class = 'menu-active'
|
93
|
+
if options.has_key?(:active_class)
|
94
|
+
active_class = options[:active_class]
|
95
|
+
end
|
91
96
|
if Spud::Core.multisite_mode_enabled
|
92
97
|
site_config = Spud::Core.site_config_for_host(request.host_with_port)
|
93
98
|
menu = menu.site(site_config[:site_id]) if !site_config.blank?
|
@@ -95,12 +100,10 @@ module Spud::Cms::ApplicationHelper
|
|
95
100
|
end
|
96
101
|
if !options.blank?
|
97
102
|
|
98
|
-
if options.has_key?(:menu_id)
|
99
|
-
|
100
|
-
end
|
103
|
+
menu_id = options[:menu_id] if options.has_key?(:menu_id)
|
104
|
+
link_options = options[:link_options] if options.has_key?(:link_options)
|
101
105
|
if options.has_key?(:name)
|
102
106
|
menu_key += options[:name]
|
103
|
-
|
104
107
|
menu = menu.where(:name => options[:name])
|
105
108
|
menu_id = MENU_INDEX[menu_key]
|
106
109
|
if menu_id.blank?
|
@@ -111,19 +114,13 @@ module Spud::Cms::ApplicationHelper
|
|
111
114
|
end
|
112
115
|
end
|
113
116
|
end
|
114
|
-
if options.has_key?(:start_menu_item_id)
|
115
|
-
start_menu_item = options[:start_menu_item_id]
|
116
|
-
end
|
117
|
+
start_menu_item = options[:start_menu_item_id] if options.has_key?(:start_menu_item_id)
|
117
118
|
if options.has_key?(:id)
|
118
119
|
content = "<ul id='#{options[:id]}' #{"class='#{options[:class]}'" if options.has_key?(:class)}>"
|
119
120
|
else
|
120
121
|
content = "<ul #{"class='#{options[:class]}'" if options.has_key?(:class)}>"
|
121
122
|
end
|
122
|
-
|
123
|
-
|
124
|
-
if options.has_key?(:max_depth)
|
125
|
-
max_depth = options[:max_depth]
|
126
|
-
end
|
123
|
+
max_depth = options[:max_depth] if options.has_key?(:max_depth)
|
127
124
|
else
|
128
125
|
content = "<ul>"
|
129
126
|
end
|
@@ -166,9 +163,10 @@ module Spud::Cms::ApplicationHelper
|
|
166
163
|
elsif current_page?(item.url)
|
167
164
|
active = true
|
168
165
|
end
|
169
|
-
|
166
|
+
link_tag = link_to item.name, !item.url_name.blank? ? (item.url_name == Spud::Cms.root_page_name ? root_path() : page_path(:id => item.url_name)) : item.url, {:class => "#{'menu-active' if active} #{item.classes if !item.classes.blank?}"}.merge(link_options)
|
167
|
+
content += "<li class='#{active_class if active} #{item.classes if !item.classes.blank?}'>#{link_tag}"
|
170
168
|
if max_depth == 0 || max_depth > 1
|
171
|
-
content += sp_list_menu_item(child_items,item.id,2,max_depth)
|
169
|
+
content += sp_list_menu_item(child_items,item.id,2,max_depth,options)
|
172
170
|
end
|
173
171
|
content += "</li>"
|
174
172
|
end
|
@@ -185,6 +183,7 @@ module Spud::Cms::ApplicationHelper
|
|
185
183
|
seperator = options[:seperator]
|
186
184
|
end
|
187
185
|
|
186
|
+
|
188
187
|
menu = SpudMenu.where(:name => options[:name])
|
189
188
|
if Spud::Core.multisite_mode_enabled
|
190
189
|
site_config = Spud::Core.site_config_for_host(request.host_with_port)
|
@@ -213,8 +212,12 @@ module Spud::Cms::ApplicationHelper
|
|
213
212
|
end
|
214
213
|
|
215
214
|
private
|
216
|
-
def sp_list_menu_item(items,item_id,depth,max_depth)
|
217
|
-
|
215
|
+
def sp_list_menu_item(items,item_id,depth,max_depth, options = {})
|
216
|
+
link_options = options.has_key?(:link_options) ? options[:link_options] : {}
|
217
|
+
active_class = 'menu-active'
|
218
|
+
if options.has_key?(:active_class)
|
219
|
+
active_class = options[:active_class]
|
220
|
+
end
|
218
221
|
spud_menu_items = items[item_id]
|
219
222
|
if spud_menu_items == nil
|
220
223
|
return ""
|
@@ -232,7 +235,8 @@ private
|
|
232
235
|
elsif current_page?(item.url)
|
233
236
|
active = true
|
234
237
|
end
|
235
|
-
|
238
|
+
link_tag = link_to item.name, !item.url_name.blank? ? (item.url_name == Spud::Cms.root_page_name ? root_path() : page_path(:id => item.url_name)) : item.url, {:class => "#{'menu-active' if active} #{item.classes if !item.classes.blank?}"}.merge(link_options)
|
239
|
+
content += "<li class='#{active_class if active} #{item.classes if !item.classes.blank?}'>#{link_tag}"
|
236
240
|
if max_depth == 0 || max_depth > depth
|
237
241
|
content += sp_list_menu_item(items,item.id,depth+1,max_depth)
|
238
242
|
end
|
@@ -7,6 +7,8 @@ class SpudPagePartial < ActiveRecord::Base
|
|
7
7
|
before_save :update_symbol_name
|
8
8
|
before_save :postprocess_content
|
9
9
|
after_save :update_taglist
|
10
|
+
|
11
|
+
|
10
12
|
def update_symbol_name
|
11
13
|
self.symbol_name = self.name.parameterize.underscore
|
12
14
|
end
|
@@ -46,18 +48,21 @@ class SpudPagePartial < ActiveRecord::Base
|
|
46
48
|
end
|
47
49
|
|
48
50
|
def maintain_revisions
|
49
|
-
if
|
50
|
-
|
51
|
+
if self.changed.include?('content')
|
52
|
+
revision = SpudPagePartialRevision.create(:spud_page_id => self.spud_page_id,:name => self.name,:format => self.format,:content => self.content)
|
53
|
+
drop_old_revisions if Spud::Cms.max_revisions > 0
|
51
54
|
end
|
52
|
-
|
53
|
-
revision.save
|
54
|
-
if Spud::Cms.max_revisions > 0
|
55
|
-
revision_count = SpudPagePartialRevision.where(:spud_page_id => self.spud_page_id,:name => self.name).count
|
56
|
-
if revision_count > Spud::Cms.max_revisions
|
57
|
-
revision_bye = SpudPagePartialRevision.where(:spud_page_id => self.spud_page_id,:name => self.name).order("created_at ASC").first
|
58
|
-
revision_bye.destroy if !revision_bye.blank?
|
59
|
-
end
|
60
|
-
end
|
55
|
+
|
61
56
|
return true
|
62
57
|
end
|
58
|
+
|
59
|
+
private
|
60
|
+
|
61
|
+
def drop_old_revisions
|
62
|
+
revision_count = SpudPagePartialRevision.for_partial(self).count
|
63
|
+
if revision_count > Spud::Cms.max_revisions
|
64
|
+
revision_bye = SpudPagePartialRevision.for_partial(self).order("created_at ASC").first
|
65
|
+
revision_bye.destroy if !revision_bye.blank?
|
66
|
+
end
|
67
|
+
end
|
63
68
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'rails/generators/migration'
|
2
|
+
|
3
|
+
class Spud::Cms::TemplateGenerator < ::Rails::Generators::Base
|
4
|
+
desc "This generator creates a new spud cms layout file"
|
5
|
+
argument :template_name, :type => :string
|
6
|
+
argument :attributes, :type => :array, :default => [], :banner => "content_block content_block"
|
7
|
+
|
8
|
+
source_root File.expand_path('../templates', __FILE__)
|
9
|
+
|
10
|
+
def create_module
|
11
|
+
template "template.html.erb", "app/views/layouts/#{template_name.downcase.underscore}.html.erb"
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
|
17
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<%%
|
2
|
+
#template_name: <%=template_name.humanize.titlecase%>
|
3
|
+
<%-attributes.each do |attribute|-%>
|
4
|
+
<%="#html: #{attribute.humanize.titlecase}\n"-%>
|
5
|
+
<%-end-%>
|
6
|
+
%>
|
7
|
+
|
8
|
+
<!DOCTYPE html>
|
9
|
+
<html>
|
10
|
+
<head>
|
11
|
+
<title><%%=content_for?(:title) ? yield(:title) : Spud::Core.site_name%></title>
|
12
|
+
<%%= stylesheet_link_tag "application", :media => "all" %>
|
13
|
+
<%%= javascript_include_tag "application" %>
|
14
|
+
<%%= csrf_meta_tags %>
|
15
|
+
<%%= yield :head%>
|
16
|
+
</head>
|
17
|
+
<body>
|
18
|
+
|
19
|
+
<%attributes.each do |attribute|%>
|
20
|
+
<%if(attribute.downcase == 'body')%>
|
21
|
+
<%%=yield%>
|
22
|
+
<%else%>
|
23
|
+
<%%=yield :<%=attribute.downcase.underscore%>%>
|
24
|
+
<%end%>
|
25
|
+
<%end%>
|
26
|
+
|
27
|
+
</body>
|
28
|
+
</html>
|
data/lib/spud_cms/version.rb
CHANGED
@@ -0,0 +1,182 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (39.6ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
3
|
+
[1m[35m (9.7ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
4
|
+
[1m[36m (1.6ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
5
|
+
Migrating to CreateSpudPages (20120101192412)
|
6
|
+
[1m[35m (32.8ms)[0m CREATE TABLE `spud_pages` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `url_name` varchar(255), `publish_at` datetime, `created_by` int(11), `updated_by` int(11), `format` varchar(255) DEFAULT 'html', `spud_page_id` int(11), `meta_description` text, `meta_keywords` varchar(255), `page_order` int(11), `template_id` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
7
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120101192412')[0m
|
8
|
+
Migrating to CreateSpudMenus (20120101193138)
|
9
|
+
[1m[35m (5.9ms)[0m CREATE TABLE `spud_menus` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `description` text, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
10
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120101193138')[0m
|
11
|
+
Migrating to CreateSpudMenuItems (20120101193255)
|
12
|
+
[1m[35m (12.6ms)[0m CREATE TABLE `spud_menu_items` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `parent_type` varchar(255), `parent_id` int(11), `item_type` int(11), `spud_page_id` int(11), `menu_order` int(11) DEFAULT 0, `url` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
13
|
+
[1m[36m (23.3ms)[0m [1mCREATE INDEX `index_spud_menu_items_on_parent_type_and_parent_id` ON `spud_menu_items` (`parent_type`, `parent_id`)[0m
|
14
|
+
[1m[35m (9.4ms)[0m CREATE INDEX `index_spud_menu_items_on_menu_order` ON `spud_menu_items` (`menu_order`)
|
15
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120101193255')[0m
|
16
|
+
Migrating to CreateSpudTemplates (20120101194124)
|
17
|
+
[1m[35m (15.1ms)[0m CREATE TABLE `spud_templates` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `base_layout` varchar(255), `content` text, `page_parts` text, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
18
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120101194124')[0m
|
19
|
+
Migrating to CreateSpudPagePartials (20120103034659)
|
20
|
+
[1m[35m (12.0ms)[0m CREATE TABLE `spud_page_partials` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `spud_page_id` int(11), `name` varchar(255), `content` text, `format` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
21
|
+
[1m[36m (6.5ms)[0m [1mCREATE INDEX `index_spud_page_partials_on_spud_page_id` ON `spud_page_partials` (`spud_page_id`)[0m
|
22
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120103034659')
|
23
|
+
Migrating to AddVisibilityToSpudPages (20120104194032)
|
24
|
+
[1m[36m (18.7ms)[0m [1mALTER TABLE `spud_pages` ADD `visibility` int(11) DEFAULT 0[0m
|
25
|
+
[1m[35m (11.8ms)[0m ALTER TABLE `spud_pages` ADD `published` tinyint(1) DEFAULT 1
|
26
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120104194032')[0m
|
27
|
+
Migrating to AddMenuNameToSpudMenuItems (20120107181337)
|
28
|
+
[1m[35m (15.8ms)[0m ALTER TABLE `spud_menu_items` ADD `name` varchar(255)
|
29
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120107181337')[0m
|
30
|
+
Migrating to AddUseCustomUrlNameToSpudPages (20120111134754)
|
31
|
+
[1m[35m (18.8ms)[0m ALTER TABLE `spud_pages` ADD `use_custom_url_name` tinyint(1) DEFAULT 0
|
32
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120111134754')[0m
|
33
|
+
Migrating to AddNotesToSpudPages (20120118141852)
|
34
|
+
[1m[35m (16.7ms)[0m ALTER TABLE `spud_pages` ADD `notes` text
|
35
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120118141852')[0m
|
36
|
+
Migrating to AddMenuIdToSpudMenuItems (20120126232428)
|
37
|
+
[1m[35m (20.2ms)[0m ALTER TABLE `spud_menu_items` ADD `spud_menu_id` int(11)
|
38
|
+
[1m[36m (8.7ms)[0m [1mCREATE INDEX `index_spud_menu_items_on_spud_menu_id` ON `spud_menu_items` (`spud_menu_id`)[0m
|
39
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120126232428')
|
40
|
+
Migrating to AddClassesToSpudMenuItems (20120128163601)
|
41
|
+
[1m[36m (19.4ms)[0m [1mALTER TABLE `spud_menu_items` ADD `classes` varchar(255)[0m
|
42
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120128163601')
|
43
|
+
Migrating to CreateSpudAdminPermissions (20120307002859)
|
44
|
+
[1m[36m (9.8ms)[0m [1mCREATE TABLE `spud_admin_permissions` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `name` varchar(255), `access` tinyint(1), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
45
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120307002859')
|
46
|
+
Migrating to CreateSpudUsers (20120307002860)
|
47
|
+
[1m[36m (14.7ms)[0m [1mCREATE TABLE `spud_users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `first_name` varchar(255), `last_name` varchar(255), `super_admin` tinyint(1), `login` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `crypted_password` varchar(255) NOT NULL, `password_salt` varchar(255) NOT NULL, `persistence_token` varchar(255) NOT NULL, `single_access_token` varchar(255) NOT NULL, `perishable_token` varchar(255) NOT NULL, `login_count` int(11) DEFAULT 0 NOT NULL, `failed_login_count` int(11) DEFAULT 0 NOT NULL, `last_request_at` datetime, `current_login_at` datetime, `last_login_at` datetime, `current_login_ip` varchar(255), `last_login_ip` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
48
|
+
[1m[35m (24.8ms)[0m CREATE INDEX `index_spud_users_on_login` ON `spud_users` (`login`)
|
49
|
+
[1m[36m (26.8ms)[0m [1mCREATE INDEX `index_spud_users_on_email` ON `spud_users` (`email`)[0m
|
50
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120307002860')
|
51
|
+
Migrating to CreateSpudPermalinks (20120307003559)
|
52
|
+
[1m[36m (14.7ms)[0m [1mCREATE TABLE `spud_permalinks` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `url_name` varchar(255), `attachment_type` varchar(255), `attachment_id` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
53
|
+
[1m[35m (20.8ms)[0m CREATE INDEX `index_spud_permalinks_on_attachment_type_and_attachment_id` ON `spud_permalinks` (`attachment_type`, `attachment_id`)
|
54
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120307003559')[0m
|
55
|
+
Migrating to AddSiteIdToSpudPages (20120329132314)
|
56
|
+
[1m[35m (29.2ms)[0m ALTER TABLE `spud_pages` ADD `site_id` int(11)
|
57
|
+
[1m[36m (24.1ms)[0m [1mCREATE INDEX `index_spud_pages_on_site_id` ON `spud_pages` (`site_id`)[0m
|
58
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120329132314')
|
59
|
+
Migrating to AddSiteIdToSpudTemplates (20120329132322)
|
60
|
+
[1m[36m (22.9ms)[0m [1mALTER TABLE `spud_templates` ADD `site_id` int(11)[0m
|
61
|
+
[1m[35m (7.8ms)[0m CREATE INDEX `index_spud_templates_on_site_id` ON `spud_templates` (`site_id`)
|
62
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120329132322')[0m
|
63
|
+
Migrating to AddSiteIdToSpudMenus (20120329132330)
|
64
|
+
[1m[35m (19.5ms)[0m ALTER TABLE `spud_menus` ADD `site_id` int(11)
|
65
|
+
[1m[36m (9.1ms)[0m [1mCREATE INDEX `index_spud_menus_on_site_id` ON `spud_menus` (`site_id`)[0m
|
66
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120329132330')
|
67
|
+
Migrating to CreateSpudPagePartialRevisions (20120510195151)
|
68
|
+
[1m[36m (28.1ms)[0m [1mCREATE TABLE `spud_page_partial_revisions` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `content` text, `format` varchar(255), `spud_page_id` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
69
|
+
[1m[35m (18.2ms)[0m CREATE INDEX `revision_idx` ON `spud_page_partial_revisions` (`spud_page_id`, `name`)
|
70
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120510195151')[0m
|
71
|
+
Migrating to AddTimeZoneToSpudUser (20120610123555)
|
72
|
+
[1m[35m (19.8ms)[0m ALTER TABLE `spud_users` ADD `time_zone` varchar(255)
|
73
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120610123555')[0m
|
74
|
+
Migrating to AddScopeToSpudAdminPermissions (20120610123556)
|
75
|
+
[1m[35m (6.5ms)[0m ALTER TABLE `spud_admin_permissions` ADD `scope` varchar(255)
|
76
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120610123556')[0m
|
77
|
+
Migrating to CreateSpudUserSettings (20120610123557)
|
78
|
+
[1m[35m (22.0ms)[0m CREATE TABLE `spud_user_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `spud_user_id` int(11), `key` varchar(255), `value` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
79
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120610123557')[0m
|
80
|
+
Migrating to AddSiteIdToSpudPermalinks (20120610123615)
|
81
|
+
[1m[35m (22.4ms)[0m ALTER TABLE `spud_permalinks` ADD `site_id` int(11)
|
82
|
+
[1m[36m (23.5ms)[0m [1mCREATE INDEX `index_spud_permalinks_on_site_id` ON `spud_permalinks` (`site_id`)[0m
|
83
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120610123615')
|
84
|
+
Migrating to AddSymbolNameToSpudPagePartials (20120911190030)
|
85
|
+
[1m[36m (17.5ms)[0m [1mALTER TABLE `spud_page_partials` ADD `symbol_name` varchar(255)[0m
|
86
|
+
[1m[35m (0.5ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120911190030')
|
87
|
+
Migrating to ModifySiteIdForSpudPages (20120912121313)
|
88
|
+
[1m[36m (15.9ms)[0m [1mALTER TABLE `spud_pages` CHANGE `site_id` `site_id` int(11) DEFAULT 0 NOT NULL[0m
|
89
|
+
[1m[35m (19.2ms)[0m ALTER TABLE `spud_templates` CHANGE `site_id` `site_id` int(11) DEFAULT 0 NOT NULL
|
90
|
+
[1m[36m (18.4ms)[0m [1mALTER TABLE `spud_menus` CHANGE `site_id` `site_id` int(11) DEFAULT 0 NOT NULL[0m
|
91
|
+
Creating scope :public. Overwriting existing method SpudPage.public.
|
92
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` IS NULL
|
93
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`site_id` IS NULL[0m
|
94
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120912121313')
|
95
|
+
Migrating to AddContentProcessedToSpudPagePartials (20121016233715)
|
96
|
+
[1m[36m (25.7ms)[0m [1mALTER TABLE `spud_page_partials` ADD `content_processed` text[0m
|
97
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121016233715')
|
98
|
+
Migrating to AddLayoutToSpudPages (20121112151110)
|
99
|
+
[1m[36m (15.7ms)[0m [1mALTER TABLE `spud_pages` ADD `layout` varchar(255)[0m
|
100
|
+
[1m[35m (14.4ms)[0m ALTER TABLE `spud_pages` DROP `template_id`
|
101
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE `spud_templates`[0m
|
102
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20121112151110')
|
103
|
+
Migrating to CreateSpudPageLiquidTags (20121112212113)
|
104
|
+
[1m[36m (13.8ms)[0m [1mCREATE TABLE `spud_page_liquid_tags` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `spud_page_partial_id` int(11), `tag_name` varchar(255), `value` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
105
|
+
[1m[35m (8.0ms)[0m CREATE INDEX `index_spud_page_liquid_tags_on_tag_name_and_value` ON `spud_page_liquid_tags` (`tag_name`, `value`)
|
106
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121112212113')[0m
|
107
|
+
Migrating to CreateSpudSnippets (20121119025608)
|
108
|
+
[1m[35m (18.4ms)[0m CREATE TABLE `spud_snippets` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `content` text, `format` varchar(255), `content_processed` text, `site_id` int(11) DEFAULT 0, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
109
|
+
[1m[36m (7.3ms)[0m [1mCREATE INDEX `index_spud_snippets_on_site_id` ON `spud_snippets` (`site_id`)[0m
|
110
|
+
[1m[35m (22.3ms)[0m CREATE INDEX `index_spud_snippets_on_name` ON `spud_snippets` (`name`)
|
111
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121119025608')[0m
|
112
|
+
Migrating to ChangeLiquidTagsToPolymorphic (20121119030136)
|
113
|
+
[1m[35m (0.7ms)[0m SHOW COLUMNS FROM `spud_page_liquid_tags` LIKE 'spud_page_partial_id'
|
114
|
+
[1m[36m (27.0ms)[0m [1mALTER TABLE `spud_page_liquid_tags` CHANGE `spud_page_partial_id` `attachment_id` int(11) DEFAULT NULL[0m
|
115
|
+
[1m[35m (17.5ms)[0m ALTER TABLE `spud_page_liquid_tags` ADD `attachment_type` varchar(255)
|
116
|
+
[1m[36m (13.8ms)[0m [1mCREATE INDEX `index_spud_page_liquid_tags_on_attachment_type_and_attachment_id` ON `spud_page_liquid_tags` (`attachment_type`, `attachment_id`)[0m
|
117
|
+
[1m[35mSpudPageLiquidTag Load (0.1ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags`
|
118
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20121119030136')[0m
|
119
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
120
|
+
Connecting to database specified by database.yml
|
121
|
+
Creating scope :public. Overwriting existing method SpudPage.public.
|
122
|
+
[1m[36m (1.6ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
123
|
+
[1m[35m (0.3ms)[0m DROP DATABASE IF EXISTS `spud_cms_test`
|
124
|
+
[1m[36m (0.2ms)[0m [1mCREATE DATABASE `spud_cms_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`[0m
|
125
|
+
[1m[35m (51.7ms)[0m CREATE TABLE `spud_admin_permissions` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `name` varchar(255), `access` tinyint(1), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `scope` varchar(255)) ENGINE=InnoDB
|
126
|
+
[1m[36m (11.7ms)[0m [1mCREATE TABLE `spud_menu_items` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `parent_type` varchar(255), `parent_id` int(11), `item_type` int(11), `spud_page_id` int(11), `menu_order` int(11) DEFAULT 0, `url` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `name` varchar(255), `spud_menu_id` int(11), `classes` varchar(255)) ENGINE=InnoDB[0m
|
127
|
+
[1m[35m (10.3ms)[0m CREATE INDEX `index_spud_menu_items_on_menu_order` ON `spud_menu_items` (`menu_order`)
|
128
|
+
[1m[36m (14.0ms)[0m [1mCREATE INDEX `index_spud_menu_items_on_parent_type_and_parent_id` ON `spud_menu_items` (`parent_type`, `parent_id`)[0m
|
129
|
+
[1m[35m (19.8ms)[0m CREATE INDEX `index_spud_menu_items_on_spud_menu_id` ON `spud_menu_items` (`spud_menu_id`)
|
130
|
+
[1m[36m (16.8ms)[0m [1mCREATE TABLE `spud_menus` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `description` text, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `site_id` int(11) DEFAULT 0 NOT NULL) ENGINE=InnoDB[0m
|
131
|
+
[1m[35m (6.5ms)[0m CREATE INDEX `index_spud_menus_on_site_id` ON `spud_menus` (`site_id`)
|
132
|
+
[1m[36m (11.8ms)[0m [1mCREATE TABLE `spud_page_liquid_tags` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `attachment_id` int(11), `tag_name` varchar(255), `value` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `attachment_type` varchar(255)) ENGINE=InnoDB[0m
|
133
|
+
[1m[35m (7.1ms)[0m CREATE INDEX `index_spud_page_liquid_tags_on_attachment_type_and_attachment_id` ON `spud_page_liquid_tags` (`attachment_type`, `attachment_id`)
|
134
|
+
[1m[36m (14.2ms)[0m [1mCREATE INDEX `index_spud_page_liquid_tags_on_tag_name_and_value` ON `spud_page_liquid_tags` (`tag_name`, `value`)[0m
|
135
|
+
[1m[35m (14.7ms)[0m CREATE TABLE `spud_page_partial_revisions` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `content` text, `format` varchar(255), `spud_page_id` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
136
|
+
[1m[36m (7.0ms)[0m [1mCREATE INDEX `revision_idx` ON `spud_page_partial_revisions` (`spud_page_id`, `name`)[0m
|
137
|
+
[1m[35m (11.2ms)[0m CREATE TABLE `spud_page_partials` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `spud_page_id` int(11), `name` varchar(255), `content` text, `format` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `symbol_name` varchar(255), `content_processed` text) ENGINE=InnoDB
|
138
|
+
[1m[36m (6.9ms)[0m [1mCREATE INDEX `index_spud_page_partials_on_spud_page_id` ON `spud_page_partials` (`spud_page_id`)[0m
|
139
|
+
[1m[35m (11.0ms)[0m CREATE TABLE `spud_pages` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `url_name` varchar(255), `publish_at` datetime, `created_by` int(11), `updated_by` int(11), `format` varchar(255) DEFAULT 'html', `spud_page_id` int(11), `meta_description` text, `meta_keywords` varchar(255), `page_order` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `visibility` int(11) DEFAULT 0, `published` tinyint(1) DEFAULT 1, `use_custom_url_name` tinyint(1) DEFAULT 0, `notes` text, `site_id` int(11) DEFAULT 0 NOT NULL, `layout` varchar(255)) ENGINE=InnoDB
|
140
|
+
[1m[36m (6.9ms)[0m [1mCREATE INDEX `index_spud_pages_on_site_id` ON `spud_pages` (`site_id`)[0m
|
141
|
+
[1m[35m (10.7ms)[0m CREATE TABLE `spud_permalinks` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `url_name` varchar(255), `attachment_type` varchar(255), `attachment_id` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `site_id` int(11)) ENGINE=InnoDB
|
142
|
+
[1m[36m (7.0ms)[0m [1mCREATE INDEX `index_spud_permalinks_on_attachment_type_and_attachment_id` ON `spud_permalinks` (`attachment_type`, `attachment_id`)[0m
|
143
|
+
[1m[35m (13.1ms)[0m CREATE INDEX `index_spud_permalinks_on_site_id` ON `spud_permalinks` (`site_id`)
|
144
|
+
[1m[36m (17.6ms)[0m [1mCREATE TABLE `spud_snippets` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `content` text, `format` varchar(255), `content_processed` text, `site_id` int(11) DEFAULT 0, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
145
|
+
[1m[35m (7.7ms)[0m CREATE INDEX `index_spud_snippets_on_name` ON `spud_snippets` (`name`)
|
146
|
+
[1m[36m (21.8ms)[0m [1mCREATE INDEX `index_spud_snippets_on_site_id` ON `spud_snippets` (`site_id`)[0m
|
147
|
+
[1m[35m (16.5ms)[0m CREATE TABLE `spud_user_settings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `spud_user_id` int(11), `key` varchar(255), `value` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
148
|
+
[1m[36m (5.6ms)[0m [1mCREATE TABLE `spud_users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `first_name` varchar(255), `last_name` varchar(255), `super_admin` tinyint(1), `login` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `crypted_password` varchar(255) NOT NULL, `password_salt` varchar(255) NOT NULL, `persistence_token` varchar(255) NOT NULL, `single_access_token` varchar(255) NOT NULL, `perishable_token` varchar(255) NOT NULL, `login_count` int(11) DEFAULT 0 NOT NULL, `failed_login_count` int(11) DEFAULT 0 NOT NULL, `last_request_at` datetime, `current_login_at` datetime, `last_login_at` datetime, `current_login_ip` varchar(255), `last_login_ip` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `time_zone` varchar(255)) ENGINE=InnoDB[0m
|
149
|
+
[1m[35m (7.0ms)[0m CREATE INDEX `index_spud_users_on_email` ON `spud_users` (`email`)
|
150
|
+
[1m[36m (17.8ms)[0m [1mCREATE INDEX `index_spud_users_on_login` ON `spud_users` (`login`)[0m
|
151
|
+
[1m[35m (15.4ms)[0m CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
|
152
|
+
[1m[36m (7.7ms)[0m [1mCREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)[0m
|
153
|
+
[1m[35m (0.2ms)[0m SELECT version FROM `schema_migrations`
|
154
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20121119030136')[0m
|
155
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120307002859')
|
156
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120307002860')[0m
|
157
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120307003559')
|
158
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120610123555')[0m
|
159
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120610123556')
|
160
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120610123557')[0m
|
161
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120610123615')
|
162
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120101192412')[0m
|
163
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120101193138')
|
164
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120101193255')[0m
|
165
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120101194124')
|
166
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120103034659')[0m
|
167
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120104194032')
|
168
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120107181337')[0m
|
169
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120111134754')
|
170
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120118141852')[0m
|
171
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120126232428')
|
172
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120128163601')[0m
|
173
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120329132314')
|
174
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120329132322')[0m
|
175
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120329132330')
|
176
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120510195151')[0m
|
177
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120911190030')
|
178
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120912121313')[0m
|
179
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20121016233715')
|
180
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20121112151110')[0m
|
181
|
+
[1m[35m (0.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20121112212113')
|
182
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20121119025608')[0m
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,139 +1,139 @@
|
|
1
1
|
Connecting to database specified by database.yml
|
2
2
|
Creating scope :public. Overwriting existing method SpudPage.public.
|
3
|
-
[1m[36m (0.
|
4
|
-
[1m[35m (0.
|
5
|
-
[1m[36m (
|
6
|
-
[1m[35m (
|
7
|
-
[1m[36m (
|
8
|
-
[1m[35m (
|
9
|
-
[1m[36m (
|
10
|
-
[1m[35m (
|
11
|
-
[1m[36m (
|
12
|
-
[1m[35m (
|
13
|
-
[1m[36m (
|
14
|
-
[1m[35m (
|
15
|
-
[1m[36m (
|
16
|
-
[1m[35m (
|
17
|
-
[1m[36m (
|
3
|
+
[1m[36m (0.2ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
4
|
+
[1m[35m (0.2ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
5
|
+
[1m[36m (0.1ms)[0m [1mSELECT DATABASE() as db[0m
|
6
|
+
[1m[35m (0.8ms)[0m select table_name from information_schema.views where table_schema = 'spud_cms_test'
|
7
|
+
[1m[36m (0.6ms)[0m [1mTRUNCATE TABLE `spud_admin_permissions`;[0m
|
8
|
+
[1m[35m (0.7ms)[0m TRUNCATE TABLE `spud_menu_items`;
|
9
|
+
[1m[36m (0.6ms)[0m [1mTRUNCATE TABLE `spud_menus`;[0m
|
10
|
+
[1m[35m (0.6ms)[0m TRUNCATE TABLE `spud_page_liquid_tags`;
|
11
|
+
[1m[36m (0.6ms)[0m [1mTRUNCATE TABLE `spud_page_partial_revisions`;[0m
|
12
|
+
[1m[35m (0.6ms)[0m TRUNCATE TABLE `spud_page_partials`;
|
13
|
+
[1m[36m (0.6ms)[0m [1mTRUNCATE TABLE `spud_pages`;[0m
|
14
|
+
[1m[35m (0.5ms)[0m TRUNCATE TABLE `spud_permalinks`;
|
15
|
+
[1m[36m (0.5ms)[0m [1mTRUNCATE TABLE `spud_snippets`;[0m
|
16
|
+
[1m[35m (0.4ms)[0m TRUNCATE TABLE `spud_user_settings`;
|
17
|
+
[1m[36m (0.7ms)[0m [1mTRUNCATE TABLE `spud_users`;[0m
|
18
18
|
[1m[35m (0.1ms)[0m SET FOREIGN_KEY_CHECKS = 1
|
19
|
-
[1m[36m (0.
|
20
|
-
[1m[35m (0.
|
19
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
20
|
+
[1m[35m (0.1ms)[0m BEGIN
|
21
21
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
22
|
-
[1m[35mSpudPage Load (1.
|
22
|
+
[1m[35mSpudPage Load (1.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
23
23
|
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page1' LIMIT 1[0m
|
24
|
-
[1m[35mSpudPage Exists (
|
25
|
-
[1m[36mSpudPage Exists (0.
|
26
|
-
[1m[35mSQL (0.
|
24
|
+
[1m[35mSpudPage Exists (0.4ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page1' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
25
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page1' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
26
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:26', NULL, 'html', NULL, NULL, NULL, 'Page1', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:26', NULL, 'page1', 0, 0)
|
27
27
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
28
28
|
Processing by PagesController#show as HTML
|
29
29
|
Parameters: {"id"=>"page1"}
|
30
|
-
[1m[35mSpudPage Load (
|
31
|
-
[1m[36mSpudPagePartial Load (0.
|
32
|
-
Rendered /Users/
|
33
|
-
Completed 200 OK in
|
30
|
+
[1m[35mSpudPage Load (0.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'page1' LIMIT 1
|
31
|
+
[1m[36mSpudPagePartial Load (0.1ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (1)[0m
|
32
|
+
Rendered /Users/davidestes/projects/spud_rails/spud_cms/app/views/pages/show.html.erb within layouts/application (24.1ms)
|
33
|
+
Completed 200 OK in 50ms (Views: 32.3ms | ActiveRecord: 1.8ms)
|
34
34
|
[1m[35m (0.5ms)[0m ROLLBACK
|
35
|
-
[1m[36m (0.
|
35
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
36
36
|
[1m[35m (0.0ms)[0m BEGIN
|
37
37
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
38
38
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
39
|
-
[1m[36mSpudPage Load (0.
|
39
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
40
40
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'home' LIMIT 1
|
41
41
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'home' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
42
|
-
[1m[35mSpudPage Exists (0.
|
43
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
44
|
-
[1m[35m (0.
|
42
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'home' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
43
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:26', NULL, 'html', NULL, NULL, NULL, 'home', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:26', NULL, 'home', 0, 0)[0m
|
44
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
45
45
|
Processing by PagesController#show as HTML
|
46
46
|
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'home' LIMIT 1[0m
|
47
|
-
[1m[35mSpudPagePartial Load (0.
|
48
|
-
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.
|
49
|
-
[1m[36m (0.
|
47
|
+
[1m[35mSpudPagePartial Load (0.1ms)[0m SELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (2)
|
48
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.4ms)
|
49
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
50
50
|
[1m[35m (0.1ms)[0m ROLLBACK
|
51
51
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
52
52
|
[1m[35m (0.0ms)[0m BEGIN
|
53
53
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
54
|
-
[1m[35mSpudPage Load (0.
|
55
|
-
[1m[36mSpudPermalink Load (0.
|
54
|
+
[1m[35mSpudPage Load (0.4ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
55
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about' LIMIT 1[0m
|
56
56
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
57
|
-
[1m[36mSpudPage Exists (0.
|
58
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
59
|
-
[1m[36m (0.
|
60
|
-
[1m[35m (0.
|
57
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
58
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:26', NULL, 'html', NULL, NULL, NULL, 'about', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:26', NULL, 'about', 0, 0)
|
59
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
60
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
61
61
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 3)[0m
|
62
62
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about-us' LIMIT 1
|
63
63
|
[1m[36mSpudPermalink Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'about' AND `spud_permalinks`.`site_id` = 0) LIMIT 1[0m
|
64
|
-
[1m[35mSQL (0.
|
64
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (3, 'SpudPage', '2013-03-09 02:53:26', 0, '2013-03-09 02:53:26', 'about')
|
65
65
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about us' AND `spud_pages`.`id` != 3 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
66
66
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about-us' AND `spud_pages`.`id` != 3 AND `spud_pages`.`site_id` = 0) LIMIT 1
|
67
|
-
[1m[36m (0.
|
67
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_pages` SET `name` = 'about us', `url_name` = 'about-us', `updated_at` = '2013-03-09 02:53:26' WHERE `spud_pages`.`id` = 3[0m
|
68
68
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
69
69
|
Processing by PagesController#show as HTML
|
70
70
|
Parameters: {"id"=>"about"}
|
71
|
-
[1m[36mSpudPage Load (0.
|
71
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'about' LIMIT 1[0m
|
72
72
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`url_name` = 'about' LIMIT 1
|
73
|
-
[1m[36mSpudPage Load (0.
|
73
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 3 LIMIT 1[0m
|
74
74
|
Redirected to http://test.host/about-us
|
75
|
-
Completed 301 Moved Permanently in
|
76
|
-
[1m[35m (0.
|
77
|
-
[1m[36m (0.
|
78
|
-
[1m[35m (0.
|
75
|
+
Completed 301 Moved Permanently in 6ms (ActiveRecord: 0.7ms)
|
76
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
77
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
78
|
+
[1m[35m (0.1ms)[0m BEGIN
|
79
79
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
80
|
-
[1m[35m (0.
|
81
|
-
[1m[36mSpudPage Load (0.
|
82
|
-
[1m[35mSpudPermalink Load (0.
|
80
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
81
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
82
|
+
[1m[35mSpudPermalink Load (0.3ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about' LIMIT 1
|
83
83
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
84
84
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
85
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
85
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'about', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'about', 0, 1)[0m
|
86
86
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
87
87
|
Processing by PagesController#show as HTML
|
88
88
|
Parameters: {"id"=>"about"}
|
89
89
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'about' LIMIT 1[0m
|
90
90
|
[1m[35mSpudPagePartial Load (0.2ms)[0m SELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (4)
|
91
91
|
Redirected to http://test.host/spud/user_session/new
|
92
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.
|
92
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
93
93
|
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
94
|
-
[1m[35m (0.
|
95
|
-
[1m[36m (0.
|
96
|
-
[1m[35m (0.
|
97
|
-
[1m[36m (0.
|
98
|
-
[1m[35mSpudUser Exists (0.
|
94
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
95
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
96
|
+
[1m[35m (0.1ms)[0m BEGIN
|
97
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
98
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
99
99
|
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
100
|
-
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
101
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
102
|
-
[1m[35mSQL (0.
|
103
|
-
[1m[36m (0.
|
104
|
-
[1m[35m (0.
|
105
|
-
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
100
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '01f22bdef4d61125058adde84d058dd7eed5967147b6c386c4cccc202f16716cf8155bc502d838ddea6d9bd653c2630d4ebd0410d5b0f28a7fd2aa074776d028' LIMIT 1
|
101
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'O4nbLX5qNxcPQt5lfu6' LIMIT 1[0m
|
102
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '24f85f03123e8ffc71e0d7c714f3e1d377f4230fbf972282a27f4d9bbc9ded593a995d96c22e0321413a569c385719ff8564f8d4288c63a3808dfb458c3f3f51', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'LcNcOR60A0NB4WCwwa90', '7jjuhjmhyyu6Sks0JR', '01f22bdef4d61125058adde84d058dd7eed5967147b6c386c4cccc202f16716cf8155bc502d838ddea6d9bd653c2630d4ebd0410d5b0f28a7fd2aa074776d028', 'O4nbLX5qNxcPQt5lfu6', 1, NULL, '2013-03-09 02:53:27')
|
103
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
104
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
105
|
+
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'MFBaUDwMm3S1ICM8N3QX', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 1[0m
|
106
106
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
107
107
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
108
|
-
[1m[35mSpudPage Load (0.
|
108
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
109
109
|
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about' LIMIT 1[0m
|
110
110
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
111
|
-
[1m[36mSpudPage Exists (0.
|
112
|
-
[1m[35mSQL (0.
|
111
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
112
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'about', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'about', 0, 1)
|
113
113
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
114
114
|
Processing by PagesController#show as HTML
|
115
115
|
Parameters: {"id"=>"about"}
|
116
116
|
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1 LIMIT 1
|
117
|
-
[1m[36mSpudPage Load (0.
|
117
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'about' LIMIT 1[0m
|
118
118
|
[1m[35mSpudPagePartial Load (0.2ms)[0m SELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (5)
|
119
|
-
Completed 200 OK in
|
119
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms)
|
120
120
|
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
121
121
|
[1m[35m (0.1ms)[0m ROLLBACK
|
122
122
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
123
123
|
[1m[35m (0.0ms)[0m BEGIN
|
124
|
-
[1m[36m (0.
|
124
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
125
125
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
126
|
-
[1m[36mSpudPermalink Load (0.
|
127
|
-
[1m[35mSpudPage Exists (0.
|
128
|
-
[1m[36mSpudPage Exists (0.
|
129
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
126
|
+
[1m[36mSpudPermalink Load (0.3ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about' LIMIT 1[0m
|
127
|
+
[1m[35mSpudPage Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
128
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
129
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'about', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'about', 0, 0)
|
130
130
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
131
131
|
Processing by PagesController#show as HTML
|
132
132
|
Parameters: {"id"=>"about"}
|
133
133
|
[1m[35mSpudPage Load (0.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'about' AND `spud_pages`.`site_id` = 1 LIMIT 1
|
134
|
-
[1m[36mSpudPermalink Load (0.
|
135
|
-
Completed 404 Not Found in 5ms (Views: 2.
|
136
|
-
[1m[35m (0.
|
134
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`url_name` = 'about' AND `spud_permalinks`.`site_id` = 1 LIMIT 1[0m
|
135
|
+
Completed 404 Not Found in 5ms (Views: 2.2ms | ActiveRecord: 0.5ms)
|
136
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
137
137
|
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
138
138
|
[1m[35m (0.0ms)[0m BEGIN
|
139
139
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
@@ -141,326 +141,326 @@ Completed 404 Not Found in 5ms (Views: 2.4ms | ActiveRecord: 0.6ms)
|
|
141
141
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
142
142
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about' LIMIT 1
|
143
143
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
144
|
-
[1m[35mSpudPage Exists (0.
|
145
|
-
[1m[36mSQL (0.
|
144
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
145
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'about', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'about', 0, 0)[0m
|
146
146
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
147
|
-
[1m[36m (0.
|
147
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
148
148
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 1
|
149
149
|
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 1 AND `spud_permalinks`.`url_name` = 'about' LIMIT 1[0m
|
150
|
-
[1m[35mSpudPage Exists (0.
|
150
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about' AND `spud_pages`.`site_id` = 1 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
151
151
|
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about' AND `spud_pages`.`site_id` = 1) LIMIT 1[0m
|
152
|
-
[1m[35mSQL (0.
|
153
|
-
[1m[36m (0.
|
152
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'about', NULL, NULL, NULL, 1, 1, NULL, '2013-03-09 02:53:27', NULL, 'about', 0, 0)
|
153
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
154
154
|
Processing by PagesController#show as HTML
|
155
155
|
Parameters: {"id"=>"about"}
|
156
156
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'about' AND `spud_pages`.`site_id` = 1 LIMIT 1
|
157
157
|
[1m[36mSpudPagePartial Load (0.2ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (8)[0m
|
158
|
-
Completed 200 OK in 4ms (Views: 0.
|
159
|
-
[1m[35m (0.
|
160
|
-
[1m[36m (0.
|
161
|
-
[1m[35m (0.
|
162
|
-
[1m[36m (0.
|
158
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.4ms)
|
159
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
160
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
161
|
+
[1m[35m (0.1ms)[0m BEGIN
|
162
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
163
163
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
164
|
-
[1m[36mSpudPage Load (0.
|
165
|
-
[1m[35mSpudPermalink Load (0.
|
164
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
165
|
+
[1m[35mSpudPermalink Load (0.4ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'home' LIMIT 1
|
166
166
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'home' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
167
|
-
[1m[35mSpudPage Exists (0.
|
168
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
167
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'home' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
168
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'home', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'home', 0, 0)[0m
|
169
169
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
170
170
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
171
171
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 1
|
172
172
|
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 1 AND `spud_permalinks`.`url_name` = 'home' LIMIT 1[0m
|
173
|
-
[1m[35mSpudPage Exists (0.
|
174
|
-
[1m[36mSpudPage Exists (0.
|
175
|
-
[1m[35mSQL (0.
|
173
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'home' AND `spud_pages`.`site_id` = 1 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
174
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'home' AND `spud_pages`.`site_id` = 1) LIMIT 1[0m
|
175
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'home', NULL, NULL, NULL, 1, 1, NULL, '2013-03-09 02:53:27', NULL, 'home', 0, 0)
|
176
176
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
177
177
|
Processing by PagesController#show as HTML
|
178
|
-
[1m[35mSpudPage Load (0.
|
179
|
-
[1m[36mSpudPagePartial Load (0.
|
180
|
-
Completed 200 OK in
|
181
|
-
[1m[35m (0.
|
182
|
-
[1m[36m (0.
|
178
|
+
[1m[35mSpudPage Load (0.4ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`url_name` = 'home' AND `spud_pages`.`site_id` = 1 LIMIT 1
|
179
|
+
[1m[36mSpudPagePartial Load (0.2ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (10)[0m
|
180
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.6ms)
|
181
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
182
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
183
183
|
[1m[35m (0.0ms)[0m BEGIN
|
184
184
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
185
|
-
[1m[35m (0.
|
186
|
-
[1m[36m (0.
|
185
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
186
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
187
187
|
[1m[35m (0.0ms)[0m BEGIN
|
188
188
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
189
|
-
[1m[35m (0.
|
189
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
190
190
|
[1m[36mSpudUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
191
|
-
[1m[35mSpudUser Exists (0.
|
192
|
-
[1m[36mSpudUser Exists (0.
|
193
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
194
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
195
|
-
[1m[35m (0.
|
196
|
-
[1m[36m (0.
|
197
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
198
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
199
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
200
|
-
[1m[36mSpudMenu Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu1' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
201
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-02-20 13:04:27', NULL, 'Menu1', 0, '2013-02-20 13:04:27')
|
191
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
192
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'aa91baaae09a054d99eb2c3a338ebdc81ddd937002ebd56ed0b5fbf84fec1ca43a7d184903d615ec42ca95352da8d086ca910ab86f74e239982faf5bda844a24' LIMIT 1[0m
|
193
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'WrfNqX2fqszi48FA5F' LIMIT 1
|
194
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '6d0eb951b1a36b213f2395b8f519f100bb5a1b1b355ce31ee1a5f08ba7a55368eb2fababa74ddf68c81037b774d23cd914c2f337a289f6e9f6cba8c83323934e', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'r8TsVaGpWS1ENGwBb3CF', 'UP80MNB9jFrZhsVtOdfk', 'aa91baaae09a054d99eb2c3a338ebdc81ddd937002ebd56ed0b5fbf84fec1ca43a7d184903d615ec42ca95352da8d086ca910ab86f74e239982faf5bda844a24', 'WrfNqX2fqszi48FA5F', 1, NULL, '2013-03-09 02:53:27')[0m
|
195
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
196
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
197
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = '3sREnEvBbTnDOyYt2BJY', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 2
|
202
198
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
203
|
-
[1m[35m (0.
|
204
|
-
[1m[
|
199
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
200
|
+
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu1' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
201
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu1', 0, '2013-03-09 02:53:27')
|
202
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
203
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
204
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 1', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)[0m
|
205
205
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
206
|
-
[1m[36m (0.
|
207
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
206
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
207
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 2', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)
|
208
208
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
209
209
|
Processing by Spud::Admin::MenuItemsController#index as HTML
|
210
210
|
Parameters: {"menu_id"=>"1"}
|
211
211
|
[1m[35mSpudUser Load (0.3ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 2 LIMIT 1
|
212
212
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 1 LIMIT 1[0m
|
213
|
-
Completed 200 OK in 9ms (Views: 2.
|
213
|
+
Completed 200 OK in 9ms (Views: 2.2ms | ActiveRecord: 0.5ms)
|
214
214
|
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `spud_menu_items` WHERE `spud_menu_items`.`parent_id` = 1 AND `spud_menu_items`.`parent_type` = 'SpudMenu'
|
215
215
|
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
216
|
-
[1m[35m (0.
|
217
|
-
[1m[36m (0.
|
218
|
-
[1m[35m (0.
|
219
|
-
[1m[36m (0.
|
220
|
-
[1m[35mSpudUser Exists (0.
|
221
|
-
[1m[36mSpudUser Exists (0.
|
222
|
-
[1m[35mSpudUser Exists (0.
|
223
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
224
|
-
[1m[35mSQL (0.
|
225
|
-
[1m[36m (0.
|
226
|
-
[1m[35m (0.
|
227
|
-
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
216
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
217
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
218
|
+
[1m[35m (0.0ms)[0m BEGIN
|
219
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
220
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
221
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
222
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '1e51d3816f87a86041d677265c794e7af4f5fd51e4273f8c57f6de28bf9d2ee07c50c5ca8a9b931b802b50f1a5a25227cf51e13e0bbf735022e627a531b69da5' LIMIT 1
|
223
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'AeBDWSOXU4medKWPw5MK' LIMIT 1[0m
|
224
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'e46201519a1b323ff2ae6f219097ccbab889e7b8ff69ef50c35eb4e31de622e93cfe63426e3b4b5733937eab84bc3c496c986c1c2c7c5efb71d137d8d1f19bf0', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'sWZFIDLpFz1o6Dkitsm4', 'ppexf3aOoZjoiiy7E1rv', '1e51d3816f87a86041d677265c794e7af4f5fd51e4273f8c57f6de28bf9d2ee07c50c5ca8a9b931b802b50f1a5a25227cf51e13e0bbf735022e627a531b69da5', 'AeBDWSOXU4medKWPw5MK', 1, NULL, '2013-03-09 02:53:27')
|
225
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
226
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
227
|
+
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'BzZHmp3Q4Tl3EszeWLq', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 3[0m
|
228
228
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
229
229
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
230
230
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu2' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
231
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
232
|
-
[1m[35m (0.
|
231
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu2', 0, '2013-03-09 02:53:27')[0m
|
232
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
233
233
|
Processing by Spud::Admin::MenuItemsController#index as HTML
|
234
234
|
Parameters: {"menu_id"=>"3"}
|
235
235
|
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 3 LIMIT 1[0m
|
236
|
-
[1m[35mSpudMenu Load (0.
|
236
|
+
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 3 LIMIT 1
|
237
237
|
Redirected to http://test.host/spud/admin/menus
|
238
238
|
Filter chain halted as :load_menu rendered or redirected
|
239
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.
|
240
|
-
[1m[36m (
|
241
|
-
[1m[35m (0.
|
242
|
-
[1m[36m (0.
|
239
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
240
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
241
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
242
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
243
243
|
[1m[35m (0.0ms)[0m BEGIN
|
244
244
|
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
245
245
|
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
246
|
-
[1m[36mSpudUser Exists (0.
|
247
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
248
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
249
|
-
[1m[35mSQL (0.
|
246
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
247
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '908bca40710b9965d709340cd2a84c6b95cc4704ead2be31319aa4839de64477158759f59c5823cb9ccf2815a3cdc3fa2811dfd88f812c0b89c7bc2bfdda1ffe' LIMIT 1
|
248
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '6Yc2uTHgAoREltW7N0ei' LIMIT 1[0m
|
249
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'a5d3ea4adddef7222326c0967e2071153d89f989c099040a892c2113382da9f0fbe006c233add3859c1a2f6bac8b5d71bc8f62af8db300f6d84e8cf7ff4f1050', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'ExUEi96qdxQBFHYtr0CT', 'rXZEEwSV4Gp4NaoAoSL', '908bca40710b9965d709340cd2a84c6b95cc4704ead2be31319aa4839de64477158759f59c5823cb9ccf2815a3cdc3fa2811dfd88f812c0b89c7bc2bfdda1ffe', '6Yc2uTHgAoREltW7N0ei', 1, NULL, '2013-03-09 02:53:27')
|
250
250
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
251
|
-
[1m[35m (0.
|
252
|
-
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
251
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
252
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'Ub1T5Kln42DXoz8QvLH', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 4[0m
|
253
253
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
254
254
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
255
255
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu3' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
256
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
256
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu3', 0, '2013-03-09 02:53:27')[0m
|
257
257
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
258
258
|
Processing by Spud::Admin::MenuItemsController#new as HTML
|
259
259
|
Parameters: {"menu_id"=>"3"}
|
260
|
-
[1m[36mSpudUser Load (0.
|
261
|
-
[1m[35mSpudMenu Load (0.
|
262
|
-
Completed 200 OK in
|
263
|
-
[1m[36m (0.
|
264
|
-
[1m[35m (0.
|
265
|
-
[1m[36m (0.
|
260
|
+
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 4 LIMIT 1[0m
|
261
|
+
[1m[35mSpudMenu Load (0.3ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 3 LIMIT 1
|
262
|
+
Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.5ms)
|
263
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
264
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
265
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
266
266
|
[1m[35m (0.0ms)[0m BEGIN
|
267
267
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
268
268
|
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
269
|
-
[1m[36mSpudUser Exists (0.
|
270
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
271
|
-
[1m[36mSpudUser Exists (0.
|
272
|
-
[1m[35mSQL (0.
|
269
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
270
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '2adefd4f4d88b174bbfd0a3f1ef573d521003c51d8d8210c2348ca712ad73a7e9855ba0c5aa3e3b452bc4eaed645475ccfe401149ef7be713e5c078a9fbbe832' LIMIT 1
|
271
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '5FwOfDLff8ZhQVukGnL' LIMIT 1[0m
|
272
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '0f136463d27931e92d854ab107a5608e99e0bca94a2ea1290057fbff253ae87d85c594c8ad8d9fd162e5c725cc9cb20fd300b6f4876785c226ca32a76220f811', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'HHDFrRJju1R7ccSHAHR', 'Lz4ZQE7upKzshtFdxjpz', '2adefd4f4d88b174bbfd0a3f1ef573d521003c51d8d8210c2348ca712ad73a7e9855ba0c5aa3e3b452bc4eaed645475ccfe401149ef7be713e5c078a9fbbe832', '5FwOfDLff8ZhQVukGnL', 1, NULL, '2013-03-09 02:53:27')
|
273
273
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
274
274
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
275
|
-
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
275
|
+
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'G3YWLlckeeRgtpBNFG3', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 5[0m
|
276
276
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
277
|
-
[1m[36m (0.
|
277
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
278
278
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu4' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
279
|
-
[1m[36mSQL (0.
|
279
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu4', 0, '2013-03-09 02:53:27')[0m
|
280
280
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
281
|
-
[1m[36m (0.
|
281
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_menu_items` [0m
|
282
282
|
Processing by Spud::Admin::MenuItemsController#create as HTML
|
283
283
|
Parameters: {"spud_menu_item"=>{"name"=>"Menu Item 3", "parent_type"=>"SpudMenu", "parent_id"=>nil}, "menu_id"=>"4"}
|
284
|
-
[1m[35mSpudUser Load (0.
|
285
|
-
[1m[36mSpudMenu Load (0.
|
284
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 5 LIMIT 1
|
285
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 4 LIMIT 1[0m
|
286
286
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
287
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
287
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 3', 4, 'SpudMenu', 4, NULL, '2013-03-09 02:53:27', NULL)[0m
|
288
288
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
289
289
|
Redirected to http://test.host/spud/admin/menus/4/menu_items
|
290
|
-
Completed 302 Found in
|
291
|
-
[1m[36m (0.
|
292
|
-
[1m[35m (0.
|
293
|
-
[1m[36m (0.
|
294
|
-
[1m[35m (0.
|
295
|
-
[1m[36m (0.
|
296
|
-
[1m[35m (0.
|
290
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
|
291
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_menu_items` [0m
|
292
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
293
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
294
|
+
[1m[35m (0.1ms)[0m BEGIN
|
295
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
296
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
297
297
|
[1m[36mSpudUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
298
298
|
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
299
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
300
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
301
|
-
[1m[36mSQL (0.
|
302
|
-
[1m[35m (0.
|
299
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'ba1a5395b49a2e997b1a548eb339949916800d8d3b1fa6c5010b222463ee407c5409c726423eacf64c6983971fe562eb34602835775617a8a61213c6cdee966d' LIMIT 1[0m
|
300
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'jv6299yV4hmvIhOhwea2' LIMIT 1
|
301
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'bbc416f9a37f0a5d28e907776e479a8ec556fb2491236d031bd7b627decb25f75dbdb7fbc224e1823fc7b2eef26f082f45ae3e0164963f9862787cc8b6e11c48', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'SsErDGKocyHMtlTAfJw', 'MY94u2ZvOekqqBt3oI', 'ba1a5395b49a2e997b1a548eb339949916800d8d3b1fa6c5010b222463ee407c5409c726423eacf64c6983971fe562eb34602835775617a8a61213c6cdee966d', 'jv6299yV4hmvIhOhwea2', 1, NULL, '2013-03-09 02:53:27')[0m
|
302
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
303
303
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
304
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
304
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'CIAOf8qkLVbC2yaMVH44', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 6
|
305
305
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
306
306
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
307
|
-
[1m[36mSpudMenu Exists (0.
|
308
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
309
|
-
[1m[36m (0.
|
307
|
+
[1m[36mSpudMenu Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu5' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
308
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu5', 0, '2013-03-09 02:53:27')
|
309
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
310
310
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_menu_items`
|
311
311
|
Processing by Spud::Admin::MenuItemsController#create as HTML
|
312
312
|
Parameters: {"spud_menu_item"=>{"name"=>nil, "parent_type"=>"SpudMenu", "parent_id"=>nil}, "menu_id"=>"5"}
|
313
|
-
[1m[36mSpudUser Load (0.
|
313
|
+
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 6 LIMIT 1[0m
|
314
314
|
[1m[35mSpudMenu Load (0.3ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 5 LIMIT 1
|
315
315
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
316
|
-
[1m[35m (0.
|
317
|
-
Completed 200 OK in
|
316
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_2
|
317
|
+
Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
318
318
|
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_menu_items` [0m
|
319
|
-
[1m[35m (0.
|
319
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
320
320
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
321
321
|
[1m[35m (0.0ms)[0m BEGIN
|
322
322
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
323
323
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
324
324
|
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
325
|
-
[1m[35mSpudUser Exists (0.
|
326
|
-
[1m[36mSpudUser Exists (0.
|
327
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
328
|
-
[1m[36mSQL (0.
|
329
|
-
[1m[35m (0.
|
330
|
-
[1m[36m (0.
|
331
|
-
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
325
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
326
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '0d3bffca470d6719b59f4630776494da8859eb80e730167c13fda11ff628836ce840390dc5330b3129f2a65d9a49093e343c73dad2e9241c5f3d4e897deb4e7f' LIMIT 1[0m
|
327
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'pYj9a5F3F5gEOANTHoe' LIMIT 1
|
328
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '763d18d9b15894e0df675cdd1fa60417d6b3d291a1c233acbc83aea147683eeef4f288fff595e4266504fcc62bcd5f74bd172959342c0be100898922dc344fbf', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'syILERcWM1wiublGc3Gr', 'uX6rZuhaC7t57CHT2Vus', '0d3bffca470d6719b59f4630776494da8859eb80e730167c13fda11ff628836ce840390dc5330b3129f2a65d9a49093e343c73dad2e9241c5f3d4e897deb4e7f', 'pYj9a5F3F5gEOANTHoe', 1, NULL, '2013-03-09 02:53:27')[0m
|
329
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
330
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_2[0m
|
331
|
+
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'KcR1QWYQiCiAdjfpAVB', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 7
|
332
332
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
333
333
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
334
334
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu6' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
335
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
336
|
-
[1m[36m (0.
|
335
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu6', 0, '2013-03-09 02:53:27')
|
336
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
337
337
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
338
|
-
[1m[36mSQL (0.
|
339
|
-
[1m[35m (0.
|
338
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 4', 6, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)[0m
|
339
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
340
340
|
Processing by Spud::Admin::MenuItemsController#create as HTML
|
341
341
|
Parameters: {"spud_menu_item"=>{"name"=>"Menu Item 5", "parent_type"=>"SpudMenu", "parent_id"=>nil, "menu_order"=>nil}, "menu_id"=>"6"}
|
342
|
-
[1m[36mSpudUser Load (0.
|
342
|
+
[1m[36mSpudUser Load (0.3ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 7 LIMIT 1[0m
|
343
343
|
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 6 LIMIT 1
|
344
344
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 6 LIMIT 1[0m
|
345
345
|
[1m[35mSpudMenuItem Load (0.3ms)[0m SELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`parent_id` = 6 AND `spud_menu_items`.`parent_type` = 'SpudMenu' ORDER BY menu_order desc LIMIT 1
|
346
|
-
[1m[36m (0.
|
347
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
348
|
-
[1m[36m (0.
|
346
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
347
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 1, 'Menu Item 5', 6, 'SpudMenu', 6, NULL, '2013-03-09 02:53:27', NULL)
|
348
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
349
349
|
Redirected to http://test.host/spud/admin/menus/6/menu_items
|
350
350
|
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
351
|
-
[1m[35m (0.
|
352
|
-
[1m[36m (0.
|
351
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
352
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
353
353
|
[1m[35m (0.0ms)[0m BEGIN
|
354
354
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
355
|
-
[1m[35m (0.
|
356
|
-
[1m[36mSpudUser Exists (0.
|
357
|
-
[1m[35mSpudUser Exists (0.
|
358
|
-
[1m[36mSpudUser Exists (0.
|
359
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
360
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
355
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
356
|
+
[1m[36mSpudUser Exists (0.4ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
357
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
358
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '23df5073e9bc87f07116a6bc5a406cbfb59381484292653e4468ff5eee1b4ed5d1e75a40ff073c0b2648d8395498c249d8e81587098805b7fe98255c7611507d' LIMIT 1[0m
|
359
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'mIKf07tV7L5NCGhg5ef' LIMIT 1
|
360
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '584d0645695d9091bfee7e8adc9777051d0e00a2fd364bda966998520dd11804685fc70b155ea12bd5a8361843d45c9af85bd0639d813bd4f82545ecbbde0076', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'KglI8dpfG4TuBAv3GJ', 'jbszlBhJFMOAdirv2dJa', '23df5073e9bc87f07116a6bc5a406cbfb59381484292653e4468ff5eee1b4ed5d1e75a40ff073c0b2648d8395498c249d8e81587098805b7fe98255c7611507d', 'mIKf07tV7L5NCGhg5ef', 1, NULL, '2013-03-09 02:53:27')[0m
|
361
361
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
362
362
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
363
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
364
|
-
[1m[36m (0.
|
365
|
-
[1m[35m (0.
|
363
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'Kbcr72yuq6VE8ZB9OMvu', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 8
|
364
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
365
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
366
366
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu7' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
367
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
367
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu7', 0, '2013-03-09 02:53:27')
|
368
368
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
369
369
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
370
370
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
371
371
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page2' LIMIT 1
|
372
372
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page2' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
373
373
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page2' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
374
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
375
|
-
[1m[35m (0.
|
374
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'Page2', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'page2', 0, 0)[0m
|
375
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
376
376
|
Processing by Spud::Admin::MenuItemsController#create as HTML
|
377
377
|
Parameters: {"spud_menu_item"=>{"name"=>nil, "parent_type"=>"SpudMenu", "parent_id"=>"1", "spud_page_id"=>"11"}, "menu_id"=>"7"}
|
378
|
-
[1m[36mSpudUser Load (0.
|
378
|
+
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 8 LIMIT 1[0m
|
379
379
|
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 7 LIMIT 1
|
380
380
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 11 LIMIT 1[0m
|
381
381
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
382
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
382
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Page2', 1, 'SpudMenuItem', 7, 11, '2013-03-09 02:53:27', NULL)[0m
|
383
383
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
384
384
|
Redirected to http://test.host/spud/admin/menus/7/menu_items
|
385
|
-
Completed 302 Found in
|
386
|
-
[1m[36m (
|
385
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
386
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
387
387
|
[1m[35m (0.1ms)[0m ROLLBACK
|
388
|
-
[1m[36m (0.
|
388
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
389
389
|
[1m[35m (0.0ms)[0m BEGIN
|
390
390
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
391
391
|
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
392
|
-
[1m[36mSpudUser Exists (0.
|
393
|
-
[1m[35mSpudUser Exists (0.
|
394
|
-
[1m[36mSpudUser Exists (0.
|
395
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
396
|
-
[1m[36m (0.
|
397
|
-
[1m[35m (0.
|
398
|
-
[1m[36m (0.
|
392
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
393
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '23762708cca8e81862e1993f5101c3c43be20e21d28bd0606278e74a29da17b98e78b795c6768a2889e151f110593b1ccc08e9ebc28e1c897241e9b53d00b8d6' LIMIT 1
|
394
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '3UBMLYa8qkD05xJzqnW' LIMIT 1[0m
|
395
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'd51dc3862904e8cb7705a62756e0d266abd8286b03aa07bc244505164fc32dbbe6b0d027cf35c50b1dd4dfcda5f1b65adda539a3c58257f6cffef75bd40b9703', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'aCV89fEbHzHfLVk7yeMc', 'LAsVll8JcKhtaSZ0TdyB', '23762708cca8e81862e1993f5101c3c43be20e21d28bd0606278e74a29da17b98e78b795c6768a2889e151f110593b1ccc08e9ebc28e1c897241e9b53d00b8d6', '3UBMLYa8qkD05xJzqnW', 1, NULL, '2013-03-09 02:53:27')
|
396
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
397
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
398
|
+
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'C6MQJbSCs5kEJssZg3v', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 9[0m
|
399
399
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
400
|
-
[1m[36m (0.
|
401
|
-
[1m[35mSpudMenu Exists (0.
|
402
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
400
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
401
|
+
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu8' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
402
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu8', 0, '2013-03-09 02:53:27')[0m
|
403
403
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
404
|
-
[1m[36m (0.
|
405
|
-
[1m[35mSQL (0.
|
406
|
-
[1m[36m (0.
|
404
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
405
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 6', 8, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)
|
406
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
407
407
|
Processing by Spud::Admin::MenuItemsController#create as HTML
|
408
408
|
Parameters: {"spud_menu_item"=>{"name"=>"Menu Item 7", "parent_type"=>"SpudMenu", "parent_id"=>"7"}, "menu_id"=>"8"}
|
409
|
-
[1m[35mSpudUser Load (0.
|
409
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 9 LIMIT 1
|
410
410
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 8 LIMIT 1[0m
|
411
411
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
412
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
412
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 7', 7, 'SpudMenuItem', 8, NULL, '2013-03-09 02:53:27', NULL)[0m
|
413
413
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
414
414
|
Redirected to http://test.host/spud/admin/menus/8/menu_items
|
415
|
-
Completed 302 Found in
|
416
|
-
[1m[36mSpudMenuItem Load (0.
|
417
|
-
[1m[35m (0.
|
418
|
-
[1m[36m (0.
|
415
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
416
|
+
[1m[36mSpudMenuItem Load (0.2ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 7 LIMIT 1[0m
|
417
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
418
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
419
419
|
[1m[35m (0.0ms)[0m BEGIN
|
420
|
-
[1m[36m (0.
|
421
|
-
[1m[35m (0.
|
422
|
-
[1m[36mSpudUser Exists (0.
|
423
|
-
[1m[35mSpudUser Exists (0.
|
424
|
-
[1m[36mSpudUser Exists (0.
|
425
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
426
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
420
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
421
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
422
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
423
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
424
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '0f34d757a35737423faaca89d9821f4532ae40033bdfbc06bab9f6949821b3a480d3f451919d8060cc4d4ad05db6ba391044bd809fb497ad339ab1c4b50083e3' LIMIT 1[0m
|
425
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'JVxaz0G3eWHS98E9XKAs' LIMIT 1
|
426
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'd288d978632d79bead1f8c48e70de37a7a9c7aeb0db2cc93cafec6ced41a343993c4ec72a1f5acc16f0b20faa598c9353ada3415846f27f344ae58ea6bdc33c6', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'MBjnNiopRVIe6gyXoKXD', 'uXcfi5BTdDiybHUFZkJ', '0f34d757a35737423faaca89d9821f4532ae40033bdfbc06bab9f6949821b3a480d3f451919d8060cc4d4ad05db6ba391044bd809fb497ad339ab1c4b50083e3', 'JVxaz0G3eWHS98E9XKAs', 1, NULL, '2013-03-09 02:53:27')[0m
|
427
427
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
428
|
-
[1m[36m (0.
|
429
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
428
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
429
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'Hmox13w6XG7r32anzDn', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 10
|
430
430
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
431
431
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
432
432
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu9' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
433
|
-
[1m[35mSQL (0.
|
433
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu9', 0, '2013-03-09 02:53:27')
|
434
434
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
435
|
-
[1m[35m (0.
|
436
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
437
|
-
[1m[35m (0.
|
438
|
-
[1m[36m (0.
|
439
|
-
[1m[35mSQL (0.
|
435
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
436
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 8', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)[0m
|
437
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
438
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
439
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 9', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)
|
440
440
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
441
441
|
Processing by Spud::Admin::MenuItemsController#edit as HTML
|
442
442
|
Parameters: {"menu_id"=>"9", "id"=>"10"}
|
443
|
-
[1m[35mSpudUser Load (0.
|
444
|
-
[1m[36mSpudMenu Load (0.
|
445
|
-
[1m[35mSpudMenuItem Load (0.
|
446
|
-
Completed 200 OK in
|
447
|
-
[1m[36m (0.
|
443
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 10 LIMIT 1
|
444
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 9 LIMIT 1[0m
|
445
|
+
[1m[35mSpudMenuItem Load (0.1ms)[0m SELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 10 LIMIT 1
|
446
|
+
Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.5ms)
|
447
|
+
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
448
448
|
[1m[35m (0.1ms)[0m ROLLBACK
|
449
|
-
[1m[36m (0.
|
450
|
-
[1m[35m (0.
|
451
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
452
|
-
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
453
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
454
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'f6dee69ed3d143623cb583b1a5fb9342364b1a0cdd04890374f2fd0fbed156d0cc78aa45c2d61e918504a051c19583c3e946439e1ca8fe391249b8cc8df4949e' LIMIT 1
|
455
|
-
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'uhzsDqXH6BLHduqW9iHB' LIMIT 1[0m
|
456
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-02-20 13:04:27', '5efbfe4f33c8dcce9a2f4446b4c62f92e36e28c9e754777f1af5c48aaed63cf9cec87e1472dfa5cf218bafea9305c8ef63386a971e7e86cda7b31f8bbfcc325d', '2013-02-20 13:04:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-02-20 13:04:27', 'testuser', 1, 'i7vNTPQqBdECFQKdH6m', 'tarF8PN8HXeEJQYkyV6w', 'f6dee69ed3d143623cb583b1a5fb9342364b1a0cdd04890374f2fd0fbed156d0cc78aa45c2d61e918504a051c19583c3e946439e1ca8fe391249b8cc8df4949e', 'uhzsDqXH6BLHduqW9iHB', 1, NULL, '2013-02-20 13:04:27')
|
457
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
458
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
459
|
-
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-02-20 13:04:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'kFSHjMEJTbinmRk6DNN', `updated_at` = '2013-02-20 13:04:27' WHERE `spud_users`.`id` = 11[0m
|
460
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
449
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
450
|
+
[1m[35m (0.1ms)[0m BEGIN
|
461
451
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
452
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
453
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
454
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '36d7940489721e4a451ea1f9ad2a593a92a1eb430c03652acba1aa08e33e538e08136263e27ce7934f0aa29e7d44825d4226988794bd8513b06a626492393308' LIMIT 1
|
455
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'e9Gj30H5C3bM75foaJqd' LIMIT 1[0m
|
456
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'b215dd56a1b0eaf815010b3faebd2efc643bfab900131a7646517a5cfc22c8d8cad55db27e476dfed9c291b6915cdae7356416619eb08b3273805b19568b4c6b', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, '3fkcCQJ0HwxgW3mMGbvv', 'rJPbi5Fpu7TU3MaBSXwQ', '36d7940489721e4a451ea1f9ad2a593a92a1eb430c03652acba1aa08e33e538e08136263e27ce7934f0aa29e7d44825d4226988794bd8513b06a626492393308', 'e9Gj30H5C3bM75foaJqd', 1, NULL, '2013-03-09 02:53:27')
|
457
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
458
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
459
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'ppjwvBurSkU6q12hoL', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 11[0m
|
460
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
461
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
462
462
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu10' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
463
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
463
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu10', 0, '2013-03-09 02:53:27')[0m
|
464
464
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
465
465
|
Processing by Spud::Admin::MenuItemsController#edit as HTML
|
466
466
|
Parameters: {"menu_id"=>"10", "id"=>"345"}
|
@@ -469,105 +469,105 @@ Processing by Spud::Admin::MenuItemsController#edit as HTML
|
|
469
469
|
[1m[36mSpudMenuItem Load (0.1ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 345 LIMIT 1[0m
|
470
470
|
Redirected to http://test.host/spud/admin/menus/10/menu_items
|
471
471
|
Filter chain halted as :load_menu_item rendered or redirected
|
472
|
-
Completed 302 Found in 4ms (ActiveRecord: 0.
|
473
|
-
[1m[35m (0.
|
474
|
-
[1m[36m (0.
|
475
|
-
[1m[35m (0.
|
476
|
-
[1m[36m (0.
|
477
|
-
[1m[35m (0.
|
472
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
473
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
474
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
475
|
+
[1m[35m (0.1ms)[0m BEGIN
|
476
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
478
478
|
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
479
479
|
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
480
|
-
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
481
|
-
[1m[35mSpudUser Exists (0.
|
482
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
480
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '4b0ef49cc11558787c379e32b86ad671d6b6f1a42d83282295c2f52d5fd182c899628938383ce6dcd3265553a00e9ba9a2ea2fae397dd6d35cffdb71936863f4' LIMIT 1[0m
|
481
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'wxay3QUrdU5vFDCO8X63' LIMIT 1
|
482
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '4f83e13268961e3bf148c864afa075b41c8c9406d32adcccbc103b2ab5f857f96580bdf43c27c7123c4871dc76f9d05ef52beddc943d9b56263026e421723c32', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, '2xGUmAM6KJd0H3YlRda', 'MxZyLf1v0CUaQTXjsNd0', '4b0ef49cc11558787c379e32b86ad671d6b6f1a42d83282295c2f52d5fd182c899628938383ce6dcd3265553a00e9ba9a2ea2fae397dd6d35cffdb71936863f4', 'wxay3QUrdU5vFDCO8X63', 1, NULL, '2013-03-09 02:53:27')[0m
|
483
483
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
484
484
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
485
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
485
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'X7vVa58WEXyXlbtm6YQt', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 12
|
486
486
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
487
|
-
[1m[35m (0.
|
487
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
488
488
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu11' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
489
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
489
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu11', 0, '2013-03-09 02:53:27')
|
490
490
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
491
491
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
492
|
-
[1m[36mSQL (0.
|
492
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 10', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)[0m
|
493
493
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
494
494
|
Processing by Spud::Admin::MenuItemsController#update as HTML
|
495
495
|
Parameters: {"spud_menu_item"=>{"parent_type"=>"SpudMenu", "parent_id"=>nil, "item_type"=>nil, "spud_page_id"=>nil, "menu_order"=>"0", "url"=>nil, "name"=>"MyMenu", "classes"=>nil}, "menu_id"=>"11", "id"=>"11"}
|
496
496
|
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 12 LIMIT 1[0m
|
497
|
-
[1m[35mSpudMenu Load (0.
|
498
|
-
[1m[36mSpudMenuItem Load (0.
|
497
|
+
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 11 LIMIT 1
|
498
|
+
[1m[36mSpudMenuItem Load (0.1ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 11 LIMIT 1[0m
|
499
499
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
500
|
-
[1m[36m (0.3ms)[0m [1mUPDATE `spud_menu_items` SET `parent_id` = 11, `name` = 'MyMenu', `spud_menu_id` = 11, `updated_at` = '2013-
|
501
|
-
[1m[35m (0.
|
500
|
+
[1m[36m (0.3ms)[0m [1mUPDATE `spud_menu_items` SET `parent_id` = 11, `name` = 'MyMenu', `spud_menu_id` = 11, `updated_at` = '2013-03-09 02:53:27' WHERE `spud_menu_items`.`id` = 11[0m
|
501
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
502
502
|
Redirected to http://test.host/spud/admin/menus/11/menu_items
|
503
|
-
Completed 302 Found in
|
503
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
504
504
|
[1m[36mSpudMenuItem Load (0.2ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 11 LIMIT 1[0m
|
505
|
-
[1m[35m (
|
506
|
-
[1m[36m (0.
|
505
|
+
[1m[35m (0.6ms)[0m ROLLBACK
|
506
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
507
507
|
[1m[35m (0.0ms)[0m BEGIN
|
508
|
-
[1m[36m (0.
|
508
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
509
509
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
510
|
-
[1m[36mSpudUser Exists (0.
|
511
|
-
[1m[35mSpudUser Exists (0.
|
512
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
513
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
514
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
510
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
511
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
512
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '491bd667112084b62d8871cbc99c8780c8236457b8446b2f81427c89ed82d8ed125b4fb0334512f8b6c74a3fe476ab96375ca8b49e353a3a35363d820f0b1ddc' LIMIT 1[0m
|
513
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'qAe66OS64QTK2Z9Q6u2e' LIMIT 1
|
514
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'aa02490abb3e86f1b3e9dd34e516b06a2fe3cb875deb68f6196ae1b67da9db7b82e7c9cdfc94eeb6d5778ccfac3d4b70b49001f1aaffd12020a943f56a70a98f', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'AXAqOQqJwQDaIt7aKrSw', 'Tkddq8NRrRvJjP8wUs', '491bd667112084b62d8871cbc99c8780c8236457b8446b2f81427c89ed82d8ed125b4fb0334512f8b6c74a3fe476ab96375ca8b49e353a3a35363d820f0b1ddc', 'qAe66OS64QTK2Z9Q6u2e', 1, NULL, '2013-03-09 02:53:27')[0m
|
515
515
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
516
|
-
[1m[36m (0.
|
517
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
516
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
517
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'TiE1u9V5N8j9zSbNqfa', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 13
|
518
518
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
519
519
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
520
520
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu12' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
521
|
-
[1m[35mSQL (0.
|
521
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu12', 0, '2013-03-09 02:53:27')
|
522
522
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
523
523
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
524
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
524
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 11', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)[0m
|
525
525
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
526
|
-
[1m[36m (0.
|
527
|
-
[1m[35mSQL (0.
|
526
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
527
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 12', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)
|
528
528
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
529
529
|
[1m[35mSpudMenu Load (0.1ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 1 LIMIT 1
|
530
530
|
Processing by Spud::Admin::MenuItemsController#update as HTML
|
531
531
|
Parameters: {"spud_menu_item"=>{"parent_type"=>"SpudMenu", "parent_id"=>"12", "item_type"=>nil, "spud_page_id"=>nil, "menu_order"=>"0", "url"=>nil, "name"=>"Menu Item 12", "classes"=>nil}, "menu_id"=>"12", "id"=>"13"}
|
532
532
|
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 13 LIMIT 1[0m
|
533
533
|
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 12 LIMIT 1
|
534
|
-
[1m[36mSpudMenuItem Load (0.
|
534
|
+
[1m[36mSpudMenuItem Load (0.1ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 13 LIMIT 1[0m
|
535
535
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
536
|
-
[1m[36m (0.2ms)[0m [1mUPDATE `spud_menu_items` SET `parent_type` = 'SpudMenuItem', `parent_id` = 12, `spud_menu_id` = 12, `updated_at` = '2013-
|
537
|
-
[1m[35m (0.
|
536
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_menu_items` SET `parent_type` = 'SpudMenuItem', `parent_id` = 12, `spud_menu_id` = 12, `updated_at` = '2013-03-09 02:53:27' WHERE `spud_menu_items`.`id` = 13[0m
|
537
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
538
538
|
Redirected to http://test.host/spud/admin/menus/12/menu_items
|
539
539
|
Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
|
540
540
|
[1m[36mSpudMenuItem Load (0.2ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 13 LIMIT 1[0m
|
541
|
-
[1m[35mSpudMenuItem Load (0.
|
542
|
-
[1m[36m (0.
|
541
|
+
[1m[35mSpudMenuItem Load (0.2ms)[0m SELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 12 LIMIT 1
|
542
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
543
543
|
[1m[35m (0.0ms)[0m ROLLBACK
|
544
544
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
545
|
-
[1m[35m (0.
|
546
|
-
[1m[36m (0.
|
547
|
-
[1m[35mSpudUser Exists (0.
|
545
|
+
[1m[35m (0.0ms)[0m BEGIN
|
546
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
547
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
548
548
|
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
549
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
550
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
551
|
-
[1m[35mSQL (0.
|
552
|
-
[1m[36m (0.
|
549
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'a165030776594f3ddbf6ee086165140b6c63c5237b0f026d351f1ed450aac06114c828faacbc9b2a9eca0af8782d8781b5ba90aa5b0413eb5a849ff93041fb8e' LIMIT 1
|
550
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'cOF10FyJRttXrCG2tvV' LIMIT 1[0m
|
551
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'a25bf8e9903322618ef3e15eecae451a08007768ed5b184b8807373330fec01dd79c20bd46cc852352751b392e829944b558428e26fa23a763919971f589d6eb', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'SN1mRTchskffszSeHE', 'eE3ARkagXHBV0pfFdoCs', 'a165030776594f3ddbf6ee086165140b6c63c5237b0f026d351f1ed450aac06114c828faacbc9b2a9eca0af8782d8781b5ba90aa5b0413eb5a849ff93041fb8e', 'cOF10FyJRttXrCG2tvV', 1, NULL, '2013-03-09 02:53:27')
|
552
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
553
553
|
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
554
|
-
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
555
|
-
[1m[35m (0.
|
556
|
-
[1m[36m (0.
|
554
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'CYojaSMeUMokY6r5t6T7', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 14[0m
|
555
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
556
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
557
557
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu13' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
558
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
558
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu13', 0, '2013-03-09 02:53:27')[0m
|
559
559
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
560
560
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
561
|
-
[1m[35mSQL (0.
|
561
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 13', 13, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)
|
562
562
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
563
|
-
[1m[35m (0.
|
563
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `spud_menu_items`
|
564
564
|
Processing by Spud::Admin::MenuItemsController#destroy as HTML
|
565
565
|
Parameters: {"menu_id"=>"13", "id"=>"14"}
|
566
|
-
[1m[36mSpudUser Load (0.
|
566
|
+
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 14 LIMIT 1[0m
|
567
567
|
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 13 LIMIT 1
|
568
|
-
[1m[36mSpudMenuItem Load (0.
|
568
|
+
[1m[36mSpudMenuItem Load (0.1ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 14 LIMIT 1[0m
|
569
569
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
570
|
-
[1m[36mSpudMenuItem Load (0.
|
570
|
+
[1m[36mSpudMenuItem Load (0.2ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`parent_id` = 14 AND `spud_menu_items`.`parent_type` = 'SpudMenuItem'[0m
|
571
571
|
[1m[35mSQL (0.2ms)[0m DELETE FROM `spud_menu_items` WHERE `spud_menu_items`.`id` = 14
|
572
572
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
573
573
|
Redirected to http://test.host/spud/admin/menus/13/menu_items
|
@@ -577,138 +577,138 @@ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
|
|
577
577
|
[1m[35m (0.1ms)[0m ROLLBACK
|
578
578
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
579
579
|
[1m[35m (0.1ms)[0m BEGIN
|
580
|
-
[1m[36m (0.
|
581
|
-
[1m[35mSpudUser Exists (0.
|
582
|
-
[1m[36mSpudUser Exists (0.
|
583
|
-
[1m[35mSpudUser Exists (0.
|
584
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
585
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
586
|
-
[1m[36m (0.
|
587
|
-
[1m[35m (0.
|
588
|
-
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
580
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
581
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
582
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
583
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'f3a210ddd99f3715d2104f9e3627be063a2bbdc1d1c9af51a5cbbb60f4cc9455184674c205bccf5232cc71049e5a468bd75cc427eaef31a716933e785aed7c8f' LIMIT 1
|
584
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'fFyNxcOo9rT232n2PcA' LIMIT 1[0m
|
585
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'da7da0248f666f50eb687fbcc7790e26f7c6cbb442c3ffdfe483b362d951f027793c561c64850732b4abdb8945b7db648904f340752b83c70a69ebc793843e98', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'CXunxKgmClFpu7Z7a86', 'YKb09j3GsgDfbpddYk', 'f3a210ddd99f3715d2104f9e3627be063a2bbdc1d1c9af51a5cbbb60f4cc9455184674c205bccf5232cc71049e5a468bd75cc427eaef31a716933e785aed7c8f', 'fFyNxcOo9rT232n2PcA', 1, NULL, '2013-03-09 02:53:27')
|
586
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
587
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
588
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 's236d1jCTCdQG1sP12fx', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 15[0m
|
589
589
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
590
590
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
591
591
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu14' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
592
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
592
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu14', 0, '2013-03-09 02:53:27')[0m
|
593
593
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
594
|
-
[1m[36m (0.
|
595
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
594
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
595
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:27', NULL, 0, 'Menu Item 14', 1, 'SpudMenu', 1, NULL, '2013-03-09 02:53:27', NULL)
|
596
596
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
597
597
|
Processing by Spud::Admin::MenuItemsController#edit as HTML
|
598
598
|
Parameters: {"id"=>"15", "menu_id"=>"14"}
|
599
|
-
[1m[35mSpudUser Load (0.
|
599
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 15 LIMIT 1
|
600
600
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 14 LIMIT 1[0m
|
601
601
|
Redirected to http://test.host/spud/admin/menus
|
602
602
|
Filter chain halted as :load_menu rendered or redirected
|
603
|
-
Completed 302 Found in 4ms (ActiveRecord: 0.
|
604
|
-
[1m[35m (0.
|
605
|
-
[1m[36m (0.
|
603
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
604
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
605
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
606
606
|
[1m[35m (0.0ms)[0m BEGIN
|
607
607
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
608
608
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
609
|
-
[1m[36mSpudUser Exists (0.
|
610
|
-
[1m[35mSpudUser Exists (0.
|
611
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
612
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
613
|
-
[1m[36mSQL (0.
|
614
|
-
[1m[35m (0.
|
609
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
610
|
+
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
611
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'ffbc53fcf8203ce0ded00c960cf93859d2078659f270247e87968d164fba25e16011bcac31b9ee2e8c44caefafd40f850092f07f138ab57bd67b34f5a8e4e9df' LIMIT 1[0m
|
612
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'ACxBwuvEx0etW9eJPuU' LIMIT 1
|
613
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'e7e16f21335658eff75d0e29d71f1a7b01710711ee7b1f0443018f2b0ea5fb68b8baea50197abeadb3ef0b3743af907bedd92ffa0dcea18c5216896fd6431b85', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, '4zH3qZfZrBctpiXFUTnP', '17gR7tgzOnHvAY74Kcc', 'ffbc53fcf8203ce0ded00c960cf93859d2078659f270247e87968d164fba25e16011bcac31b9ee2e8c44caefafd40f850092f07f138ab57bd67b34f5a8e4e9df', 'ACxBwuvEx0etW9eJPuU', 1, NULL, '2013-03-09 02:53:27')[0m
|
614
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
615
615
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
616
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
617
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
618
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
619
|
-
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu15' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
620
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-02-20 13:04:27', NULL, 'Menu15', 0, '2013-02-20 13:04:27')
|
616
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'ALlY30tzmW3O7hp4Ioon', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 16
|
621
617
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
622
618
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
623
|
-
[1m[36mSpudMenu Exists (0.
|
624
|
-
[1m[35mSQL (0.
|
625
|
-
[1m[36m (0.
|
619
|
+
[1m[36mSpudMenu Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu15' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
620
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu15', 0, '2013-03-09 02:53:27')
|
621
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
622
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
623
|
+
[1m[36mSpudMenu Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu16' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
624
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu16', 0, '2013-03-09 02:53:27')
|
625
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
626
626
|
Processing by Spud::Admin::MenusController#index as HTML
|
627
|
-
[1m[35mSpudUser Load (0.
|
628
|
-
Completed 200 OK in
|
629
|
-
[1m[36m (0.
|
630
|
-
[1m[35m (0.
|
631
|
-
[1m[36m (0.
|
627
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 16 LIMIT 1
|
628
|
+
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
629
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_menus` WHERE `spud_menus`.`site_id` = 0[0m
|
630
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
631
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
632
632
|
[1m[35m (0.0ms)[0m BEGIN
|
633
633
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
634
|
-
[1m[35m (0.
|
635
|
-
[1m[36mSpudUser Exists (0.
|
634
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
635
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
636
636
|
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
637
|
-
[1m[36mSpudUser Exists (0.
|
638
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
639
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
640
|
-
[1m[35m (0.
|
641
|
-
[1m[36m (0.
|
642
|
-
[1m[35m (0.
|
637
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '9c25230fdf12284bc5ea6814aeaf10146c9d99b4db5f0ca9cefc3b39212e5d08ff523087327c26c94d5d5fccd0fb79dfc0822b8ed21d6a5c1602f485c86e2e4e' LIMIT 1[0m
|
638
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'NDmnopRhmoMfHmnpPbg' LIMIT 1
|
639
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'ce2674ff549edd68f7bfce589f59925037c12827580b5d56bffac52c3a410f8b55c4515dbdda51bc76416c0ec442c646a4b8141bd910a31aa1e31d7fc5dc8cea', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'CmXNkwbZdMMEoUftmIRB', 'nWLRTVfNyI5WI53YQ2E', '9c25230fdf12284bc5ea6814aeaf10146c9d99b4db5f0ca9cefc3b39212e5d08ff523087327c26c94d5d5fccd0fb79dfc0822b8ed21d6a5c1602f485c86e2e4e', 'NDmnopRhmoMfHmnpPbg', 1, NULL, '2013-03-09 02:53:27')[0m
|
640
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
641
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
642
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'Le8fTgf8ndEKOdIteD7R', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 17
|
643
643
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
644
644
|
Processing by Spud::Admin::MenusController#new as HTML
|
645
645
|
[1m[35mSpudUser Load (0.4ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 17 LIMIT 1
|
646
646
|
Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.4ms)
|
647
|
-
[1m[36m (0.
|
647
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
648
648
|
[1m[35m (0.1ms)[0m ROLLBACK
|
649
649
|
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
650
|
-
[1m[35m (0.
|
651
|
-
[1m[36m (0.
|
652
|
-
[1m[35mSpudUser Exists (0.
|
653
|
-
[1m[36mSpudUser Exists (0.
|
654
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
655
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
656
|
-
[1m[35mSQL (0.
|
650
|
+
[1m[35m (0.1ms)[0m BEGIN
|
651
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_2[0m
|
652
|
+
[1m[35mSpudUser Exists (0.4ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
653
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
654
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '9dea6364929def238697947567d9a2b88634c42e902fb9d1eb3c0c43d0368409d2750a9ed5cbefb09b636c834c7dc110e5242e9ba4ba05a2fda0713ae2a6127b' LIMIT 1
|
655
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'VW33NTxi8uakop5aZwwI' LIMIT 1[0m
|
656
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '98adeac32a2d01b37fb65e3bf24475e76ae3bad5b4585b42f377058fffc4bdf8938ba9ced81a9ac2802e98ab106eecb468727d84cf1464e16ea92027dcaf09b8', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, '33UszbMvPhVPi0g3kOB1', 'v2DP0TnXXs1Wy26zOEz3', '9dea6364929def238697947567d9a2b88634c42e902fb9d1eb3c0c43d0368409d2750a9ed5cbefb09b636c834c7dc110e5242e9ba4ba05a2fda0713ae2a6127b', 'VW33NTxi8uakop5aZwwI', 1, NULL, '2013-03-09 02:53:27')
|
657
657
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
658
658
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
659
|
-
[1m[36m (0.
|
659
|
+
[1m[36m (0.4ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'iXaMzpsxeiI42vJmyWN', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 18[0m
|
660
660
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
661
661
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_menus` [0m
|
662
662
|
Processing by Spud::Admin::MenusController#create as HTML
|
663
663
|
Parameters: {"spud_menu"=>{"name"=>"Menu17"}}
|
664
|
-
[1m[35mSpudUser Load (0.
|
664
|
+
[1m[35mSpudUser Load (0.3ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 18 LIMIT 1
|
665
665
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
666
666
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu17' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
667
|
-
[1m[36mSQL (0.
|
667
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu17', 0, '2013-03-09 02:53:27')[0m
|
668
668
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
669
669
|
Redirected to http://test.host/spud/admin/menus/17/menu_items
|
670
670
|
Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
|
671
671
|
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_menus` [0m
|
672
|
-
[1m[35m (0.
|
673
|
-
[1m[36m (0.
|
672
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
673
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
674
674
|
[1m[35m (0.0ms)[0m BEGIN
|
675
675
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
676
|
-
[1m[35m (0.
|
677
|
-
[1m[36mSpudUser Exists (0.
|
676
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
677
|
+
[1m[36mSpudUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
678
678
|
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
679
|
-
[1m[36mSpudUser Exists (0.
|
680
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
681
|
-
[1m[36mSQL (0.
|
679
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '5e8e14300d4ff7bdd4e1957e5503ad3bff3b02ffa00186be2637fe329ff7bf45cdff069e99ceceed0144f6c466254562e2d3d9a0467f2e74a7dac6a7776b445c' LIMIT 1[0m
|
680
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'Sqv5wdwM8KZ1lUSPpAZ' LIMIT 1
|
681
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '9cc7c0b5ba8ce0b42c4342b705e1f197c20eb969ec76f1ce6ff17e0f0ff82179071e808a5e93580226994edb92c8735eec9c6c0456f750d54440fcd9bf5a2ac3', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'qiQXZHloJiET9bqTrH5', 'lRzQ6n28gk3sjszgti9', '5e8e14300d4ff7bdd4e1957e5503ad3bff3b02ffa00186be2637fe329ff7bf45cdff069e99ceceed0144f6c466254562e2d3d9a0467f2e74a7dac6a7776b445c', 'Sqv5wdwM8KZ1lUSPpAZ', 1, NULL, '2013-03-09 02:53:27')[0m
|
682
682
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
683
683
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
684
|
-
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
684
|
+
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = '9h0IGmGMzqe9RoHE89EK', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 19
|
685
685
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
686
|
-
[1m[35m (0.
|
686
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_menus`
|
687
687
|
Processing by Spud::Admin::MenusController#create as HTML
|
688
688
|
Parameters: {"spud_menu"=>{"name"=>nil}}
|
689
689
|
[1m[36mSpudUser Load (0.3ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 19 LIMIT 1[0m
|
690
|
-
[1m[35m (0.
|
691
|
-
[1m[36mSpudMenu Exists (0.
|
690
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
691
|
+
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` IS NULL AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
692
692
|
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_2
|
693
|
-
Completed 200 OK in 7ms (Views: 0.
|
694
|
-
[1m[36m (0.
|
695
|
-
[1m[35m (0.
|
696
|
-
[1m[36m (0.
|
693
|
+
Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
694
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_menus` [0m
|
695
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
696
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
697
697
|
[1m[35m (0.0ms)[0m BEGIN
|
698
698
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
699
699
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
700
700
|
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
701
701
|
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
702
|
-
[1m[36mSpudUser Exists (0.
|
703
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
704
|
-
[1m[36mSQL (0.
|
705
|
-
[1m[35m (0.
|
702
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '95c077cd9405e4ec33cd7b6376a7c8a2b23db41fafffc967483402f5109b947f6a93b5c86e3abf2a8793896407173a9e028446b1103a6fabcd5154255b8ad26b' LIMIT 1[0m
|
703
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'dxu2xuuMH52Pp91YQXm' LIMIT 1
|
704
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '61aaff3e28bca7a382a578f312e754e648385ae970a451b536ec0b473e63b6e913271f3347a461e505fd21fcff870033803680e47f16ed1a9683af1fbf8bc99c', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'he5TJK4D6P26y6jXcBO', 'BDL6oPpDcdmwRcQ4xI', '95c077cd9405e4ec33cd7b6376a7c8a2b23db41fafffc967483402f5109b947f6a93b5c86e3abf2a8793896407173a9e028446b1103a6fabcd5154255b8ad26b', 'dxu2xuuMH52Pp91YQXm', 1, NULL, '2013-03-09 02:53:27')[0m
|
705
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
706
706
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
707
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
708
|
-
[1m[36m (0.
|
707
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'FpiqaYe6m1ADxvVsqD8', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 20
|
708
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
709
709
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
710
710
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu18' AND `spud_menus`.`site_id` = 1) LIMIT 1[0m
|
711
|
-
[1m[35mSQL (0.
|
711
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu18', 1, '2013-03-09 02:53:27')
|
712
712
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
713
713
|
Processing by Spud::Admin::MenusController#edit as HTML
|
714
714
|
Parameters: {"id"=>"18"}
|
@@ -716,47 +716,47 @@ Processing by Spud::Admin::MenusController#edit as HTML
|
|
716
716
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 18 LIMIT 1[0m
|
717
717
|
Redirected to http://test.host/spud/admin/menus
|
718
718
|
Filter chain halted as :load_menu rendered or redirected
|
719
|
-
Completed 302 Found in
|
720
|
-
[1m[35m (
|
721
|
-
[1m[36m (0.
|
719
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
|
720
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
721
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
722
722
|
[1m[35m (0.1ms)[0m BEGIN
|
723
723
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
724
724
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
725
|
-
[1m[36mSpudUser Exists (0.
|
725
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
726
726
|
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
727
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
728
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
729
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
730
|
-
[1m[35m (0.
|
727
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '22670d21a8b2deb5fb4bbc66ff0c6ca245ecbcff37ad99f1ad2c4c84ed2734c359fb1f59f6cc5ac92d332d3f4de466289c82de2691050b47afbd2b8d2d403954' LIMIT 1[0m
|
728
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'yIn7BazcwMDImWMVYbJd' LIMIT 1
|
729
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'dc44ca0e127c5799f9a8a0fe4e548fc6dbfed1ec0f949b34a464ec3fa4dcd8f5e898bfe2985499f19436353d4543cbfa7c0fdceaef91f38cf5aa9ff0fe28f849', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'hwJuFxqVrYg7dK4CNC', 'COYbrhrxQy4BwE7WVJE', '22670d21a8b2deb5fb4bbc66ff0c6ca245ecbcff37ad99f1ad2c4c84ed2734c359fb1f59f6cc5ac92d332d3f4de466289c82de2691050b47afbd2b8d2d403954', 'yIn7BazcwMDImWMVYbJd', 1, NULL, '2013-03-09 02:53:27')[0m
|
730
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
731
731
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
732
|
-
[1m[35m (0.
|
733
|
-
[1m[36m (0.
|
734
|
-
[1m[35m (0.
|
732
|
+
[1m[35m (0.1ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'Qq53GHoArRrhwmIIqAZ6', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 21
|
733
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
734
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
735
735
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu19' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
736
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
736
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu19', 0, '2013-03-09 02:53:27')
|
737
737
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
738
738
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
739
|
-
[1m[36mSpudMenu Exists (0.
|
740
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
739
|
+
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu20' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
740
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu20', 0, '2013-03-09 02:53:27')
|
741
741
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
742
742
|
Processing by Spud::Admin::MenusController#edit as HTML
|
743
743
|
Parameters: {"id"=>"20"}
|
744
|
-
[1m[35mSpudUser Load (0.
|
744
|
+
[1m[35mSpudUser Load (0.3ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 21 LIMIT 1
|
745
745
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 20 LIMIT 1[0m
|
746
|
-
Completed 200 OK in 5ms (Views: 1.
|
746
|
+
Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.5ms)
|
747
747
|
[1m[35m (0.5ms)[0m ROLLBACK
|
748
|
-
[1m[36m (0.
|
748
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
749
749
|
[1m[35m (0.0ms)[0m BEGIN
|
750
750
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
751
751
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
752
|
-
[1m[36mSpudUser Exists (0.
|
753
|
-
[1m[35mSpudUser Exists (0.
|
754
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
755
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
756
|
-
[1m[36mSQL (
|
757
|
-
[1m[35m (0.
|
758
|
-
[1m[36m (0.
|
759
|
-
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
752
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
753
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
754
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '11a7244bfa3cb4ee5ed1e11a03dd01f9c3aa3c006335921dca90489212229a686587fb17ae3241ae5a2ace563b06b516daec9cd2fd9ee8226e9b2a1e9354bd78' LIMIT 1[0m
|
755
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'cTvfGsSYOAxidZStpCbL' LIMIT 1
|
756
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'faf404f6b2975ff4206ea8e3bebe85877d467b80e3ef3c314a78753f21fda17c84920360b28a2aaf901e67bfd4df38d468f68e66d66829ca2121c76c90db4f66', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'mMAiwlLEWanGCwtzj4U', 'XDVgKnJGtP3qn3QmLogF', '11a7244bfa3cb4ee5ed1e11a03dd01f9c3aa3c006335921dca90489212229a686587fb17ae3241ae5a2ace563b06b516daec9cd2fd9ee8226e9b2a1e9354bd78', 'cTvfGsSYOAxidZStpCbL', 1, NULL, '2013-03-09 02:53:27')[0m
|
757
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
|
758
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
759
|
+
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'cvPF7rYVHuTPKUiMA7hv', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 22
|
760
760
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
761
761
|
Processing by Spud::Admin::MenusController#edit as HTML
|
762
762
|
Parameters: {"id"=>"3"}
|
@@ -764,113 +764,113 @@ Processing by Spud::Admin::MenusController#edit as HTML
|
|
764
764
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 3 LIMIT 1[0m
|
765
765
|
Redirected to http://test.host/spud/admin/menus
|
766
766
|
Filter chain halted as :load_menu rendered or redirected
|
767
|
-
Completed 302 Found in
|
768
|
-
[1m[35m (0.
|
767
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
768
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
769
769
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
770
770
|
[1m[35m (0.0ms)[0m BEGIN
|
771
|
-
[1m[36m (0.
|
771
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
772
772
|
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
773
773
|
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
774
|
-
[1m[35mSpudUser Exists (0.
|
775
|
-
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
776
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
777
|
-
[1m[36mSQL (0.
|
778
|
-
[1m[35m (0.
|
779
|
-
[1m[36m (0.
|
780
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
774
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
775
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '4f299b7317ac6dfba1e87e0efe26a21bf3ce26e274e8219e7c76b771356e0a09e12a7c3c42ff39595c3d62e984ac3c08e97ef86a74723f63cb5455fb1dfb6c7b' LIMIT 1[0m
|
776
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'qK5Px0bVCFtyGHzh3S' LIMIT 1
|
777
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'bf94a7f09157b686df7e4101abf6bf0db2cfc66cfc6e622452165f697ebb1bda87928503e26637c45845587cd0555fd1628965fd32f9dcde270dfd7aa854cb7d', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'kn4fPAy0y08dPd7cqt4c', '4JrJNisp3RYDgBi2Zd81', '4f299b7317ac6dfba1e87e0efe26a21bf3ce26e274e8219e7c76b771356e0a09e12a7c3c42ff39595c3d62e984ac3c08e97ef86a74723f63cb5455fb1dfb6c7b', 'qK5Px0bVCFtyGHzh3S', 1, NULL, '2013-03-09 02:53:27')[0m
|
778
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
|
779
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
780
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = '8jTDnQBLQrnvbc1gG2', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 23
|
781
781
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
782
782
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
783
|
-
[1m[36mSpudMenu Exists (0.
|
784
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
785
|
-
[1m[36m (0.
|
783
|
+
[1m[36mSpudMenu Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu21' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
784
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu21', 0, '2013-03-09 02:53:27')
|
785
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
786
786
|
Processing by Spud::Admin::MenusController#update as HTML
|
787
|
-
Parameters: {"spud_menu"=>{"name"=>"MyMenu", "description"=>nil, "created_at"=>"2013-
|
787
|
+
Parameters: {"spud_menu"=>{"name"=>"MyMenu", "description"=>nil, "created_at"=>"2013-03-09 02:53:27 UTC", "updated_at"=>"2013-03-09 02:53:27 UTC"}, "id"=>"21"}
|
788
788
|
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 23 LIMIT 1
|
789
|
-
[1m[36mSpudMenu Load (0.
|
789
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 21 LIMIT 1[0m
|
790
790
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
791
|
-
[1m[36mSpudMenu Exists (0.
|
792
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_menus` SET `name` = 'MyMenu', `updated_at` = '2013-
|
793
|
-
[1m[36m (0.
|
791
|
+
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'MyMenu' AND `spud_menus`.`id` != 21 AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
792
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_menus` SET `name` = 'MyMenu', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_menus`.`id` = 21
|
793
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
794
794
|
Redirected to http://test.host/spud/admin/menus/21/menu_items
|
795
795
|
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
796
796
|
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 21 LIMIT 1
|
797
|
-
[1m[36m (0.
|
798
|
-
[1m[35m (0.
|
797
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
798
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
799
799
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
800
800
|
[1m[35m (0.0ms)[0m BEGIN
|
801
801
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
802
|
-
[1m[35mSpudUser Exists (0.
|
803
|
-
[1m[36mSpudUser Exists (0.
|
804
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
805
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
806
|
-
[1m[35mSQL (0.
|
802
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
803
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
804
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '9333d878ec9aa4df454f99ee5bb00e7ad8c1d729e3611ddfb682e291762401026d43a8ac31b74f7a6efd1a0f298792ab92f44c07c98de9f2805308010787a1cb' LIMIT 1
|
805
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'egZIUSVvPDWwYLKvQ9v' LIMIT 1[0m
|
806
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '26486855510608e8a62c661e97e81b898cfaa7e0f8ed49062fd052817df1968d81e005b53d1ea1e7e008ccf25328af0c57269b786667f1e59029a1296c16c695', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'VdtdIx1I7xKNuweWSXv0', 'wxDfOXFg2R6LfDv693hK', '9333d878ec9aa4df454f99ee5bb00e7ad8c1d729e3611ddfb682e291762401026d43a8ac31b74f7a6efd1a0f298792ab92f44c07c98de9f2805308010787a1cb', 'egZIUSVvPDWwYLKvQ9v', 1, NULL, '2013-03-09 02:53:27')
|
807
807
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
808
|
-
[1m[35m (0.
|
809
|
-
[1m[36m (0.
|
810
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
811
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
812
|
-
[1m[35mSpudMenu Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu22' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
813
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-02-20 13:04:27', NULL, 'Menu22', 0, '2013-02-20 13:04:27')[0m
|
808
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
809
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = '2RsOCHN4OBmMkUyG40yg', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 24[0m
|
814
810
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
811
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
812
|
+
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu22' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
813
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu22', 0, '2013-03-09 02:53:27')[0m
|
814
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
815
815
|
Processing by Spud::Admin::MenusController#update as HTML
|
816
|
-
Parameters: {"spud_menu"=>{"name"=>"MyMenu", "description"=>nil, "created_at"=>"2013-
|
817
|
-
[1m[36mSpudUser Load (0.
|
818
|
-
[1m[35mSpudMenu Load (0.
|
816
|
+
Parameters: {"spud_menu"=>{"name"=>"MyMenu", "description"=>nil, "created_at"=>"2013-03-09 02:53:27 UTC", "updated_at"=>"2013-03-09 02:53:27 UTC"}, "id"=>"22"}
|
817
|
+
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 24 LIMIT 1[0m
|
818
|
+
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 22 LIMIT 1
|
819
819
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
820
820
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'MyMenu' AND `spud_menus`.`id` != 22 AND `spud_menus`.`site_id` = 0) LIMIT 1
|
821
|
-
[1m[36m (0.2ms)[0m [1mUPDATE `spud_menus` SET `name` = 'MyMenu', `updated_at` = '2013-
|
822
|
-
[1m[35m (0.
|
821
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_menus` SET `name` = 'MyMenu', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_menus`.`id` = 22[0m
|
822
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
823
823
|
Redirected to http://test.host/spud/admin/menus/22/menu_items
|
824
824
|
Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
|
825
|
-
[1m[36m (0.
|
826
|
-
[1m[35m (0.
|
827
|
-
[1m[36m (0.
|
828
|
-
[1m[35m (0.
|
825
|
+
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
826
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
827
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
828
|
+
[1m[35m (0.1ms)[0m BEGIN
|
829
829
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
830
830
|
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
831
831
|
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
832
|
-
[1m[35mSpudUser Exists (0.
|
833
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
834
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
835
|
-
[1m[36m (0.
|
832
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'c6e01e74fdf2ad91dfd22736e2d3f0eb68173d8c9aeb00e08a2c04047fb4ac16dfed6e89dfed3acc9e7a814fe9c1cb626b03ea3dd634150bf0c0be205be7a52b' LIMIT 1
|
833
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'SjHGe2Za3Aj63VYbCtG' LIMIT 1[0m
|
834
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'cf20c948a623fa46c02d287c90954126ce36f91138241b2bdfb68d655ba73f5dd7c5322c09e5fabf758d83e955db0573e8805bdd3f34e2b8c132003d1931a732', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'NBWRO4c4uFAVxDBzbOft', 'krdbOYeb8v6qjI3IOIn0', 'c6e01e74fdf2ad91dfd22736e2d3f0eb68173d8c9aeb00e08a2c04047fb4ac16dfed6e89dfed3acc9e7a814fe9c1cb626b03ea3dd634150bf0c0be205be7a52b', 'SjHGe2Za3Aj63VYbCtG', 1, NULL, '2013-03-09 02:53:27')
|
835
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
836
836
|
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
837
|
-
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
837
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'JvMjMNJNaDNA8sLVtrX', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 25[0m
|
838
838
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
839
|
-
[1m[36m (0.
|
839
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
840
840
|
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu23' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
841
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
841
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu23', 0, '2013-03-09 02:53:27')[0m
|
842
842
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
843
843
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_menus` [0m
|
844
844
|
Processing by Spud::Admin::MenusController#destroy as HTML
|
845
845
|
Parameters: {"id"=>"23"}
|
846
|
-
[1m[35mSpudUser Load (0.
|
846
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 25 LIMIT 1
|
847
847
|
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`id` = 23 LIMIT 1[0m
|
848
848
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
849
849
|
[1m[36mSpudMenuItem Load (0.2ms)[0m [1mSELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`parent_id` = 23 AND `spud_menu_items`.`parent_type` = 'SpudMenu'[0m
|
850
|
-
[1m[35mSpudMenuItem Load (0.
|
850
|
+
[1m[35mSpudMenuItem Load (0.2ms)[0m SELECT `spud_menu_items`.* FROM `spud_menu_items` WHERE `spud_menu_items`.`spud_menu_id` = 23
|
851
851
|
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `spud_menus` WHERE `spud_menus`.`id` = 23[0m
|
852
|
-
[1m[35m (0.
|
852
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
853
853
|
Redirected to http://test.host/spud/admin/menus
|
854
|
-
Completed 302 Found in
|
855
|
-
[1m[36m (0.
|
856
|
-
[1m[35m (0.
|
854
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
855
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_menus` [0m
|
856
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
857
857
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
858
|
-
[1m[35m (0.
|
859
|
-
[1m[36m (0.
|
860
|
-
[1m[35m (0.
|
858
|
+
[1m[35m (0.1ms)[0m BEGIN
|
859
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
860
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
861
861
|
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
862
|
-
[1m[35mSpudUser Exists (0.
|
863
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
864
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
865
|
-
[1m[36mSQL (0.
|
862
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
863
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '5a829ca0776bfe8c796870e6f6573319bb99c7bacf52539439fe5ea297e5b39c0a103c9f655e4ef9bfb99f640c6e2040aabec965bc0ee21e8cc9bfa313e65537' LIMIT 1[0m
|
864
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '79KSaYNn7mcakYbjH7nn' LIMIT 1
|
865
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '14c233f4f7ce6d544862de80480d0c6fd107a556957e9b66b0dd767790604eb05fdf808eaafb8c6729ae79e56e2cf2696c42f17af926f2d85649cc5a1bfdb346', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'IcyZ89A6Ck1k6u9rctR0', 'YlpEIPta1DAObhdy8RUI', '5a829ca0776bfe8c796870e6f6573319bb99c7bacf52539439fe5ea297e5b39c0a103c9f655e4ef9bfb99f640c6e2040aabec965bc0ee21e8cc9bfa313e65537', '79KSaYNn7mcakYbjH7nn', 1, NULL, '2013-03-09 02:53:27')[0m
|
866
866
|
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
|
867
867
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
868
|
-
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
868
|
+
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'FC0haQehRZhHqVTxbD', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 26
|
869
869
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
870
870
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
871
871
|
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu24' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
872
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
873
|
-
[1m[36m (0.
|
872
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:27', NULL, 'Menu24', 0, '2013-03-09 02:53:27')
|
873
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
874
874
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_menus`
|
875
875
|
Processing by Spud::Admin::MenusController#destroy as HTML
|
876
876
|
Parameters: {"id"=>"23532"}
|
@@ -879,410 +879,383 @@ Processing by Spud::Admin::MenusController#destroy as HTML
|
|
879
879
|
Redirected to http://test.host/spud/admin/menus
|
880
880
|
Filter chain halted as :load_menu rendered or redirected
|
881
881
|
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
882
|
-
[1m[36m (0.
|
882
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_menus` [0m
|
883
883
|
[1m[35m (0.4ms)[0m ROLLBACK
|
884
|
-
[1m[36m (0.
|
884
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
885
885
|
[1m[35m (0.0ms)[0m BEGIN
|
886
|
-
[1m[36m (0.
|
887
|
-
[1m[35m (0.
|
886
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
887
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
888
888
|
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
889
|
-
[1m[35mSpudUser Exists (0.
|
890
|
-
[1m[36mSpudUser Exists (0.
|
891
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
892
|
-
[1m[36mSQL (0.
|
889
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
890
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'ff967d743c7817db21044e555d0b6bf3d7db7315c6f9c7bdedc8ba92ee4803fb6eb76b2ea09e84895c26cb190cf1e612df2a5ab9b5ed5565cbce848c7957cfc3' LIMIT 1[0m
|
891
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'iiS26vdHDGnhgdK4gW' LIMIT 1
|
892
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'ad0c2726d9f254d9f62ecb5a47bd3704cc5dcc0397e0c3c74055be80b558348ecf5a136a9d1665e28a110359d9bb1021bc682512d7c433b8307e8eefb71c061c', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, '9nXdNYrh6Zo93s2WuQq', 'VA8d1TGkkhyiaWQ0T8yp', 'ff967d743c7817db21044e555d0b6bf3d7db7315c6f9c7bdedc8ba92ee4803fb6eb76b2ea09e84895c26cb190cf1e612df2a5ab9b5ed5565cbce848c7957cfc3', 'iiS26vdHDGnhgdK4gW', 1, NULL, '2013-03-09 02:53:27')[0m
|
893
893
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
894
894
|
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
895
|
-
[1m[35m (0.
|
895
|
+
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = '3f1zuU1PGtKTG39FM0Rw', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 27
|
896
896
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
897
897
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
898
898
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
899
899
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page3' LIMIT 1
|
900
900
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page3' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
901
901
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page3' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
902
|
-
[1m[36mSQL (0.
|
902
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'Page3', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'page3', 0, 0)[0m
|
903
903
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
904
904
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
905
|
-
[1m[35mSpudPage Load (0.
|
906
|
-
[1m[36mSpudPermalink Load (0.
|
907
|
-
[1m[35mSpudPage Exists (0.
|
908
|
-
[1m[36mSpudPage Exists (0.
|
909
|
-
[1m[35mSQL (0.
|
905
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
906
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page4' LIMIT 1[0m
|
907
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page4' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
908
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page4' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
909
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'Page4', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'page4', 0, 0)
|
910
910
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
911
911
|
Processing by Spud::Admin::PagesController#index as HTML
|
912
|
-
[1m[35mSpudUser Load (0.
|
912
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 27 LIMIT 1
|
913
913
|
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`url_name` = 'home' LIMIT 1[0m
|
914
|
-
Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.
|
914
|
+
Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.5ms)
|
915
915
|
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL
|
916
|
-
[1m[36m (
|
917
|
-
[1m[35m (0.
|
918
|
-
[1m[36m (0.
|
916
|
+
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
917
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
918
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
919
919
|
[1m[35m (0.0ms)[0m BEGIN
|
920
920
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
921
921
|
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
922
|
-
[1m[36mSpudUser Exists (0.
|
923
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
924
|
-
[1m[36mSpudUser Exists (0.
|
925
|
-
[1m[35mSQL (0.
|
922
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
923
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'a8113ac5a2315accb82e14dde02fa664da0237e4d3937c52b01be0d280c982b63581f491a0684b350da0d0780af0f11c3f5d087ca6edee4033d73d703270b495' LIMIT 1
|
924
|
+
[1m[36mSpudUser Exists (0.4ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '2q85di8GTCbYlp9iMBMZ' LIMIT 1[0m
|
925
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', 'ffde2b95a4da7a231e6054e870d891ff1a7ea7c057c8a4ff94f74cf345e6dffb526621189569dead210aa3a2e93023ec4cccc2272d4587578654ad20f36d9d5a', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'ZRpSC5tEQzE0pDV47NgD', 'ITULFGQlCXoW2H6Kzo7', 'a8113ac5a2315accb82e14dde02fa664da0237e4d3937c52b01be0d280c982b63581f491a0684b350da0d0780af0f11c3f5d087ca6edee4033d73d703270b495', '2q85di8GTCbYlp9iMBMZ', 1, NULL, '2013-03-09 02:53:27')
|
926
926
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
927
927
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
928
|
-
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-
|
929
|
-
[1m[35m (0.
|
928
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'gSlLKmZ8lUWwtuC3wPIW', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 28[0m
|
929
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
930
930
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
931
|
-
[1m[35mSpudPage Load (0.
|
932
|
-
[1m[36mSpudPermalink Load (0.
|
931
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
932
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page5' LIMIT 1[0m
|
933
933
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page5' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
934
|
-
[1m[36mSpudPage Exists (0.
|
935
|
-
[1m[35mSQL (0.
|
934
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page5' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
935
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'Page5', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'page5', 0, 0)
|
936
936
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
937
937
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
938
938
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
939
939
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page6' LIMIT 1
|
940
|
-
[1m[36mSpudPage Exists (0.
|
940
|
+
[1m[36mSpudPage Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page6' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
941
941
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page6' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
942
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
943
|
-
[1m[35m (0.
|
942
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'Page6', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'page6', 0, 0)[0m
|
943
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
944
944
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
945
945
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 1 LIMIT 1
|
946
946
|
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
947
947
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page7' LIMIT 1
|
948
|
-
[1m[36mSpudPage Exists (0.
|
948
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page7' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` = 1) LIMIT 1[0m
|
949
949
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page7' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
950
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
950
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'Page7', NULL, NULL, NULL, 1, 0, 1, '2013-03-09 02:53:27', NULL, 'page7', 0, 0)[0m
|
951
951
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
952
952
|
Processing by Spud::Admin::PagesController#index as HTML
|
953
953
|
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 28 LIMIT 1[0m
|
954
|
-
[1m[35mSpudPage Load (0.
|
955
|
-
Completed 200 OK in
|
956
|
-
[1m[36m (0.
|
957
|
-
[1m[35m (0.
|
958
|
-
[1m[36m (0.
|
954
|
+
[1m[35mSpudPage Load (0.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`url_name` = 'home' LIMIT 1
|
955
|
+
Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.5ms)
|
956
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL[0m
|
957
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
958
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
959
959
|
[1m[35m (0.0ms)[0m BEGIN
|
960
960
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
961
961
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
962
|
-
[1m[36mSpudUser Exists (0.
|
963
|
-
[1m[35mSpudUser Exists (0.
|
964
|
-
[1m[36mSpudUser Exists (0.
|
965
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
966
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
962
|
+
[1m[36mSpudUser Exists (0.4ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
963
|
+
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
964
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '6c42de0507676de6e02e9f53160bb916476650c2b8166f760c2bbd44b78743e7b4892f215c25542741aefb9ae5909fab05ee063d78a024ae92519620e648781f' LIMIT 1[0m
|
965
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'jlmUE1zIak0u8QvFjF' LIMIT 1
|
966
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '0e5339320f56f5426e871958fee3a53d2623cd1b5aa268cf66e57af7caecee3bd419c5bab526c337ee2908596d485f202e464a9d5d49235dcf94346f52de9caa', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'Nj9dDU4EpIJmA9JIjvT3', 'yEbx7dGPAZame6tN5Qzy', '6c42de0507676de6e02e9f53160bb916476650c2b8166f760c2bbd44b78743e7b4892f215c25542741aefb9ae5909fab05ee063d78a024ae92519620e648781f', 'jlmUE1zIak0u8QvFjF', 1, NULL, '2013-03-09 02:53:27')[0m
|
967
967
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
968
968
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
969
|
-
[1m[35m (0.
|
969
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = '65mbccvhluy0jV3x9kio', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 29
|
970
970
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
971
971
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
972
972
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
973
|
-
[1m[35mSpudPermalink Load (0.
|
973
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page8' LIMIT 1
|
974
974
|
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page8' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
975
|
-
[1m[35mSpudPage Exists (0.
|
976
|
-
[1m[36mSQL (0.
|
977
|
-
[1m[35m (0.
|
975
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page8' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
976
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:27', NULL, 'html', NULL, NULL, NULL, 'Page8', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:27', NULL, 'page8', 0, 0)[0m
|
977
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
978
978
|
Processing by Spud::Admin::PagesController#show as HTML
|
979
979
|
Parameters: {"id"=>"17"}
|
980
980
|
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 29 LIMIT 1[0m
|
981
|
-
[1m[35mSpudPage Load (0.
|
982
|
-
[1m[36mSpudPagePartial Load (0.
|
983
|
-
Completed 200 OK in
|
981
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 17 LIMIT 1
|
982
|
+
[1m[36mSpudPagePartial Load (0.2ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (17)[0m
|
983
|
+
Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.6ms)
|
984
984
|
[1m[35m (0.4ms)[0m ROLLBACK
|
985
985
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
986
|
-
[1m[35m (0.
|
987
|
-
[1m[36m (0.
|
988
|
-
[1m[35m (0.
|
989
|
-
[1m[36mSpudUser Exists (0.
|
986
|
+
[1m[35m (0.0ms)[0m BEGIN
|
987
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
988
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
989
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
990
990
|
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
991
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '
|
992
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
993
|
-
[1m[36mSQL (0.
|
994
|
-
[1m[35m (0.
|
995
|
-
[1m[36m (0.
|
996
|
-
[1m[35m (0.
|
997
|
-
[1m[36m (0.
|
991
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '4d2c2105fbba06055bb65e325c3475afebec77635384b8db513d29767dabea209a97070e716af028bc422329c79f16b9d2bb8eca2001df475cc2639072de53e5' LIMIT 1[0m
|
992
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'gP11eAp2X4bxzhg2lrk' LIMIT 1
|
993
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:27', '66cddc50b7fb76b8e28ea633fbdcb6aaef99db1e936cec0a468110911183269de8d8873f797c3c48d39a3c3e090fd076081bea22fc9a40bf8cc990fc81b8c7b8', '2013-03-09 02:53:27', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:27', 'testuser', 1, 'pdxmdc4yW8dBXwWs8T', 'RyggoRlaPnRDkXKvoac', '4d2c2105fbba06055bb65e325c3475afebec77635384b8db513d29767dabea209a97070e716af028bc422329c79f16b9d2bb8eca2001df475cc2639072de53e5', 'gP11eAp2X4bxzhg2lrk', 1, NULL, '2013-03-09 02:53:27')[0m
|
994
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
995
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
996
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:27', `last_login_ip` = '0.0.0.0', `perishable_token` = 'TrmKiNT4r7HjpsOWHpRJ', `updated_at` = '2013-03-09 02:53:27' WHERE `spud_users`.`id` = 30
|
997
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
998
998
|
Processing by Spud::Admin::PagesController#new as HTML
|
999
|
-
[1m[35mSpudUser Load (0.
|
1000
|
-
Completed 200 OK in
|
1001
|
-
[1m[36m (0.
|
999
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 30 LIMIT 1
|
1000
|
+
Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
1001
|
+
[1m[36m (0.6ms)[0m [1mROLLBACK[0m
|
1002
1002
|
[1m[35m (0.1ms)[0m ROLLBACK
|
1003
|
-
[1m[36m (0.
|
1004
|
-
[1m[35m (0.
|
1003
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1004
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1005
1005
|
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
1006
|
-
[1m[35mSpudUser Exists (0.
|
1007
|
-
[1m[36mSpudUser Exists (0.
|
1008
|
-
[1m[35mSpudUser Exists (0.
|
1009
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY '
|
1010
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
1011
|
-
[1m[36m (0.
|
1006
|
+
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
1007
|
+
[1m[36mSpudUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
1008
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '7c844aadc96ad0a3a7b65a5bb678bb884395a8e3375091124028f404657baec0a57f779327214eafee1e53c09b87278783610a1d682329b76a9d7c0dc0aaf55d' LIMIT 1
|
1009
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'TdiVeQ30Ts4bz3SLkpj' LIMIT 1[0m
|
1010
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:28', 'b20436a44640eefeb65c279ffe1cda2a17d26d0ef06a5dbc0b04cc7558878cd0ef564e31d1f175fca4ea0aa141eec739e36bee66ed0dbae39645d54188b7c4a6', '2013-03-09 02:53:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:28', 'testuser', 1, 'YnIvYn44CICFx1XNOPM6', 'kx0vVvlcf4IzyfhIS3VH', '7c844aadc96ad0a3a7b65a5bb678bb884395a8e3375091124028f404657baec0a57f779327214eafee1e53c09b87278783610a1d682329b76a9d7c0dc0aaf55d', 'TdiVeQ30Ts4bz3SLkpj', 1, NULL, '2013-03-09 02:53:28')
|
1011
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1012
1012
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1013
|
-
[1m[36m (0.
|
1013
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:28', `last_login_ip` = '0.0.0.0', `perishable_token` = 'aCOVVwMApmVFd1IFo1', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_users`.`id` = 31[0m
|
1014
1014
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1015
1015
|
Processing by Spud::Admin::PagesController#new as HTML
|
1016
|
-
[1m[36mSpudUser Load (0.
|
1017
|
-
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.
|
1016
|
+
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 31 LIMIT 1[0m
|
1017
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
1018
1018
|
[1m[35m (0.5ms)[0m ROLLBACK
|
1019
1019
|
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1020
1020
|
[1m[35m (0.0ms)[0m BEGIN
|
1021
1021
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1022
1022
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1023
|
-
[1m[36mSpudUser Exists (0.
|
1024
|
-
[1m[35mSpudUser Exists (0.
|
1025
|
-
[1m[36mSpudUser Exists (0.
|
1026
|
-
[1m[35mSpudUser Exists (0.
|
1027
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-
|
1028
|
-
[1m[35m (0.
|
1029
|
-
[1m[36m (0.
|
1030
|
-
[1m[35m (0.
|
1023
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
1024
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
1025
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '62897847f8f6a22df32f59f0f16368095fc138a0e05f1177c094eb88fbf14647dc68acb677c3d2b3ad8b20b59d603251fc81c348894e80f6946fe76d57cfd6da' LIMIT 1[0m
|
1026
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'aMaE7lV5CqTXUe2cOqu9' LIMIT 1
|
1027
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:28', '1bda0583c832e7cc47a72bb3e8632503ab4c1062badc6d736ecdd7c2dbe34b9a058b017c7c9e3ba7894ca559f981b1e6d791eaa49a978e4abe46b0e2c71c7dd4', '2013-03-09 02:53:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:28', 'testuser', 1, 'iFkdzQ0KYoQNWApLc57Z', 'M4ej5yppkGGNCrMXUW5', '62897847f8f6a22df32f59f0f16368095fc138a0e05f1177c094eb88fbf14647dc68acb677c3d2b3ad8b20b59d603251fc81c348894e80f6946fe76d57cfd6da', 'aMaE7lV5CqTXUe2cOqu9', 1, NULL, '2013-03-09 02:53:28')[0m
|
1028
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1029
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
1030
|
+
[1m[35m (0.3ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:28', `last_login_ip` = '0.0.0.0', `perishable_token` = 'cDpGkP6Sc0nyMwbqlcmg', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_users`.`id` = 32
|
1031
1031
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1032
|
-
[1m[35m (0.
|
1032
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1033
1033
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1034
1034
|
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page9' LIMIT 1
|
1035
1035
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page9' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1036
|
-
[1m[35mSpudPage Exists (0.
|
1037
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1038
|
-
[1m[35m (0.
|
1036
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page9' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1037
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page9', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page9', 0, 0)[0m
|
1038
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1039
1039
|
Processing by Spud::Admin::PagesController#edit as HTML
|
1040
1040
|
Parameters: {"id"=>"18"}
|
1041
1041
|
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 32 LIMIT 1[0m
|
1042
|
-
[1m[
|
1043
|
-
[1m[
|
1044
|
-
|
1045
|
-
[1m[
|
1046
|
-
[1m[
|
1047
|
-
Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.8ms)
|
1048
|
-
[1m[36m (0.6ms)[0m [1mROLLBACK[0m
|
1049
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
1050
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1042
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 18 LIMIT 1
|
1043
|
+
[1m[36mSpudPagePartial Load (0.2ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (18)[0m
|
1044
|
+
Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.6ms)
|
1045
|
+
[1m[35m (0.7ms)[0m ROLLBACK
|
1046
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1051
1047
|
[1m[35m (0.1ms)[0m BEGIN
|
1052
|
-
[1m[36m (0.
|
1053
|
-
[1m[
|
1054
|
-
[1m[36mSpudUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`
|
1055
|
-
[1m[35mSpudUser Exists (0.
|
1056
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`
|
1057
|
-
[1m[
|
1058
|
-
[1m[
|
1059
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
1060
|
-
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-02-20 13:04:28', `last_login_ip` = '0.0.0.0', `perishable_token` = 'dElascoFLBJ9neU3v', `updated_at` = '2013-02-20 13:04:28' WHERE `spud_users`.`id` = 33[0m
|
1048
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1049
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1050
|
+
[1m[36mSpudUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
1051
|
+
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
1052
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '98892268414ca50674b84290574335b31fd3595ee9240da4577c03b34c68729333208f4f35800a1234ced513d63023f4c42d5905bb5d1aef9e8c97a8947c0f1d' LIMIT 1[0m
|
1053
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'umG3aGUMIdBM4BQG0bI' LIMIT 1
|
1054
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:28', '33d82517324f4b6eb47eff3f69f327548a68a9fd2bce3d308424c3f66fcb0c8fb62b0dc1aa6b71a78b460256fc76d9105d2c55b8db19a63be5b95c1d11caedf0', '2013-03-09 02:53:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:28', 'testuser', 1, 'kJezAmUO4u6ssaSHPKpe', 'MRGQs7KSlk85fsQG32E4', '98892268414ca50674b84290574335b31fd3595ee9240da4577c03b34c68729333208f4f35800a1234ced513d63023f4c42d5905bb5d1aef9e8c97a8947c0f1d', 'umG3aGUMIdBM4BQG0bI', 1, NULL, '2013-03-09 02:53:28')[0m
|
1061
1055
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1062
1056
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1063
|
-
[1m[
|
1064
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page10' LIMIT 1[0m
|
1065
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page10' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1066
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page10' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1067
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page10', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page10', 0, 0)
|
1057
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:28', `last_login_ip` = '0.0.0.0', `perishable_token` = '7hq0Zbb35xPfhXBLc08w', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_users`.`id` = 33
|
1068
1058
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1059
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1060
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1061
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page10' LIMIT 1
|
1062
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page10' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1063
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page10' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1064
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page10', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page10', 0, 0)[0m
|
1065
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1069
1066
|
Processing by Spud::Admin::PagesController#update as HTML
|
1070
1067
|
Parameters: {"spud_page"=>{"name"=>"Adam", "url_name"=>"page10", "publish_at"=>nil, "created_by"=>nil, "updated_by"=>nil, "format"=>"html", "spud_page_id"=>nil, "meta_description"=>nil, "meta_keywords"=>nil, "page_order"=>nil, "visibility"=>"0", "published"=>true, "use_custom_url_name"=>false, "notes"=>nil, "layout"=>nil}, "id"=>"19"}
|
1071
|
-
[1m[
|
1072
|
-
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 19 LIMIT 1[0m
|
1073
|
-
[1m[35mSpudPagePartial Load (0.2ms)[0m SELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (19)
|
1074
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1075
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 19)
|
1076
|
-
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'adam' LIMIT 1[0m
|
1077
|
-
[1m[35mSpudPermalink Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'page10' AND `spud_permalinks`.`site_id` = 0) LIMIT 1
|
1078
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (19, 'SpudPage', '2013-02-20 13:04:28', 0, '2013-02-20 13:04:28', 'page10')[0m
|
1079
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Adam' AND `spud_pages`.`id` != 19 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1080
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'adam' AND `spud_pages`.`id` != 19 AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1081
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_pages` SET `name` = 'Adam', `url_name` = 'adam', `updated_at` = '2013-02-20 13:04:28' WHERE `spud_pages`.`id` = 19
|
1082
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1083
|
-
Redirected to http://test.host/spud/admin/pages
|
1084
|
-
Completed 302 Found in 53ms (ActiveRecord: 2.4ms)
|
1068
|
+
[1m[36mSpudUser Load (0.3ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 33 LIMIT 1[0m
|
1085
1069
|
[1m[35mSpudPage Load (0.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 19 LIMIT 1
|
1086
|
-
[1m[
|
1087
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
1088
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1089
|
-
[1m[35m (0.1ms)[0m BEGIN
|
1090
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
1091
|
-
[1m[35mSpudUser Exists (0.4ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
1092
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
1093
|
-
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '0c5f7c188413e11838b0854837f08afc289d97ed162a3644a6fc02a9f4705398920021eadbb403b5e6c6abfe0c136b148a2979b1b65edae5d629eb708d741e9f' LIMIT 1
|
1094
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'nlxacM8VrX7O7Ap6c8s' LIMIT 1[0m
|
1095
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-02-20 13:04:28', '5cf371c913656802be0f54a20ce0c9ad8e51634bb4c846e253da4d539af9fa94cd730f4c31c5a57e1fc9b10bc2f8a4f15d09c56ea07208c7e6ece6a764ba8413', '2013-02-20 13:04:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-02-20 13:04:28', 'testuser', 1, 'fVWyDzdTDsufZcGpECm', '3FNwItRqhiRKG7PZw', '0c5f7c188413e11838b0854837f08afc289d97ed162a3644a6fc02a9f4705398920021eadbb403b5e6c6abfe0c136b148a2979b1b65edae5d629eb708d741e9f', 'nlxacM8VrX7O7Ap6c8s', 1, NULL, '2013-02-20 13:04:28')
|
1096
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1070
|
+
[1m[36mSpudPagePartial Load (0.2ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (19)[0m
|
1097
1071
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1098
|
-
[1m[
|
1072
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 19)[0m
|
1073
|
+
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'adam' LIMIT 1
|
1074
|
+
[1m[36mSpudPermalink Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'page10' AND `spud_permalinks`.`site_id` = 0) LIMIT 1[0m
|
1075
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (19, 'SpudPage', '2013-03-09 02:53:28', 0, '2013-03-09 02:53:28', 'page10')
|
1076
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Adam' AND `spud_pages`.`id` != 19 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1077
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'adam' AND `spud_pages`.`id` != 19 AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1078
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_pages` SET `name` = 'Adam', `url_name` = 'adam', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_pages`.`id` = 19[0m
|
1099
1079
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1080
|
+
Redirected to http://test.host/spud/admin/pages
|
1081
|
+
Completed 302 Found in 14ms (ActiveRecord: 2.2ms)
|
1082
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 19 LIMIT 1[0m
|
1083
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
1084
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1085
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1086
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1087
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1088
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
1089
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
1090
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '6624545fefbeba9541c185d629c1d32ddc330938d56c76cd4cc7b82a3c735ea254882cfcc62bf10e43bc86d1775df89d25719bb0656a3341490942f3052b09ed' LIMIT 1[0m
|
1091
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'KF4Hz0lKgn23NBZNhiwU' LIMIT 1
|
1092
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:28', 'e12673c0abfe3c6814a32ec3f834a19151b4b5968f9d46c36e3a1cadb5cf48da2205a468506a6bf8a659cda775e51673d880dc997115f7b641247e0d457c0a35', '2013-03-09 02:53:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:28', 'testuser', 1, 'QdoTkcGnA7fkpOrgVQ', 'e89HsFNpQco8EpjVdG8', '6624545fefbeba9541c185d629c1d32ddc330938d56c76cd4cc7b82a3c735ea254882cfcc62bf10e43bc86d1775df89d25719bb0656a3341490942f3052b09ed', 'KF4Hz0lKgn23NBZNhiwU', 1, NULL, '2013-03-09 02:53:28')[0m
|
1093
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
|
1100
1094
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1101
|
-
[1m[
|
1102
|
-
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page11' LIMIT 1[0m
|
1103
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page11' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1104
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page11' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1105
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page11', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page11', 0, 0)
|
1095
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:28', `last_login_ip` = '0.0.0.0', `perishable_token` = 'rPahlKdcX2Gnwx5GLc', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_users`.`id` = 34
|
1106
1096
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1097
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
1098
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1099
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page11' LIMIT 1
|
1100
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page11' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1101
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page11' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1102
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page11', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page11', 0, 0)[0m
|
1103
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1107
1104
|
Processing by Spud::Admin::PagesController#update as HTML
|
1108
1105
|
Parameters: {"spud_page"=>{"name"=>"Adam", "url_name"=>"page11", "publish_at"=>nil, "created_by"=>nil, "updated_by"=>nil, "format"=>"html", "spud_page_id"=>nil, "meta_description"=>nil, "meta_keywords"=>nil, "page_order"=>nil, "visibility"=>"0", "published"=>true, "use_custom_url_name"=>false, "notes"=>nil, "layout"=>nil}, "id"=>"20"}
|
1109
|
-
[1m[
|
1110
|
-
[1m[
|
1111
|
-
[1m[
|
1112
|
-
[1m[
|
1113
|
-
[1m[
|
1114
|
-
[1m[
|
1115
|
-
[1m[
|
1116
|
-
[1m[
|
1117
|
-
[1m[
|
1118
|
-
[1m[
|
1119
|
-
[1m[
|
1120
|
-
[1m[
|
1106
|
+
[1m[36mSpudUser Load (0.4ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 34 LIMIT 1[0m
|
1107
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 20 LIMIT 1
|
1108
|
+
[1m[36mSpudPagePartial Load (0.2ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (20)[0m
|
1109
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1110
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 20)[0m
|
1111
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'adam' LIMIT 1
|
1112
|
+
[1m[36mSpudPermalink Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'page11' AND `spud_permalinks`.`site_id` = 0) LIMIT 1[0m
|
1113
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (20, 'SpudPage', '2013-03-09 02:53:28', 0, '2013-03-09 02:53:28', 'page11')
|
1114
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Adam' AND `spud_pages`.`id` != 20 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1115
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'adam' AND `spud_pages`.`id` != 20 AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1116
|
+
[1m[36m (0.1ms)[0m [1mUPDATE `spud_pages` SET `name` = 'Adam', `url_name` = 'adam', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_pages`.`id` = 20[0m
|
1117
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1121
1118
|
Redirected to http://test.host/spud/admin/pages
|
1122
|
-
Completed 302 Found in 12ms (ActiveRecord: 2.
|
1123
|
-
[1m[
|
1124
|
-
[1m[
|
1125
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1119
|
+
Completed 302 Found in 12ms (ActiveRecord: 2.2ms)
|
1120
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
1121
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1126
1122
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1127
|
-
[1m[35m (0.
|
1128
|
-
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
1129
|
-
[1m[35mSpudUser Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
1130
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '810a6d1833d2b6b8ddfc86447c2a15d16ef94f99940c5887931c7b97f5cb16a022cce177fa6543e4b7898c9a9c0c5e01859e136af0c1eb633162e39065507b29' LIMIT 1[0m
|
1131
|
-
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'SOizZc8PV0JlBlRBnJe' LIMIT 1
|
1132
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-02-20 13:04:28', 'a121f564c9aa98b214cbd0bda59095cea1b70a257a254788910146e17ca5e09efbdaab92c17152def061d84cc4467b6ee1d5a6870f18599356941dac9f2c4b15', '2013-02-20 13:04:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-02-20 13:04:28', 'testuser', 1, 'WaPgMKe965RGkOQoejlI', 'QUETmmnlgnLip94UW9WT', '810a6d1833d2b6b8ddfc86447c2a15d16ef94f99940c5887931c7b97f5cb16a022cce177fa6543e4b7898c9a9c0c5e01859e136af0c1eb633162e39065507b29', 'SOizZc8PV0JlBlRBnJe', 1, NULL, '2013-02-20 13:04:28')[0m
|
1133
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1123
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1134
1124
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1135
|
-
[1m[
|
1136
|
-
[1m[
|
1125
|
+
[1m[35mSpudUser Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1
|
1126
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1[0m
|
1127
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'e95849e1e58f9d18c9fb877565817601828b2eb9389539dcdbd09384dc091ff22db2c76b0f71e2257dac33a17d3e6ce97fa0e8ca39ba48d4abd68d72dc274eb5' LIMIT 1
|
1128
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'owxGoc0jw4gWw4z1Kcf' LIMIT 1[0m
|
1129
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:28', '3bfd799cd12873400bbe704f59870ff0d3387cfb82964032c64c716feb420b18ab35666fcaa29bd3fe7282331187144b6286a24453703d9259670a8dc634a496', '2013-03-09 02:53:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:28', 'testuser', 1, 'SWE2rtqQ837iYD8VC3wT', 'FPBivXpuyOSBMxmkg', 'e95849e1e58f9d18c9fb877565817601828b2eb9389539dcdbd09384dc091ff22db2c76b0f71e2257dac33a17d3e6ce97fa0e8ca39ba48d4abd68d72dc274eb5', 'owxGoc0jw4gWw4z1Kcf', 1, NULL, '2013-03-09 02:53:28')
|
1130
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1137
1131
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1138
|
-
[1m[
|
1139
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page12' LIMIT 1
|
1140
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page12' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1141
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page12' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1142
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page12', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page12', 0, 0)[0m
|
1132
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:28', `last_login_ip` = '0.0.0.0', `perishable_token` = '9VdF29zNJpMO0NUPTeIS', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_users`.`id` = 35[0m
|
1143
1133
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1144
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_pages` [0m
|
1145
|
-
Processing by Spud::Admin::PagesController#destroy as HTML
|
1146
|
-
Parameters: {"id"=>"21"}
|
1147
|
-
[1m[35mSpudUser Load (0.3ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 35 LIMIT 1
|
1148
|
-
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 21 LIMIT 1[0m
|
1149
|
-
[1m[35mSpudPagePartial Load (0.2ms)[0m SELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (21)
|
1150
1134
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1151
|
-
[1m[35mSpudPage Load (0.
|
1152
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`
|
1153
|
-
[1m[
|
1135
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1136
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page12' LIMIT 1[0m
|
1137
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page12' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1138
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page12' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1139
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page12', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page12', 0, 0)
|
1154
1140
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1141
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_pages`
|
1142
|
+
Processing by Spud::Admin::PagesController#destroy as HTML
|
1143
|
+
Parameters: {"id"=>"21"}
|
1144
|
+
[1m[36mSpudUser Load (0.2ms)[0m [1mSELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 35 LIMIT 1[0m
|
1145
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 21 LIMIT 1
|
1146
|
+
[1m[36mSpudPagePartial Load (0.1ms)[0m [1mSELECT `spud_page_partials`.* FROM `spud_page_partials` WHERE `spud_page_partials`.`spud_page_id` IN (21)[0m
|
1147
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1148
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`spud_page_id` = 21[0m
|
1149
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`attachment_id` = 21 AND `spud_permalinks`.`attachment_type` = 'SpudPage'
|
1150
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM `spud_pages` WHERE `spud_pages`.`id` = 21[0m
|
1151
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1155
1152
|
Redirected to http://test.host/spud/admin/pages
|
1156
|
-
Completed 302 Found in
|
1157
|
-
[1m[
|
1158
|
-
[1m[
|
1159
|
-
[1m[
|
1160
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1153
|
+
Completed 302 Found in 9ms (ActiveRecord: 1.2ms)
|
1154
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_pages` [0m
|
1155
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
1156
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1161
1157
|
[1m[35m (0.0ms)[0m BEGIN
|
1162
|
-
[1m[36m (0.
|
1163
|
-
[1m[
|
1164
|
-
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`
|
1165
|
-
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`
|
1166
|
-
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`
|
1167
|
-
[1m[
|
1168
|
-
[1m[
|
1169
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
1170
|
-
[1m[36m (0.3ms)[0m [1mUPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-02-20 13:04:28', `last_login_ip` = '0.0.0.0', `perishable_token` = 'ahUUC9DeoOPmq2rhhtH', `updated_at` = '2013-02-20 13:04:28' WHERE `spud_users`.`id` = 36[0m
|
1158
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1159
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1160
|
+
[1m[36mSpudUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'test@testuser.com' LIMIT 1[0m
|
1161
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
|
1162
|
+
[1m[36mSpudUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '61dad0a6a08f21f16f35c2d8170ebb1d2ba8d8c8cad80d97779cabbdbd1dd4ba238e1ad88076d70b24b63495b81a2be65f64e085b714ed818ca70d2dcaf7c5f0' LIMIT 1[0m
|
1163
|
+
[1m[35mSpudUser Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'DXHux1vPoJATpseAePZ' LIMIT 1
|
1164
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `failed_login_count`, `first_name`, `last_login_at`, `last_login_ip`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `time_zone`, `updated_at`) VALUES ('2013-03-09 02:53:28', '27c2fff5e23b55556b66436ccd9db26304f1549db6845201a22d52d158a96d5f328f99a49366a26415e2077f2df417ec16a4acaa2da59b15e48503b9419f2889', '2013-03-09 02:53:28', '0.0.0.0', 'test@testuser.com', 0, NULL, NULL, NULL, NULL, '2013-03-09 02:53:28', 'testuser', 1, 'pX1JU7fbboVytxK0rV8', 'u2Us8QYzVo0h7g7ayv3S', '61dad0a6a08f21f16f35c2d8170ebb1d2ba8d8c8cad80d97779cabbdbd1dd4ba238e1ad88076d70b24b63495b81a2be65f64e085b714ed818ca70d2dcaf7c5f0', 'DXHux1vPoJATpseAePZ', 1, NULL, '2013-03-09 02:53:28')[0m
|
1171
1165
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1172
1166
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1173
|
-
[1m[
|
1174
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page13' LIMIT 1[0m
|
1175
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page13' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1176
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page13' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1177
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page13', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page13', 0, 0)
|
1167
|
+
[1m[35m (0.2ms)[0m UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2013-03-09 02:53:28', `last_login_ip` = '0.0.0.0', `perishable_token` = 'vJrfxYmwpZnINIMJ2Dtq', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_users`.`id` = 36
|
1178
1168
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1179
|
-
[1m[35m (0.1ms)[0m
|
1169
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1170
|
+
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1171
|
+
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page13' LIMIT 1
|
1172
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page13' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1173
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page13' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1174
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page13', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page13', 0, 0)[0m
|
1175
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
|
1176
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_pages` [0m
|
1180
1177
|
Processing by Spud::Admin::PagesController#destroy as HTML
|
1181
1178
|
Parameters: {"id"=>"23532"}
|
1182
|
-
[1m[
|
1183
|
-
[1m[
|
1179
|
+
[1m[35mSpudUser Load (0.2ms)[0m SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 36 LIMIT 1
|
1180
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 23532 LIMIT 1[0m
|
1184
1181
|
Redirected to http://test.host/spud/admin/pages
|
1185
1182
|
Filter chain halted as :load_page rendered or redirected
|
1186
1183
|
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
1187
|
-
[1m[
|
1188
|
-
[1m[
|
1189
|
-
[1m[
|
1190
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1184
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `spud_pages`
|
1185
|
+
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
1186
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1191
1187
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1188
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1192
1189
|
Processing by Spud::Cms::SitemapsController#show as XML
|
1190
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 ORDER BY spud_page_id[0m
|
1191
|
+
Completed 200 OK in 14ms (Views: 11.9ms | ActiveRecord: 0.2ms)
|
1193
1192
|
[1m[35mSpudPage Load (0.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 ORDER BY spud_page_id
|
1194
|
-
|
1195
|
-
[1m[36mSpudPage Load (0.9ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 ORDER BY spud_page_id[0m
|
1193
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1196
1194
|
[1m[35m (0.1ms)[0m ROLLBACK
|
1197
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1198
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1199
1195
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1196
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1200
1197
|
Processing by Spud::Cms::SitemapsController#show as HTML
|
1201
|
-
[1m[
|
1198
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 ORDER BY spud_page_id[0m
|
1202
1199
|
Completed 406 Not Acceptable in 2ms (ActiveRecord: 0.3ms)
|
1203
|
-
[1m[
|
1204
|
-
[1m[
|
1205
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1200
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
1201
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1206
1202
|
[1m[35m (0.0ms)[0m BEGIN
|
1207
|
-
[1m[36m (0.1ms)[0m [
|
1208
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1209
|
-
[1m[36mSpudPermalink Load (0.3ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page14' LIMIT 1[0m
|
1210
|
-
[1m[35mSpudPage Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page14' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1211
|
-
[1m[36mSpudPage Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page14' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1212
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page14', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page14', 0, 0)
|
1213
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1214
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1215
|
-
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1216
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page15' LIMIT 1
|
1217
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page15' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1218
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page15' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1219
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page15', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page15', 0, 0)[0m
|
1220
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1221
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1222
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 1
|
1223
|
-
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 1 AND `spud_permalinks`.`url_name` = 'page16' LIMIT 1[0m
|
1224
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page16' AND `spud_pages`.`site_id` = 1 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1225
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page16' AND `spud_pages`.`site_id` = 1) LIMIT 1[0m
|
1226
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page16', NULL, NULL, NULL, 1, 1, NULL, '2013-02-20 13:04:28', NULL, 'page16', 0, 0)
|
1227
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1203
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1228
1204
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1229
|
-
[1m[36mSpudPage Load (0.
|
1230
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` =
|
1231
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY '
|
1232
|
-
[1m[35mSpudPage Exists (0.
|
1233
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1205
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1206
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page14' LIMIT 1
|
1207
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page14' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1208
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page14' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1209
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page14', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page14', 0, 0)[0m
|
1234
1210
|
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
|
1235
1211
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1236
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` =
|
1237
|
-
[1m[36mSpudPermalink Load (0.
|
1238
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY '
|
1239
|
-
[1m[36mSpudPage Exists (0.
|
1240
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1241
|
-
[1m[36m (0.
|
1242
|
-
Processing by Spud::Cms::SitemapsController#show as XML
|
1243
|
-
[1m[35mSpudPage Load (0.4ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 AND `spud_pages`.`site_id` = 1 ORDER BY spud_page_id
|
1244
|
-
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms)
|
1245
|
-
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 AND `spud_pages`.`site_id` = 1 ORDER BY spud_page_id[0m
|
1246
|
-
[1m[35m (0.5ms)[0m ROLLBACK
|
1247
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1248
|
-
[1m[35m (0.1ms)[0m BEGIN
|
1249
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1250
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
1251
|
-
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Main' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
1252
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-02-20 13:04:28', NULL, 'Main', 0, '2013-02-20 13:04:28')
|
1253
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1212
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1213
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page15' LIMIT 1[0m
|
1214
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page15' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1215
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page15' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1216
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page15', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page15', 0, 0)
|
1217
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1254
1218
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1255
|
-
[1m[
|
1219
|
+
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 1[0m
|
1220
|
+
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 1 AND `spud_permalinks`.`url_name` = 'page16' LIMIT 1
|
1221
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page16' AND `spud_pages`.`site_id` = 1 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1222
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page16' AND `spud_pages`.`site_id` = 1) LIMIT 1
|
1223
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page16', NULL, NULL, NULL, 1, 1, NULL, '2013-03-09 02:53:28', NULL, 'page16', 0, 0)[0m
|
1256
1224
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1257
1225
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1258
|
-
[1m[
|
1259
|
-
[1m[
|
1260
|
-
[1m[
|
1261
|
-
[1m[
|
1262
|
-
|
1263
|
-
spud_menu_items.url as url,
|
1264
|
-
spud_menu_items.classes as classes,
|
1265
|
-
spud_menu_items.parent_type as parent_type,
|
1266
|
-
spud_menu_items.menu_order as menu_order,
|
1267
|
-
spud_menu_items.parent_id as parent_id,
|
1268
|
-
spud_menu_items.name as name,
|
1269
|
-
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` = 25 ORDER BY parent_type, parent_id[0m
|
1270
|
-
[1m[35m (0.3ms)[0m ROLLBACK
|
1271
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1272
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1273
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1274
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
1275
|
-
[1m[36mSpudMenu Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu25' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
1276
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-02-20 13:04:28', NULL, 'Menu25', 0, '2013-02-20 13:04:28')
|
1226
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 1
|
1227
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 1 AND `spud_permalinks`.`url_name` = 'page17' LIMIT 1[0m
|
1228
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page17' AND `spud_pages`.`site_id` = 1 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1229
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page17' AND `spud_pages`.`site_id` = 1) LIMIT 1[0m
|
1230
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page17', NULL, NULL, NULL, 1, 1, NULL, '2013-03-09 02:53:28', NULL, 'page17', 0, 0)
|
1277
1231
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1278
1232
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1279
|
-
[1m[
|
1233
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 1[0m
|
1234
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 1 AND `spud_permalinks`.`url_name` = 'page18' LIMIT 1
|
1235
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page18' AND `spud_pages`.`site_id` = 1 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1236
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page18' AND `spud_pages`.`site_id` = 1) LIMIT 1
|
1237
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page18', NULL, NULL, NULL, 1, 1, NULL, '2013-03-09 02:53:28', NULL, 'page18', 0, 0)[0m
|
1238
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1239
|
+
Processing by Spud::Cms::SitemapsController#show as XML
|
1240
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 AND `spud_pages`.`site_id` = 1 ORDER BY spud_page_id[0m
|
1241
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.3ms)
|
1242
|
+
[1m[35mSpudPage Load (0.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`published` = 1 AND `spud_pages`.`visibility` = 0 AND `spud_pages`.`site_id` = 1 ORDER BY spud_page_id
|
1243
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
1244
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1245
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1246
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1247
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
1248
|
+
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Main' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
1249
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:28', NULL, 'Main', 0, '2013-03-09 02:53:28')[0m
|
1280
1250
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1281
1251
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1282
|
-
[1m[35mSQL (0.
|
1252
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 15', 25, 'SpudMenu', 25, NULL, '2013-03-09 02:53:28', '/')
|
1283
1253
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1284
|
-
[1m[
|
1285
|
-
[1m[
|
1254
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1255
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 16', 25, 'SpudMenu', 25, NULL, '2013-03-09 02:53:28', '/')[0m
|
1256
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1257
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = 'Main' LIMIT 1[0m
|
1258
|
+
[1m[35mSpudMenuItem Load (0.3ms)[0m SELECT
|
1286
1259
|
spud_menu_items.id as id,
|
1287
1260
|
spud_menu_items.url as url,
|
1288
1261
|
spud_menu_items.classes as classes,
|
@@ -1290,26 +1263,23 @@ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms)
|
|
1290
1263
|
spud_menu_items.menu_order as menu_order,
|
1291
1264
|
spud_menu_items.parent_id as parent_id,
|
1292
1265
|
spud_menu_items.name as name,
|
1293
|
-
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` =
|
1294
|
-
[1m[
|
1295
|
-
[1m[
|
1296
|
-
[1m[
|
1297
|
-
[1m[
|
1298
|
-
[1m[
|
1299
|
-
[1m[
|
1300
|
-
[1m[
|
1301
|
-
[1m[
|
1302
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1303
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-02-20 13:04:28', NULL, 0, 'Menu Item 19', 27, 'SpudMenu', 27, NULL, '2013-02-20 13:04:28', '/')[0m
|
1304
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1266
|
+
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` = 25 ORDER BY parent_type, parent_id
|
1267
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
1268
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1269
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1270
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1271
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1272
|
+
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu25' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
1273
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:28', NULL, 'Menu25', 0, '2013-03-09 02:53:28')[0m
|
1274
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1305
1275
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1306
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
1276
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 17', 26, 'SpudMenu', 26, NULL, '2013-03-09 02:53:28', '/')
|
1307
1277
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1308
1278
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1309
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
1279
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 18', 26, 'SpudMenu', 26, NULL, '2013-03-09 02:53:28', '/')[0m
|
1310
1280
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1311
|
-
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = '
|
1312
|
-
[1m[35mSpudMenuItem Load (0.
|
1281
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = 'Menu25' LIMIT 1[0m
|
1282
|
+
[1m[35mSpudMenuItem Load (0.3ms)[0m SELECT
|
1313
1283
|
spud_menu_items.id as id,
|
1314
1284
|
spud_menu_items.url as url,
|
1315
1285
|
spud_menu_items.classes as classes,
|
@@ -1317,25 +1287,25 @@ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms)
|
|
1317
1287
|
spud_menu_items.menu_order as menu_order,
|
1318
1288
|
spud_menu_items.parent_id as parent_id,
|
1319
1289
|
spud_menu_items.name as name,
|
1320
|
-
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` =
|
1321
|
-
[1m[36m (0.
|
1290
|
+
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` = 26 ORDER BY parent_type, parent_id
|
1291
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1322
1292
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1323
1293
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1324
1294
|
[1m[35m (0.0ms)[0m BEGIN
|
1325
|
-
[1m[36m (0.
|
1326
|
-
[1m[35mSpudMenu Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY '
|
1327
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
1295
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_2[0m
|
1296
|
+
[1m[35mSpudMenu Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Main2' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
1297
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:28', NULL, 'Main2', 0, '2013-03-09 02:53:28')[0m
|
1328
1298
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1329
1299
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1330
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
1331
|
-
[1m[36m (0.
|
1300
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 19', 27, 'SpudMenu', 27, NULL, '2013-03-09 02:53:28', '/')
|
1301
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1332
1302
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1333
|
-
[1m[36mSQL (0.
|
1334
|
-
[1m[35m (0.
|
1303
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 20', 27, 'SpudMenu', 27, NULL, '2013-03-09 02:53:28', '/')[0m
|
1304
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1335
1305
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1336
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
1306
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'SubItem', 20, 'SpudMenuItem', 27, NULL, '2013-03-09 02:53:28', '/')
|
1337
1307
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1338
|
-
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = '
|
1308
|
+
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = 'Main2' LIMIT 1
|
1339
1309
|
[1m[36mSpudMenuItem Load (0.2ms)[0m [1mSELECT
|
1340
1310
|
spud_menu_items.id as id,
|
1341
1311
|
spud_menu_items.url as url,
|
@@ -1344,38 +1314,26 @@ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms)
|
|
1344
1314
|
spud_menu_items.menu_order as menu_order,
|
1345
1315
|
spud_menu_items.parent_id as parent_id,
|
1346
1316
|
spud_menu_items.name as name,
|
1347
|
-
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` =
|
1317
|
+
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` = 27 ORDER BY parent_type, parent_id[0m
|
1348
1318
|
[1m[35m (0.2ms)[0m ROLLBACK
|
1349
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1350
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1351
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1352
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1353
|
-
[1m[36mSpudMenu Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu26' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
1354
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-02-20 13:04:28', NULL, 'Menu26', 0, '2013-02-20 13:04:28')
|
1355
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1356
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1357
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-02-20 13:04:28', NULL, 0, 'Menu Item 23', 29, 'SpudMenu', 29, NULL, '2013-02-20 13:04:28', '/')[0m
|
1358
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1359
|
-
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`site_id` = 1 AND `spud_menus`.`name` = 'Menu26' LIMIT 1[0m
|
1360
|
-
[1m[35m (0.4ms)[0m ROLLBACK
|
1361
1319
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1362
1320
|
[1m[35m (0.0ms)[0m BEGIN
|
1363
|
-
[1m[36m (0.
|
1364
|
-
[1m[35m (0.
|
1365
|
-
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY '
|
1366
|
-
[1m[35mSQL (0.
|
1367
|
-
[1m[36m (0.
|
1368
|
-
[1m[35m (0.
|
1369
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
1321
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1322
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1323
|
+
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Main4' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
1324
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:28', NULL, 'Main4', 0, '2013-03-09 02:53:28')
|
1325
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1327
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 21', 28, 'SpudMenu', 28, NULL, '2013-03-09 02:53:28', '/')[0m
|
1370
1328
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1371
1329
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1372
|
-
[1m[35mSQL (0.
|
1373
|
-
[1m[36m (0.
|
1374
|
-
[1m[35m (0.
|
1375
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
1376
|
-
[1m[35m (0.
|
1377
|
-
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = '
|
1378
|
-
[1m[35mSpudMenuItem Load (0.
|
1330
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 22', 28, 'SpudMenu', 28, NULL, '2013-03-09 02:53:28', '/')
|
1331
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1332
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1333
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'SubItem', 23, 'SpudMenuItem', 28, NULL, '2013-03-09 02:53:28', '/')[0m
|
1334
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1335
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = 'Main4' LIMIT 1[0m
|
1336
|
+
[1m[35mSpudMenuItem Load (0.2ms)[0m SELECT
|
1379
1337
|
spud_menu_items.id as id,
|
1380
1338
|
spud_menu_items.url as url,
|
1381
1339
|
spud_menu_items.classes as classes,
|
@@ -1383,454 +1341,506 @@ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms)
|
|
1383
1341
|
spud_menu_items.menu_order as menu_order,
|
1384
1342
|
spud_menu_items.parent_id as parent_id,
|
1385
1343
|
spud_menu_items.name as name,
|
1386
|
-
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` =
|
1387
|
-
[1m[36m (0.
|
1344
|
+
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` = 28 ORDER BY parent_type, parent_id
|
1345
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1388
1346
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1389
1347
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1390
1348
|
[1m[35m (0.0ms)[0m BEGIN
|
1391
|
-
[1m[36m (0.
|
1392
|
-
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY '
|
1393
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-
|
1394
|
-
[1m[35m (0.
|
1349
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1350
|
+
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu26' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
1351
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:28', NULL, 'Menu26', 0, '2013-03-09 02:53:28')[0m
|
1352
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1395
1353
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1396
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-
|
1397
|
-
[1m[36m (0.
|
1398
|
-
[1m[35mSpudMenu Load (0.
|
1399
|
-
[1m[36m (0.
|
1354
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 23', 29, 'SpudMenu', 29, NULL, '2013-03-09 02:53:28', '/')
|
1355
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1356
|
+
[1m[35mSpudMenu Load (0.2ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`site_id` = 1 AND `spud_menus`.`name` = 'Menu26' LIMIT 1
|
1357
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1400
1358
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1401
|
-
[1m[36m (0.
|
1402
|
-
[1m[35m (0.
|
1403
|
-
[1m[36m (0.
|
1404
|
-
[1m[
|
1405
|
-
[1m[
|
1406
|
-
[1m[
|
1407
|
-
[1m[
|
1408
|
-
[1m[35mSQL (0.
|
1409
|
-
[1m[36m (0.
|
1359
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1360
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1361
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1362
|
+
[1m[35mSpudMenu Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Main3' AND `spud_menus`.`site_id` = 0) LIMIT 1
|
1363
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:28', NULL, 'Main3', 0, '2013-03-09 02:53:28')[0m
|
1364
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1365
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1366
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 24', 30, 'SpudMenu', 30, NULL, '2013-03-09 02:53:28', '/')
|
1367
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1410
1368
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1411
|
-
[1m[
|
1412
|
-
[1m[
|
1413
|
-
[1m[
|
1414
|
-
[1m[
|
1415
|
-
[1m[
|
1416
|
-
[1m[
|
1417
|
-
[1m[
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
[1m[35m (
|
1369
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 25', 30, 'SpudMenu', 30, NULL, '2013-03-09 02:53:28', '/')[0m
|
1370
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1371
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1372
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'SubItem', 27, 'SpudMenuItem', 30, NULL, '2013-03-09 02:53:28', '/')
|
1373
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1374
|
+
[1m[35mSpudMenu Load (0.1ms)[0m SELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = 'Main3' LIMIT 1
|
1375
|
+
[1m[36mSpudMenuItem Load (0.2ms)[0m [1mSELECT
|
1376
|
+
spud_menu_items.id as id,
|
1377
|
+
spud_menu_items.url as url,
|
1378
|
+
spud_menu_items.classes as classes,
|
1379
|
+
spud_menu_items.parent_type as parent_type,
|
1380
|
+
spud_menu_items.menu_order as menu_order,
|
1381
|
+
spud_menu_items.parent_id as parent_id,
|
1382
|
+
spud_menu_items.name as name,
|
1383
|
+
spud_pages.url_name as url_name FROM `spud_menu_items` LEFT JOIN spud_pages ON (spud_pages.id = spud_menu_items.spud_page_id) WHERE `spud_menu_items`.`spud_menu_id` = 30 ORDER BY parent_type, parent_id[0m
|
1384
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
1427
1385
|
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1428
1386
|
[1m[35m (0.1ms)[0m BEGIN
|
1429
|
-
[1m[36m (0.
|
1430
|
-
[1m[35m (0.
|
1431
|
-
[1m[
|
1432
|
-
[1m[
|
1433
|
-
[1m[
|
1434
|
-
[1m[
|
1435
|
-
[1m[36mSQL (0.
|
1387
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1388
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1389
|
+
[1m[36mSpudMenu Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_menus` WHERE (`spud_menus`.`name` = BINARY 'Menu27' AND `spud_menus`.`site_id` = 0) LIMIT 1[0m
|
1390
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_menus` (`created_at`, `description`, `name`, `site_id`, `updated_at`) VALUES ('2013-03-09 02:53:28', NULL, 'Menu27', 0, '2013-03-09 02:53:28')
|
1391
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1392
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1393
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_menu_items` (`classes`, `created_at`, `item_type`, `menu_order`, `name`, `parent_id`, `parent_type`, `spud_menu_id`, `spud_page_id`, `updated_at`, `url`) VALUES (NULL, '2013-03-09 02:53:28', NULL, 0, 'Menu Item 26', 31, 'SpudMenu', 31, NULL, '2013-03-09 02:53:28', '/')[0m
|
1436
1394
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1437
|
-
[1m[
|
1438
|
-
[1m[
|
1439
|
-
[1m[
|
1440
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page23' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1441
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page23' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1442
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page23', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page23', 0, 0)
|
1443
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1444
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`visibility` = 0 AND `spud_pages`.`published` = 1
|
1445
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1446
|
-
[1m[35m (0.0ms)[0m ROLLBACK
|
1447
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1395
|
+
[1m[36mSpudMenu Load (0.2ms)[0m [1mSELECT `spud_menus`.* FROM `spud_menus` WHERE `spud_menus`.`name` = 'Menu27' AND `spud_menus`.`site_id` = 1 LIMIT 1[0m
|
1396
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
1397
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1448
1398
|
[1m[35m (0.1ms)[0m BEGIN
|
1449
|
-
[1m[36m (0.
|
1450
|
-
[1m[35mSpudPage Load (0.5ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1451
|
-
[1m[36mSpudPermalink Load (0.4ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page24' LIMIT 1[0m
|
1452
|
-
[1m[35mSpudPage Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page24' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1453
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page24' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1454
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page24', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page24', 0, 0)
|
1455
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1399
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1456
1400
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1457
1401
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1458
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = '
|
1459
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY '
|
1460
|
-
[1m[35mSpudPage Exists (0.
|
1461
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1462
|
-
[1m[35m (0.
|
1463
|
-
[1m[
|
1464
|
-
[1m[35m (0.3ms)[0m ROLLBACK
|
1465
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1466
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1467
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1468
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_2
|
1469
|
-
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1470
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page26' LIMIT 1
|
1471
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page26' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1472
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page26' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1473
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page26', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page26', 0, 0)[0m
|
1474
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1475
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1402
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page19' LIMIT 1
|
1403
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page19' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1404
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page19' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1405
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page19', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page19', 0, 0)[0m
|
1406
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1407
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1476
1408
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1477
|
-
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = '
|
1478
|
-
[1m[35mSpudPage Exists (0.
|
1479
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY '
|
1480
|
-
[1m[35mSQL (0.
|
1409
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page20' LIMIT 1[0m
|
1410
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page20' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1411
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page20' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1412
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page20', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page20', 0, 0)
|
1481
1413
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1482
|
-
[1m[35m (0.
|
1483
|
-
[1m[36mSpudPage Load (0.
|
1414
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1415
|
+
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 28 LIMIT 1[0m
|
1484
1416
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1485
|
-
[1m[36mSpudPermalink Load (0.
|
1486
|
-
[1m[35mSpudPage Exists (0.
|
1487
|
-
[1m[36mSpudPage Exists (0.
|
1488
|
-
[1m[35mSQL (0.
|
1489
|
-
[1m[36m (0.
|
1490
|
-
[1m[35mSpudPage Load (0.
|
1491
|
-
[1m[36m (0.
|
1417
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page19/page21' LIMIT 1[0m
|
1418
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page21' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` = 28) LIMIT 1
|
1419
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page19/page21' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1420
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page21', NULL, NULL, NULL, 1, 0, 28, '2013-03-09 02:53:28', NULL, 'page19/page21', 0, 0)
|
1421
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1422
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`visibility` = 0 AND `spud_pages`.`published` = 1
|
1423
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1492
1424
|
[1m[35m (0.1ms)[0m ROLLBACK
|
1493
1425
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1494
|
-
[1m[35m (0.
|
1495
|
-
[1m[36m (0.
|
1496
|
-
[1m[35mSpudPage Load (0.
|
1497
|
-
[1m[36mSpudPermalink Load (0.
|
1498
|
-
[1m[35mSpudPage Exists (0.
|
1499
|
-
[1m[36mSpudPage Exists (0.
|
1500
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1501
|
-
[1m[36m (0.
|
1426
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1427
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1428
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1429
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page22' LIMIT 1[0m
|
1430
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page22' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1431
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page22' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1432
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page22', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page22', 0, 0)
|
1433
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1502
1434
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1503
1435
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1504
|
-
[1m[35mSpudPermalink Load (0.
|
1505
|
-
[1m[36mSpudPage Exists (0.
|
1506
|
-
[1m[35mSpudPage Exists (0.
|
1507
|
-
[1m[36mSQL (0.
|
1508
|
-
[1m[35m (0.
|
1509
|
-
[1m[
|
1510
|
-
[1m[
|
1436
|
+
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page23' LIMIT 1
|
1437
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page23' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1438
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page23' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1439
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page23', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page23', 0, 0)[0m
|
1440
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1441
|
+
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`visibility` = 0 AND `spud_pages`.`published` = 1[0m
|
1442
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
1443
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1444
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1445
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1446
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1511
1447
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1512
|
-
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = '
|
1513
|
-
[1m[36mSpudPage Exists (0.
|
1514
|
-
[1m[35mSpudPage Exists (0.
|
1515
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1448
|
+
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page24' LIMIT 1
|
1449
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page24' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1450
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page24' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1451
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page24', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page24', 0, 0)[0m
|
1516
1452
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1517
|
-
[1m[
|
1518
|
-
[1m[
|
1519
|
-
[1m[
|
1453
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1454
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1455
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page25' LIMIT 1[0m
|
1456
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page25' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1457
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page25' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1458
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page25', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page25', 0, 0)
|
1459
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1460
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`visibility` = 0 AND `spud_pages`.`published` = 1 AND (name NOT IN ('Page25'))
|
1461
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1462
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1463
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1520
1464
|
[1m[35m (0.1ms)[0m BEGIN
|
1521
|
-
[1m[36m (0.
|
1522
|
-
[1m[
|
1465
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1466
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1467
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page26' LIMIT 1[0m
|
1468
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page26' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1469
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page26' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1470
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page26', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page26', 0, 0)
|
1471
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1472
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1473
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1474
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page27' LIMIT 1
|
1475
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page27' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1476
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page27' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1477
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page27', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page27', 0, 0)[0m
|
1478
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1479
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1480
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 35 LIMIT 1
|
1523
1481
|
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1524
|
-
[1m[35mSpudPermalink Load (0.
|
1525
|
-
[1m[36mSpudPage Exists (0.
|
1526
|
-
[1m[35mSpudPage Exists (0.
|
1527
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1482
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page26/page28' LIMIT 1
|
1483
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page28' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` = 35) LIMIT 1[0m
|
1484
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page26/page28' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1485
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page28', NULL, NULL, NULL, 1, 0, 35, '2013-03-09 02:53:28', NULL, 'page26/page28', 0, 0)[0m
|
1528
1486
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1529
|
-
[1m[
|
1530
|
-
[1m[
|
1531
|
-
[1m[
|
1532
|
-
[1m[
|
1533
|
-
[1m[
|
1534
|
-
[1m[
|
1487
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`visibility` = 0 AND `spud_pages`.`published` = 1[0m
|
1488
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
1489
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1490
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1491
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1492
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1493
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1494
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page29' LIMIT 1
|
1495
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page29' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1496
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page29' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1497
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page29', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page29', 0, 0)[0m
|
1498
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1499
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1500
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1501
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page30' LIMIT 1[0m
|
1502
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page30' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1503
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page30' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1504
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page30', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page30', 0, 0)
|
1505
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1506
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1507
|
+
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 38 LIMIT 1[0m
|
1508
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1509
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page29/page31' LIMIT 1[0m
|
1510
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page31' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` = 38) LIMIT 1
|
1511
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page29/page31' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1512
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page31', NULL, NULL, NULL, 1, 0, 38, '2013-03-09 02:53:28', NULL, 'page29/page31', 0, 0)
|
1535
1513
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1536
|
-
[1m[35mSpudPage Load (0.
|
1537
|
-
[1m[36m (0.
|
1514
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`visibility` = 0 AND `spud_pages`.`published` = 1
|
1515
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1538
1516
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1539
1517
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1540
1518
|
[1m[35m (0.0ms)[0m BEGIN
|
1541
|
-
[1m[36m (0.0ms)[0m [
|
1542
|
-
[1m[
|
1543
|
-
[1m[
|
1519
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1520
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1521
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page32' LIMIT 1[0m
|
1522
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page32' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1523
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page32' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1524
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page32', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page32', 0, 0)
|
1525
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1526
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1527
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 1[0m
|
1528
|
+
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 1 AND `spud_permalinks`.`url_name` = 'page33' LIMIT 1
|
1529
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page33' AND `spud_pages`.`site_id` = 1 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1530
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page33' AND `spud_pages`.`site_id` = 1) LIMIT 1
|
1531
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page33', NULL, NULL, NULL, 1, 1, NULL, '2013-03-09 02:53:28', NULL, 'page33', 0, 0)[0m
|
1532
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1533
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`visibility` = 0 AND `spud_pages`.`published` = 1 AND `spud_pages`.`site_id` = 1[0m
|
1534
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
1535
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1544
1536
|
[1m[35m (0.0ms)[0m BEGIN
|
1545
|
-
[1m[36m (0.0ms)[0m [
|
1537
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1546
1538
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1547
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1548
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1549
1539
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1550
|
-
[1m[35m (0.0ms)[0m ROLLBACK
|
1551
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1552
1540
|
[1m[35m (0.0ms)[0m BEGIN
|
1553
|
-
[1m[36m (0.0ms)[0m [
|
1541
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1554
1542
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1543
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1544
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1555
1545
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1546
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1547
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1556
1548
|
[1m[35m (0.0ms)[0m BEGIN
|
1549
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1550
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1557
1551
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1558
|
-
[1m[35m (0.
|
1552
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1559
1553
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1554
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1555
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1560
1556
|
[1m[35m (0.0ms)[0m BEGIN
|
1561
|
-
[1m[36m (0.
|
1557
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1562
1558
|
[1m[35m (0.1ms)[0m ROLLBACK
|
1559
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1560
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1563
1561
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1562
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1563
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1564
1564
|
[1m[35m (0.0ms)[0m BEGIN
|
1565
|
-
[1m[36m (0.1ms)[0m [
|
1565
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1566
1566
|
[1m[35m (0.1ms)[0m ROLLBACK
|
1567
|
-
[1m[36m (0.0ms)[0m [
|
1567
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1568
1568
|
[1m[35m (0.0ms)[0m BEGIN
|
1569
|
-
[1m[36m (0.1ms)[0m [
|
1569
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1570
1570
|
[1m[35m (0.1ms)[0m ROLLBACK
|
1571
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1572
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1571
1573
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1572
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1573
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1574
1574
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1575
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1576
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1577
1575
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1576
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1577
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1578
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1579
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_page_partials` (`content`, `content_processed`, `created_at`, `format`, `name`, `spud_page_id`, `symbol_name`, `updated_at`) VALUES (NULL, '', '2013-03-09 02:53:28', NULL, 'Test Page', NULL, 'test_page', '2013-03-09 02:53:28')[0m
|
1580
|
+
[1m[35mSpudPageLiquidTag Load (0.2ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 1 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'
|
1581
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE `spud_page_partials` SET `content_processed` = '' WHERE `spud_page_partials`.`id` = 1[0m
|
1582
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1583
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1578
1584
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1579
1585
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1580
1586
|
[1m[35m (0.0ms)[0m BEGIN
|
1581
1587
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1582
|
-
[1m[35mSQL (0.
|
1583
|
-
[1m[
|
1584
|
-
[1m[
|
1588
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `spud_page_partial_revisions` (`content`, `created_at`, `format`, `name`, `spud_page_id`, `updated_at`) VALUES ('Home Sweet Home', '2013-03-09 02:53:28', NULL, 'Test Page', 1, '2013-03-09 02:53:28')
|
1589
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'[0m
|
1590
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 1 LIMIT 1
|
1591
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_page_partials` (`content`, `content_processed`, `created_at`, `format`, `name`, `spud_page_id`, `symbol_name`, `updated_at`) VALUES ('Home Sweet Home', 'Home Sweet Home', '2013-03-09 02:53:28', NULL, 'Test Page', 1, 'test_page', '2013-03-09 02:53:28')[0m
|
1592
|
+
[1m[35mSpudPageLiquidTag Load (0.2ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 2 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'
|
1585
1593
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1586
|
-
[1m[35m (0.2ms)[0m
|
1587
|
-
[1m[36m (0.
|
1588
|
-
[1m[35m (0.0ms)[0m
|
1594
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'
|
1595
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1596
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1589
1597
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1590
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1591
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_page_partial_revisions` (`content`, `created_at`, `format`, `name`, `spud_page_id`, `updated_at`) VALUES ('Home Sweet Home', '2013-02-20 13:04:28', NULL, 'Test Page', 1, '2013-02-20 13:04:28')[0m
|
1592
|
-
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'
|
1593
|
-
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 1 LIMIT 1[0m
|
1594
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_page_partials` (`content`, `content_processed`, `created_at`, `format`, `name`, `spud_page_id`, `symbol_name`, `updated_at`) VALUES ('Home Sweet Home', 'Home Sweet Home', '2013-02-20 13:04:28', NULL, 'Test Page', 1, 'test_page', '2013-02-20 13:04:28')
|
1595
|
-
[1m[36mSpudPageLiquidTag Load (0.3ms)[0m [1mSELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 2 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'[0m
|
1596
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
|
1597
|
-
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'[0m
|
1598
|
-
[1m[35m (0.8ms)[0m ROLLBACK
|
1599
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1600
1598
|
[1m[35m (0.0ms)[0m BEGIN
|
1601
|
-
[1m[36m (0.0ms)[0m [
|
1599
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1600
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_page_partial_revisions` (`content`, `created_at`, `format`, `name`, `spud_page_id`, `updated_at`) VALUES ('Home Sweet Home', '2013-03-09 02:53:28', NULL, 'Test Page', 1, '2013-03-09 02:53:28')
|
1601
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'[0m
|
1602
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 1 LIMIT 1
|
1603
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_page_partials` (`content`, `content_processed`, `created_at`, `format`, `name`, `spud_page_id`, `symbol_name`, `updated_at`) VALUES ('Home Sweet Home', 'Home Sweet Home', '2013-03-09 02:53:28', NULL, 'Test Page', 1, 'test_page', '2013-03-09 02:53:28')[0m
|
1604
|
+
[1m[35mSpudPageLiquidTag Load (0.1ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 3 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'
|
1605
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1606
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1607
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_page_partial_revisions` (`content`, `created_at`, `format`, `name`, `spud_page_id`, `updated_at`) VALUES ('Nah', '2013-03-09 02:53:28', NULL, 'Test Page', 1, '2013-03-09 02:53:28')[0m
|
1608
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'
|
1609
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_page_partials` SET `content` = 'Nah', `content_processed` = 'Nah', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_page_partials`.`id` = 3[0m
|
1610
|
+
[1m[35mSpudPageLiquidTag Load (0.1ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 3 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'
|
1611
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1602
1612
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1603
|
-
[1m[36mSQL (0.
|
1604
|
-
[1m[35m (0.
|
1605
|
-
[1m[
|
1606
|
-
[1m[35mSQL (0.1ms)[0m
|
1607
|
-
[1m[
|
1608
|
-
[1m[
|
1609
|
-
[1m[36m (0.1ms)[0m [
|
1610
|
-
[1m[
|
1611
|
-
[1m[36m (0.3ms)[0m [
|
1612
|
-
[1m[35m (0.3ms)[0m UPDATE `spud_page_partials` SET `content` = 'Nah', `content_processed` = 'Nah', `updated_at` = '2013-02-20 13:04:28' WHERE `spud_page_partials`.`id` = 3
|
1613
|
-
[1m[36mSpudPageLiquidTag Load (0.3ms)[0m [1mSELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 3 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'[0m
|
1614
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1615
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1616
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_page_partial_revisions` (`content`, `created_at`, `format`, `name`, `spud_page_id`, `updated_at`) VALUES ('Another change', '2013-02-20 13:04:28', NULL, 'Test Page', 1, '2013-02-20 13:04:28')
|
1617
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'[0m
|
1618
|
-
[1m[35mSpudPagePartialRevision Load (0.2ms)[0m SELECT `spud_page_partial_revisions`.* FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page' ORDER BY created_at ASC LIMIT 1
|
1619
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`id` = 2[0m
|
1620
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_page_partials` SET `content` = 'Another change', `content_processed` = 'Another change', `updated_at` = '2013-02-20 13:04:28' WHERE `spud_page_partials`.`id` = 3
|
1621
|
-
[1m[36mSpudPageLiquidTag Load (0.2ms)[0m [1mSELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 3 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'[0m
|
1622
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1623
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'[0m
|
1624
|
-
[1m[35m (0.4ms)[0m ROLLBACK
|
1625
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1626
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1627
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1613
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_page_partial_revisions` (`content`, `created_at`, `format`, `name`, `spud_page_id`, `updated_at`) VALUES ('Another change', '2013-03-09 02:53:28', NULL, 'Test Page', 1, '2013-03-09 02:53:28')[0m
|
1614
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'
|
1615
|
+
[1m[36mSpudPagePartialRevision Load (0.2ms)[0m [1mSELECT `spud_page_partial_revisions`.* FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page' ORDER BY created_at ASC LIMIT 1[0m
|
1616
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`id` = 2
|
1617
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_page_partials` SET `content` = 'Another change', `content_processed` = 'Another change', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_page_partials`.`id` = 3[0m
|
1618
|
+
[1m[35mSpudPageLiquidTag Load (0.2ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 3 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'
|
1619
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1620
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `spud_page_partial_revisions` WHERE `spud_page_partial_revisions`.`spud_page_id` = 1 AND `spud_page_partial_revisions`.`name` = 'Test Page'
|
1621
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1628
1622
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1629
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1630
|
-
[1m[35m (0.1ms)[0m BEGIN
|
1631
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1632
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
1633
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1634
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1635
1623
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1636
|
-
[1m[35m (0.0ms)[0m ROLLBACK
|
1637
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1638
1624
|
[1m[35m (0.0ms)[0m BEGIN
|
1625
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1626
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1639
1627
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1628
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1629
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1640
1630
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1631
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1632
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1641
1633
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1634
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1635
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1642
1636
|
[1m[35m (0.0ms)[0m BEGIN
|
1637
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1638
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1643
1639
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1640
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1641
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1644
1642
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1645
|
-
[1m[36m (0.0ms)[0m [
|
1643
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1646
1644
|
[1m[35m (0.0ms)[0m BEGIN
|
1645
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` IS NULL AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1646
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` IS NULL AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1647
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1648
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1647
1649
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1648
|
-
[1m[
|
1649
|
-
[1m[
|
1650
|
-
[1m[
|
1650
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1651
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1652
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page34' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1653
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'test' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1654
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page34', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'test', 1, 0)
|
1655
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1656
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page35' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1657
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'test' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1658
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
1651
1659
|
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1652
1660
|
[1m[35m (0.0ms)[0m BEGIN
|
1653
1661
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1654
1662
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1655
|
-
[1m[36mSpudPage
|
1656
|
-
[1m[
|
1657
|
-
[1m[
|
1663
|
+
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1664
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'test' LIMIT 1
|
1665
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'test' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1666
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'test' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1667
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'test', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'test', 0, 0)[0m
|
1658
1668
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1659
|
-
[1m[36mSpudPage
|
1660
|
-
[1m[
|
1661
|
-
[1m[
|
1662
|
-
[1m[
|
1669
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1670
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'test-1' LIMIT 1
|
1671
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'test' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1672
|
+
[1m[35mSpudPage Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'test-1' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1673
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
1674
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1663
1675
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1664
1676
|
[1m[35m (0.0ms)[0m BEGIN
|
1665
1677
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1666
1678
|
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1667
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = '
|
1668
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY '
|
1669
|
-
[1m[36mSpudPage Exists (0.
|
1670
|
-
[1m[35mSQL (0.
|
1671
|
-
[1m[
|
1672
|
-
[1m[
|
1673
|
-
[1m[
|
1674
|
-
[1m[
|
1675
|
-
[1m[
|
1676
|
-
[1m[35m (0.
|
1677
|
-
[1m[36m (0.1ms)[0m [
|
1678
|
-
[1m[
|
1679
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page36' LIMIT 1[0m
|
1680
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page36' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1681
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page36' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1682
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page36', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'page36', 0, 0)
|
1683
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 45 LIMIT 1[0m
|
1684
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_page_partials` (`content`, `content_processed`, `created_at`, `format`, `name`, `spud_page_id`, `symbol_name`, `updated_at`) VALUES (NULL, '', '2013-03-09 02:53:28', NULL, 'body', 45, 'body', '2013-03-09 02:53:28')
|
1685
|
+
[1m[36mSpudPageLiquidTag Load (0.2ms)[0m [1mSELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 4 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'[0m
|
1686
|
+
[1m[35mSQL (0.1ms)[0m UPDATE `spud_page_partials` SET `content_processed` = '' WHERE `spud_page_partials`.`id` = 4
|
1687
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1688
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_page_partials`
|
1689
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1690
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`spud_page_id` = 45
|
1691
|
+
[1m[36mSpudPageLiquidTag Load (0.2ms)[0m [1mSELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 4 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'[0m
|
1692
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM `spud_page_partials` WHERE `spud_page_partials`.`id` = 4
|
1693
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`attachment_id` = 45 AND `spud_permalinks`.`attachment_type` = 'SpudPage'[0m
|
1694
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `spud_pages` WHERE `spud_pages`.`id` = 45
|
1695
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1696
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_page_partials`
|
1697
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1698
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1679
1699
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1680
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1681
|
-
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1682
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'page36' LIMIT 1
|
1683
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page36' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1684
|
-
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'page36' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1685
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'Page36', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'page36', 0, 0)[0m
|
1686
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 45 LIMIT 1
|
1687
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_page_partials` (`content`, `content_processed`, `created_at`, `format`, `name`, `spud_page_id`, `symbol_name`, `updated_at`) VALUES (NULL, '', '2013-02-20 13:04:28', NULL, 'body', 45, 'body', '2013-02-20 13:04:28')[0m
|
1688
|
-
[1m[35mSpudPageLiquidTag Load (0.2ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 4 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'
|
1689
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE `spud_page_partials` SET `content_processed` = '' WHERE `spud_page_partials`.`id` = 4[0m
|
1690
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1691
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_page_partials` [0m
|
1692
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1693
|
-
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`spud_page_id` = 45[0m
|
1694
|
-
[1m[35mSpudPageLiquidTag Load (0.1ms)[0m SELECT `spud_page_liquid_tags`.* FROM `spud_page_liquid_tags` WHERE `spud_page_liquid_tags`.`attachment_id` = 4 AND `spud_page_liquid_tags`.`attachment_type` = 'SpudPagePartial'
|
1695
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM `spud_page_partials` WHERE `spud_page_partials`.`id` = 4[0m
|
1696
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`attachment_id` = 45 AND `spud_permalinks`.`attachment_type` = 'SpudPage'
|
1697
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM `spud_pages` WHERE `spud_pages`.`id` = 45[0m
|
1698
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1699
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM `spud_page_partials` [0m
|
1700
|
-
[1m[35m (0.6ms)[0m ROLLBACK
|
1701
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1702
1700
|
[1m[35m (0.0ms)[0m BEGIN
|
1703
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1704
|
-
[1m[35m (0.0ms)[0m ROLLBACK
|
1705
1701
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1706
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1707
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1708
1702
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1703
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1704
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1709
1705
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1710
|
-
[1m[35m (0.0ms)[0m BEGIN
|
1711
|
-
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1712
1706
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1707
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1708
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1713
1709
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1714
|
-
[1m[35m (0.
|
1715
|
-
[1m[36m (0.
|
1716
|
-
[1m[35m (0.0ms)[0m
|
1717
|
-
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1718
|
-
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'parent' LIMIT 1
|
1719
|
-
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'parent' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1720
|
-
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'parent' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1721
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'parent', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'parent', 0, 0)[0m
|
1722
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1710
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1711
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1712
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1723
1713
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1724
|
-
[1m[35mSpudPage Load (0.
|
1725
|
-
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'parent
|
1726
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY '
|
1727
|
-
[1m[36mSpudPage Exists (0.
|
1728
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1714
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1715
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'parent' LIMIT 1[0m
|
1716
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'parent' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1717
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'parent' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1718
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'parent', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'parent', 0, 0)
|
1729
1719
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1730
1720
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1731
1721
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1732
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'parent/page-
|
1733
|
-
[1m[36mSpudPage Exists (0.
|
1734
|
-
[1m[35mSpudPage Exists (0.
|
1735
|
-
[1m[36mSQL (0.
|
1736
|
-
[1m[35m (0.
|
1737
|
-
[1m[
|
1738
|
-
[1m[
|
1739
|
-
[1m[
|
1740
|
-
[1m[
|
1722
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'parent/page-1' LIMIT 1
|
1723
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page 1' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` = 46) LIMIT 1[0m
|
1724
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'parent/page-1' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1725
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page 1', NULL, NULL, NULL, 1, 0, 46, '2013-03-09 02:53:28', NULL, 'parent/page-1', 0, 0)[0m
|
1726
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1727
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1728
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1729
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'parent/page-2' LIMIT 1[0m
|
1730
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'Page 2' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` = 46) LIMIT 1
|
1731
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'parent/page-2' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1732
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'Page 2', NULL, NULL, NULL, 1, 0, 46, '2013-03-09 02:53:28', NULL, 'parent/page-2', 0, 0)
|
1733
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1734
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1735
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1736
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1741
1737
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1738
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1739
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1742
1740
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1741
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1742
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1743
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1744
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1745
|
+
[1m[36mSpudPermalink Load (0.1ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about' LIMIT 1[0m
|
1746
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'about' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1747
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1748
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'about', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'about', 0, 0)
|
1749
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1750
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1751
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'about/test' LIMIT 1[0m
|
1752
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'test' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` = 49) LIMIT 1
|
1753
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'about/test' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1754
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
1743
1755
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1744
1756
|
[1m[35m (0.0ms)[0m BEGIN
|
1745
1757
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1746
1758
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1747
|
-
[1m[36mSpudPage Load (0.
|
1748
|
-
[1m[35mSpudPermalink Load (0.
|
1749
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY '
|
1750
|
-
[1m[35mSpudPage Exists (0.
|
1751
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-
|
1759
|
+
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1760
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'testimonials' LIMIT 1
|
1761
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'testimonials' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1762
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'testimonials' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1763
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'testimonials', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'testimonials', 0, 0)[0m
|
1752
1764
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1753
1765
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1754
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = '
|
1755
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY '
|
1756
|
-
[1m[35mSpudPage Exists (0.
|
1766
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'testimonials-1' LIMIT 1
|
1767
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'testimonials' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1768
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'testimonials-1' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1757
1769
|
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1758
1770
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1759
1771
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1760
|
-
[1m[35m (0.1ms)[0m BEGIN
|
1761
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1762
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1763
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'testimonials' LIMIT 1[0m
|
1764
|
-
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'testimonials' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1765
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'testimonials' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1766
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'testimonials', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'testimonials', 0, 0)
|
1767
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1768
|
-
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1769
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'testimonials-1' LIMIT 1[0m
|
1770
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'testimonials' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1771
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'testimonials-1' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1772
|
-
[1m[35m (0.3ms)[0m ROLLBACK
|
1773
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1774
1772
|
[1m[35m (0.0ms)[0m BEGIN
|
1775
|
-
[1m[36m (0.0ms)[0m [
|
1773
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1774
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1775
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'another' LIMIT 1[0m
|
1776
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'another' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1777
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'another' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1778
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'another', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'another', 0, 0)
|
1779
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1776
1780
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1777
|
-
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1778
|
-
[1m[35mSpudPermalink Load (0.
|
1781
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 51)[0m
|
1782
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'again' LIMIT 1
|
1783
|
+
[1m[36mSpudPermalink Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'another' AND `spud_permalinks`.`site_id` = 0) LIMIT 1[0m
|
1784
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (51, 'SpudPage', '2013-03-09 02:53:28', 0, '2013-03-09 02:53:28', 'another')
|
1785
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'again' AND `spud_pages`.`id` != 51 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1786
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'again' AND `spud_pages`.`id` != 51 AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1787
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_pages` SET `name` = 'again', `url_name` = 'again', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_pages`.`id` = 51[0m
|
1788
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1789
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1790
|
+
[1m[35mSpudPermalink Load (0.3ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'another' LIMIT 1
|
1791
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 51 LIMIT 1[0m
|
1792
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'another-1' LIMIT 1
|
1779
1793
|
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'another' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1780
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'another' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1781
|
-
[1m[
|
1794
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'another-1' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1795
|
+
[1m[36m (1.6ms)[0m [1mROLLBACK[0m
|
1796
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1797
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1798
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1799
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1800
|
+
[1m[35mSpudPage Load (0.1ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1801
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'permapage' LIMIT 1[0m
|
1802
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'permapage' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1803
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'permapage' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1804
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'permapage', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'permapage', 0, 0)
|
1805
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1806
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1807
|
+
[1m[36mSpudPage Load (0.3ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 52)[0m
|
1808
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'permapage-new' LIMIT 1
|
1809
|
+
[1m[36mSpudPermalink Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'permapage' AND `spud_permalinks`.`site_id` = 0) LIMIT 1[0m
|
1810
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (52, 'SpudPage', '2013-03-09 02:53:28', 0, '2013-03-09 02:53:28', 'permapage')
|
1811
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'permapage new' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1812
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'permapage-new' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1813
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_pages` SET `name` = 'permapage new', `url_name` = 'permapage-new', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_pages`.`id` = 52[0m
|
1814
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1815
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `spud_permalinks` [0m
|
1816
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `spud_permalinks` WHERE `spud_permalinks`.`attachment_id` = 52 AND `spud_permalinks`.`attachment_type` = 'SpudPage' AND `spud_permalinks`.`url_name` = 'permapage'
|
1817
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 52)[0m
|
1818
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'permapage' LIMIT 1
|
1819
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 52 LIMIT 1[0m
|
1820
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1821
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM `spud_permalinks` WHERE `spud_permalinks`.`id` = 5[0m
|
1782
1822
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1783
1823
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1784
|
-
[1m[
|
1785
|
-
[1m[
|
1786
|
-
[1m[
|
1787
|
-
[1m[
|
1788
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`
|
1789
|
-
[1m[
|
1790
|
-
[1m[35m (0.
|
1791
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1792
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1793
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'another' LIMIT 1[0m
|
1794
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 51 LIMIT 1
|
1795
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'another-1' LIMIT 1[0m
|
1796
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'another' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1797
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'another-1' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1798
|
-
[1m[35m (0.3ms)[0m ROLLBACK
|
1824
|
+
[1m[35mSpudPermalink Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'permapage-new' AND `spud_permalinks`.`site_id` = 0) LIMIT 1
|
1825
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (52, 'SpudPage', '2013-03-09 02:53:28', 0, '2013-03-09 02:53:28', 'permapage-new')[0m
|
1826
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1827
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'permapage' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1828
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'permapage' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1829
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_permalinks` WHERE `spud_permalinks`.`attachment_id` = 52 AND `spud_permalinks`.`attachment_type` = 'SpudPage' AND `spud_permalinks`.`url_name` = 'permapage'[0m
|
1830
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
1799
1831
|
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1800
1832
|
[1m[35m (0.0ms)[0m BEGIN
|
1801
1833
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1802
1834
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1803
1835
|
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0[0m
|
1804
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = '
|
1805
|
-
[1m[36mSpudPage Exists (0.
|
1806
|
-
[1m[35mSpudPage Exists (0.
|
1807
|
-
[1m[36mSQL (0.
|
1836
|
+
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'original' LIMIT 1
|
1837
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'original' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1838
|
+
[1m[35mSpudPage Exists (0.1ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'original' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1839
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'original', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'original', 0, 0)[0m
|
1808
1840
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1809
|
-
[1m[
|
1810
|
-
[1m[35mSpudPage
|
1811
|
-
[1m[
|
1812
|
-
[1m[35mSpudPermalink Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'permapage' AND `spud_permalinks`.`site_id` = 0) LIMIT 1
|
1813
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (52, 'SpudPage', '2013-02-20 13:04:28', 0, '2013-02-20 13:04:28', 'permapage')[0m
|
1814
|
-
[1m[35mSpudPage Exists (0.3ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'permapage new' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1815
|
-
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'permapage-new' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1816
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_pages` SET `name` = 'permapage new', `url_name` = 'permapage-new', `updated_at` = '2013-02-20 13:04:28' WHERE `spud_pages`.`id` = 52
|
1817
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1818
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_permalinks`
|
1819
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM `spud_permalinks` WHERE `spud_permalinks`.`attachment_id` = 52 AND `spud_permalinks`.`attachment_type` = 'SpudPage' AND `spud_permalinks`.`url_name` = 'permapage'[0m
|
1820
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 52)
|
1821
|
-
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'permapage' LIMIT 1[0m
|
1822
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 52 LIMIT 1
|
1823
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
|
1824
|
-
[1m[35mSQL (0.2ms)[0m DELETE FROM `spud_permalinks` WHERE `spud_permalinks`.`id` = 5
|
1825
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1826
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
|
1827
|
-
[1m[36mSpudPermalink Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'permapage-new' AND `spud_permalinks`.`site_id` = 0) LIMIT 1[0m
|
1828
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (52, 'SpudPage', '2013-02-20 13:04:28', 0, '2013-02-20 13:04:28', 'permapage-new')
|
1829
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1830
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'permapage' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1831
|
-
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'permapage' AND `spud_pages`.`id` != 52 AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1832
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM `spud_permalinks` WHERE `spud_permalinks`.`attachment_id` = 52 AND `spud_permalinks`.`attachment_type` = 'SpudPage' AND `spud_permalinks`.`url_name` = 'permapage'
|
1833
|
-
[1m[36m (0.7ms)[0m [1mROLLBACK[0m
|
1841
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'new' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1842
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'original' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1843
|
+
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
1834
1844
|
[1m[35m (0.0ms)[0m ROLLBACK
|
1835
1845
|
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1836
1846
|
[1m[35m (0.0ms)[0m BEGIN
|
@@ -1838,40 +1848,27 @@ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms)
|
|
1838
1848
|
[1m[35mSpudPage Load (0.3ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1839
1849
|
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'original' LIMIT 1[0m
|
1840
1850
|
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'original' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1841
|
-
[1m[36mSpudPage Exists (0.
|
1842
|
-
[1m[35mSQL (0.
|
1851
|
+
[1m[36mSpudPage Exists (0.1ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'original' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1852
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'original', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'original', 0, 0)
|
1843
1853
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1844
|
-
[1m[
|
1845
|
-
[1m[36mSpudPage
|
1846
|
-
[1m[
|
1847
|
-
[1m[
|
1848
|
-
[1m[
|
1849
|
-
[1m[
|
1850
|
-
[1m[
|
1851
|
-
[1m[
|
1852
|
-
[1m[35mSpudPermalink Load (0.3ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'original' LIMIT 1
|
1853
|
-
[1m[36mSpudPage Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'original' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1854
|
-
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'original' AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1855
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'original', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'original', 0, 0)[0m
|
1854
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
|
1855
|
+
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0 AND (id != 54)[0m
|
1856
|
+
[1m[35mSpudPermalink Load (0.1ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'original2' LIMIT 1
|
1857
|
+
[1m[36mSpudPermalink Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_permalinks` WHERE (`spud_permalinks`.`url_name` = BINARY 'original' AND `spud_permalinks`.`site_id` = 0) LIMIT 1[0m
|
1858
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_permalinks` (`attachment_id`, `attachment_type`, `created_at`, `site_id`, `updated_at`, `url_name`) VALUES (54, 'SpudPage', '2013-03-09 02:53:28', 0, '2013-03-09 02:53:28', 'original')
|
1859
|
+
[1m[36mSpudPage Exists (0.3ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'original2' AND `spud_pages`.`id` != 54 AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1[0m
|
1860
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'original2' AND `spud_pages`.`id` != 54 AND `spud_pages`.`site_id` = 0) LIMIT 1
|
1861
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `spud_pages` SET `name` = 'original2', `url_name` = 'original2', `updated_at` = '2013-03-09 02:53:28' WHERE `spud_pages`.`id` = 54[0m
|
1856
1862
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_2
|
1857
1863
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
1858
|
-
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1859
|
-
[1m[36mSpudPermalink Load (0.
|
1860
|
-
[1m[
|
1861
|
-
[1m[
|
1862
|
-
[1m[
|
1863
|
-
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'original2' AND `spud_pages`.`id` != 54 AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1864
|
-
[1m[35m (0.2ms)[0m UPDATE `spud_pages` SET `name` = 'original2', `url_name` = 'original2', `updated_at` = '2013-02-20 13:04:28' WHERE `spud_pages`.`id` = 54
|
1864
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`site_id` = 0
|
1865
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'new' LIMIT 1[0m
|
1866
|
+
[1m[35mSpudPage Exists (0.2ms)[0m SELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`name` = BINARY 'new' AND `spud_pages`.`site_id` = 0 AND `spud_pages`.`spud_page_id` IS NULL) LIMIT 1
|
1867
|
+
[1m[36mSpudPage Exists (0.2ms)[0m [1mSELECT 1 AS one FROM `spud_pages` WHERE (`spud_pages`.`url_name` = BINARY 'new' AND `spud_pages`.`site_id` = 0) LIMIT 1[0m
|
1868
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-03-09 02:53:28', NULL, 'html', NULL, NULL, NULL, 'new', NULL, NULL, NULL, 1, 0, NULL, '2013-03-09 02:53:28', NULL, 'new', 0, 0)
|
1865
1869
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
1866
|
-
[1m[
|
1867
|
-
[1m[
|
1868
|
-
[1m[
|
1869
|
-
[1m[
|
1870
|
-
[1m[
|
1871
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `spud_pages` (`created_at`, `created_by`, `format`, `layout`, `meta_description`, `meta_keywords`, `name`, `notes`, `page_order`, `publish_at`, `published`, `site_id`, `spud_page_id`, `updated_at`, `updated_by`, `url_name`, `use_custom_url_name`, `visibility`) VALUES ('2013-02-20 13:04:28', NULL, 'html', NULL, NULL, NULL, 'new', NULL, NULL, NULL, 1, 0, NULL, '2013-02-20 13:04:28', NULL, 'new', 0, 0)[0m
|
1872
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
|
1873
|
-
[1m[36mSpudPage Load (0.1ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 55 LIMIT 1[0m
|
1874
|
-
[1m[35mSpudPermalink Load (0.2ms)[0m SELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'original' LIMIT 1
|
1875
|
-
[1m[36mSpudPage Load (0.2ms)[0m [1mSELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 54 LIMIT 1[0m
|
1876
|
-
[1m[35m (0.3ms)[0m ROLLBACK
|
1877
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1870
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 55 LIMIT 1
|
1871
|
+
[1m[36mSpudPermalink Load (0.2ms)[0m [1mSELECT `spud_permalinks`.* FROM `spud_permalinks` WHERE `spud_permalinks`.`site_id` = 0 AND `spud_permalinks`.`url_name` = 'original' LIMIT 1[0m
|
1872
|
+
[1m[35mSpudPage Load (0.2ms)[0m SELECT `spud_pages`.* FROM `spud_pages` WHERE `spud_pages`.`id` = 54 LIMIT 1
|
1873
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
1874
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|