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.
Files changed (82) hide show
  1. data/app/controllers/admin/comments_controller.rb +1 -1
  2. data/app/controllers/admin/content_controller.rb +1 -3
  3. data/app/controllers/admin/feedback_controller.rb +36 -31
  4. data/app/controllers/admin/sidebar_controller.rb +13 -2
  5. data/app/controllers/admin/users_controller.rb +2 -1
  6. data/app/controllers/articles_controller.rb +10 -19
  7. data/app/controllers/xml_controller.rb +2 -2
  8. data/app/helpers/admin/base_helper.rb +7 -3
  9. data/app/helpers/application_helper.rb +2 -2
  10. data/app/helpers/articles_helper.rb +5 -4
  11. data/app/models/article.rb +16 -10
  12. data/app/models/blog.rb +4 -10
  13. data/app/models/comment.rb +17 -36
  14. data/app/models/content.rb +31 -53
  15. data/app/models/content_state/base.rb +46 -3
  16. data/app/models/content_state/draft.rb +2 -9
  17. data/app/models/content_state/ham.rb +31 -0
  18. data/app/models/content_state/just_marked_as_ham.rb +10 -0
  19. data/app/models/content_state/just_marked_as_spam.rb +23 -0
  20. data/app/models/content_state/just_presumed_ham.rb +37 -0
  21. data/app/models/content_state/just_published.rb +15 -8
  22. data/app/models/content_state/new.rb +3 -10
  23. data/app/models/content_state/presumed_ham.rb +27 -0
  24. data/app/models/content_state/presumed_spam.rb +31 -0
  25. data/app/models/content_state/publication_pending.rb +7 -9
  26. data/app/models/content_state/published.rb +10 -9
  27. data/app/models/content_state/spam.rb +23 -0
  28. data/app/models/content_state/unclassified.rb +29 -0
  29. data/app/models/content_state/withdrawn.rb +28 -0
  30. data/app/models/email_notifier.rb +0 -1
  31. data/app/models/feedback.rb +151 -0
  32. data/app/models/trackback.rb +22 -29
  33. data/app/views/admin/feedback/_item.rhtml +5 -5
  34. data/app/views/admin/feedback/list.rhtml +13 -11
  35. data/app/views/admin/general/index.rhtml +8 -4
  36. data/app/views/admin/users/show.rhtml +7 -1
  37. data/app/views/articles/read.rhtml +2 -2
  38. data/bin/typo +7 -6
  39. data/components/plugins/sidebars/recent_comments_controller.rb +1 -1
  40. data/config/environment.rb +2 -0
  41. data/db/migrate/046_fixup_forthcoming_publications.rb +1 -1
  42. data/db/migrate/048_remove_count_caching.rb +31 -0
  43. data/db/migrate/049_move_feedback_to_new_state_machine.rb +33 -0
  44. data/db/schema.mysql-v3.sql +3 -4
  45. data/db/schema.mysql.sql +3 -4
  46. data/db/schema.postgresql.sql +3 -4
  47. data/db/schema.rb +12 -17
  48. data/db/schema.sqlite.sql +3 -4
  49. data/db/schema.sqlserver.sql +3 -4
  50. data/db/schema_version +1 -1
  51. data/doc/Installer.txt +4 -0
  52. data/lib/jabber_notify.rb +6 -2
  53. data/lib/sidebars/plugin.rb +2 -1
  54. data/lib/tasks/release.rake +5 -4
  55. data/lib/typo_version.rb +1 -1
  56. data/public/stylesheets/administration.css +22 -2
  57. data/test/fixtures/blogs.yml +2 -0
  58. data/test/fixtures/contents.yml +7 -7
  59. data/test/functional/admin/users_controller_test.rb +3 -0
  60. data/test/functional/articles_controller_test.rb +16 -1
  61. data/test/mocks/test/xmlrpc_mock.rb +5 -4
  62. data/test/unit/article_test.rb +16 -4
  63. data/test/unit/comment_test.rb +57 -35
  64. data/test/unit/content_state/factory_test.rb +7 -6
  65. data/test/unit/ping_test.rb +14 -0
  66. data/test/unit/trackback_test.rb +16 -15
  67. metadata +26 -26
  68. data/config/database.yml-pgsql +0 -17
  69. data/config/database.yml.sqlite +0 -14
  70. data/config/mail.yml +0 -8
  71. data/config/mongrel.conf +0 -2
  72. data/db/converters/mt-import.rb +0 -72
  73. data/db/development_structure.sql +0 -691
  74. data/installer/rails-installer.rb +0 -527
  75. data/installer/rails-installer/commands.rb +0 -118
  76. data/installer/rails-installer/web-servers.rb +0 -110
  77. data/log/development.log-1 +0 -991
  78. data/log/development.log-2 +0 -422
  79. data/log/development.log-3 +0 -429
  80. data/log/development.log-4 +0 -174
  81. data/svk-commitP6cVv.tmp +0 -1
  82. data/vendor/ruby-mp3info/lib/mp3info.rb +0 -720
