typo 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/controllers/admin/comments_controller.rb +1 -1
- data/app/controllers/admin/content_controller.rb +1 -3
- data/app/controllers/admin/feedback_controller.rb +36 -31
- data/app/controllers/admin/sidebar_controller.rb +13 -2
- data/app/controllers/admin/users_controller.rb +2 -1
- data/app/controllers/articles_controller.rb +10 -19
- data/app/controllers/xml_controller.rb +2 -2
- data/app/helpers/admin/base_helper.rb +7 -3
- data/app/helpers/application_helper.rb +2 -2
- data/app/helpers/articles_helper.rb +5 -4
- data/app/models/article.rb +16 -10
- data/app/models/blog.rb +4 -10
- data/app/models/comment.rb +17 -36
- data/app/models/content.rb +31 -53
- data/app/models/content_state/base.rb +46 -3
- data/app/models/content_state/draft.rb +2 -9
- data/app/models/content_state/ham.rb +31 -0
- data/app/models/content_state/just_marked_as_ham.rb +10 -0
- data/app/models/content_state/just_marked_as_spam.rb +23 -0
- data/app/models/content_state/just_presumed_ham.rb +37 -0
- data/app/models/content_state/just_published.rb +15 -8
- data/app/models/content_state/new.rb +3 -10
- data/app/models/content_state/presumed_ham.rb +27 -0
- data/app/models/content_state/presumed_spam.rb +31 -0
- data/app/models/content_state/publication_pending.rb +7 -9
- data/app/models/content_state/published.rb +10 -9
- data/app/models/content_state/spam.rb +23 -0
- data/app/models/content_state/unclassified.rb +29 -0
- data/app/models/content_state/withdrawn.rb +28 -0
- data/app/models/email_notifier.rb +0 -1
- data/app/models/feedback.rb +151 -0
- data/app/models/trackback.rb +22 -29
- data/app/views/admin/feedback/_item.rhtml +5 -5
- data/app/views/admin/feedback/list.rhtml +13 -11
- data/app/views/admin/general/index.rhtml +8 -4
- data/app/views/admin/users/show.rhtml +7 -1
- data/app/views/articles/read.rhtml +2 -2
- data/bin/typo +7 -6
- data/components/plugins/sidebars/recent_comments_controller.rb +1 -1
- data/config/environment.rb +2 -0
- data/db/migrate/046_fixup_forthcoming_publications.rb +1 -1
- data/db/migrate/048_remove_count_caching.rb +31 -0
- data/db/migrate/049_move_feedback_to_new_state_machine.rb +33 -0
- data/db/schema.mysql-v3.sql +3 -4
- data/db/schema.mysql.sql +3 -4
- data/db/schema.postgresql.sql +3 -4
- data/db/schema.rb +12 -17
- data/db/schema.sqlite.sql +3 -4
- data/db/schema.sqlserver.sql +3 -4
- data/db/schema_version +1 -1
- data/doc/Installer.txt +4 -0
- data/lib/jabber_notify.rb +6 -2
- data/lib/sidebars/plugin.rb +2 -1
- data/lib/tasks/release.rake +5 -4
- data/lib/typo_version.rb +1 -1
- data/public/stylesheets/administration.css +22 -2
- data/test/fixtures/blogs.yml +2 -0
- data/test/fixtures/contents.yml +7 -7
- data/test/functional/admin/users_controller_test.rb +3 -0
- data/test/functional/articles_controller_test.rb +16 -1
- data/test/mocks/test/xmlrpc_mock.rb +5 -4
- data/test/unit/article_test.rb +16 -4
- data/test/unit/comment_test.rb +57 -35
- data/test/unit/content_state/factory_test.rb +7 -6
- data/test/unit/ping_test.rb +14 -0
- data/test/unit/trackback_test.rb +16 -15
- metadata +26 -26
- data/config/database.yml-pgsql +0 -17
- data/config/database.yml.sqlite +0 -14
- data/config/mail.yml +0 -8
- data/config/mongrel.conf +0 -2
- data/db/converters/mt-import.rb +0 -72
- data/db/development_structure.sql +0 -691
- data/installer/rails-installer.rb +0 -527
- data/installer/rails-installer/commands.rb +0 -118
- data/installer/rails-installer/web-servers.rb +0 -110
- data/log/development.log-1 +0 -991
- data/log/development.log-2 +0 -422
- data/log/development.log-3 +0 -429
- data/log/development.log-4 +0 -174
- data/svk-commitP6cVv.tmp +0 -1
- data/vendor/ruby-mp3info/lib/mp3info.rb +0 -720
@@ -1,118 +0,0 @@
|
|
1
|
-
class RailsInstaller
|
2
|
-
|
3
|
-
# Parent class for webserver plugins for the installer. To create a new
|
4
|
-
# webserver handler, subclass this class and define a 'start' and 'stop'
|
5
|
-
# class method.
|
6
|
-
class Command
|
7
|
-
@@command_map = {}
|
8
|
-
|
9
|
-
def self.command(installer, *args)
|
10
|
-
raise "Not Implemented"
|
11
|
-
end
|
12
|
-
|
13
|
-
def self.flag_help(text)
|
14
|
-
@flag_help = text
|
15
|
-
end
|
16
|
-
|
17
|
-
def self.flag_help_text
|
18
|
-
@flag_help || ''
|
19
|
-
end
|
20
|
-
|
21
|
-
def self.help(text)
|
22
|
-
@help = text
|
23
|
-
end
|
24
|
-
|
25
|
-
def self.help_text
|
26
|
-
@help || ''
|
27
|
-
end
|
28
|
-
|
29
|
-
def self.inherited(sub)
|
30
|
-
name = sub.to_s.gsub(/^.*::/,'').gsub(/([A-Z])/) do |match|
|
31
|
-
"_#{match.downcase}"
|
32
|
-
end.gsub(/^_/,'')
|
33
|
-
|
34
|
-
@@command_map[name] = sub
|
35
|
-
end
|
36
|
-
|
37
|
-
def self.commands
|
38
|
-
@@command_map
|
39
|
-
end
|
40
|
-
|
41
|
-
class Install < RailsInstaller::Command
|
42
|
-
help "Install or upgrade APPNAME in PATH."
|
43
|
-
|
44
|
-
def self.command(installer, *args)
|
45
|
-
version = nil
|
46
|
-
args.each do |arg|
|
47
|
-
if(arg =~ /^([^=]+)=(.*)$/)
|
48
|
-
installer.config[$1.to_s] = $2.to_s
|
49
|
-
else
|
50
|
-
version = arg
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
installer.install(version)
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
class Config < RailsInstaller::Command
|
59
|
-
help "Read or set a configuration variable"
|
60
|
-
flag_help '[KEY=VALUE]...'
|
61
|
-
|
62
|
-
def self.command(installer, *args)
|
63
|
-
if args.size == 0
|
64
|
-
installer.config.keys.sort.each do |k|
|
65
|
-
puts "#{k}=#{installer.config[k]}"
|
66
|
-
end
|
67
|
-
else
|
68
|
-
args.each do |arg|
|
69
|
-
if(arg=~/^([^=]+)=(.*)$/)
|
70
|
-
if $2.to_s.empty?
|
71
|
-
installer.config.delete($1.to_s)
|
72
|
-
else
|
73
|
-
installer.config[$1.to_s]=$2.to_s
|
74
|
-
end
|
75
|
-
else
|
76
|
-
puts installer.config[arg]
|
77
|
-
end
|
78
|
-
end
|
79
|
-
installer.save
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
class Start < RailsInstaller::Command
|
85
|
-
help "Start the web server in the background"
|
86
|
-
|
87
|
-
def self.command(installer, *args)
|
88
|
-
installer.start
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
class Run < RailsInstaller::Command
|
93
|
-
help "Start the web server in the foreground"
|
94
|
-
|
95
|
-
def self.command(installer, *args)
|
96
|
-
installer.start(true)
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
class Restart < RailsInstaller::Command
|
101
|
-
help "Stop and restart the web server."
|
102
|
-
|
103
|
-
def self.command(installer, *args)
|
104
|
-
installer.stop
|
105
|
-
installer.start
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
class Stop < RailsInstaller::Command
|
110
|
-
help "Stop the web server"
|
111
|
-
|
112
|
-
def self.command(installer, *args)
|
113
|
-
installer.stop
|
114
|
-
end
|
115
|
-
end
|
116
|
-
end
|
117
|
-
end
|
118
|
-
|
@@ -1,110 +0,0 @@
|
|
1
|
-
class RailsInstaller
|
2
|
-
|
3
|
-
# Parent class for webserver plugins for the installer. To create a new
|
4
|
-
# webserver handler, subclass this class and define a 'start' and 'stop'
|
5
|
-
# class method.
|
6
|
-
class WebServer
|
7
|
-
@@server_map = {}
|
8
|
-
|
9
|
-
def self.start(installer, foreground)
|
10
|
-
raise "Not Implemented"
|
11
|
-
end
|
12
|
-
|
13
|
-
def self.stop(installer, foreground)
|
14
|
-
raise "Not Implemented"
|
15
|
-
end
|
16
|
-
|
17
|
-
def self.inherited(sub)
|
18
|
-
name = sub.to_s.gsub(/^.*::/,'').gsub(/([A-Z])/) do |match|
|
19
|
-
"_#{match.downcase}"
|
20
|
-
end.gsub(/^_/,'')
|
21
|
-
|
22
|
-
@@server_map[name] = sub
|
23
|
-
end
|
24
|
-
|
25
|
-
def self.servers
|
26
|
-
@@server_map
|
27
|
-
end
|
28
|
-
|
29
|
-
class Mongrel < RailsInstaller::WebServer
|
30
|
-
def self.start(installer, foreground)
|
31
|
-
args = {}
|
32
|
-
args['-p'] = installer.config['port-number']
|
33
|
-
args['-a'] = installer.config['bind-address']
|
34
|
-
args['-e'] = installer.config['rails-environment']
|
35
|
-
args['-d'] = foreground
|
36
|
-
args['-P'] = pid_file(installer)
|
37
|
-
args['--prefix'] = installer.config['url-prefix']
|
38
|
-
|
39
|
-
# Remove keys with nil values
|
40
|
-
args.delete_if {|k,v| v==nil}
|
41
|
-
|
42
|
-
args_array = args.to_a.flatten.map {|e| e.to_s}
|
43
|
-
args_array = ['mongrel_rails', 'start', installer.install_directory] + args_array
|
44
|
-
installer.message "Starting #{installer.app_name.capitalize} on port #{installer.config['port-number']}"
|
45
|
-
in_directory installer.install_directory do
|
46
|
-
system(args_array.join(' '))
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
def self.stop(installer)
|
51
|
-
args = {}
|
52
|
-
args['-P'] = pid_file(installer)
|
53
|
-
|
54
|
-
args_array = args.to_a.flatten.map {|e| e.to_s}
|
55
|
-
args_array = ['mongrel_rails', 'stop', installer.install_directory] + args_array
|
56
|
-
installer.message "Stopping #{installer.app_name.capitalize}"
|
57
|
-
in_directory installer.install_directory do
|
58
|
-
system(args_array.join(' '))
|
59
|
-
end
|
60
|
-
|
61
|
-
end
|
62
|
-
|
63
|
-
def self.pid_file(installer)
|
64
|
-
File.join(installer.install_directory,'tmp','pid.txt')
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
class MongrelCluster < RailsInstaller::WebServer
|
69
|
-
def self.start(installer, foreground)
|
70
|
-
args = {}
|
71
|
-
args['-p'] = installer.config['port-number']
|
72
|
-
args['-a'] = installer.config['bind-address']
|
73
|
-
args['-e'] = installer.config['rails-environment']
|
74
|
-
args['-N'] = installer.config['threads']
|
75
|
-
args['--prefix'] = installer.config['url-prefix']
|
76
|
-
|
77
|
-
# Remove keys with nil values
|
78
|
-
args.delete_if {|k,v| v==nil}
|
79
|
-
|
80
|
-
args_array = args.to_a.flatten.map {|e| e.to_s}
|
81
|
-
args_array = ['mongrel_rails', 'cluster::configure'] + args_array
|
82
|
-
installer.message "Configuring mongrel_cluster for #{installer.app_name.capitalize}"
|
83
|
-
in_directory installer.install_directory do
|
84
|
-
system(args_array.join(' '))
|
85
|
-
end
|
86
|
-
installer.message "Starting #{installer.app_name.capitalize} on port #{installer.config['port-number']}"
|
87
|
-
in_directory installer.install_directory do
|
88
|
-
system('mongrel_rails cluster::start')
|
89
|
-
end
|
90
|
-
|
91
|
-
end
|
92
|
-
|
93
|
-
def self.stop(installer)
|
94
|
-
installer.message "Stopping #{installer.app_name.capitalize}"
|
95
|
-
in_directory installer.install_directory do
|
96
|
-
system('mongrel_rails cluster::stop')
|
97
|
-
end
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
# Do-nothing webserver class. Used when the installer doesn't control the web server.
|
102
|
-
class External < RailsInstaller::WebServer
|
103
|
-
def self.start(installer, foreground)
|
104
|
-
end
|
105
|
-
|
106
|
-
def self.stop(installer)
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end
|
data/log/development.log-1
DELETED
@@ -1,991 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Processing ArticlesController#index (for 127.0.0.1 at 2006-07-07 23:16:20) [GET]
|
4
|
-
Parameters: {"action"=>"index", "controller"=>"articles"}
|
5
|
-
[4;36;1mBlog Load (0.001565)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
6
|
-
[4;35;1mTrigger Load (0.007516)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:20') [0m
|
7
|
-
[4;36;1mSQL (0.005902)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
8
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
9
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
10
|
-
WHERE a.attrelid = 'users'::regclass
|
11
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
12
|
-
ORDER BY a.attnum
|
13
|
-
[0m
|
14
|
-
[4;35;1mSQL (0.001463)[0m [0mSELECT count(*) AS count_all FROM users [0m
|
15
|
-
[4;36;1mSQL (0.004341)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
16
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
17
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
18
|
-
WHERE a.attrelid = 'blogs'::regclass
|
19
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
20
|
-
ORDER BY a.attnum
|
21
|
-
[0m
|
22
|
-
[4;35;1mSQL (0.005055)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
23
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
24
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
25
|
-
WHERE a.attrelid = 'contents'::regclass
|
26
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
27
|
-
ORDER BY a.attnum
|
28
|
-
[0m
|
29
|
-
[4;36;1mArticle Count (4.068029)[0m [0;1mSELECT COUNT(DISTINCT contents.id) FROM contents LEFT OUTER JOIN articles_categories ON articles_categories.article_id = contents.id LEFT OUTER JOIN categories ON categories.id = articles_categories.category_id LEFT OUTER JOIN articles_tags ON articles_tags.article_id = contents.id LEFT OUTER JOIN tags ON tags.id = articles_tags.tag_id WHERE (published = 't' AND contents.created_at < '2006-07-07 23:16:20' AND blog_id = 1) AND ( (contents."type" = 'Article' ) ) [0m
|
30
|
-
[4;35;1mSQL (0.005346)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
31
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
32
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
33
|
-
WHERE a.attrelid = 'categories'::regclass
|
34
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
35
|
-
ORDER BY a.attnum
|
36
|
-
[0m
|
37
|
-
[4;36;1mSQL (0.006642)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
38
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
39
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
40
|
-
WHERE a.attrelid = 'tags'::regclass
|
41
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
42
|
-
ORDER BY a.attnum
|
43
|
-
[0m
|
44
|
-
[4;35;1mArticle Load IDs For Limited Eager Loading (0.027400)[0m [0mSELECT id FROM contents WHERE (published = 't' AND contents.created_at < '2006-07-07 23:16:20' AND blog_id = 1) AND ( (contents."type" = 'Article' ) ) ORDER BY contents.published_at DESC LIMIT 15 OFFSET 0[0m
|
45
|
-
[4;36;1mArticle Load Including Associations (0.168275)[0m [0;1mSELECT contents."id" AS t0_r0, contents."title" AS t0_r1, contents."author" AS t0_r2, contents."body" AS t0_r3, contents."body_html" AS t0_r4, contents."extended" AS t0_r5, contents."excerpt" AS t0_r6, contents."keywords" AS t0_r7, contents."created_at" AS t0_r8, contents."updated_at" AS t0_r9, contents."extended_html" AS t0_r10, contents."user_id" AS t0_r11, contents."permalink" AS t0_r12, contents."guid" AS t0_r13, contents."text_filter_id" AS t0_r14, contents."whiteboard" AS t0_r15, contents."comments_count" AS t0_r16, contents."trackbacks_count" AS t0_r17, contents."type" AS t0_r18, contents."article_id" AS t0_r19, contents."email" AS t0_r20, contents."url" AS t0_r21, contents."ip" AS t0_r22, contents."blog_name" AS t0_r23, contents."name" AS t0_r24, contents."published" AS t0_r25, contents."allow_pings" AS t0_r26, contents."allow_comments" AS t0_r27, contents."blog_id" AS t0_r28, contents."published_at" AS t0_r29, categories."id" AS t1_r0, categories."name" AS t1_r1, categories."position" AS t1_r2, categories."is_primary" AS t1_r3, categories."permalink" AS t1_r4, tags."id" AS t2_r0, tags."name" AS t2_r1, tags."created_at" AS t2_r2, tags."updated_at" AS t2_r3, tags."display_name" AS t2_r4 FROM contents LEFT OUTER JOIN articles_categories ON articles_categories.article_id = contents.id LEFT OUTER JOIN categories ON categories.id = articles_categories.category_id LEFT OUTER JOIN articles_tags ON articles_tags.article_id = contents.id LEFT OUTER JOIN tags ON tags.id = articles_tags.tag_id WHERE (published = 't' AND contents.created_at < '2006-07-07 23:16:20' AND blog_id = 1) AND ( (contents."type" = 'Article' ) ) AND contents.id IN ('1640', '562', '561', '560', '559', '558', '557', '556', '555', '554', '553', '552', '551', '550', '549') ORDER BY contents.published_at DESC [0m
|
46
|
-
Rendering within ../../themes/scribbish/layouts/default
|
47
|
-
Rendering articles/index
|
48
|
-
[4;35;1mBlog Load (0.004094)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
49
|
-
[4;36;1mUser Load (0.002614)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
50
|
-
[4;35;1mBlog Load (0.001653)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
51
|
-
Rendered articles/_article (0.10659)
|
52
|
-
[4;36;1mBlog Load (0.002632)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
53
|
-
[4;35;1mUser Load (0.005914)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
54
|
-
Rendered articles/_article (0.03171)
|
55
|
-
[4;36;1mBlog Load (0.002035)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
56
|
-
[4;35;1mUser Load (0.004772)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
57
|
-
Rendered articles/_article (0.03215)
|
58
|
-
[4;36;1mBlog Load (0.002005)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
59
|
-
[4;35;1mUser Load (0.005331)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
60
|
-
Rendered articles/_article (0.02031)
|
61
|
-
[4;36;1mBlog Load (0.002556)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
62
|
-
[4;35;1mUser Load (0.001946)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
63
|
-
Rendered articles/_article (0.02090)
|
64
|
-
[4;36;1mBlog Load (0.002632)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
65
|
-
[4;35;1mUser Load (0.006022)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
66
|
-
Rendered articles/_article (0.02930)
|
67
|
-
[4;36;1mBlog Load (0.009309)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
68
|
-
[4;35;1mUser Load (0.002016)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
69
|
-
Rendered articles/_article (0.03237)
|
70
|
-
[4;36;1mBlog Load (0.001745)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
71
|
-
[4;35;1mUser Load (0.001891)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
72
|
-
Rendered articles/_article (0.02063)
|
73
|
-
[4;36;1mBlog Load (0.002474)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
74
|
-
[4;35;1mUser Load (0.001943)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
75
|
-
Rendered articles/_article (0.02105)
|
76
|
-
[4;36;1mBlog Load (0.001995)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
77
|
-
[4;35;1mUser Load (0.028648)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
78
|
-
Rendered articles/_article (0.04766)
|
79
|
-
[4;36;1mBlog Load (0.006375)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
80
|
-
[4;35;1mUser Load (0.002167)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
81
|
-
Rendered articles/_article (0.03493)
|
82
|
-
[4;36;1mBlog Load (0.001892)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
83
|
-
[4;35;1mUser Load (0.001972)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
84
|
-
Rendered articles/_article (0.02128)
|
85
|
-
[4;36;1mBlog Load (0.001800)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
86
|
-
[4;35;1mUser Load (0.003931)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
87
|
-
Rendered articles/_article (0.02123)
|
88
|
-
[4;36;1mBlog Load (0.001872)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
89
|
-
[4;35;1mUser Load (0.002870)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
90
|
-
Rendered articles/_article (0.05251)
|
91
|
-
[4;36;1mBlog Load (0.002083)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
92
|
-
[4;35;1mUser Load (0.002029)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
93
|
-
Rendered articles/_article (0.02532)
|
94
|
-
Rendered articles/_search (0.00250)
|
95
|
-
Start rendering component ({:controller=>SidebarController, :action=>"display_plugins"}):
|
96
|
-
|
97
|
-
|
98
|
-
Processing SidebarController#display_plugins (for 127.0.0.1 at 2006-07-07 23:16:25)
|
99
|
-
[4;36;1mBlog Load (0.002002)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
100
|
-
[4;35;1mTrigger Load (0.001579)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:25') [0m
|
101
|
-
[4;36;1mSidebar Load (0.001738)[0m [0;1mSELECT * FROM sidebars WHERE (active_position is not null) ORDER BY active_position [0m
|
102
|
-
[4;35;1mSQL (0.003962)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
103
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
104
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
105
|
-
WHERE a.attrelid = 'sidebars'::regclass
|
106
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
107
|
-
ORDER BY a.attnum
|
108
|
-
[0m
|
109
|
-
Rendering sidebar/display_plugins
|
110
|
-
Start rendering component ({:controller=>Plugins::Sidebars::TagController, :action=>"index", :layout=>false}):
|
111
|
-
|
112
|
-
|
113
|
-
Processing TagController#index (for 127.0.0.1 at 2006-07-07 23:16:25)
|
114
|
-
[4;36;1mBlog Load (0.001389)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
115
|
-
[4;35;1mTrigger Load (0.003236)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:25') [0m
|
116
|
-
[4;36;1mTag Load (0.074440)[0m [0;1m
|
117
|
-
SELECT tags.id, tags.name, tags.display_name, COUNT(articles_tags.article_id) AS article_counter
|
118
|
-
FROM tags tags LEFT OUTER JOIN articles_tags articles_tags
|
119
|
-
ON articles_tags.tag_id = tags.id
|
120
|
-
LEFT OUTER JOIN contents articles
|
121
|
-
ON articles_tags.article_id = articles.id
|
122
|
-
WHERE articles.published = 't'
|
123
|
-
GROUP BY tags.id, tags.name, tags.display_name
|
124
|
-
ORDER BY article_counter DESC
|
125
|
-
LIMIT 20
|
126
|
-
[0m
|
127
|
-
Rendering plugins/sidebars/tag/content
|
128
|
-
Completed in 0.11900 (8 reqs/sec) | Rendering: 0.01984 (16%) | DB: 0.07907 (66%) | 200 OK [http://localhost/]
|
129
|
-
|
130
|
-
|
131
|
-
End of component rendering
|
132
|
-
BENCHMARK: display_plugins: tag (0.12650)
|
133
|
-
Rendered sidebar/_sidebar (0.12840)
|
134
|
-
Start rendering component ({:controller=>Plugins::Sidebars::ArchivesController, :action=>"index", :layout=>false}):
|
135
|
-
|
136
|
-
|
137
|
-
Processing ArchivesController#index (for 127.0.0.1 at 2006-07-07 23:16:25)
|
138
|
-
[4;35;1mBlog Load (0.001422)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
139
|
-
[4;36;1mTrigger Load (0.001531)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:25') [0m
|
140
|
-
[4;35;1mArticle Load Including Associations (5.809857)[0m [0mSELECT contents."id" AS t0_r0, contents."title" AS t0_r1, contents."author" AS t0_r2, contents."body" AS t0_r3, contents."body_html" AS t0_r4, contents."extended" AS t0_r5, contents."excerpt" AS t0_r6, contents."keywords" AS t0_r7, contents."created_at" AS t0_r8, contents."updated_at" AS t0_r9, contents."extended_html" AS t0_r10, contents."user_id" AS t0_r11, contents."permalink" AS t0_r12, contents."guid" AS t0_r13, contents."text_filter_id" AS t0_r14, contents."whiteboard" AS t0_r15, contents."comments_count" AS t0_r16, contents."trackbacks_count" AS t0_r17, contents."type" AS t0_r18, contents."article_id" AS t0_r19, contents."email" AS t0_r20, contents."url" AS t0_r21, contents."ip" AS t0_r22, contents."blog_name" AS t0_r23, contents."name" AS t0_r24, contents."published" AS t0_r25, contents."allow_pings" AS t0_r26, contents."allow_comments" AS t0_r27, contents."blog_id" AS t0_r28, contents."published_at" AS t0_r29, categories."id" AS t1_r0, categories."name" AS t1_r1, categories."position" AS t1_r2, categories."is_primary" AS t1_r3, categories."permalink" AS t1_r4, tags."id" AS t2_r0, tags."name" AS t2_r1, tags."created_at" AS t2_r2, tags."updated_at" AS t2_r3, tags."display_name" AS t2_r4 FROM contents LEFT OUTER JOIN articles_categories ON articles_categories.article_id = contents.id LEFT OUTER JOIN categories ON categories.id = articles_categories.category_id LEFT OUTER JOIN articles_tags ON articles_tags.article_id = contents.id LEFT OUTER JOIN tags ON tags.id = articles_tags.tag_id WHERE (contents.blog_id = 1 AND (published = 't')) AND ( (contents."type" = 'Article' ) ) ORDER BY contents.created_at DESC [0m
|
141
|
-
Rendering plugins/sidebars/archives/content
|
142
|
-
Completed in 7.61391 (0 reqs/sec) | Rendering: 0.00637 (0%) | DB: 5.81281 (76%) | 200 OK [http://localhost/]
|
143
|
-
|
144
|
-
|
145
|
-
End of component rendering
|
146
|
-
BENCHMARK: display_plugins: archives (7.62084)
|
147
|
-
Rendered sidebar/_sidebar (7.62515)
|
148
|
-
Start rendering component ({:controller=>Plugins::Sidebars::StaticController, :action=>"index", :layout=>false}):
|
149
|
-
|
150
|
-
|
151
|
-
Processing StaticController#index (for 127.0.0.1 at 2006-07-07 23:16:33)
|
152
|
-
[4;36;1mBlog Load (0.001484)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
153
|
-
[4;35;1mTrigger Load (0.001650)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:33') [0m
|
154
|
-
Rendering plugins/sidebars/static/content
|
155
|
-
Completed in 0.03285 (30 reqs/sec) | Rendering: 0.00605 (18%) | DB: 0.00313 (9%) | 200 OK [http://localhost/]
|
156
|
-
|
157
|
-
|
158
|
-
End of component rendering
|
159
|
-
BENCHMARK: display_plugins: static (0.04737)
|
160
|
-
Rendered sidebar/_sidebar (0.05244)
|
161
|
-
BENCHMARK: display_plugins (8.12747)
|
162
|
-
Completed in 8.16413 (0 reqs/sec) | Rendering: 8.13079 (99%) | DB: 0.13050 (1%) | 200 OK [http://localhost/]
|
163
|
-
|
164
|
-
|
165
|
-
End of component rendering
|
166
|
-
[4;36;1mArticle Load (0.011267)[0m [0;1mSELECT * FROM contents WHERE (published = 't' AND created_at > '2006-07-07 23:16:20') AND ( (contents."type" = 'Article' ) ) ORDER BY created_at ASC LIMIT 1[0m
|
167
|
-
Completed in 13.48180 (0 reqs/sec) | Rendering: 9.00241 (66%) | DB: 4.31280 (31%) | 200 OK [http://localhost/]
|
168
|
-
|
169
|
-
|
170
|
-
Processing XmlController#feed (for 127.0.0.1 at 2006-07-07 23:16:34) [GET]
|
171
|
-
Parameters: {"format"=>"atom", "type"=>"feed", "action"=>"feed", "controller"=>"xml"}
|
172
|
-
[4;35;1mBlog Load (0.001397)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
173
|
-
[4;36;1mTrigger Load (0.001832)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:34') [0m
|
174
|
-
[4;35;1mSQL (0.004322)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
175
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
176
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
177
|
-
WHERE a.attrelid = 'blogs'::regclass
|
178
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
179
|
-
ORDER BY a.attnum
|
180
|
-
[0m
|
181
|
-
[4;36;1mSQL (0.005126)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
182
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
183
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
184
|
-
WHERE a.attrelid = 'contents'::regclass
|
185
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
186
|
-
ORDER BY a.attnum
|
187
|
-
[0m
|
188
|
-
[4;35;1mArticle Load (0.047932)[0m [0mSELECT * FROM contents WHERE (( contents.blog_id = 1 ) AND ( published_at < '2006-07-07 23:16:34' )) AND ((published = 't')) AND ( (contents."type" = 'Article' ) ) ORDER BY created_at DESC LIMIT 15[0m
|
189
|
-
Rendering xml/atom10_feed
|
190
|
-
[4;36;1mUser Load (0.001939)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
191
|
-
[4;35;1mSQL (0.007526)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
192
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
193
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
194
|
-
WHERE a.attrelid = 'users'::regclass
|
195
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
196
|
-
ORDER BY a.attnum
|
197
|
-
[0m
|
198
|
-
[4;36;1mBlog Load (0.001760)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
199
|
-
[4;35;1mSQL (0.004469)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
200
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
201
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
202
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
203
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
204
|
-
ORDER BY a.attnum
|
205
|
-
[0m
|
206
|
-
[4;36;1mCategory Load (0.003582)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 1640 ) [0m
|
207
|
-
[4;35;1mSQL (0.004094)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
208
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
209
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
210
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
211
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
212
|
-
ORDER BY a.attnum
|
213
|
-
[0m
|
214
|
-
[4;36;1mTag Load (0.013028)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 1640 ) [0m
|
215
|
-
[4;35;1mResource Load (0.001944)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 1640) ORDER BY created_at DESC [0m
|
216
|
-
[4;36;1mBlog Load (0.001364)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
217
|
-
Rendered xml/_atom10_item_article (0.13630)
|
218
|
-
[4;35;1mUser Load (0.001958)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
219
|
-
[4;36;1mBlog Load (0.001794)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
220
|
-
[4;35;1mSQL (0.004070)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
221
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
222
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
223
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
224
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
225
|
-
ORDER BY a.attnum
|
226
|
-
[0m
|
227
|
-
[4;36;1mCategory Load (0.004477)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 562 ) [0m
|
228
|
-
[4;35;1mSQL (0.006738)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
229
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
230
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
231
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
232
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
233
|
-
ORDER BY a.attnum
|
234
|
-
[0m
|
235
|
-
[4;36;1mTag Load (0.010360)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 562 ) [0m
|
236
|
-
[4;35;1mSQL (0.004941)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
237
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
238
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
239
|
-
WHERE a.attrelid = 'tags'::regclass
|
240
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
241
|
-
ORDER BY a.attnum
|
242
|
-
[0m
|
243
|
-
[4;36;1mResource Load (0.002244)[0m [0;1mSELECT * FROM resources WHERE (resources.article_id = 562) ORDER BY created_at DESC [0m
|
244
|
-
Rendered xml/_atom10_item_article (0.11380)
|
245
|
-
[4;35;1mUser Load (0.001968)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
246
|
-
[4;36;1mBlog Load (0.002049)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
247
|
-
[4;35;1mSQL (0.004128)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
248
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
249
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
250
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
251
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
252
|
-
ORDER BY a.attnum
|
253
|
-
[0m
|
254
|
-
[4;36;1mCategory Load (0.004632)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 561 ) [0m
|
255
|
-
[4;35;1mSQL (0.008784)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
256
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
257
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
258
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
259
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
260
|
-
ORDER BY a.attnum
|
261
|
-
[0m
|
262
|
-
[4;36;1mTag Load (0.011008)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 561 ) [0m
|
263
|
-
[4;35;1mResource Load (0.001999)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 561) ORDER BY created_at DESC [0m
|
264
|
-
Rendered xml/_atom10_item_article (0.09149)
|
265
|
-
[4;36;1mUser Load (0.001940)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
266
|
-
[4;35;1mBlog Load (0.002304)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
267
|
-
[4;36;1mSQL (0.008432)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
268
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
269
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
270
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
271
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
272
|
-
ORDER BY a.attnum
|
273
|
-
[0m
|
274
|
-
[4;35;1mCategory Load (0.005079)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 560 ) [0m
|
275
|
-
[4;36;1mSQL (0.003788)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
276
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
277
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
278
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
279
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
280
|
-
ORDER BY a.attnum
|
281
|
-
[0m
|
282
|
-
[4;35;1mTag Load (0.008207)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 560 ) [0m
|
283
|
-
[4;36;1mResource Load (0.002723)[0m [0;1mSELECT * FROM resources WHERE (resources.article_id = 560) ORDER BY created_at DESC [0m
|
284
|
-
Rendered xml/_atom10_item_article (0.08631)
|
285
|
-
[4;35;1mUser Load (0.007356)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
286
|
-
[4;36;1mBlog Load (0.001792)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
287
|
-
[4;35;1mSQL (0.005432)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
288
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
289
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
290
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
291
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
292
|
-
ORDER BY a.attnum
|
293
|
-
[0m
|
294
|
-
[4;36;1mCategory Load (0.004020)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 559 ) [0m
|
295
|
-
[4;35;1mSQL (0.003822)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
296
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
297
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
298
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
299
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
300
|
-
ORDER BY a.attnum
|
301
|
-
[0m
|
302
|
-
[4;36;1mTag Load (0.011306)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 559 ) [0m
|
303
|
-
[4;35;1mResource Load (0.001927)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 559) ORDER BY created_at DESC [0m
|
304
|
-
Rendered xml/_atom10_item_article (0.09418)
|
305
|
-
[4;36;1mUser Load (0.001987)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
306
|
-
[4;35;1mBlog Load (0.001785)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
307
|
-
[4;36;1mSQL (0.004111)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
308
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
309
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
310
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
311
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
312
|
-
ORDER BY a.attnum
|
313
|
-
[0m
|
314
|
-
[4;35;1mCategory Load (0.003755)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 558 ) [0m
|
315
|
-
[4;36;1mSQL (0.004621)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
316
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
317
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
318
|
-
WHERE a.attrelid = 'categories'::regclass
|
319
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
320
|
-
ORDER BY a.attnum
|
321
|
-
[0m
|
322
|
-
[4;35;1mSQL (0.004097)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
323
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
324
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
325
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
326
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
327
|
-
ORDER BY a.attnum
|
328
|
-
[0m
|
329
|
-
[4;36;1mTag Load (0.007031)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 558 ) [0m
|
330
|
-
[4;35;1mResource Load (0.003781)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 558) ORDER BY created_at DESC [0m
|
331
|
-
Rendered xml/_atom10_item_article (0.09800)
|
332
|
-
[4;36;1mUser Load (0.003288)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
333
|
-
[4;35;1mBlog Load (0.002344)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
334
|
-
[4;36;1mSQL (0.004517)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
335
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
336
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
337
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
338
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
339
|
-
ORDER BY a.attnum
|
340
|
-
[0m
|
341
|
-
[4;35;1mCategory Load (0.005622)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 557 ) [0m
|
342
|
-
[4;36;1mSQL (0.005100)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
343
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
344
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
345
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
346
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
347
|
-
ORDER BY a.attnum
|
348
|
-
[0m
|
349
|
-
[4;35;1mTag Load (0.008110)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 557 ) [0m
|
350
|
-
[4;36;1mResource Load (0.003545)[0m [0;1mSELECT * FROM resources WHERE (resources.article_id = 557) ORDER BY created_at DESC [0m
|
351
|
-
Rendered xml/_atom10_item_article (0.08805)
|
352
|
-
[4;35;1mUser Load (0.002095)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
353
|
-
[4;36;1mBlog Load (0.001812)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
354
|
-
[4;35;1mSQL (0.007212)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
355
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
356
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
357
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
358
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
359
|
-
ORDER BY a.attnum
|
360
|
-
[0m
|
361
|
-
[4;36;1mCategory Load (0.003742)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 556 ) [0m
|
362
|
-
[4;35;1mSQL (0.004446)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
363
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
364
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
365
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
366
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
367
|
-
ORDER BY a.attnum
|
368
|
-
[0m
|
369
|
-
[4;36;1mTag Load (0.016154)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 556 ) [0m
|
370
|
-
[4;35;1mResource Load (0.029684)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 556) ORDER BY created_at DESC [0m
|
371
|
-
Rendered xml/_atom10_item_article (0.12265)
|
372
|
-
[4;36;1mUser Load (0.002826)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
373
|
-
[4;35;1mBlog Load (0.003165)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
374
|
-
[4;36;1mSQL (0.007111)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
375
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
376
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
377
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
378
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
379
|
-
ORDER BY a.attnum
|
380
|
-
[0m
|
381
|
-
[4;35;1mCategory Load (0.003694)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 555 ) [0m
|
382
|
-
[4;36;1mSQL (0.006704)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
383
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
384
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
385
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
386
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
387
|
-
ORDER BY a.attnum
|
388
|
-
[0m
|
389
|
-
[4;35;1mTag Load (0.008007)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 555 ) [0m
|
390
|
-
[4;36;1mResource Load (0.002194)[0m [0;1mSELECT * FROM resources WHERE (resources.article_id = 555) ORDER BY created_at DESC [0m
|
391
|
-
Rendered xml/_atom10_item_article (0.49476)
|
392
|
-
[4;35;1mUser Load (0.002435)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
393
|
-
[4;36;1mBlog Load (0.001723)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
394
|
-
[4;35;1mSQL (0.005690)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
395
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
396
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
397
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
398
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
399
|
-
ORDER BY a.attnum
|
400
|
-
[0m
|
401
|
-
[4;36;1mCategory Load (0.006441)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 554 ) [0m
|
402
|
-
[4;35;1mSQL (0.004029)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
403
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
404
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
405
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
406
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
407
|
-
ORDER BY a.attnum
|
408
|
-
[0m
|
409
|
-
[4;36;1mTag Load (0.008789)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 554 ) [0m
|
410
|
-
[4;35;1mResource Load (0.002713)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 554) ORDER BY created_at DESC [0m
|
411
|
-
Rendered xml/_atom10_item_article (0.08675)
|
412
|
-
[4;36;1mUser Load (0.001936)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
413
|
-
[4;35;1mBlog Load (0.001733)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
414
|
-
[4;36;1mSQL (0.004032)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
415
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
416
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
417
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
418
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
419
|
-
ORDER BY a.attnum
|
420
|
-
[0m
|
421
|
-
[4;35;1mCategory Load (0.005053)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 553 ) [0m
|
422
|
-
[4;36;1mSQL (0.004069)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
423
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
424
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
425
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
426
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
427
|
-
ORDER BY a.attnum
|
428
|
-
[0m
|
429
|
-
[4;35;1mTag Load (0.007943)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 553 ) [0m
|
430
|
-
[4;36;1mResource Load (0.001987)[0m [0;1mSELECT * FROM resources WHERE (resources.article_id = 553) ORDER BY created_at DESC [0m
|
431
|
-
Rendered xml/_atom10_item_article (0.09099)
|
432
|
-
[4;35;1mUser Load (0.002882)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
433
|
-
[4;36;1mBlog Load (0.001729)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
434
|
-
[4;35;1mSQL (0.003895)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
435
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
436
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
437
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
438
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
439
|
-
ORDER BY a.attnum
|
440
|
-
[0m
|
441
|
-
[4;36;1mCategory Load (0.003969)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 552 ) [0m
|
442
|
-
[4;35;1mSQL (0.005548)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
443
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
444
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
445
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
446
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
447
|
-
ORDER BY a.attnum
|
448
|
-
[0m
|
449
|
-
[4;36;1mTag Load (0.009455)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 552 ) [0m
|
450
|
-
[4;35;1mResource Load (0.001966)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 552) ORDER BY created_at DESC [0m
|
451
|
-
Rendered xml/_atom10_item_article (0.08672)
|
452
|
-
[4;36;1mUser Load (0.001931)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
453
|
-
[4;35;1mBlog Load (0.001744)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
454
|
-
[4;36;1mSQL (0.006203)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
455
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
456
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
457
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
458
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
459
|
-
ORDER BY a.attnum
|
460
|
-
[0m
|
461
|
-
[4;35;1mCategory Load (0.007537)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 551 ) [0m
|
462
|
-
[4;36;1mSQL (0.006121)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
463
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
464
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
465
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
466
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
467
|
-
ORDER BY a.attnum
|
468
|
-
[0m
|
469
|
-
[4;35;1mTag Load (0.010048)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 551 ) [0m
|
470
|
-
[4;36;1mResource Load (0.002272)[0m [0;1mSELECT * FROM resources WHERE (resources.article_id = 551) ORDER BY created_at DESC [0m
|
471
|
-
Rendered xml/_atom10_item_article (0.08957)
|
472
|
-
[4;35;1mUser Load (0.003061)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
473
|
-
[4;36;1mBlog Load (0.002190)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
474
|
-
[4;35;1mSQL (0.007018)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
475
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
476
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
477
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
478
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
479
|
-
ORDER BY a.attnum
|
480
|
-
[0m
|
481
|
-
[4;36;1mCategory Load (0.008691)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 550 ) [0m
|
482
|
-
[4;35;1mSQL (0.008627)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
483
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
484
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
485
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
486
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
487
|
-
ORDER BY a.attnum
|
488
|
-
[0m
|
489
|
-
[4;36;1mTag Load (0.012505)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 550 ) [0m
|
490
|
-
[4;35;1mResource Load (0.003051)[0m [0mSELECT * FROM resources WHERE (resources.article_id = 550) ORDER BY created_at DESC [0m
|
491
|
-
Rendered xml/_atom10_item_article (0.12860)
|
492
|
-
[4;36;1mUser Load (0.003892)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
493
|
-
[4;35;1mBlog Load (0.002383)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
494
|
-
[4;36;1mSQL (0.008224)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
495
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
496
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
497
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
498
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
499
|
-
ORDER BY a.attnum
|
500
|
-
[0m
|
501
|
-
[4;35;1mCategory Load (0.005290)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 549 ) [0m
|
502
|
-
[4;36;1mSQL (0.004563)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
503
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
504
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
505
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
506
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
507
|
-
ORDER BY a.attnum
|
508
|
-
[0m
|
509
|
-
[4;35;1mTag Load (0.008045)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 549 ) [0m
|
510
|
-
[4;36;1mResource Load (0.002047)[0m [0;1mSELECT * FROM resources WHERE (resources.article_id = 549) ORDER BY created_at DESC [0m
|
511
|
-
Rendered xml/_atom10_item_article (0.10712)
|
512
|
-
[4;35;1mArticle Load (0.039920)[0m [0mSELECT * FROM contents WHERE (published = 't' AND created_at > '2006-07-07 23:16:34') AND ( (contents."type" = 'Article' ) ) ORDER BY created_at ASC LIMIT 1[0m
|
513
|
-
Completed in 2.48003 (0 reqs/sec) | Rendering: 1.41738 (57%) | DB: 0.64551 (26%) | 200 OK [http://localhost/xml/atom/feed.xml]
|
514
|
-
|
515
|
-
|
516
|
-
Processing XmlController#feed (for 127.0.0.1 at 2006-07-07 23:16:38) [GET]
|
517
|
-
Parameters: {"format"=>"rss20", "type"=>"feed", "action"=>"feed", "controller"=>"xml"}
|
518
|
-
[4;36;1mBlog Load (0.064161)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
519
|
-
[4;35;1mTrigger Load (0.001615)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:38') [0m
|
520
|
-
[4;36;1mSQL (0.007284)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
521
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
522
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
523
|
-
WHERE a.attrelid = 'blogs'::regclass
|
524
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
525
|
-
ORDER BY a.attnum
|
526
|
-
[0m
|
527
|
-
[4;35;1mSQL (0.007773)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
528
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
529
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
530
|
-
WHERE a.attrelid = 'contents'::regclass
|
531
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
532
|
-
ORDER BY a.attnum
|
533
|
-
[0m
|
534
|
-
[4;36;1mArticle Load (0.051225)[0m [0;1mSELECT * FROM contents WHERE (( contents.blog_id = 1 ) AND ( published_at < '2006-07-07 23:16:38' )) AND ((published = 't')) AND ( (contents."type" = 'Article' ) ) ORDER BY created_at DESC LIMIT 15[0m
|
535
|
-
Rendering xml/rss20_feed
|
536
|
-
[4;35;1mBlog Load (0.001881)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
537
|
-
[4;36;1mBlog Load (0.001736)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
538
|
-
[4;35;1mUser Load (0.002033)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
539
|
-
[4;36;1mSQL (0.004971)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
540
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
541
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
542
|
-
WHERE a.attrelid = 'users'::regclass
|
543
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
544
|
-
ORDER BY a.attnum
|
545
|
-
[0m
|
546
|
-
[4;35;1mSQL (0.007906)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
547
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
548
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
549
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
550
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
551
|
-
ORDER BY a.attnum
|
552
|
-
[0m
|
553
|
-
[4;36;1mCategory Load (0.011284)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 1640 ) [0m
|
554
|
-
[4;35;1mSQL (0.005729)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
555
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
556
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
557
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
558
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
559
|
-
ORDER BY a.attnum
|
560
|
-
[0m
|
561
|
-
[4;36;1mTag Load (0.005946)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 1640 ) [0m
|
562
|
-
[4;35;1mSQL (0.051343)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
563
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
564
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
565
|
-
WHERE a.attrelid = 'resources'::regclass
|
566
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
567
|
-
ORDER BY a.attnum
|
568
|
-
[0m
|
569
|
-
[4;36;1mSQL (0.002538)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 1640) [0m
|
570
|
-
Rendered xml/_rss20_item_article (0.58812)
|
571
|
-
[4;35;1mBlog Load (0.001971)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
572
|
-
[4;36;1mUser Load (0.002018)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
573
|
-
[4;35;1mSQL (0.007537)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
574
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
575
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
576
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
577
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
578
|
-
ORDER BY a.attnum
|
579
|
-
[0m
|
580
|
-
[4;36;1mCategory Load (0.003607)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 562 ) [0m
|
581
|
-
[4;35;1mSQL (0.005074)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
582
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
583
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
584
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
585
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
586
|
-
ORDER BY a.attnum
|
587
|
-
[0m
|
588
|
-
[4;36;1mTag Load (0.011412)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 562 ) [0m
|
589
|
-
[4;35;1mSQL (0.004677)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
590
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
591
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
592
|
-
WHERE a.attrelid = 'tags'::regclass
|
593
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
594
|
-
ORDER BY a.attnum
|
595
|
-
[0m
|
596
|
-
[4;36;1mSQL (0.001839)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 562) [0m
|
597
|
-
Rendered xml/_rss20_item_article (0.51876)
|
598
|
-
[4;35;1mBlog Load (0.001781)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
599
|
-
[4;36;1mUser Load (0.001964)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
600
|
-
[4;35;1mSQL (0.006392)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
601
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
602
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
603
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
604
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
605
|
-
ORDER BY a.attnum
|
606
|
-
[0m
|
607
|
-
[4;36;1mCategory Load (0.003829)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 561 ) [0m
|
608
|
-
[4;35;1mSQL (0.004639)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
609
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
610
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
611
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
612
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
613
|
-
ORDER BY a.attnum
|
614
|
-
[0m
|
615
|
-
[4;36;1mTag Load (0.049801)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 561 ) [0m
|
616
|
-
[4;35;1mSQL (0.003923)[0m [0mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 561) [0m
|
617
|
-
Rendered xml/_rss20_item_article (0.11470)
|
618
|
-
[4;36;1mBlog Load (0.001867)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
619
|
-
[4;35;1mUser Load (0.001976)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
620
|
-
[4;36;1mSQL (0.004226)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
621
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
622
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
623
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
624
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
625
|
-
ORDER BY a.attnum
|
626
|
-
[0m
|
627
|
-
[4;35;1mCategory Load (0.004213)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 560 ) [0m
|
628
|
-
[4;36;1mSQL (0.009893)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
629
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
630
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
631
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
632
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
633
|
-
ORDER BY a.attnum
|
634
|
-
[0m
|
635
|
-
[4;35;1mTag Load (0.012943)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 560 ) [0m
|
636
|
-
[4;36;1mSQL (0.003724)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 560) [0m
|
637
|
-
Rendered xml/_rss20_item_article (0.09607)
|
638
|
-
[4;35;1mBlog Load (0.001807)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
639
|
-
[4;36;1mUser Load (0.001968)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
640
|
-
[4;35;1mSQL (0.004372)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
641
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
642
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
643
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
644
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
645
|
-
ORDER BY a.attnum
|
646
|
-
[0m
|
647
|
-
[4;36;1mCategory Load (0.003859)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 559 ) [0m
|
648
|
-
[4;35;1mSQL (0.009135)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
649
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
650
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
651
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
652
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
653
|
-
ORDER BY a.attnum
|
654
|
-
[0m
|
655
|
-
[4;36;1mTag Load (0.012807)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 559 ) [0m
|
656
|
-
[4;35;1mSQL (0.001746)[0m [0mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 559) [0m
|
657
|
-
Rendered xml/_rss20_item_article (0.08011)
|
658
|
-
[4;36;1mBlog Load (0.001759)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
659
|
-
[4;35;1mUser Load (0.001951)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
660
|
-
[4;36;1mSQL (0.004430)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
661
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
662
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
663
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
664
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
665
|
-
ORDER BY a.attnum
|
666
|
-
[0m
|
667
|
-
[4;35;1mCategory Load (0.004215)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 558 ) [0m
|
668
|
-
[4;36;1mSQL (0.007002)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
669
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
670
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
671
|
-
WHERE a.attrelid = 'categories'::regclass
|
672
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
673
|
-
ORDER BY a.attnum
|
674
|
-
[0m
|
675
|
-
[4;35;1mSQL (0.003805)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
676
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
677
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
678
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
679
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
680
|
-
ORDER BY a.attnum
|
681
|
-
[0m
|
682
|
-
[4;36;1mTag Load (0.009262)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 558 ) [0m
|
683
|
-
[4;35;1mSQL (0.001790)[0m [0mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 558) [0m
|
684
|
-
Rendered xml/_rss20_item_article (0.09786)
|
685
|
-
[4;36;1mBlog Load (0.005236)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
686
|
-
[4;35;1mUser Load (0.002532)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
687
|
-
[4;36;1mSQL (0.003827)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
688
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
689
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
690
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
691
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
692
|
-
ORDER BY a.attnum
|
693
|
-
[0m
|
694
|
-
[4;35;1mCategory Load (0.005316)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 557 ) [0m
|
695
|
-
[4;36;1mSQL (0.003930)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
696
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
697
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
698
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
699
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
700
|
-
ORDER BY a.attnum
|
701
|
-
[0m
|
702
|
-
[4;35;1mTag Load (0.015551)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 557 ) [0m
|
703
|
-
[4;36;1mSQL (0.002088)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 557) [0m
|
704
|
-
Rendered xml/_rss20_item_article (0.09110)
|
705
|
-
[4;35;1mBlog Load (0.001770)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
706
|
-
[4;36;1mUser Load (0.001970)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
707
|
-
[4;35;1mSQL (0.003848)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
708
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
709
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
710
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
711
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
712
|
-
ORDER BY a.attnum
|
713
|
-
[0m
|
714
|
-
[4;36;1mCategory Load (0.005259)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 556 ) [0m
|
715
|
-
[4;35;1mSQL (0.010753)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
716
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
717
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
718
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
719
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
720
|
-
ORDER BY a.attnum
|
721
|
-
[0m
|
722
|
-
[4;36;1mTag Load (0.007447)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 556 ) [0m
|
723
|
-
[4;35;1mSQL (0.001967)[0m [0mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 556) [0m
|
724
|
-
Rendered xml/_rss20_item_article (0.08329)
|
725
|
-
[4;36;1mBlog Load (0.002025)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
726
|
-
[4;35;1mUser Load (0.012149)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
727
|
-
[4;36;1mSQL (0.010899)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
728
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
729
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
730
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
731
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
732
|
-
ORDER BY a.attnum
|
733
|
-
[0m
|
734
|
-
[4;35;1mCategory Load (0.004549)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 555 ) [0m
|
735
|
-
[4;36;1mSQL (0.003843)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
736
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
737
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
738
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
739
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
740
|
-
ORDER BY a.attnum
|
741
|
-
[0m
|
742
|
-
[4;35;1mTag Load (0.011446)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 555 ) [0m
|
743
|
-
[4;36;1mSQL (0.004659)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 555) [0m
|
744
|
-
Rendered xml/_rss20_item_article (0.09176)
|
745
|
-
[4;35;1mBlog Load (0.001734)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
746
|
-
[4;36;1mUser Load (0.004103)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
747
|
-
[4;35;1mSQL (0.004543)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
748
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
749
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
750
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
751
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
752
|
-
ORDER BY a.attnum
|
753
|
-
[0m
|
754
|
-
[4;36;1mCategory Load (0.003683)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 554 ) [0m
|
755
|
-
[4;35;1mSQL (0.003723)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
756
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
757
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
758
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
759
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
760
|
-
ORDER BY a.attnum
|
761
|
-
[0m
|
762
|
-
[4;36;1mTag Load (0.007839)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 554 ) [0m
|
763
|
-
[4;35;1mSQL (0.009524)[0m [0mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 554) [0m
|
764
|
-
Rendered xml/_rss20_item_article (0.09292)
|
765
|
-
[4;36;1mBlog Load (0.005616)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
766
|
-
[4;35;1mUser Load (0.005996)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
767
|
-
[4;36;1mSQL (0.007647)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
768
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
769
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
770
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
771
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
772
|
-
ORDER BY a.attnum
|
773
|
-
[0m
|
774
|
-
[4;35;1mCategory Load (0.011410)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 553 ) [0m
|
775
|
-
[4;36;1mSQL (0.007515)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
776
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
777
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
778
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
779
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
780
|
-
ORDER BY a.attnum
|
781
|
-
[0m
|
782
|
-
[4;35;1mTag Load (0.024719)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 553 ) [0m
|
783
|
-
[4;36;1mSQL (0.005074)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 553) [0m
|
784
|
-
Rendered xml/_rss20_item_article (0.08419)
|
785
|
-
[4;35;1mBlog Load (0.005028)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
786
|
-
[4;36;1mUser Load (0.005556)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
787
|
-
[4;35;1mSQL (0.004160)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
788
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
789
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
790
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
791
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
792
|
-
ORDER BY a.attnum
|
793
|
-
[0m
|
794
|
-
[4;36;1mCategory Load (0.003917)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 552 ) [0m
|
795
|
-
[4;35;1mSQL (0.003963)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
796
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
797
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
798
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
799
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
800
|
-
ORDER BY a.attnum
|
801
|
-
[0m
|
802
|
-
[4;36;1mTag Load (0.012510)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 552 ) [0m
|
803
|
-
[4;35;1mSQL (0.002107)[0m [0mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 552) [0m
|
804
|
-
Rendered xml/_rss20_item_article (0.08348)
|
805
|
-
[4;36;1mBlog Load (0.002094)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
806
|
-
[4;35;1mUser Load (0.002794)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
807
|
-
[4;36;1mSQL (0.009748)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
808
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
809
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
810
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
811
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
812
|
-
ORDER BY a.attnum
|
813
|
-
[0m
|
814
|
-
[4;35;1mCategory Load (0.005311)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 551 ) [0m
|
815
|
-
[4;36;1mSQL (0.003835)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
816
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
817
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
818
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
819
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
820
|
-
ORDER BY a.attnum
|
821
|
-
[0m
|
822
|
-
[4;35;1mTag Load (0.008015)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 551 ) [0m
|
823
|
-
[4;36;1mSQL (0.001761)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 551) [0m
|
824
|
-
Rendered xml/_rss20_item_article (0.08117)
|
825
|
-
[4;35;1mBlog Load (0.012403)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
826
|
-
[4;36;1mUser Load (0.001974)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
827
|
-
[4;35;1mSQL (0.005004)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
828
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
829
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
830
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
831
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
832
|
-
ORDER BY a.attnum
|
833
|
-
[0m
|
834
|
-
[4;36;1mCategory Load (0.003639)[0m [0;1mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 550 ) [0m
|
835
|
-
[4;35;1mSQL (0.007037)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
836
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
837
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
838
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
839
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
840
|
-
ORDER BY a.attnum
|
841
|
-
[0m
|
842
|
-
[4;36;1mTag Load (0.011365)[0m [0;1mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 550 ) [0m
|
843
|
-
[4;35;1mSQL (0.006361)[0m [0mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 550) [0m
|
844
|
-
Rendered xml/_rss20_item_article (0.09530)
|
845
|
-
[4;36;1mBlog Load (0.001797)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
846
|
-
[4;35;1mUser Load (0.004540)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
847
|
-
[4;36;1mSQL (0.006165)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
848
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
849
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
850
|
-
WHERE a.attrelid = 'articles_categories'::regclass
|
851
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
852
|
-
ORDER BY a.attnum
|
853
|
-
[0m
|
854
|
-
[4;35;1mCategory Load (0.004026)[0m [0mSELECT * FROM categories INNER JOIN articles_categories ON categories.id = articles_categories.category_id WHERE (articles_categories.article_id = 549 ) [0m
|
855
|
-
[4;36;1mSQL (0.005002)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
856
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
857
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
858
|
-
WHERE a.attrelid = 'articles_tags'::regclass
|
859
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
860
|
-
ORDER BY a.attnum
|
861
|
-
[0m
|
862
|
-
[4;35;1mTag Load (0.007484)[0m [0mSELECT * FROM tags INNER JOIN articles_tags ON tags.id = articles_tags.tag_id WHERE (articles_tags.article_id = 549 ) [0m
|
863
|
-
[4;36;1mSQL (0.003269)[0m [0;1mSELECT count(*) AS count_all FROM resources WHERE (resources.article_id = 549) [0m
|
864
|
-
Rendered xml/_rss20_item_article (0.07938)
|
865
|
-
[4;35;1mArticle Load (0.010888)[0m [0mSELECT * FROM contents WHERE (published = 't' AND created_at > '2006-07-07 23:16:38') AND ( (contents."type" = 'Article' ) ) ORDER BY created_at ASC LIMIT 1[0m
|
866
|
-
Completed in 2.67656 (0 reqs/sec) | Rendering: 1.66198 (62%) | DB: 0.83258 (31%) | 200 OK [http://localhost/xml/rss20/feed.xml]
|
867
|
-
|
868
|
-
|
869
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:16:42) [GET]
|
870
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"application.css"}
|
871
|
-
[4;36;1mBlog Load (0.001659)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
872
|
-
[4;35;1mTrigger Load (0.001625)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:42') [0m
|
873
|
-
[4;36;1mSQL (0.004587)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
874
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
875
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
876
|
-
WHERE a.attrelid = 'blogs'::regclass
|
877
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
878
|
-
ORDER BY a.attnum
|
879
|
-
[0m
|
880
|
-
Sending file script/../config/../themes/scribbish/stylesheets/application.css
|
881
|
-
Completed in 0.03762 (26 reqs/sec) | Rendering: 0.00017 (0%) | DB: 0.00787 (20%) | 200 OK [http://localhost/stylesheets/theme/application.css?]
|
882
|
-
|
883
|
-
|
884
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:16:43) [GET]
|
885
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"layout.css"}
|
886
|
-
[4;35;1mBlog Load (0.001401)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
887
|
-
[4;36;1mTrigger Load (0.001587)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:43') [0m
|
888
|
-
[4;35;1mSQL (0.003923)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
889
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
890
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
891
|
-
WHERE a.attrelid = 'blogs'::regclass
|
892
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
893
|
-
ORDER BY a.attnum
|
894
|
-
[0m
|
895
|
-
Sending file script/../config/../themes/scribbish/stylesheets/layout.css
|
896
|
-
Completed in 0.03921 (25 reqs/sec) | Rendering: 0.00018 (0%) | DB: 0.00691 (17%) | 200 OK [http://localhost/stylesheets/theme/layout.css]
|
897
|
-
|
898
|
-
|
899
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:16:44) [GET]
|
900
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"content.css"}
|
901
|
-
[4;36;1mBlog Load (0.001451)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
902
|
-
[4;35;1mTrigger Load (0.001965)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:44') [0m
|
903
|
-
[4;36;1mSQL (0.004200)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
904
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
905
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
906
|
-
WHERE a.attrelid = 'blogs'::regclass
|
907
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
908
|
-
ORDER BY a.attnum
|
909
|
-
[0m
|
910
|
-
Sending file script/../config/../themes/scribbish/stylesheets/content.css
|
911
|
-
Completed in 0.04577 (21 reqs/sec) | Rendering: 0.00017 (0%) | DB: 0.00762 (16%) | 200 OK [http://localhost/stylesheets/theme/content.css]
|
912
|
-
|
913
|
-
|
914
|
-
Processing ThemeController#javascript (for 127.0.0.1 at 2006-07-07 23:16:45) [GET]
|
915
|
-
Parameters: {"action"=>"javascript", "controller"=>"theme", "filename"=>"application.js"}
|
916
|
-
[4;35;1mBlog Load (0.001377)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
917
|
-
[4;36;1mTrigger Load (0.001584)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:45') [0m
|
918
|
-
[4;35;1mSQL (0.004452)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
919
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
920
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
921
|
-
WHERE a.attrelid = 'blogs'::regclass
|
922
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
923
|
-
ORDER BY a.attnum
|
924
|
-
[0m
|
925
|
-
|
926
|
-
|
927
|
-
ActionController::MissingFile (Cannot read file script/../config/../themes/scribbish/javascript/application.js):
|
928
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/streaming.rb:55:in `send_file'
|
929
|
-
/app/controllers/theme_controller.rb:28:in `render_theme_item'
|
930
|
-
/app/controllers/theme_controller.rb:10:in `javascript'
|
931
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:910:in `perform_action_without_filters'
|
932
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
933
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
934
|
-
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
935
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
936
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/rescue.rb:82:in `perform_action'
|
937
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:381:in `process_without_filters'
|
938
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
939
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/session_management.rb:117:in `process'
|
940
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/dispatcher.rb:38:in `dispatch'
|
941
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:115:in `handle_dispatch'
|
942
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:81:in `service'
|
943
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
944
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
945
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
946
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
947
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
948
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
949
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
950
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
951
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:67:in `dispatch'
|
952
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/servers/webrick.rb:59
|
953
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
954
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
955
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/server.rb:30
|
956
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
957
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
958
|
-
./script/server:3
|
959
|
-
|
960
|
-
|
961
|
-
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
962
|
-
|
963
|
-
|
964
|
-
Processing ThemeController#images (for 127.0.0.1 at 2006-07-07 23:16:48) [GET]
|
965
|
-
Parameters: {"action"=>"images", "controller"=>"theme", "filename"=>"background.gif"}
|
966
|
-
[4;36;1mBlog Load (0.002276)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
967
|
-
[4;35;1mTrigger Load (0.002752)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:48') [0m
|
968
|
-
[4;36;1mSQL (0.004891)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
969
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
970
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
971
|
-
WHERE a.attrelid = 'blogs'::regclass
|
972
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
973
|
-
ORDER BY a.attnum
|
974
|
-
[0m
|
975
|
-
Sending file script/../config/../themes/scribbish/images/background.gif
|
976
|
-
Completed in 0.03837 (26 reqs/sec) | Rendering: 0.00018 (0%) | DB: 0.01733 (45%) | 200 OK [http://localhost/images/theme/background.gif]
|
977
|
-
|
978
|
-
|
979
|
-
Processing ThemeController#images (for 127.0.0.1 at 2006-07-07 23:16:48) [GET]
|
980
|
-
Parameters: {"action"=>"images", "controller"=>"theme", "filename"=>"header_shadow.gif"}
|
981
|
-
[4;35;1mBlog Load (0.001399)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
982
|
-
[4;36;1mTrigger Load (0.001654)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:16:48') [0m
|
983
|
-
[4;35;1mSQL (0.006053)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
984
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
985
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
986
|
-
WHERE a.attrelid = 'blogs'::regclass
|
987
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
988
|
-
ORDER BY a.attnum
|
989
|
-
[0m
|
990
|
-
Sending file script/../config/../themes/scribbish/images/header_shadow.gif
|
991
|
-
Completed in 0.03425 (29 reqs/sec) | Rendering: 0.00017 (0%) | DB: 0.00911 (26%) | 200 OK [http://localhost/images/theme/header_shadow.gif]
|