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
data/log/development.log-2
DELETED
@@ -1,422 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Processing ArticlesController#index (for 127.0.0.1 at 2006-07-07 23:26:39) [GET]
|
4
|
-
Parameters: {"action"=>"index", "controller"=>"articles"}
|
5
|
-
[4;36;1mBlog Load (0.007744)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
6
|
-
[4;35;1mTrigger Load (0.003876)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:39') [0m
|
7
|
-
[4;36;1mSQL (0.016809)[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.004736)[0m [0mSELECT count(*) AS count_all FROM users [0m
|
15
|
-
[4;36;1mSQL (0.003716)[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.005538)[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.110078)[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:26:39' AND blog_id = 1) AND ( (contents."type" = 'Article' ) ) [0m
|
30
|
-
[4;35;1mSQL (0.004313)[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.035356)[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.028140)[0m [0mSELECT id FROM contents WHERE (published = 't' AND contents.created_at < '2006-07-07 23:26:39' 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.151428)[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:26:39' 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.002673)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
49
|
-
[4;36;1mUser Load (0.006614)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
50
|
-
[4;35;1mBlog Load (0.001383)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
51
|
-
Rendered articles/_article (0.05467)
|
52
|
-
[4;36;1mBlog Load (0.001732)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
53
|
-
[4;35;1mUser Load (0.001852)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
54
|
-
Rendered articles/_article (0.02109)
|
55
|
-
[4;36;1mBlog Load (0.001806)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
56
|
-
[4;35;1mUser Load (0.002384)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
57
|
-
Rendered articles/_article (0.01747)
|
58
|
-
[4;36;1mBlog Load (0.005826)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
59
|
-
[4;35;1mUser Load (0.002722)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
60
|
-
Rendered articles/_article (0.01971)
|
61
|
-
[4;36;1mBlog Load (0.001730)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
62
|
-
[4;35;1mUser Load (0.127035)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
63
|
-
Rendered articles/_article (0.14261)
|
64
|
-
[4;36;1mBlog Load (0.001797)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
65
|
-
[4;35;1mUser Load (0.003194)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
66
|
-
Rendered articles/_article (0.02450)
|
67
|
-
[4;36;1mBlog Load (0.001728)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
68
|
-
[4;35;1mUser Load (0.002236)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
69
|
-
Rendered articles/_article (0.01850)
|
70
|
-
[4;36;1mBlog Load (0.001782)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
71
|
-
[4;35;1mUser Load (0.002834)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
72
|
-
Rendered articles/_article (0.02275)
|
73
|
-
[4;36;1mBlog Load (0.001807)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
74
|
-
[4;35;1mUser Load (0.002291)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
75
|
-
Rendered articles/_article (0.01784)
|
76
|
-
[4;36;1mBlog Load (0.001986)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
77
|
-
[4;35;1mUser Load (0.001911)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
78
|
-
Rendered articles/_article (0.01999)
|
79
|
-
[4;36;1mBlog Load (0.002230)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
80
|
-
[4;35;1mUser Load (0.002509)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
81
|
-
Rendered articles/_article (0.02107)
|
82
|
-
[4;36;1mBlog Load (0.002337)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
83
|
-
[4;35;1mUser Load (0.002135)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
84
|
-
Rendered articles/_article (0.01780)
|
85
|
-
[4;36;1mBlog Load (0.002376)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
86
|
-
[4;35;1mUser Load (0.001961)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
87
|
-
Rendered articles/_article (0.16257)
|
88
|
-
[4;36;1mBlog Load (0.002033)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
89
|
-
[4;35;1mUser Load (0.001930)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
90
|
-
Rendered articles/_article (0.01733)
|
91
|
-
[4;36;1mBlog Load (0.001778)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
92
|
-
[4;35;1mUser Load (0.001910)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
93
|
-
Rendered articles/_article (0.02120)
|
94
|
-
Rendered articles/_search (0.01418)
|
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:26:45)
|
99
|
-
[4;36;1mBlog Load (0.001496)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
100
|
-
[4;35;1mTrigger Load (0.001737)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:45') [0m
|
101
|
-
[4;36;1mSidebar Load (0.003778)[0m [0;1mSELECT * FROM sidebars WHERE (active_position is not null) ORDER BY active_position [0m
|
102
|
-
[4;35;1mSQL (0.004506)[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:26:45)
|
114
|
-
[4;36;1mBlog Load (0.001449)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
115
|
-
[4;35;1mTrigger Load (0.005364)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:45') [0m
|
116
|
-
[4;36;1mTag Load (0.052272)[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.21039 (4 reqs/sec) | Rendering: 0.01939 (9%) | DB: 0.05909 (28%) | 200 OK [http://localhost/]
|
129
|
-
|
130
|
-
|
131
|
-
End of component rendering
|
132
|
-
BENCHMARK: display_plugins: tag (0.21497)
|
133
|
-
Rendered sidebar/_sidebar (0.22150)
|
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:26:45)
|
138
|
-
[4;35;1mBlog Load (0.001407)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
139
|
-
[4;36;1mTrigger Load (0.005828)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:45') [0m
|
140
|
-
[4;35;1mArticle Load Including Associations (4.794702)[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 6.62519 (0 reqs/sec) | Rendering: 0.00976 (0%) | DB: 4.80194 (72%) | 200 OK [http://localhost/]
|
143
|
-
|
144
|
-
|
145
|
-
End of component rendering
|
146
|
-
BENCHMARK: display_plugins: archives (6.62878)
|
147
|
-
Rendered sidebar/_sidebar (6.62971)
|
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:26:52)
|
152
|
-
[4;36;1mBlog Load (0.001491)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
153
|
-
[4;35;1mTrigger Load (0.002502)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:52') [0m
|
154
|
-
Rendering plugins/sidebars/static/content
|
155
|
-
Completed in 0.02237 (44 reqs/sec) | Rendering: 0.00808 (36%) | DB: 0.00399 (17%) | 200 OK [http://localhost/]
|
156
|
-
|
157
|
-
|
158
|
-
End of component rendering
|
159
|
-
BENCHMARK: display_plugins: static (0.02628)
|
160
|
-
Rendered sidebar/_sidebar (0.02724)
|
161
|
-
BENCHMARK: display_plugins (6.88082)
|
162
|
-
Completed in 6.91826 (0 reqs/sec) | Rendering: 6.88846 (99%) | DB: 0.21004 (3%) | 200 OK [http://localhost/]
|
163
|
-
|
164
|
-
|
165
|
-
End of component rendering
|
166
|
-
[4;36;1mArticle Load (0.010457)[0m [0;1mSELECT * FROM contents WHERE (published = 't' AND created_at > '2006-07-07 23:26:39') AND ( (contents."type" = 'Article' ) ) ORDER BY created_at ASC LIMIT 1[0m
|
167
|
-
Completed in 12.51502 (0 reqs/sec) | Rendering: 7.87202 (62%) | DB: 4.38219 (35%) | 200 OK [http://localhost/]
|
168
|
-
|
169
|
-
|
170
|
-
Processing XmlController#feed (for 127.0.0.1 at 2006-07-07 23:26:53) [GET]
|
171
|
-
Parameters: {"format"=>"rss20", "type"=>"feed", "action"=>"feed", "controller"=>"xml"}
|
172
|
-
[4;35;1mBlog Load (0.001519)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
173
|
-
[4;36;1mTrigger Load (0.002113)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:53') [0m
|
174
|
-
[4;35;1mSQL (0.003934)[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
|
-
|
182
|
-
|
183
|
-
ActiveRecord::ConfigurationError (Association named 'blogs' was not found; perhaps you misspelled it?):
|
184
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1294:in `build'
|
185
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1299:in `build'
|
186
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1298:in `build'
|
187
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1262:in `initialize'
|
188
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:974:in `find_with_associations'
|
189
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:973:in `find_with_associations'
|
190
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:923:in `find_every'
|
191
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:381:in `find'
|
192
|
-
/app/models/content.rb:82:in `find_published'
|
193
|
-
/app/models/content.rb:97:in `find_already_published'
|
194
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
195
|
-
/app/models/content.rb:96:in `find_already_published'
|
196
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:102:in `method_missing'
|
197
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
198
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:92:in `method_missing'
|
199
|
-
/app/controllers/xml_controller.rb:71:in `fetch_items'
|
200
|
-
/app/controllers/xml_controller.rb:75:in `prep_feed'
|
201
|
-
/app/controllers/xml_controller.rb:34:in `feed'
|
202
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:910:in `perform_action_without_filters'
|
203
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
204
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
205
|
-
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
206
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
207
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/rescue.rb:82:in `perform_action'
|
208
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:381:in `process_without_filters'
|
209
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
210
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/session_management.rb:117:in `process'
|
211
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/dispatcher.rb:38:in `dispatch'
|
212
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:115:in `handle_dispatch'
|
213
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:81:in `service'
|
214
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
215
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
216
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
217
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
218
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
219
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
220
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
221
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
222
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:67:in `dispatch'
|
223
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/servers/webrick.rb:59
|
224
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
225
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
226
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/server.rb:30
|
227
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
228
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
229
|
-
./script/server:3
|
230
|
-
|
231
|
-
|
232
|
-
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
233
|
-
|
234
|
-
|
235
|
-
Processing XmlController#feed (for 127.0.0.1 at 2006-07-07 23:26:54) [GET]
|
236
|
-
Parameters: {"format"=>"atom", "type"=>"feed", "action"=>"feed", "controller"=>"xml"}
|
237
|
-
[4;36;1mBlog Load (0.001430)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
238
|
-
[4;35;1mTrigger Load (0.001666)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:54') [0m
|
239
|
-
[4;36;1mSQL (0.004028)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
240
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
241
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
242
|
-
WHERE a.attrelid = 'blogs'::regclass
|
243
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
244
|
-
ORDER BY a.attnum
|
245
|
-
[0m
|
246
|
-
|
247
|
-
|
248
|
-
ActiveRecord::ConfigurationError (Association named 'blogs' was not found; perhaps you misspelled it?):
|
249
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1294:in `build'
|
250
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1299:in `build'
|
251
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1298:in `build'
|
252
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1262:in `initialize'
|
253
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:974:in `find_with_associations'
|
254
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:973:in `find_with_associations'
|
255
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:923:in `find_every'
|
256
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:381:in `find'
|
257
|
-
/app/models/content.rb:82:in `find_published'
|
258
|
-
/app/models/content.rb:97:in `find_already_published'
|
259
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
260
|
-
/app/models/content.rb:96:in `find_already_published'
|
261
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:102:in `method_missing'
|
262
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
263
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:92:in `method_missing'
|
264
|
-
/app/controllers/xml_controller.rb:71:in `fetch_items'
|
265
|
-
/app/controllers/xml_controller.rb:75:in `prep_feed'
|
266
|
-
/app/controllers/xml_controller.rb:34:in `feed'
|
267
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:910:in `perform_action_without_filters'
|
268
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
269
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
270
|
-
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
271
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
272
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/rescue.rb:82:in `perform_action'
|
273
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:381:in `process_without_filters'
|
274
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
275
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/session_management.rb:117:in `process'
|
276
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/dispatcher.rb:38:in `dispatch'
|
277
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:115:in `handle_dispatch'
|
278
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:81:in `service'
|
279
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
280
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
281
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
282
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
283
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
284
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
285
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
286
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
287
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:67:in `dispatch'
|
288
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/servers/webrick.rb:59
|
289
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
290
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
291
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/server.rb:30
|
292
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
293
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
294
|
-
./script/server:3
|
295
|
-
|
296
|
-
|
297
|
-
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
298
|
-
|
299
|
-
|
300
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:26:56) [GET]
|
301
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"application.css"}
|
302
|
-
[4;35;1mBlog Load (0.001413)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
303
|
-
[4;36;1mTrigger Load (0.001571)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:56') [0m
|
304
|
-
[4;35;1mSQL (0.003863)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
305
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
306
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
307
|
-
WHERE a.attrelid = 'blogs'::regclass
|
308
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
309
|
-
ORDER BY a.attnum
|
310
|
-
[0m
|
311
|
-
Sending file script/../config/../themes/scribbish/stylesheets/application.css
|
312
|
-
Completed in 0.01977 (50 reqs/sec) | Rendering: 0.00015 (0%) | DB: 0.02154 (108%) | 200 OK [http://localhost/stylesheets/theme/application.css?]
|
313
|
-
|
314
|
-
|
315
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:26:57) [GET]
|
316
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"layout.css"}
|
317
|
-
[4;36;1mBlog Load (0.001409)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
318
|
-
[4;35;1mTrigger Load (0.002059)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:57') [0m
|
319
|
-
[4;36;1mSQL (0.008903)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
320
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
321
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
322
|
-
WHERE a.attrelid = 'blogs'::regclass
|
323
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
324
|
-
ORDER BY a.attnum
|
325
|
-
[0m
|
326
|
-
Sending file script/../config/../themes/scribbish/stylesheets/layout.css
|
327
|
-
Completed in 0.02624 (38 reqs/sec) | Rendering: 0.00017 (0%) | DB: 0.01237 (47%) | 200 OK [http://localhost/stylesheets/theme/layout.css]
|
328
|
-
|
329
|
-
|
330
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:26:57) [GET]
|
331
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"content.css"}
|
332
|
-
[4;35;1mBlog Load (0.001393)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
333
|
-
[4;36;1mTrigger Load (0.001759)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:58') [0m
|
334
|
-
[4;35;1mSQL (0.009127)[0m [0m 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 = 'blogs'::regclass
|
338
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
339
|
-
ORDER BY a.attnum
|
340
|
-
[0m
|
341
|
-
Sending file script/../config/../themes/scribbish/stylesheets/content.css
|
342
|
-
Completed in 0.27863 (3 reqs/sec) | Rendering: 0.00015 (0%) | DB: 0.01228 (4%) | 200 OK [http://localhost/stylesheets/theme/content.css]
|
343
|
-
|
344
|
-
|
345
|
-
Processing ThemeController#javascript (for 127.0.0.1 at 2006-07-07 23:26:58) [GET]
|
346
|
-
Parameters: {"action"=>"javascript", "controller"=>"theme", "filename"=>"application.js"}
|
347
|
-
[4;36;1mBlog Load (0.001389)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
348
|
-
[4;35;1mTrigger Load (0.001678)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:58') [0m
|
349
|
-
[4;36;1mSQL (0.009296)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
350
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
351
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
352
|
-
WHERE a.attrelid = 'blogs'::regclass
|
353
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
354
|
-
ORDER BY a.attnum
|
355
|
-
[0m
|
356
|
-
|
357
|
-
|
358
|
-
ActionController::MissingFile (Cannot read file script/../config/../themes/scribbish/javascript/application.js):
|
359
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/streaming.rb:55:in `send_file'
|
360
|
-
/app/controllers/theme_controller.rb:28:in `render_theme_item'
|
361
|
-
/app/controllers/theme_controller.rb:10:in `javascript'
|
362
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:910:in `perform_action_without_filters'
|
363
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
364
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
365
|
-
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
366
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
367
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/rescue.rb:82:in `perform_action'
|
368
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:381:in `process_without_filters'
|
369
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
370
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/session_management.rb:117:in `process'
|
371
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/dispatcher.rb:38:in `dispatch'
|
372
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:115:in `handle_dispatch'
|
373
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:81:in `service'
|
374
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
375
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
376
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
377
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
378
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
379
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
380
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
381
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
382
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:67:in `dispatch'
|
383
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/servers/webrick.rb:59
|
384
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
385
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
386
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/server.rb:30
|
387
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
388
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
389
|
-
./script/server:3
|
390
|
-
|
391
|
-
|
392
|
-
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
393
|
-
|
394
|
-
|
395
|
-
Processing ThemeController#images (for 127.0.0.1 at 2006-07-07 23:27:00) [GET]
|
396
|
-
Parameters: {"action"=>"images", "controller"=>"theme", "filename"=>"background.gif"}
|
397
|
-
[4;35;1mBlog Load (0.001406)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
398
|
-
[4;36;1mTrigger Load (0.002367)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:27:00') [0m
|
399
|
-
[4;35;1mSQL (0.004252)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
400
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
401
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
402
|
-
WHERE a.attrelid = 'blogs'::regclass
|
403
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
404
|
-
ORDER BY a.attnum
|
405
|
-
[0m
|
406
|
-
Sending file script/../config/../themes/scribbish/images/background.gif
|
407
|
-
Completed in 0.08957 (11 reqs/sec) | Rendering: 0.00015 (0%) | DB: 0.02039 (22%) | 200 OK [http://localhost/images/theme/background.gif]
|
408
|
-
|
409
|
-
|
410
|
-
Processing ThemeController#images (for 127.0.0.1 at 2006-07-07 23:27:01) [GET]
|
411
|
-
Parameters: {"action"=>"images", "controller"=>"theme", "filename"=>"header_shadow.gif"}
|
412
|
-
[4;36;1mBlog Load (0.001516)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
413
|
-
[4;35;1mTrigger Load (0.001601)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:27:01') [0m
|
414
|
-
[4;36;1mSQL (0.003810)[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 = 'blogs'::regclass
|
418
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
419
|
-
ORDER BY a.attnum
|
420
|
-
[0m
|
421
|
-
Sending file script/../config/../themes/scribbish/images/header_shadow.gif
|
422
|
-
Completed in 0.02100 (47 reqs/sec) | Rendering: 0.00016 (0%) | DB: 0.00693 (32%) | 200 OK [http://localhost/images/theme/header_shadow.gif]
|
data/log/development.log-3
DELETED
@@ -1,429 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Processing ArticlesController#index (for 127.0.0.1 at 2006-07-07 23:57:18) [GET]
|
4
|
-
Parameters: {"action"=>"index", "controller"=>"articles"}
|
5
|
-
[4;36;1mBlog Load (0.016137)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
6
|
-
[4;35;1mTrigger Load (0.005647)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:18') [0m
|
7
|
-
[4;36;1mSQL (0.015496)[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.003890)[0m [0mSELECT count(*) AS count_all FROM users [0m
|
15
|
-
[4;36;1mSQL (0.003992)[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.004945)[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.513755)[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:57:18' AND blog_id = 1) AND ( (contents."type" = 'Article' ) ) [0m
|
30
|
-
[4;35;1mSQL (0.004335)[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.013500)[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.020334)[0m [0mSELECT id FROM contents WHERE (published = 't' AND contents.created_at < '2006-07-07 23:57:18' 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.386613)[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:57:18' 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.002023)[0m [0mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
49
|
-
[4;36;1mUser Load (0.002719)[0m [0;1mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
50
|
-
[4;35;1mBlog Load (0.001383)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
51
|
-
Rendered articles/_article (0.05445)
|
52
|
-
[4;36;1mBlog Load (0.002212)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
53
|
-
[4;35;1mUser Load (0.001886)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
54
|
-
Rendered articles/_article (0.01711)
|
55
|
-
[4;36;1mBlog Load (0.001771)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
56
|
-
[4;35;1mUser Load (0.002901)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
57
|
-
Rendered articles/_article (0.01773)
|
58
|
-
[4;36;1mBlog Load (0.001740)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
59
|
-
[4;35;1mUser Load (0.001870)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
60
|
-
Rendered articles/_article (0.02209)
|
61
|
-
[4;36;1mBlog Load (0.001782)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
62
|
-
[4;35;1mUser Load (0.002901)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
63
|
-
Rendered articles/_article (0.15349)
|
64
|
-
[4;36;1mBlog Load (0.001817)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
65
|
-
[4;35;1mUser Load (0.001941)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
66
|
-
Rendered articles/_article (0.02095)
|
67
|
-
[4;36;1mBlog Load (0.001861)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
68
|
-
[4;35;1mUser Load (0.002133)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
69
|
-
Rendered articles/_article (0.01751)
|
70
|
-
[4;36;1mBlog Load (0.001752)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
71
|
-
[4;35;1mUser Load (0.001913)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
72
|
-
Rendered articles/_article (0.02205)
|
73
|
-
[4;36;1mBlog Load (0.001730)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
74
|
-
[4;35;1mUser Load (0.001901)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
75
|
-
Rendered articles/_article (0.01732)
|
76
|
-
[4;36;1mBlog Load (0.001755)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
77
|
-
[4;35;1mUser Load (0.002170)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
78
|
-
Rendered articles/_article (0.01707)
|
79
|
-
[4;36;1mBlog Load (0.003053)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
80
|
-
[4;35;1mUser Load (0.009510)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
81
|
-
Rendered articles/_article (0.03132)
|
82
|
-
[4;36;1mBlog Load (0.001715)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
83
|
-
[4;35;1mUser Load (0.002746)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
84
|
-
Rendered articles/_article (0.01928)
|
85
|
-
[4;36;1mBlog Load (0.001758)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
86
|
-
[4;35;1mUser Load (0.002025)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
87
|
-
Rendered articles/_article (0.15543)
|
88
|
-
[4;36;1mBlog Load (0.013129)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
89
|
-
[4;35;1mUser Load (0.002782)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
90
|
-
Rendered articles/_article (0.04339)
|
91
|
-
[4;36;1mBlog Load (0.002026)[0m [0;1mSELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1[0m
|
92
|
-
[4;35;1mUser Load (0.001945)[0m [0mSELECT * FROM users WHERE (users.id = 1) LIMIT 1[0m
|
93
|
-
Rendered articles/_article (0.02155)
|
94
|
-
Rendered articles/_search (0.02073)
|
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:57:25)
|
99
|
-
[4;36;1mBlog Load (0.001413)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
100
|
-
[4;35;1mTrigger Load (0.001452)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') [0m
|
101
|
-
[4;36;1mSidebar Load (0.011881)[0m [0;1mSELECT * FROM sidebars WHERE (active_position is not null) ORDER BY active_position [0m
|
102
|
-
[4;35;1mSQL (0.004057)[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:57:25)
|
114
|
-
[4;36;1mBlog Load (0.001426)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
115
|
-
[4;35;1mTrigger Load (0.001745)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') [0m
|
116
|
-
[4;36;1mTag Load (0.054555)[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.22549 (4 reqs/sec) | Rendering: 0.01884 (8%) | DB: 0.05773 (25%) | 200 OK [http://localhost/]
|
129
|
-
|
130
|
-
|
131
|
-
End of component rendering
|
132
|
-
BENCHMARK: display_plugins: tag (0.23098)
|
133
|
-
Rendered sidebar/_sidebar (0.23655)
|
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:57:25)
|
138
|
-
[4;35;1mBlog Load (0.001529)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
139
|
-
[4;36;1mTrigger Load (0.001818)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') [0m
|
140
|
-
[4;35;1mContent Load (0.045127)[0m [0mselect count(*) as count, extract(year from published_at)||' '||extract(month from published_at) as date from contents where published = 't' and published_at < '2006-07-07 23:57:25' group by date[0m
|
141
|
-
[4;36;1mSQL (0.004646)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
142
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
143
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
144
|
-
WHERE a.attrelid = 'contents'::regclass
|
145
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
146
|
-
ORDER BY a.attnum
|
147
|
-
[0m
|
148
|
-
Rendering plugins/sidebars/archives/content
|
149
|
-
Completed in 0.24106 (4 reqs/sec) | Rendering: 0.16822 (69%) | DB: 0.05312 (22%) | 200 OK [http://localhost/]
|
150
|
-
|
151
|
-
|
152
|
-
End of component rendering
|
153
|
-
BENCHMARK: display_plugins: archives (0.24435)
|
154
|
-
Rendered sidebar/_sidebar (0.24557)
|
155
|
-
Start rendering component ({:controller=>Plugins::Sidebars::StaticController, :action=>"index", :layout=>false}):
|
156
|
-
|
157
|
-
|
158
|
-
Processing StaticController#index (for 127.0.0.1 at 2006-07-07 23:57:25)
|
159
|
-
[4;35;1mBlog Load (0.001436)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
160
|
-
[4;36;1mTrigger Load (0.002549)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') [0m
|
161
|
-
Rendering plugins/sidebars/static/content
|
162
|
-
Completed in 0.01794 (55 reqs/sec) | Rendering: 0.00785 (43%) | DB: 0.00399 (22%) | 200 OK [http://localhost/]
|
163
|
-
|
164
|
-
|
165
|
-
End of component rendering
|
166
|
-
BENCHMARK: display_plugins: static (0.02245)
|
167
|
-
Rendered sidebar/_sidebar (0.02336)
|
168
|
-
BENCHMARK: display_plugins (0.50874)
|
169
|
-
Completed in 0.55068 (1 reqs/sec) | Rendering: 0.51641 (93%) | DB: 0.10165 (18%) | 200 OK [http://localhost/]
|
170
|
-
|
171
|
-
|
172
|
-
End of component rendering
|
173
|
-
[4;35;1mArticle Load (0.010661)[0m [0mSELECT * FROM contents WHERE (published = 't' AND created_at > '2006-07-07 23:57:18') AND ( (contents."type" = 'Article' ) ) ORDER BY created_at ASC LIMIT 1[0m
|
174
|
-
Completed in 6.95595 (0 reqs/sec) | Rendering: 1.56626 (22%) | DB: 4.99931 (71%) | 200 OK [http://localhost/]
|
175
|
-
|
176
|
-
|
177
|
-
Processing XmlController#feed (for 127.0.0.1 at 2006-07-07 23:57:27) [GET]
|
178
|
-
Parameters: {"format"=>"atom", "type"=>"feed", "action"=>"feed", "controller"=>"xml"}
|
179
|
-
[4;36;1mBlog Load (0.001394)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
180
|
-
[4;35;1mTrigger Load (0.001630)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:27') [0m
|
181
|
-
[4;36;1mSQL (0.003843)[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 = 'blogs'::regclass
|
185
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
186
|
-
ORDER BY a.attnum
|
187
|
-
[0m
|
188
|
-
|
189
|
-
|
190
|
-
ActiveRecord::ConfigurationError (Association named 'blogs' was not found; perhaps you misspelled it?):
|
191
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1294:in `build'
|
192
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1299:in `build'
|
193
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1298:in `build'
|
194
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1262:in `initialize'
|
195
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:974:in `find_with_associations'
|
196
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:973:in `find_with_associations'
|
197
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:923:in `find_every'
|
198
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:381:in `find'
|
199
|
-
/app/models/content.rb:82:in `find_published'
|
200
|
-
/app/models/content.rb:97:in `find_already_published'
|
201
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
202
|
-
/app/models/content.rb:96:in `find_already_published'
|
203
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:102:in `method_missing'
|
204
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
205
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:92:in `method_missing'
|
206
|
-
/app/controllers/xml_controller.rb:71:in `fetch_items'
|
207
|
-
/app/controllers/xml_controller.rb:75:in `prep_feed'
|
208
|
-
/app/controllers/xml_controller.rb:34:in `feed'
|
209
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:910:in `perform_action_without_filters'
|
210
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
211
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
212
|
-
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
213
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
214
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/rescue.rb:82:in `perform_action'
|
215
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:381:in `process_without_filters'
|
216
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
217
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/session_management.rb:117:in `process'
|
218
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/dispatcher.rb:38:in `dispatch'
|
219
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:115:in `handle_dispatch'
|
220
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:81:in `service'
|
221
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
222
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
223
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
224
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
225
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
226
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
227
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
228
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
229
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:67:in `dispatch'
|
230
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/servers/webrick.rb:59
|
231
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
232
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
233
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/server.rb:30
|
234
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
235
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
236
|
-
./script/server:3
|
237
|
-
|
238
|
-
|
239
|
-
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
240
|
-
|
241
|
-
|
242
|
-
Processing XmlController#feed (for 127.0.0.1 at 2006-07-07 23:57:28) [GET]
|
243
|
-
Parameters: {"format"=>"rss20", "type"=>"feed", "action"=>"feed", "controller"=>"xml"}
|
244
|
-
[4;35;1mBlog Load (0.001594)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
245
|
-
[4;36;1mTrigger Load (0.001654)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:28') [0m
|
246
|
-
[4;35;1mSQL (0.014642)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
247
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
248
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
249
|
-
WHERE a.attrelid = 'blogs'::regclass
|
250
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
251
|
-
ORDER BY a.attnum
|
252
|
-
[0m
|
253
|
-
|
254
|
-
|
255
|
-
ActiveRecord::ConfigurationError (Association named 'blogs' was not found; perhaps you misspelled it?):
|
256
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1294:in `build'
|
257
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1299:in `build'
|
258
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1298:in `build'
|
259
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:1262:in `initialize'
|
260
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:974:in `find_with_associations'
|
261
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations.rb:973:in `find_with_associations'
|
262
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:923:in `find_every'
|
263
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:381:in `find'
|
264
|
-
/app/models/content.rb:82:in `find_published'
|
265
|
-
/app/models/content.rb:97:in `find_already_published'
|
266
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
267
|
-
/app/models/content.rb:96:in `find_already_published'
|
268
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:102:in `method_missing'
|
269
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:873:in `with_scope'
|
270
|
-
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/associations/has_many_association.rb:92:in `method_missing'
|
271
|
-
/app/controllers/xml_controller.rb:71:in `fetch_items'
|
272
|
-
/app/controllers/xml_controller.rb:75:in `prep_feed'
|
273
|
-
/app/controllers/xml_controller.rb:34:in `feed'
|
274
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:910:in `perform_action_without_filters'
|
275
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
276
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
277
|
-
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
278
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
279
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/rescue.rb:82:in `perform_action'
|
280
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:381:in `process_without_filters'
|
281
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
282
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/session_management.rb:117:in `process'
|
283
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/dispatcher.rb:38:in `dispatch'
|
284
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:115:in `handle_dispatch'
|
285
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:81:in `service'
|
286
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
287
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
288
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
289
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
290
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
291
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
292
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
293
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
294
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:67:in `dispatch'
|
295
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/servers/webrick.rb:59
|
296
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
297
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
298
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/server.rb:30
|
299
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
300
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
301
|
-
./script/server:3
|
302
|
-
|
303
|
-
|
304
|
-
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
305
|
-
|
306
|
-
|
307
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:57:30) [GET]
|
308
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"application.css"}
|
309
|
-
[4;36;1mBlog Load (0.001407)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
310
|
-
[4;35;1mTrigger Load (0.001592)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:30') [0m
|
311
|
-
[4;36;1mSQL (0.004152)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
312
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
313
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
314
|
-
WHERE a.attrelid = 'blogs'::regclass
|
315
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
316
|
-
ORDER BY a.attnum
|
317
|
-
[0m
|
318
|
-
Sending file script/../config/../themes/scribbish/stylesheets/application.css
|
319
|
-
Completed in 0.01916 (52 reqs/sec) | Rendering: 0.00015 (0%) | DB: 0.03191 (166%) | 200 OK [http://localhost/stylesheets/theme/application.css?]
|
320
|
-
|
321
|
-
|
322
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:57:31) [GET]
|
323
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"layout.css"}
|
324
|
-
[4;35;1mBlog Load (0.001499)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
325
|
-
[4;36;1mTrigger Load (0.001597)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:31') [0m
|
326
|
-
[4;35;1mSQL (0.007464)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
327
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
328
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
329
|
-
WHERE a.attrelid = 'blogs'::regclass
|
330
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
331
|
-
ORDER BY a.attnum
|
332
|
-
[0m
|
333
|
-
Sending file script/../config/../themes/scribbish/stylesheets/layout.css
|
334
|
-
Completed in 0.02883 (34 reqs/sec) | Rendering: 0.00015 (0%) | DB: 0.01056 (36%) | 200 OK [http://localhost/stylesheets/theme/layout.css]
|
335
|
-
|
336
|
-
|
337
|
-
Processing ThemeController#stylesheets (for 127.0.0.1 at 2006-07-07 23:57:33) [GET]
|
338
|
-
Parameters: {"action"=>"stylesheets", "controller"=>"theme", "filename"=>"content.css"}
|
339
|
-
[4;36;1mBlog Load (0.001384)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
340
|
-
[4;35;1mTrigger Load (0.001564)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:33') [0m
|
341
|
-
[4;36;1mSQL (0.003930)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
342
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
343
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
344
|
-
WHERE a.attrelid = 'blogs'::regclass
|
345
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
346
|
-
ORDER BY a.attnum
|
347
|
-
[0m
|
348
|
-
Sending file script/../config/../themes/scribbish/stylesheets/content.css
|
349
|
-
Completed in 0.02013 (49 reqs/sec) | Rendering: 0.00015 (0%) | DB: 0.00688 (34%) | 200 OK [http://localhost/stylesheets/theme/content.css]
|
350
|
-
|
351
|
-
|
352
|
-
Processing ThemeController#javascript (for 127.0.0.1 at 2006-07-07 23:57:34) [GET]
|
353
|
-
Parameters: {"action"=>"javascript", "controller"=>"theme", "filename"=>"application.js"}
|
354
|
-
[4;35;1mBlog Load (0.001414)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
355
|
-
[4;36;1mTrigger Load (0.004993)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:34') [0m
|
356
|
-
[4;35;1mSQL (0.008219)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
357
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
358
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
359
|
-
WHERE a.attrelid = 'blogs'::regclass
|
360
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
361
|
-
ORDER BY a.attnum
|
362
|
-
[0m
|
363
|
-
|
364
|
-
|
365
|
-
ActionController::MissingFile (Cannot read file script/../config/../themes/scribbish/javascript/application.js):
|
366
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/streaming.rb:55:in `send_file'
|
367
|
-
/app/controllers/theme_controller.rb:28:in `render_theme_item'
|
368
|
-
/app/controllers/theme_controller.rb:10:in `javascript'
|
369
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:910:in `perform_action_without_filters'
|
370
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
371
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
372
|
-
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
373
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
374
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/rescue.rb:82:in `perform_action'
|
375
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/base.rb:381:in `process_without_filters'
|
376
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
377
|
-
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/session_management.rb:117:in `process'
|
378
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/dispatcher.rb:38:in `dispatch'
|
379
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:115:in `handle_dispatch'
|
380
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:81:in `service'
|
381
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
382
|
-
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
383
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
384
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
385
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
386
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
387
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
388
|
-
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
389
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/webrick_server.rb:67:in `dispatch'
|
390
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/servers/webrick.rb:59
|
391
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
392
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
393
|
-
/opt/local/lib/ruby/gems/1.8/gems/rails-1.1.4/lib/commands/server.rb:30
|
394
|
-
/opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require'
|
395
|
-
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
396
|
-
./script/server:3
|
397
|
-
|
398
|
-
|
399
|
-
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
400
|
-
|
401
|
-
|
402
|
-
Processing ThemeController#images (for 127.0.0.1 at 2006-07-07 23:57:36) [GET]
|
403
|
-
Parameters: {"action"=>"images", "controller"=>"theme", "filename"=>"background.gif"}
|
404
|
-
[4;36;1mBlog Load (0.001460)[0m [0;1mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
405
|
-
[4;35;1mTrigger Load (0.001595)[0m [0mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:36') [0m
|
406
|
-
[4;36;1mSQL (0.004071)[0m [0;1m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
407
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
408
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
409
|
-
WHERE a.attrelid = 'blogs'::regclass
|
410
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
411
|
-
ORDER BY a.attnum
|
412
|
-
[0m
|
413
|
-
Sending file script/../config/../themes/scribbish/images/background.gif
|
414
|
-
Completed in 0.02155 (46 reqs/sec) | Rendering: 0.00016 (0%) | DB: 0.02175 (100%) | 200 OK [http://localhost/images/theme/background.gif]
|
415
|
-
|
416
|
-
|
417
|
-
Processing ThemeController#images (for 127.0.0.1 at 2006-07-07 23:57:37) [GET]
|
418
|
-
Parameters: {"action"=>"images", "controller"=>"theme", "filename"=>"header_shadow.gif"}
|
419
|
-
[4;35;1mBlog Load (0.001589)[0m [0mSELECT * FROM blogs ORDER BY id LIMIT 1[0m
|
420
|
-
[4;36;1mTrigger Load (0.001693)[0m [0;1mSELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:37') [0m
|
421
|
-
[4;35;1mSQL (0.003891)[0m [0m SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
|
422
|
-
FROM pg_attribute a LEFT JOIN pg_attrdef d
|
423
|
-
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
|
424
|
-
WHERE a.attrelid = 'blogs'::regclass
|
425
|
-
AND a.attnum > 0 AND NOT a.attisdropped
|
426
|
-
ORDER BY a.attnum
|
427
|
-
[0m
|
428
|
-
Sending file script/../config/../themes/scribbish/images/header_shadow.gif
|
429
|
-
Completed in 0.02114 (47 reqs/sec) | Rendering: 0.00015 (0%) | DB: 0.00717 (33%) | 200 OK [http://localhost/images/theme/header_shadow.gif]
|