@@ -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
- Blog Load (0.007744) SELECT * FROM blogs ORDER BY id LIMIT 1
6
- Trigger Load (0.003876) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:39') 
7
- SQL (0.016809)  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
- 
14
- SQL (0.004736) SELECT count(*) AS count_all FROM users 
15
- SQL (0.003716)  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
- 
22
- SQL (0.005538)  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
- 
29
- Article Count (4.110078) SELECT 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' ) ) 
30
- SQL (0.004313)  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
- 
37
- SQL (0.035356)  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
- 
44
- Article Load IDs For Limited Eager Loading (0.028140) SELECT 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
45
- Article Load Including Associations (0.151428) SELECT 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 
46
- Rendering within ../../themes/scribbish/layouts/default
47
- Rendering articles/index
48
- Blog Load (0.002673) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
49
- User Load (0.006614) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
50
- Blog Load (0.001383) SELECT * FROM blogs ORDER BY id LIMIT 1
51
- Rendered articles/_article (0.05467)
52
- Blog Load (0.001732) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
53
- User Load (0.001852) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
54
- Rendered articles/_article (0.02109)
55
- Blog Load (0.001806) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
56
- User Load (0.002384) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
57
- Rendered articles/_article (0.01747)
58
- Blog Load (0.005826) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
59
- User Load (0.002722) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
60
- Rendered articles/_article (0.01971)
61
- Blog Load (0.001730) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
62
- User Load (0.127035) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
63
- Rendered articles/_article (0.14261)
64
- Blog Load (0.001797) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
65
- User Load (0.003194) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
66
- Rendered articles/_article (0.02450)
67
- Blog Load (0.001728) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
68
- User Load (0.002236) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
69
- Rendered articles/_article (0.01850)
70
- Blog Load (0.001782) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
71
- User Load (0.002834) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
72
- Rendered articles/_article (0.02275)
73
- Blog Load (0.001807) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
74
- User Load (0.002291) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
75
- Rendered articles/_article (0.01784)
76
- Blog Load (0.001986) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
77
- User Load (0.001911) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
78
- Rendered articles/_article (0.01999)
79
- Blog Load (0.002230) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
80
- User Load (0.002509) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
81
- Rendered articles/_article (0.02107)
82
- Blog Load (0.002337) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
83
- User Load (0.002135) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
84
- Rendered articles/_article (0.01780)
85
- Blog Load (0.002376) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
86
- User Load (0.001961) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
87
- Rendered articles/_article (0.16257)
88
- Blog Load (0.002033) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
89
- User Load (0.001930) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
90
- Rendered articles/_article (0.01733)
91
- Blog Load (0.001778) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
92
- User Load (0.001910) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
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
- Blog Load (0.001496) SELECT * FROM blogs ORDER BY id LIMIT 1
100
- Trigger Load (0.001737) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:45') 
101
- Sidebar Load (0.003778) SELECT * FROM sidebars WHERE (active_position is not null) ORDER BY active_position 
102
- SQL (0.004506)  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
- 
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
- Blog Load (0.001449) SELECT * FROM blogs ORDER BY id LIMIT 1
115
- Trigger Load (0.005364) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:45') 
116
- Tag Load (0.052272) 
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
- 
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
- Blog Load (0.001407) SELECT * FROM blogs ORDER BY id LIMIT 1
139
- Trigger Load (0.005828) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:45') 
140
- Article Load Including Associations (4.794702) SELECT 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 
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
- Blog Load (0.001491) SELECT * FROM blogs ORDER BY id LIMIT 1
153
- Trigger Load (0.002502) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:52') 
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
- Article Load (0.010457) SELECT * 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
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
- Blog Load (0.001519) SELECT * FROM blogs ORDER BY id LIMIT 1
173
- Trigger Load (0.002113) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:53') 
174
- SQL (0.003934)  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
- 
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
- Blog Load (0.001430) SELECT * FROM blogs ORDER BY id LIMIT 1
238
- Trigger Load (0.001666) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:54') 
239
- SQL (0.004028)  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
- 
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
- Blog Load (0.001413) SELECT * FROM blogs ORDER BY id LIMIT 1
303
- Trigger Load (0.001571) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:56') 
304
- SQL (0.003863)  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
- 
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
- Blog Load (0.001409) SELECT * FROM blogs ORDER BY id LIMIT 1
318
- Trigger Load (0.002059) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:57') 
319
- SQL (0.008903)  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
- 
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
- Blog Load (0.001393) SELECT * FROM blogs ORDER BY id LIMIT 1
333
- Trigger Load (0.001759) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:58') 
334
- SQL (0.009127)  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
- 
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
- Blog Load (0.001389) SELECT * FROM blogs ORDER BY id LIMIT 1
348
- Trigger Load (0.001678) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:26:58') 
349
- SQL (0.009296)  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
- 
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
- Blog Load (0.001406) SELECT * FROM blogs ORDER BY id LIMIT 1
398
- Trigger Load (0.002367) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:27:00') 
399
- SQL (0.004252)  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
- 
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
- Blog Load (0.001516) SELECT * FROM blogs ORDER BY id LIMIT 1
413
- Trigger Load (0.001601) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:27:01') 
414
- SQL (0.003810)  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
- 
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]
@@ -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
- Blog Load (0.016137) SELECT * FROM blogs ORDER BY id LIMIT 1
6
- Trigger Load (0.005647) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:18') 
7
- SQL (0.015496)  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
- 
14
- SQL (0.003890) SELECT count(*) AS count_all FROM users 
15
- SQL (0.003992)  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
- 
22
- SQL (0.004945)  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
- 
29
- Article Count (4.513755) SELECT 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' ) ) 
30
- SQL (0.004335)  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
- 
37
- SQL (0.013500)  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
- 
44
- Article Load IDs For Limited Eager Loading (0.020334) SELECT 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
45
- Article Load Including Associations (0.386613) SELECT 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 
46
- Rendering within ../../themes/scribbish/layouts/default
47
- Rendering articles/index
48
- Blog Load (0.002023) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
49
- User Load (0.002719) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
50
- Blog Load (0.001383) SELECT * FROM blogs ORDER BY id LIMIT 1
51
- Rendered articles/_article (0.05445)
52
- Blog Load (0.002212) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
53
- User Load (0.001886) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
54
- Rendered articles/_article (0.01711)
55
- Blog Load (0.001771) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
56
- User Load (0.002901) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
57
- Rendered articles/_article (0.01773)
58
- Blog Load (0.001740) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
59
- User Load (0.001870) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
60
- Rendered articles/_article (0.02209)
61
- Blog Load (0.001782) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
62
- User Load (0.002901) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
63
- Rendered articles/_article (0.15349)
64
- Blog Load (0.001817) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
65
- User Load (0.001941) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
66
- Rendered articles/_article (0.02095)
67
- Blog Load (0.001861) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
68
- User Load (0.002133) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
69
- Rendered articles/_article (0.01751)
70
- Blog Load (0.001752) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
71
- User Load (0.001913) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
72
- Rendered articles/_article (0.02205)
73
- Blog Load (0.001730) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
74
- User Load (0.001901) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
75
- Rendered articles/_article (0.01732)
76
- Blog Load (0.001755) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
77
- User Load (0.002170) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
78
- Rendered articles/_article (0.01707)
79
- Blog Load (0.003053) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
80
- User Load (0.009510) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
81
- Rendered articles/_article (0.03132)
82
- Blog Load (0.001715) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
83
- User Load (0.002746) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
84
- Rendered articles/_article (0.01928)
85
- Blog Load (0.001758) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
86
- User Load (0.002025) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
87
- Rendered articles/_article (0.15543)
88
- Blog Load (0.013129) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
89
- User Load (0.002782) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
90
- Rendered articles/_article (0.04339)
91
- Blog Load (0.002026) SELECT * FROM blogs WHERE (blogs.id = 1) LIMIT 1
92
- User Load (0.001945) SELECT * FROM users WHERE (users.id = 1) LIMIT 1
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
- Blog Load (0.001413) SELECT * FROM blogs ORDER BY id LIMIT 1
100
- Trigger Load (0.001452) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') 
101
- Sidebar Load (0.011881) SELECT * FROM sidebars WHERE (active_position is not null) ORDER BY active_position 
102
- SQL (0.004057)  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
- 
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
- Blog Load (0.001426) SELECT * FROM blogs ORDER BY id LIMIT 1
115
- Trigger Load (0.001745) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') 
116
- Tag Load (0.054555) 
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
- 
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
- Blog Load (0.001529) SELECT * FROM blogs ORDER BY id LIMIT 1
139
- Trigger Load (0.001818) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') 
140
- Content Load (0.045127) select 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
141
- SQL (0.004646)  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
- 
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
- Blog Load (0.001436) SELECT * FROM blogs ORDER BY id LIMIT 1
160
- Trigger Load (0.002549) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:25') 
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
- Article Load (0.010661) SELECT * 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
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
- Blog Load (0.001394) SELECT * FROM blogs ORDER BY id LIMIT 1
180
- Trigger Load (0.001630) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:27') 
181
- SQL (0.003843)  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
- 
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
- Blog Load (0.001594) SELECT * FROM blogs ORDER BY id LIMIT 1
245
- Trigger Load (0.001654) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:28') 
246
- SQL (0.014642)  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
- 
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
- Blog Load (0.001407) SELECT * FROM blogs ORDER BY id LIMIT 1
310
- Trigger Load (0.001592) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:30') 
311
- SQL (0.004152)  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
- 
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
- Blog Load (0.001499) SELECT * FROM blogs ORDER BY id LIMIT 1
325
- Trigger Load (0.001597) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:31') 
326
- SQL (0.007464)  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
- 
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
- Blog Load (0.001384) SELECT * FROM blogs ORDER BY id LIMIT 1
340
- Trigger Load (0.001564) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:33') 
341
- SQL (0.003930)  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
- 
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
- Blog Load (0.001414) SELECT * FROM blogs ORDER BY id LIMIT 1
355
- Trigger Load (0.004993) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:34') 
356
- SQL (0.008219)  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
- 
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
- Blog Load (0.001460) SELECT * FROM blogs ORDER BY id LIMIT 1
405
- Trigger Load (0.001595) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:36') 
406
- SQL (0.004071)  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
- 
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
- Blog Load (0.001589) SELECT * FROM blogs ORDER BY id LIMIT 1
420
- Trigger Load (0.001693) SELECT * FROM triggers WHERE (due_at <= '2006-07-07 23:57:37') 
421
- SQL (0.003891)  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
- 
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]