<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>db/migrate/20080621095038_add_vetting_stage_to_comment.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080621104316_add_timestamps_to_applicants_positions.rb</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/MIT-LICENSE</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/README</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/TODO</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/init.rb</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/lib/acts_as_slugable.rb</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/rakefile</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/test/acts_as_slugable_test.rb</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/test/database.yml</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/test/fixtures/page.rb</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/test/schema.rb</filename>
    </added>
    <added>
      <filename>vendor/plugins/acts_as_slugable/test/test_helper.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -6,7 +6,7 @@ class ApplicantsController &lt; ApplicationController
   # GET /applicants
   # GET /applicants.xml
   def index
-    @applicants = Applicant.find( :all, :order =&gt; 'name ASC' )
+    @applicants = Applicant.find( :all, :order =&gt; 'appicants.name ASC' )
 
     respond_to do |format|
       format.html # index.html.erb
@@ -18,6 +18,7 @@ class ApplicantsController &lt; ApplicationController
   # GET /applicants/1.xml
   def show
     @applicant = Applicant.find(params[:id])
+    @vetting_stages = VettingStage.find( :all )
 
     respond_to do |format|
       format.html # show.html.erb</diff>
      <filename>app/controllers/applicants_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@ class PositionsController &lt; ApplicationController
   # GET /positions
   # GET /positions.xml
   def index
-    @positions = Position.find( :all, :conditions =&gt; &quot;is_closed = 0&quot;, :order =&gt; 'created_at DESC' )
+    @positions = Position.find( :all, :conditions =&gt; &quot;is_closed = 0&quot;, :order =&gt; 'positions.created_at DESC' )
 
     respond_to do |format|
       format.html # index.html.erb</diff>
      <filename>app/controllers/positions_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 class Applicant &lt; ActiveRecord::Base
   belongs_to :user
   
-  has_and_belongs_to_many :positions, :order =&gt; 'created_at DESC'
+  has_and_belongs_to_many :positions, :order =&gt; 'positions.created_at DESC'
   
   validates_presence_of :user, :name, :contact_info
   
@@ -21,4 +21,20 @@ class Applicant &lt; ActiveRecord::Base
       return nil
     end
   end
+  
+  
+  def first_name
+    return name_array.first
+  end
+  
+  
+  def last_name
+    return name_array.last
+  end
+  
+private
+
+  def name_array
+    name_array = name.split( ' ' )
+  end
 end</diff>
      <filename>app/models/applicant.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ class Position &lt; ActiveRecord::Base
   belongs_to :user
   
   has_and_belongs_to_many :reviewers, :class_name =&gt; 'User', :order =&gt; 'name ASC'
-  has_and_belongs_to_many :applicants, :order =&gt; 'created_at DESC'
+  has_and_belongs_to_many :applicants, :order =&gt; 'applicants.created_at DESC'
   
   validates_presence_of :user, :title
 end</diff>
      <filename>app/models/position.rb</filename>
    </modified>
    <modified>
      <diff>@@ -18,7 +18,7 @@ class User &lt; ActiveRecord::Base
   validates_uniqueness_of   :email,    :case_sensitive =&gt; false
   validates_format_of       :email,    :with =&gt; RE_EMAIL_OK, :message =&gt; MSG_EMAIL_BAD
 
-#  has_many :comments, :as =&gt; :commentable, :order =&gt; 'created_at DESC'
+  has_many :comments, :as =&gt; :commentable, :order =&gt; 'comments.created_at DESC'
   has_and_belongs_to_many :positions, :order =&gt; 'title ASC'
   
 </diff>
      <filename>app/models/user.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,6 @@
 class VettingStage &lt; ActiveRecord::Base
+  has_many :comments
+  
   acts_as_tree :foreign_key =&gt; &quot;parent_id&quot;, :order =&gt; &quot;name&quot;
   
   validates_presence_of :user, :name</diff>
      <filename>app/models/vetting_stage.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,33 @@
 &lt;div id=&quot;body_data&quot;&gt;
+	&lt;div id=&quot;nav_bar&quot;&gt;
+		&lt;%= link_to( 'Edit', edit_applicant_path( @applicant ) ) + ' | ' if current_user.is_admin %&gt;
+		&lt;%= link_to( 'Delete', @applicant, :confirm =&gt; &quot;Are you sure you want to delete '#{@applicant.name}'?&quot;, :method =&gt; :delete ) + ' | ' if current_user.is_admin %&gt;
+		&lt;%= link_to( 'Back', applicants_path ) %&gt;
+	&lt;/div&gt;
+	
 	&lt;h2&gt;&lt;%= image_tag &quot;applicant.png&quot; %&gt; &lt;%= @applicant.id %&gt;: &lt;%= @applicant.name %&gt;&lt;/h2&gt;
-	&lt;div class=&quot;small&quot;&gt;Entered by &lt;%= link_to( @applicant.user.name, user_path( @applicant.user ) ) %&gt;  &lt;span class=&quot;display_date&quot;&gt;&lt;%= @applicant.created_at.friendly_date %&gt;&lt;/span&gt;&lt;/div&gt;
+	&lt;div class=&quot;display_date small&quot;&gt;Entered on &lt;%= @applicant.created_at.friendly_date %&gt;&lt;/div&gt;
 	
 	&lt;% if @applicant.contact_info %&gt;
-		&lt;h4 class=&quot;sub_header&quot;&gt;Contact Info&lt;/h4&gt;
-		&lt;div class=&quot;detailed_data&quot;&gt;
-			&lt;%= auto_link( simple_format( parse_data( @applicant.contact_info ) ) ) %&gt;
+		&lt;div id=&quot;wide_left&quot;&gt;
+			&lt;h4 class=&quot;sub_header&quot;&gt;Contact Info&lt;/h4&gt;
+			&lt;div class=&quot;detailed_data&quot;&gt;
+				&lt;%= auto_link( simple_format( parse_data( @applicant.contact_info ) ) ) %&gt;
+			&lt;/div&gt;
 		&lt;/div&gt;
 	&lt;% end %&gt;
 	
 	&lt;% if @applicant.resume_file %&gt;
-		&lt;h4 class=&quot;sub_header&quot;&gt;Resume&lt;/h4&gt;
-		&lt;p&gt;
-			&lt;%= link_to( @applicant.resume_file_before_type_cast, @applicant.resume_file ) %&gt;
-		&lt;/p&gt;
+		&lt;div id=&quot;thin_right&quot;&gt;
+			&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= @applicant.first_name.possessive %&gt; Resume (CV)&lt;/h4&gt;
+			&lt;div class=&quot;generic_data&quot;&gt;
+				&lt;%= link_to( @applicant.resume_file_before_type_cast, @applicant.resume_file ) %&gt;
+			&lt;/div&gt;
+		&lt;/div&gt;
 	&lt;% end %&gt;
 	
+	&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+	
 	&lt;% if @applicant.cover_letter %&gt;
 		&lt;h4 class=&quot;sub_header&quot;&gt;Cover Letter&lt;/h4&gt;
 		&lt;div class=&quot;detailed_data&quot;&gt;
@@ -23,9 +35,14 @@
 		&lt;/div&gt;
 	&lt;% end %&gt;
 	
+	&lt;h4 class=&quot;sub_header&quot;&gt;Positions Applied For&lt;/h4&gt;
+	&lt;div class=&quot;general_data&quot;&gt;
+		&lt;%= render :partial =&gt; 'positions/position_brief', :collection =&gt; @applicant.positions %&gt;
+	&lt;/div&gt;
+	
 	&lt;h4 class=&quot;sub_header&quot;&gt;
 		Your Comments
-		&lt;span class=&quot;default_font right&quot;&gt;&lt;%= inline_tb_link('New Note', &quot;new_comment&quot;, { :title =&gt; &quot;Note about #{h( @applicant.name )}&quot; }, { :height =&gt; 120, :width =&gt; 360 } ) if current_user %&gt;&lt;/span&gt;
+		&lt;span class=&quot;default_font right&quot;&gt;&lt;%= inline_tb_link('New Comment', &quot;new_comment&quot;, { :title =&gt; &quot;Note about #{h( @applicant.name )}&quot; }, { :height =&gt; 196, :width =&gt; 372 } ) if current_user %&gt;&lt;/span&gt;
 	&lt;/h4&gt;
 	&lt;div class=&quot;detailed_data&quot;&gt;
 		&lt;% 
@@ -33,8 +50,9 @@
 			if comments
 				comments.each do |comment|
 		%&gt;
-					&lt;h4&gt;&lt;%= comment.title %&gt;&lt;/h4&gt;
+					&lt;h4&gt;&lt;%= &quot;#{comment.vetting_stage.name}:&quot; if comment.vetting_stage %&gt; &lt;%= comment.title %&gt; &lt;span class=&quot;default_font right display_date small&quot;&gt;&lt;%= comment.created_at.friendly_date %&gt;&lt;/span&gt;&lt;/h4&gt;
 					&lt;p&gt;&lt;%= comment.comment %&gt;&lt;/p&gt;
+					&lt;br /&gt;
 		&lt;% 
 				end
 			end 
@@ -42,15 +60,4 @@
 	&lt;/div&gt;
 	
 	&lt;%= render :partial =&gt; 'comments/form' %&gt;
-	
-	&lt;h4 class=&quot;sub_header&quot;&gt;Positions&lt;/h4&gt;
-	&lt;div class=&quot;general_data&quot;&gt;
-		&lt;%= render :partial =&gt; 'positions/position_brief', :collection =&gt; @applicant.positions %&gt;
-	&lt;/div&gt;
-	
-	&lt;div id=&quot;nav_bar&quot;&gt;
-		&lt;%= link_to( 'Edit', edit_applicant_path( @applicant ) ) + ' | ' if current_user.is_admin %&gt;
-		&lt;%= link_to( 'Delete', @applicant, :confirm =&gt; &quot;Are you sure you want to delete '#{@applicant.name}'?&quot;, :method =&gt; :delete ) + ' | ' if current_user.is_admin %&gt;
-		&lt;%= link_to( 'Back', applicants_path ) %&gt;
-	&lt;/div&gt;
 &lt;/div&gt;
\ No newline at end of file</diff>
      <filename>app/views/applicants/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,23 +1,26 @@
 &lt;div id=&quot;new_comment&quot; class=&quot;hidden&quot;&gt;
 	&lt;% remote_form_for :comment, :url =&gt; { :controller =&gt; 'comments', :action =&gt; 'new', :id =&gt; @applicant.id }, :html =&gt; { :id =&gt; &quot;new_comment_form&quot; } do |f| %&gt;
-		&lt;table class=&quot;wide&quot;&gt;
+		&lt;table class=&quot;wide minor_padded&quot;&gt;
+			&lt;tr&gt;
+				&lt;td class=&quot;t r heavy&quot;&gt;Stage &lt;/td&gt;
+				&lt;td class=&quot;t l&quot;&gt;&lt;%= f.select :vetting_stage_id, @vetting_stages.collect { |t| [ t.name, t.id ] }, { :include_blank =&gt; true } %&gt;&lt;/td&gt;
+			&lt;/tr&gt;
 			&lt;tr&gt;
 				&lt;td class=&quot;t r heavy&quot;&gt;Title &lt;/td&gt;
-				&lt;td class=&quot;t r&quot;&gt;
-					&lt;%= f.text_field :title %&gt;
-				&lt;/td&gt;
+				&lt;td class=&quot;t l&quot;&gt;&lt;%= f.text_field :title, :size =&gt; 42 %&gt;&lt;/td&gt;
 			&lt;/tr&gt;
 			&lt;tr&gt;
 				&lt;td class=&quot;t r heavy&quot;&gt;Comment &lt;/td&gt;
-				&lt;td class=&quot;t r&quot;&gt;
-					&lt;%= f.text_area :comment %&gt;
-				&lt;/td&gt;
+				&lt;td class=&quot;t l&quot;&gt;&lt;%= f.text_area :comment %&gt;&lt;/td&gt;
 			&lt;/tr&gt;
 			&lt;tr&gt;
 				&lt;td&gt;&lt;/td&gt;
 				&lt;td class=&quot;t r&quot;&gt;&lt;%= f.submit 'Save Comment', :class=&gt;'button' %&gt;&lt;/td&gt;
 			&lt;/tr&gt;
 		&lt;/table&gt;
+		
+		&lt;br /&gt;
+		All comments are private. Your comments are only visible by you.
 	&lt;% end %&gt;
 &lt;/div&gt;
 </diff>
      <filename>app/views/comments/_form.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1,3 @@
-&lt;div&gt;&lt;%= link_to( sanitize( position_brief.title ), position_path( position_brief ) ) %&gt;&lt;/div&gt;
\ No newline at end of file
+&lt;div&gt;
+	&lt;%= link_to( sanitize( position_brief.title ), position_path( position_brief ) ) %&gt;
+&lt;/div&gt;
\ No newline at end of file</diff>
      <filename>app/views/positions/_position_brief.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,15 @@
 &lt;div id=&quot;body_data&quot;&gt;
+	&lt;div id=&quot;nav_bar&quot;&gt;
+		&lt;%  if !@position.is_closed &amp;&amp; current_user.is_admin %&gt;
+			&lt;%= link_to( 'Add New Applicant', new_applicant_path + &quot;?position_id=#{@position.id}&quot; ) + ' | ' %&gt;
+			&lt;%= link_to( 'Edit', edit_position_path( @position ) ) + ' | ' %&gt;
+		&lt;% end %&gt;
+		&lt;%= link_to( 'Delete', @position, :confirm =&gt; &quot;Are you sure you want to delete '#{@position.title}'?&quot;, :method =&gt; :delete ) + ' | ' if current_user.is_admin %&gt;
+		&lt;%= link_to( 'Back', positions_path ) %&gt;
+	&lt;/div&gt;
+	
+	&lt;br /&gt;
+	
 	&lt;div id=&quot;wide_left&quot;&gt;
 		&lt;h2&gt;&lt;%= image_tag &quot;position.png&quot; %&gt; &lt;%= @position.id %&gt;: &lt;%= @position.title %&gt; &lt;span class=&quot;default_font&quot;&gt;for &lt;%= @position.department.name if @position.department %&gt;.&lt;/span&gt;&lt;/h2&gt;
 		
@@ -25,15 +36,6 @@
 		&lt;/p&gt;
 		
 		&lt;br /&gt;
-	
-		&lt;div id=&quot;nav_bar&quot;&gt;
-			&lt;%  if !@position.is_closed &amp;&amp; current_user.is_admin %&gt;
-				&lt;%= link_to( 'Add New Applicant', new_applicant_path + &quot;?position_id=#{@position.id}&quot; ) + ' | ' %&gt;
-				&lt;%= link_to( 'Edit', edit_position_path( @position ) ) + ' | ' %&gt;
-			&lt;% end %&gt;
-			&lt;%= link_to( 'Delete', @position, :confirm =&gt; &quot;Are you sure you want to delete '#{@position.title}'?&quot;, :method =&gt; :delete ) + ' | ' if current_user.is_admin %&gt;
-			&lt;%= link_to( 'Back', positions_path ) %&gt;
-		&lt;/div&gt;
 	&lt;/div&gt;
 	
 	&lt;div id=&quot;thin_right&quot;&gt;</diff>
      <filename>app/views/positions/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 class ActsAsCommentable &lt; ActiveRecord::Migration
   def self.up
     create_table :comments, :force =&gt; true do |t|
-      t.column :title, :string, :limit =&gt; 50, :default =&gt; &quot;&quot;
+      t.column :title, :string, :limit =&gt; 50, :default =&gt; &quot;&quot;, :null =&gt; true
       t.column :comment, :text, :default =&gt; &quot;&quot;
       t.column :created_at, :datetime, :null =&gt; false
       t.column :commentable_id, :integer, :default =&gt; 0, :null =&gt; false</diff>
      <filename>db/migrate/20080621083331_acts_as_commentable.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,7 @@
 #
 # It's strongly recommended to check this file into your version control system.
 
-ActiveRecord::Schema.define(:version =&gt; 20080621083443) do
+ActiveRecord::Schema.define(:version =&gt; 20080621104316) do
 
   create_table &quot;applicants&quot;, :force =&gt; true do |t|
     t.integer  &quot;user_id&quot;,      :limit =&gt; 11,                 :null =&gt; false
@@ -22,17 +22,20 @@ ActiveRecord::Schema.define(:version =&gt; 20080621083443) do
   end
 
   create_table &quot;applicants_positions&quot;, :id =&gt; false, :force =&gt; true do |t|
-    t.integer &quot;applicant_id&quot;, :limit =&gt; 11, :null =&gt; false
-    t.integer &quot;position_id&quot;,  :limit =&gt; 11, :null =&gt; false
+    t.integer  &quot;applicant_id&quot;, :limit =&gt; 11, :null =&gt; false
+    t.integer  &quot;position_id&quot;,  :limit =&gt; 11, :null =&gt; false
+    t.datetime &quot;created_at&quot;
+    t.datetime &quot;updated_at&quot;
   end
 
   create_table &quot;comments&quot;, :force =&gt; true do |t|
-    t.string   &quot;title&quot;,            :limit =&gt; 50, :default =&gt; &quot;&quot;
-    t.string   &quot;comment&quot;,                        :default =&gt; &quot;&quot;
+    t.string   &quot;title&quot;,            :limit =&gt; 50, :default =&gt; &quot;&quot;, :null =&gt; false
+    t.text     &quot;comment&quot;
     t.datetime &quot;created_at&quot;,                                     :null =&gt; false
     t.integer  &quot;commentable_id&quot;,   :limit =&gt; 11, :default =&gt; 0,  :null =&gt; false
     t.string   &quot;commentable_type&quot;, :limit =&gt; 15, :default =&gt; &quot;&quot;, :null =&gt; false
     t.integer  &quot;user_id&quot;,          :limit =&gt; 11, :default =&gt; 0,  :null =&gt; false
+    t.integer  &quot;vetting_stage_id&quot;, :limit =&gt; 11
   end
 
   add_index &quot;comments&quot;, [&quot;user_id&quot;], :name =&gt; &quot;fk_comments_user&quot;</diff>
      <filename>db/schema.rb</filename>
    </modified>
    <modified>
      <diff>@@ -69,4 +69,9 @@ class String
    def add_param args = {}
      self.strip + (self.include?('?') ? '&amp;' : '?') + args.map { |k,v| &quot;#{k}=#{URI.escape(v.to_s)}&quot; }.join('&amp;')
    end
+   
+   
+   def possessive
+     self.last == 's' ? (self + &quot;\'&quot;) : (self + &quot;\'s&quot;)
+   end
 end
\ No newline at end of file</diff>
      <filename>lib/monkey_patches.rb</filename>
    </modified>
    <modified>
      <diff>@@ -65368,3 +65368,3495 @@ Rendered shared/_toolbar (0.00016)
 Rendered shared/_action_bar_wrapper (0.00046)
 Rendered shared/_footer (0.00002)
 Completed in 0.06256 (15 reqs/sec) | Rendering: 0.02538 (40%) | DB: 0.01462 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 02:44:17) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003112)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000376)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002650)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000313)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000301)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000419)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00127)
+  *[4;35;1mJoin Table Columns (0.001810)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002415)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002368)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00037)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00051)
+Rendered shared/_footer (0.00002)
+Completed in 0.06128 (16 reqs/sec) | Rendering: 0.02538 (41%) | DB: 0.01376 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 02:49:13) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003085)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000557)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002819)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000857)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000335)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000402)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00126)
+  *[4;36;1mJoin Table Columns (0.001826)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002650)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001835)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00037)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00041)
+Rendered shared/_footer (0.00002)
+Completed in 0.06275 (15 reqs/sec) | Rendering: 0.02519 (40%) | DB: 0.01437 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 02:49:19) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003063)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000318)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002376)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000340)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000389)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000411)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00126)
+  *[4;35;1mJoin Table Columns (0.002011)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002812)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001845)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00025)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00033)
+Rendered shared/_header (0.00071)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00041)
+Rendered shared/_footer (0.00002)
+Completed in 0.05968 (16 reqs/sec) | Rendering: 0.02628 (44%) | DB: 0.01356 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 02:49:45) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003146)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000319)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002563)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000595)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000333)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000462)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00144)
+  *[4;36;1mJoin Table Columns (0.002023)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001771)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002428)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00082)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00003)
+Completed in 0.06113 (16 reqs/sec) | Rendering: 0.02763 (45%) | DB: 0.01364 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 02:49:48) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003417)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000370)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002788)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000639)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000325)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000406)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00130)
+  *[4;35;1mJoin Table Columns (0.001916)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002810)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002032)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00037)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00022)
+Rendered shared/_action_bar_wrapper (0.00051)
+Rendered shared/_footer (0.00002)
+Completed in 0.06250 (16 reqs/sec) | Rendering: 0.02522 (40%) | DB: 0.01470 (23%) | 200 OK [http://localhost/applicants/8]
+  *[4;36;1mSQL (0.000158)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000107)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mSQL (0.000356)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mSQL (0.000308)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000134)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000218)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000200)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000144)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000134)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000154)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000166)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000149)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUsers (20080619071355)
+  *[4;36;1mSQL (0.000147)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddAdminToUser (20080619195143)
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicants (20080619201047)
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositions (20080619201215)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateDepartments (20080619210955)
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositionsUsers (20080619224940)
+  *[4;35;1mSQL (0.000133)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to VettingStages (20080620022524)
+  *[4;36;1mSQL (0.000134)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicantsPositions (20080620071254)
+  *[4;35;1mSQL (0.000137)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddEnabledToPosition (20080620083931)
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddCoverLetterToApplicant (20080620091324)
+  *[4;35;1mSQL (0.000134)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUserNotes (20080620235051)
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to ActsAsCommentable (20080621083331)
+  *[4;35;1mSQL (0.000162)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to DropTableUsernotes (20080621083443)
+  *[4;36;1mSQL (0.000139)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddVettingStageToComment (20080621095038)
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.067692)*[0m   *[0;1mALTER TABLE `comments` ADD `vetting_stage_id` int(11) NULL*[0m
+  *[4;35;1mSQL (0.001093)*[0m   *[0mINSERT INTO schema_migrations (version) VALUES ('20080621095038')*[0m
+  *[4;36;1mSQL (0.000753)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.001119)*[0m   *[0mSHOW TABLES*[0m
+  *[4;36;1mSQL (0.002026)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mSQL (0.002982)*[0m   *[0mdescribe `applicants`*[0m
+  *[4;36;1mSQL (0.000694)*[0m   *[0;1mSHOW KEYS FROM `applicants`*[0m
+  *[4;35;1mSQL (0.001306)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mSQL (0.002069)*[0m   *[0;1mdescribe `applicants_positions`*[0m
+  *[4;35;1mSQL (0.000972)*[0m   *[0mSHOW KEYS FROM `applicants_positions`*[0m
+  *[4;36;1mSQL (0.001928)*[0m   *[0;1mSHOW FIELDS FROM `comments`*[0m
+  *[4;35;1mSQL (0.002060)*[0m   *[0mdescribe `comments`*[0m
+  *[4;36;1mSQL (0.000773)*[0m   *[0;1mSHOW KEYS FROM `comments`*[0m
+  *[4;35;1mSQL (0.001511)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mSQL (0.002613)*[0m   *[0;1mdescribe `departments`*[0m
+  *[4;35;1mSQL (0.001062)*[0m   *[0mSHOW KEYS FROM `departments`*[0m
+  *[4;36;1mSQL (0.002829)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mSQL (0.007625)*[0m   *[0mdescribe `positions`*[0m
+  *[4;36;1mSQL (0.002544)*[0m   *[0;1mSHOW KEYS FROM `positions`*[0m
+  *[4;35;1mSQL (0.001443)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mSQL (0.001861)*[0m   *[0;1mdescribe `positions_users`*[0m
+  *[4;35;1mSQL (0.000725)*[0m   *[0mSHOW KEYS FROM `positions_users`*[0m
+  *[4;36;1mSQL (0.070679)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mSQL (0.002505)*[0m   *[0mdescribe `users`*[0m
+  *[4;36;1mSQL (0.001389)*[0m   *[0;1mSHOW KEYS FROM `users`*[0m
+  *[4;35;1mSQL (0.002777)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mSQL (0.002595)*[0m   *[0;1mdescribe `vetting_stages`*[0m
+  *[4;35;1mSQL (0.001287)*[0m   *[0mSHOW KEYS FROM `vetting_stages`*[0m
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:03:37) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002483)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000816)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002019)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000768)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000263)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000368)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00101)
+  *[4;36;1mJoin Table Columns (0.001845)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.003218)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.003018)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00079)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.05707 (17 reqs/sec) | Rendering: 0.02299 (40%) | DB: 0.01480 (25%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:03:59) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003634)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000461)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002683)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000391)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000339)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000340)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00099)
+  *[4;35;1mJoin Table Columns (0.002159)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002704)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.003119)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00034)
+Rendered shared/_header (0.00069)
+Rendered shared/_toolbar (0.00012)
+Rendered shared/_action_bar_wrapper (0.00042)
+Rendered shared/_footer (0.00002)
+Completed in 0.16121 (6 reqs/sec) | Rendering: 0.11856 (73%) | DB: 0.01583 (9%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:04:14) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003595)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000380)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002003)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000915)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000429)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000504)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00146)
+  *[4;36;1mJoin Table Columns (0.003030)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002342)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002448)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00004)
+Rendered users/_user_bar (0.00034)
+Rendered shared/_header (0.00068)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00041)
+Rendered shared/_footer (0.00002)
+Completed in 0.07283 (13 reqs/sec) | Rendering: 0.03325 (45%) | DB: 0.01565 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:05:12) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002604)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000246)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.003311)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000898)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000318)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.001058)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00123)
+  *[4;35;1mJoin Table Columns (0.001852)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002545)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002328)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00011)
+Rendered positions/_position_brief (0.00003)
+Rendered users/_user_bar (0.00034)
+Rendered shared/_header (0.00107)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00041)
+Rendered shared/_footer (0.00001)
+Completed in 0.20352 (4 reqs/sec) | Rendering: 0.15689 (77%) | DB: 0.01516 (7%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:06:03) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003734)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000315)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002515)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000323)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000329)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000378)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00098)
+  *[4;36;1mJoin Table Columns (0.002561)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002599)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002667)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00017)
+Rendered positions/_position_brief (0.00003)
+Rendered users/_user_bar (0.00025)
+Rendered shared/_header (0.00057)
+Rendered shared/_toolbar (0.00012)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00001)
+Completed in 0.06494 (15 reqs/sec) | Rendering: 0.02739 (42%) | DB: 0.01542 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing UsersController#show (for 127.0.0.1 at 2008-06-21 03:06:30) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;1&quot;, &quot;controller&quot;=&gt;&quot;users&quot;}
+  *[4;35;1mUser Columns (0.017432)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000319)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+Rendering template within layouts/application
+Rendering users/show
+  *[4;35;1mJoin Table Columns (0.002565)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mPosition Load (0.003769)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `positions_users` ON `positions`.id = `positions_users`.position_id WHERE (`positions_users`.user_id = 1 ) ORDER BY title ASC*[0m
+  *[4;35;1mPosition Columns (0.003315)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered users/_user_bar (0.00048)
+Rendered shared/_header (0.00097)
+Rendered shared/_toolbar (0.00020)
+Rendered shared/_action_bar_wrapper (0.00051)
+Rendered shared/_footer (0.00002)
+Completed in 0.14923 (6 reqs/sec) | Rendering: 0.10908 (73%) | DB: 0.02740 (18%) | 200 OK [http://localhost/users/1]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:06:32) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002895)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000387)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002513)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000339)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000329)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.001057)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00180)
+  *[4;36;1mJoin Table Columns (0.002043)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002398)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002199)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00038)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00047)
+Rendered shared/_header (0.00107)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00050)
+Rendered shared/_footer (0.00002)
+Completed in 0.06458 (15 reqs/sec) | Rendering: 0.02647 (40%) | DB: 0.01416 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:06:49) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003118)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000701)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.001968)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000954)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000355)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000462)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00134)
+  *[4;35;1mJoin Table Columns (0.002664)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002185)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002740)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00019)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00043)
+Rendered shared/_header (0.00106)
+Rendered shared/_toolbar (0.00020)
+Rendered shared/_action_bar_wrapper (0.00071)
+Rendered shared/_footer (0.00002)
+Completed in 0.06665 (15 reqs/sec) | Rendering: 0.03073 (46%) | DB: 0.01515 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:07:29) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002845)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000829)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.001874)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000872)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000240)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000335)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00105)
+  *[4;36;1mJoin Table Columns (0.091332)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.003099)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002263)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00028)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00025)
+Rendered shared/_header (0.00052)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00038)
+Rendered shared/_footer (0.00001)
+Completed in 0.14285 (7 reqs/sec) | Rendering: 0.02185 (15%) | DB: 0.10369 (72%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:07:42) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002283)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000688)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002357)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000330)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000388)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000658)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00144)
+  *[4;35;1mJoin Table Columns (0.001821)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002315)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002374)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00019)
+Rendered positions/_position_brief (0.00003)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00073)
+Rendered shared/_toolbar (0.00014)
+Rendered shared/_action_bar_wrapper (0.00041)
+Rendered shared/_footer (0.00002)
+Completed in 0.05780 (17 reqs/sec) | Rendering: 0.02672 (46%) | DB: 0.01321 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:07:49) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003275)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000429)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002081)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001266)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000305)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000556)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00143)
+  *[4;36;1mJoin Table Columns (0.002297)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002773)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002160)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00028)
+Rendered positions/_position_brief (0.00013)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00032)
+Rendered shared/_action_bar_wrapper (0.00090)
+Rendered shared/_footer (0.00002)
+Completed in 0.06436 (15 reqs/sec) | Rendering: 0.02714 (42%) | DB: 0.01514 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:07:56) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002769)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000392)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002106)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000328)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000316)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000476)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00105)
+  *[4;35;1mJoin Table Columns (0.002854)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002084)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002116)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00022)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00080)
+Rendered shared/_toolbar (0.00019)
+Rendered shared/_action_bar_wrapper (0.00063)
+Rendered shared/_footer (0.00002)
+Completed in 0.14618 (6 reqs/sec) | Rendering: 0.11014 (75%) | DB: 0.01344 (9%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:08:03) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002290)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000803)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002690)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001047)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000209)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000365)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00108)
+  *[4;36;1mJoin Table Columns (0.001550)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001667)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001465)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00011)
+Rendered positions/_position_brief (0.00003)
+Rendered users/_user_bar (0.00026)
+Rendered shared/_header (0.00060)
+Rendered shared/_toolbar (0.00011)
+Rendered shared/_action_bar_wrapper (0.00031)
+Rendered shared/_footer (0.00001)
+Completed in 0.05123 (19 reqs/sec) | Rendering: 0.01735 (33%) | DB: 0.01209 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:08:15) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002754)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000575)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002049)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000303)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000334)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000474)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00134)
+  *[4;35;1mJoin Table Columns (0.002400)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002380)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002560)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00004)
+Rendered users/_user_bar (0.00033)
+Rendered shared/_header (0.00068)
+Rendered shared/_toolbar (0.00021)
+Rendered shared/_action_bar_wrapper (0.00046)
+Rendered shared/_footer (0.00001)
+Completed in 0.15467 (6 reqs/sec) | Rendering: 0.11785 (76%) | DB: 0.01383 (8%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:08:55) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003147)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000362)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002395)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000906)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000305)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000505)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00171)
+  *[4;36;1mJoin Table Columns (0.001864)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.003571)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002764)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00074)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00043)
+Rendered shared/_footer (0.00002)
+Completed in 0.06980 (14 reqs/sec) | Rendering: 0.02854 (40%) | DB: 0.01582 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:09:31) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002538)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001252)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002987)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000993)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000329)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.003935)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00106)
+  *[4;35;1mJoin Table Columns (0.001840)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002559)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002757)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00017)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00079)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00052)
+Rendered shared/_footer (0.00002)
+Completed in 0.15972 (6 reqs/sec) | Rendering: 0.02527 (15%) | DB: 0.01919 (12%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:09:48) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003145)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000326)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002519)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000317)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000296)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000433)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00133)
+  *[4;36;1mJoin Table Columns (0.001632)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002446)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002422)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.05730 (17 reqs/sec) | Rendering: 0.02323 (40%) | DB: 0.01354 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:10:53) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003225)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000344)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002543)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000958)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000318)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000501)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00158)
+  *[4;35;1mJoin Table Columns (0.001938)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.001809)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001890)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.14360 (6 reqs/sec) | Rendering: 0.02542 (17%) | DB: 0.01353 (9%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:11:07) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002686)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000411)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002637)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000341)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000385)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000436)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00098)
+  *[4;36;1mJoin Table Columns (0.001802)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001942)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002350)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00040)
+Rendered shared/_header (0.00122)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00042)
+Rendered shared/_footer (0.00002)
+Completed in 0.05914 (16 reqs/sec) | Rendering: 0.02483 (41%) | DB: 0.01299 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:11:13) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003191)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000297)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002625)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000347)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000547)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000443)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00135)
+  *[4;35;1mJoin Table Columns (0.001828)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002387)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002402)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00033)
+Rendered shared/_header (0.00071)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.06427 (15 reqs/sec) | Rendering: 0.02624 (40%) | DB: 0.01407 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:11:22) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003214)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000361)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002543)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000544)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000329)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000461)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00098)
+  *[4;36;1mJoin Table Columns (0.001938)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002385)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002404)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00037)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.06044 (16 reqs/sec) | Rendering: 0.02486 (41%) | DB: 0.01418 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:11:30) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003132)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000298)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002544)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000445)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000347)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000424)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00136)
+  *[4;35;1mJoin Table Columns (0.002056)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002029)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002411)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.06347 (15 reqs/sec) | Rendering: 0.02727 (42%) | DB: 0.01369 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:11:47) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002773)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000690)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002606)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001596)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000338)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000417)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00127)
+  *[4;36;1mJoin Table Columns (0.001932)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002104)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002257)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00085)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.06606 (15 reqs/sec) | Rendering: 0.02667 (40%) | DB: 0.01471 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:12:38) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.001990)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000406)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.039672)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.020551)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000246)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000325)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+Rendered comments/_form (0.00129)
+  *[4;35;1mJoin Table Columns (0.001866)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002205)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002258)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00026)
+Rendered positions/_position_brief (0.00003)
+Rendered users/_user_bar (0.00026)
+Rendered shared/_header (0.00058)
+Rendered shared/_toolbar (0.00021)
+Rendered shared/_action_bar_wrapper (0.00044)
+Rendered shared/_footer (0.00001)
+Completed in 0.11037 (9 reqs/sec) | Rendering: 0.02260 (20%) | DB: 0.06952 (62%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:14:50) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003018)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000361)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002624)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000324)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000369)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000323)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000419)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.001906)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00589)
+  *[4;36;1mJoin Table Columns (0.001606)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002116)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001906)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+Rendered positions/_position_brief (0.00008)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.09215 (10 reqs/sec) | Rendering: 0.02758 (29%) | DB: 0.01497 (16%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing CommentsController#new (for 127.0.0.1 at 2008-06-21 03:16:22) [POST]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;commit&quot;=&gt;&quot;Save Comment&quot;, &quot;authenticity_token&quot;=&gt;&quot;1c65f5b477db564995596449d796d02cea6e2c21&quot;, &quot;action&quot;=&gt;&quot;new&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;comments&quot;, &quot;comment&quot;=&gt;{&quot;title&quot;=&gt;&quot;&quot;, &quot;vetting_stage_id&quot;=&gt;&quot;1&quot;, &quot;comment&quot;=&gt;&quot;Good cover letter, included resume when asked not to.&quot;}}
+  *[4;35;1mApplicant Columns (0.026573)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.009277)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+
+
+NoMethodError (undefined method `vetting_stage_id=' for #&lt;Comment:0x3954eb4&gt;):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2130:in `initialize'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:16:26) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002980)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000360)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.001574)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.001187)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000356)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000324)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000546)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.002385)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00631)
+  *[4;35;1mJoin Table Columns (0.001992)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002777)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001934)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00046)
+Rendered shared/_footer (0.00002)
+Completed in 0.64942 (1 reqs/sec) | Rendering: 0.04732 (7%) | DB: 0.05226 (8%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:17:20) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.151104)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.206557)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.103457)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.251398)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000368)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000319)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000417)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.336112)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.34039)
+  *[4;36;1mJoin Table Columns (0.001888)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.245759)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.276970)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+Rendered positions/_position_brief (0.00004)
+Rendered users/_user_bar (0.00030)
+Rendered shared/_header (0.00061)
+Rendered shared/_toolbar (0.00013)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 2.44128 (0 reqs/sec) | Rendering: 0.28245 (11%) | DB: 1.57435 (64%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing CommentsController#new (for 127.0.0.1 at 2008-06-21 03:17:29) [POST]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;commit&quot;=&gt;&quot;Save Comment&quot;, &quot;authenticity_token&quot;=&gt;&quot;1c65f5b477db564995596449d796d02cea6e2c21&quot;, &quot;action&quot;=&gt;&quot;new&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;comments&quot;, &quot;comment&quot;=&gt;{&quot;title&quot;=&gt;&quot;asdfasd&quot;, &quot;vetting_stage_id&quot;=&gt;&quot;5&quot;, &quot;comment&quot;=&gt;&quot;sdfasdfasdfsa&quot;}}
+  *[4;35;1mApplicant Columns (0.002263)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000369)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+
+
+NoMethodError (undefined method `vetting_stage_id=' for #&lt;Comment:0x3637c40&gt;):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2130:in `initialize'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:19:29) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.076180)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000354)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002805)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000379)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000365)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000324)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000471)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.001832)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00553)
+  *[4;35;1mJoin Table Columns (0.001972)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002028)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002090)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+Rendered positions/_position_brief (0.00004)
+Rendered users/_user_bar (0.00034)
+Rendered shared/_header (0.00070)
+Rendered shared/_toolbar (0.00014)
+Rendered shared/_action_bar_wrapper (0.00039)
+Rendered shared/_footer (0.00002)
+Completed in 0.87718 (1 reqs/sec) | Rendering: 0.03685 (4%) | DB: 0.09143 (10%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing CommentsController#new (for 127.0.0.1 at 2008-06-21 03:19:39) [POST]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;commit&quot;=&gt;&quot;Save Comment&quot;, &quot;authenticity_token&quot;=&gt;&quot;1c65f5b477db564995596449d796d02cea6e2c21&quot;, &quot;action&quot;=&gt;&quot;new&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;comments&quot;, &quot;comment&quot;=&gt;{&quot;title&quot;=&gt;&quot;zcxcx&quot;, &quot;vetting_stage_id&quot;=&gt;&quot;2&quot;, &quot;comment&quot;=&gt;&quot;vsdfsdf&quot;}}
+  *[4;36;1mApplicant Columns (0.013526)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.013083)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+
+
+NoMethodError (undefined method `vetting_stage_id=' for #&lt;Comment:0x3b97ff0&gt;):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2130:in `initialize'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:19:49) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.043429)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.330606)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (2.576757)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.322671)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000328)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000322)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000418)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.333836)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.33742)
+  *[4;36;1mJoin Table Columns (0.611871)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (1.130127)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.731763)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00037)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00046)
+Rendered shared/_footer (0.00002)
+Completed in 7.48928 (0 reqs/sec) | Rendering: 1.02806 (13%) | DB: 6.10874 (81%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:20:02) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (1.461378)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.146838)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.072177)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.386356)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000298)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000359)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000400)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.025619)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.02931)
+  *[4;35;1mJoin Table Columns (0.618363)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002049)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002739)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00019)
+Rendered positions/_position_brief (0.00004)
+Rendered users/_user_bar (0.00036)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00040)
+Rendered shared/_footer (0.00002)
+Completed in 2.80232 (0 reqs/sec) | Rendering: 0.04953 (1%) | DB: 2.71658 (96%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing CommentsController#new (for 127.0.0.1 at 2008-06-21 03:20:37) [POST]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;commit&quot;=&gt;&quot;Save Comment&quot;, &quot;authenticity_token&quot;=&gt;&quot;1c65f5b477db564995596449d796d02cea6e2c21&quot;, &quot;action&quot;=&gt;&quot;new&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;comments&quot;, &quot;comment&quot;=&gt;{&quot;title&quot;=&gt;&quot;fddfdfdf&quot;, &quot;vetting_stage_id&quot;=&gt;&quot;1&quot;, &quot;comment&quot;=&gt;&quot; cvbefds&quot;}}
+  *[4;36;1mApplicant Columns (0.174407)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001551)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+
+
+NoMethodError (undefined method `vetting_stage_id=' for #&lt;Comment:0x3724978&gt;):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `attributes='
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2130:in `initialize'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /app/controllers/comments_controller.rb:5:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:21:35) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003153)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000446)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002319)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000344)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000346)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000265)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000347)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.002002)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00676)
+  *[4;36;1mJoin Table Columns (0.001781)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002527)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001916)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00020)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00034)
+Rendered shared/_header (0.00067)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00042)
+Rendered shared/_footer (0.00002)
+Completed in 0.14158 (7 reqs/sec) | Rendering: 0.03917 (27%) | DB: 0.19140 (135%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:24:08) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.181001)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000342)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.064016)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000353)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000376)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000340)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000417)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+
+
+ActionView::TemplateError (undefined method `vetting_stage' for #&lt;Comment:0x3601ec4&gt;) on line #42 of applicants/show.html.erb:
+39: 			if comments
+40: 				comments.each do |comment|
+41: 		%&gt;
+42: 					&lt;h4&gt;&lt;%= comment.title %&gt; &lt;%= &quot;for #{comment.vetting_stage.name}&quot; if comment.vetting_stage %&gt; &lt;span class=&quot;default_font right display_date small&quot;&gt;&lt;%= comment.created_at.friendly_date %&gt;&lt;/span&gt;&lt;/h4&gt;
+43: 					&lt;p&gt;&lt;%= comment.comment %&gt;&lt;/p&gt;
+44: 		&lt;% 
+45: 				end
+
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:256:in `method_missing'
+    app/views/applicants/show.html.erb:42:in `_run_erb_47app47views47applicants47show46html46erb'
+    app/views/applicants/show.html.erb:40:in `each'
+    app/views/applicants/show.html.erb:40:in `_run_erb_47app47views47applicants47show46html46erb'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:35:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:22:in `render_template'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:245:in `render_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1108:in `render_for_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:865:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:880:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/layout.rb:251:in `render_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `custom'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:107:in `respond_to'
+    app/controllers/applicants_controller.rb:23:in `show'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:24:41) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mSQL (0.000214)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000152)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mUser Columns (0.308314)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000327)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002292)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000397)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000434)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000260)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000539)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mComment Columns (0.002017)*[0m   *[0mSHOW FIELDS FROM `comments`*[0m
+  *[4;36;1mVettingStage Columns (0.002310)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000303)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_form (0.00433)
+  *[4;36;1mJoin Table Columns (0.001551)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.003017)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002883)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00018)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00060)
+Rendered shared/_header (0.01921)
+Rendered shared/_toolbar (0.00025)
+Rendered shared/_action_bar_wrapper (0.01603)
+Rendered shared/_footer (0.00005)
+Completed in 0.69674 (1 reqs/sec) | Rendering: 0.33879 (48%) | DB: 0.32501 (46%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing CommentsController#new (for 127.0.0.1 at 2008-06-21 03:25:03) [POST]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;commit&quot;=&gt;&quot;Save Comment&quot;, &quot;authenticity_token&quot;=&gt;&quot;1c65f5b477db564995596449d796d02cea6e2c21&quot;, &quot;action&quot;=&gt;&quot;new&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;comments&quot;, &quot;comment&quot;=&gt;{&quot;title&quot;=&gt;&quot;asdfas&quot;, &quot;vetting_stage_id&quot;=&gt;&quot;4&quot;, &quot;comment&quot;=&gt;&quot;zvasdfv asf asf asfsaf asdf asfasdfasdf asf asdf&quot;}}
+  *[4;35;1mApplicant Columns (0.002732)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000344)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mUser Columns (0.001778)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000237)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mSQL (0.000101)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mComment Create (0.000211)*[0m   *[0;1mINSERT INTO `comments` (`commentable_type`, `title`, `commentable_id`, `user_id`, `vetting_stage_id`, `comment`, `created_at`) VALUES('Applicant', 'asdfas', 8, 1, 4, 'zvasdfv asf asf asfsaf asdf asfasdfasdf asf asdf', '2008-06-21 10:25:03')*[0m
+  *[4;35;1mSQL (0.000668)*[0m   *[0mCOMMIT*[0m
+Rendering comments/new
+
+
+ActionView::MissingTemplate (Missing template comments/new.js.erb in view path /Users/chris/Sites/applican/app/views):
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:85:in `raise_missing_template_exception'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:78:in `set_extension_and_file_name'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:15:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:245:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:245:in `render_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1108:in `render_for_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:922:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/layout.rb:259:in `render_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /app/controllers/comments_controller.rb:9:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:25:12) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003188)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000296)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002090)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000320)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000430)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000261)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000403)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.002277)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000449)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000360)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.001896)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00606)
+  *[4;35;1mJoin Table Columns (0.001910)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002442)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002480)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00036)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00046)
+Rendered shared/_footer (0.00002)
+Completed in 0.07736 (12 reqs/sec) | Rendering: 0.02957 (38%) | DB: 0.01880 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:26:11) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002742)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001097)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002235)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000297)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000262)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000361)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000166)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000154)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002142)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00582)
+  *[4;36;1mJoin Table Columns (0.002092)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002245)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002312)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00058)
+Rendered shared/_header (0.00097)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.07600 (13 reqs/sec) | Rendering: 0.02917 (38%) | DB: 0.01640 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:27:44) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003414)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000363)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002792)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000491)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000304)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000272)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000353)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000162)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000153)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.002245)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00630)
+  *[4;35;1mJoin Table Columns (0.002568)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.003550)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001748)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00012)
+Rendered positions/_position_brief (0.00003)
+Rendered users/_user_bar (0.00026)
+Rendered shared/_header (0.00054)
+Rendered shared/_toolbar (0.00012)
+Rendered shared/_action_bar_wrapper (0.00032)
+Rendered shared/_footer (0.00001)
+Completed in 0.07672 (13 reqs/sec) | Rendering: 0.02880 (37%) | DB: 0.01841 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:28:08) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003137)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000348)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002626)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000505)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000312)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000284)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000382)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000187)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000141)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002242)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00628)
+  *[4;36;1mJoin Table Columns (0.002026)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002158)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001933)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.07720 (12 reqs/sec) | Rendering: 0.02878 (37%) | DB: 0.01628 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:29:02) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003263)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000365)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.003012)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.001917)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000319)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000305)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000364)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000162)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000155)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.002491)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00600)
+  *[4;35;1mJoin Table Columns (0.001934)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002400)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002358)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00020)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00040)
+Rendered shared/_header (0.00080)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.07929 (12 reqs/sec) | Rendering: 0.02877 (36%) | DB: 0.01905 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:30:53) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003149)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000313)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.001876)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001473)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000287)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000295)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000440)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000252)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000157)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.001474)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00442)
+  *[4;36;1mJoin Table Columns (0.002062)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002700)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002342)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.07146 (13 reqs/sec) | Rendering: 0.02659 (37%) | DB: 0.01682 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:32:47) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mSQL (0.000152)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000110)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mUser Columns (0.003158)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000313)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002473)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000972)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000306)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000247)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000477)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mComment Columns (0.001667)*[0m   *[0mSHOW FIELDS FROM `comments`*[0m
+  *[4;36;1mVettingStage Columns (0.003389)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000318)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000318)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_form (0.00344)
+  *[4;35;1mJoin Table Columns (0.001608)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002883)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002369)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00266)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00137)
+Rendered shared/_footer (0.00002)
+Completed in 0.13139 (7 reqs/sec) | Rendering: 0.07932 (60%) | DB: 0.02076 (15%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:33:43) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003275)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000409)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002840)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000317)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000447)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000322)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001906)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002429)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002636)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00005)
+  *[4;35;1mComment Load (0.000500)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.002194)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000334)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000326)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002457)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00692)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.08150 (12 reqs/sec) | Rendering: 0.03074 (37%) | DB: 0.02039 (25%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:34:03) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003287)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000323)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002691)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000325)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000440)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000275)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mComment Load (0.000354)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000162)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000152)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002277)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00583)
+  *[4;36;1mJoin Table Columns (0.003329)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002477)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001931)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00049)
+Rendered shared/_footer (0.00002)
+Completed in 0.07500 (13 reqs/sec) | Rendering: 0.02932 (39%) | DB: 0.01802 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:34:31) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003216)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001850)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.004390)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.001522)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000324)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000304)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mComment Load (0.000427)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000246)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000157)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.002286)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00601)
+  *[4;35;1mJoin Table Columns (0.002038)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002777)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002447)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00023)
+Rendered positions/_position_brief (0.00005)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00053)
+Rendered shared/_footer (0.00003)
+Completed in 0.08292 (12 reqs/sec) | Rendering: 0.03093 (37%) | DB: 0.02198 (26%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:34:47) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003046)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000381)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.003189)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000309)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000390)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000280)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001800)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.003205)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002005)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00018)
+Rendered positions/_position_brief (0.00004)
+  *[4;35;1mComment Load (0.000660)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000195)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000171)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.001518)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00430)
+Rendered users/_user_bar (0.00027)
+Rendered shared/_header (0.00052)
+Rendered shared/_toolbar (0.00011)
+Rendered shared/_action_bar_wrapper (0.00033)
+Rendered shared/_footer (0.00001)
+Completed in 0.07236 (13 reqs/sec) | Rendering: 0.02706 (37%) | DB: 0.01715 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:35:14) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003248)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000334)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002903)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000768)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000305)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000278)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001871)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002563)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002395)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00017)
+Rendered positions/_position_brief (0.00006)
+  *[4;36;1mComment Load (0.000570)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000240)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000223)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002386)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00578)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00049)
+Rendered shared/_footer (0.00002)
+Completed in 0.07601 (13 reqs/sec) | Rendering: 0.02805 (36%) | DB: 0.01808 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-21 03:35:46) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.002996)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000367)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000379)*[0m   *[0;1mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;35;1mPosition Columns (0.002514)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.002315)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000362)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.002254)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002545)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mJoin Table Columns (0.001862)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000715)*[0m   *[0mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;36;1mDepartment Load (0.000297)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001585)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002649)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 1 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mJoin Table Columns (0.001552)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000529)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 1 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00050)
+Rendered shared/_header (0.00100)
+Rendered shared/_toolbar (0.00019)
+Rendered shared/_action_bar_wrapper (0.00050)
+Rendered shared/_footer (0.00002)
+Completed in 0.19351 (5 reqs/sec) | Rendering: 0.14759 (76%) | DB: 0.02292 (11%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-21 03:35:54) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002741)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000313)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002348)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000697)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002407)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000524)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000264)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000249)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002058)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000380)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000304)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000299)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000314)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000301)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000292)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.001768)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002158)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mApplicant Columns (0.002574)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00017)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+  *[4;35;1mJoin Table Columns (0.001890)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000701)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.10671 (9 reqs/sec) | Rendering: 0.06400 (59%) | DB: 0.02258 (21%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-21 03:36:05) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003448)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000343)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002542)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000781)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002313)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000366)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000262)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000339)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002411)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000426)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000307)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000337)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000296)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000305)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000193)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.001962)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002580)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mApplicant Columns (0.002676)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00018)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+  *[4;35;1mJoin Table Columns (0.003810)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000705)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00037)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00054)
+Rendered shared/_footer (0.00002)
+Completed in 0.18045 (5 reqs/sec) | Rendering: 0.04763 (26%) | DB: 0.02640 (14%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-21 03:36:39) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002669)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000730)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002041)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.001582)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002270)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000318)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000257)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000309)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002436)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000392)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000306)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000339)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000301)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000288)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.001803)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002841)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mApplicant Columns (0.002369)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00016)
+Rendered positions/_applicant_status (0.00006)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+  *[4;35;1mJoin Table Columns (0.001768)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000638)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.08624 (11 reqs/sec) | Rendering: 0.03755 (43%) | DB: 0.02395 (27%) | 200 OK [http://localhost/positions/2]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:36:42) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.072101)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.050190)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.042905)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.072840)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000292)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000270)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.044231)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.004348)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002352)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+Rendered positions/_position_brief (0.00006)
+  *[4;36;1mComment Load (0.000517)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000235)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000223)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002201)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00632)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.34560 (2 reqs/sec) | Rendering: 0.02545 (7%) | DB: 0.29270 (84%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:36:50) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003284)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000360)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002714)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000392)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000288)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000286)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001789)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002076)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002602)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+  *[4;35;1mComment Load (0.000523)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000236)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000224)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.002434)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00640)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00054)
+Rendered shared/_footer (0.00002)
+Completed in 0.07462 (13 reqs/sec) | Rendering: 0.02867 (38%) | DB: 0.01721 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:37:03) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002716)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000496)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002453)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000305)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000292)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000274)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001832)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.001815)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002685)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+Rendered positions/_position_brief (0.00005)
+  *[4;36;1mComment Load (0.000501)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000241)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000230)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002176)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00509)
+Rendered users/_user_bar (0.00025)
+Rendered shared/_header (0.00050)
+Rendered shared/_toolbar (0.00011)
+Rendered shared/_action_bar_wrapper (0.00030)
+Rendered shared/_footer (0.00001)
+Completed in 0.06580 (15 reqs/sec) | Rendering: 0.02477 (37%) | DB: 0.01602 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:42:07) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003107)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000316)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002660)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000601)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000444)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000346)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.002311)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002694)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001834)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00017)
+Rendered positions/_position_brief (0.00005)
+  *[4;35;1mComment Load (0.000522)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000240)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000224)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.002280)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00639)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00050)
+Rendered shared/_footer (0.00002)
+Completed in 0.16035 (6 reqs/sec) | Rendering: 0.11285 (70%) | DB: 0.01758 (10%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:42:21) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003399)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001251)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002238)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000709)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000410)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000369)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.002151)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002369)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001799)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+Rendered positions/_position_brief (0.00005)
+  *[4;36;1mComment Load (0.000504)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000238)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000263)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.001959)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00589)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00046)
+Rendered shared/_footer (0.00002)
+Completed in 0.07434 (13 reqs/sec) | Rendering: 0.03100 (41%) | DB: 0.01766 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:42:26) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003329)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.002104)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002585)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000459)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000299)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000344)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.002037)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001989)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002437)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+Rendered positions/_position_brief (0.00005)
+  *[4;35;1mComment Load (0.000535)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000238)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000234)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.002498)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00646)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.16198 (6 reqs/sec) | Rendering: 0.03150 (19%) | DB: 0.01909 (11%) | 200 OK [http://localhost/applicants/8]
+  *[4;36;1mSQL (0.000148)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000106)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mSQL (0.000392)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mSQL (0.000423)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000213)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000270)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000141)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000137)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000148)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUsers (20080619071355)
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddAdminToUser (20080619195143)
+  *[4;36;1mSQL (0.000134)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicants (20080619201047)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositions (20080619201215)
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateDepartments (20080619210955)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositionsUsers (20080619224940)
+  *[4;36;1mSQL (0.000134)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to VettingStages (20080620022524)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicantsPositions (20080620071254)
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddEnabledToPosition (20080620083931)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddCoverLetterToApplicant (20080620091324)
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUserNotes (20080620235051)
+  *[4;35;1mSQL (0.000134)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to ActsAsCommentable (20080621083331)
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to DropTableUsernotes (20080621083443)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddVettingStageToComment (20080621095038)
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddTimestampsToApplicantsPositions (20080621104316)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.063415)*[0m   *[0;1mALTER TABLE `applicants_positions` ADD `created_at` datetime*[0m
+  *[4;35;1mSQL (0.060534)*[0m   *[0mALTER TABLE `applicants_positions` ADD `updated_at` datetime*[0m
+  *[4;36;1mSQL (0.001176)*[0m   *[0;1mINSERT INTO schema_migrations (version) VALUES ('20080621104316')*[0m
+  *[4;35;1mSQL (0.000474)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000817)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mSQL (0.002568)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mSQL (0.002645)*[0m   *[0;1mdescribe `applicants`*[0m
+  *[4;35;1mSQL (0.000539)*[0m   *[0mSHOW KEYS FROM `applicants`*[0m
+  *[4;36;1mSQL (0.001947)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mSQL (0.002128)*[0m   *[0mdescribe `applicants_positions`*[0m
+  *[4;36;1mSQL (0.000589)*[0m   *[0;1mSHOW KEYS FROM `applicants_positions`*[0m
+  *[4;35;1mSQL (0.001902)*[0m   *[0mSHOW FIELDS FROM `comments`*[0m
+  *[4;36;1mSQL (0.002719)*[0m   *[0;1mdescribe `comments`*[0m
+  *[4;35;1mSQL (0.000445)*[0m   *[0mSHOW KEYS FROM `comments`*[0m
+  *[4;36;1mSQL (0.002318)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mSQL (0.002023)*[0m   *[0mdescribe `departments`*[0m
+  *[4;36;1mSQL (0.000551)*[0m   *[0;1mSHOW KEYS FROM `departments`*[0m
+  *[4;35;1mSQL (0.002702)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mSQL (0.004155)*[0m   *[0;1mdescribe `positions`*[0m
+  *[4;35;1mSQL (0.000582)*[0m   *[0mSHOW KEYS FROM `positions`*[0m
+  *[4;36;1mSQL (0.001736)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mSQL (0.002310)*[0m   *[0mdescribe `positions_users`*[0m
+  *[4;36;1mSQL (0.000487)*[0m   *[0;1mSHOW KEYS FROM `positions_users`*[0m
+  *[4;35;1mSQL (0.060491)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mSQL (0.002716)*[0m   *[0;1mdescribe `users`*[0m
+  *[4;35;1mSQL (0.000852)*[0m   *[0mSHOW KEYS FROM `users`*[0m
+  *[4;36;1mSQL (0.001843)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mSQL (0.002487)*[0m   *[0mdescribe `vetting_stages`*[0m
+  *[4;36;1mSQL (0.000670)*[0m   *[0;1mSHOW KEYS FROM `vetting_stages`*[0m
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-21 03:46:32) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003057)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000318)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Load (0.000464)*[0m   *[0mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;36;1mPosition Columns (0.002409)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mDepartment Columns (0.002194)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000306)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mJoin Table Columns (0.001747)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.000000)*[0m   *[0;1mMysql::Error: Column 'created_at' in order clause is ambiguous: SELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY created_at DESC*[0m
+
+
+ActionView::TemplateError (Mysql::Error: Column 'created_at' in order clause is ambiguous: SELECT * FROM `applicants`    INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 )  ORDER BY created_at DESC) on line #19 of positions/index.html.erb:
+16: 					&lt;%= truncate( sanitize( position.description ), 128 ) %&gt; &lt;br /&gt;
+17: 					&lt;span class=&quot;display_date&quot;&gt;&lt;%= position.updated_at.friendly_date %&gt;&lt;/span&gt;
+18: 				&lt;/td&gt;
+19: 				&lt;td class=&quot;t c&quot;&gt;&lt;%= position.applicants.length %&gt;&lt;/td&gt;
+20: 				&lt;td class=&quot;t l&quot;&gt;
+21: 					&lt;% position.reviewers.each do |reviewer| %&gt;
+22: 						&lt;div&gt;&lt;%= reviewer.display_name %&gt;&lt;/div&gt;
+
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:515:in `select'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:80:in `cache_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:582:in `find_by_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1341:in `find_every'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:536:in `find'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:47:in `find'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:305:in `find_target'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:259:in `load_target'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:200:in `length'
+    app/views/positions/index.html.erb:19:in `_run_erb_47app47views47positions47index46html46erb'
+    app/views/positions/index.html.erb:8:in `each'
+    app/views/positions/index.html.erb:8:in `_run_erb_47app47views47positions47index46html46erb'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:35:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:22:in `render_template'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:245:in `render_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1108:in `render_for_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:865:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:880:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/layout.rb:251:in `render_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `custom'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:107:in `respond_to'
+    app/controllers/positions_controller.rb:11:in `index'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-21 03:48:29) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002184)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000259)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Load (0.000000)*[0m   *[0mMysql::Error: Unknown column 'position.created_at' in 'order clause': SELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY position.created_at DESC*[0m
+
+
+ActiveRecord::StatementInvalid (Mysql::Error: Unknown column 'position.created_at' in 'order clause': SELECT * FROM `positions`     WHERE (is_closed = 0)  ORDER BY position.created_at DESC):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:515:in `select'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:80:in `cache_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:582:in `find_by_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1341:in `find_every'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:536:in `find'
+    /app/controllers/positions_controller.rb:9:in `index'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-21 03:48:35) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.022034)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.007745)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000474)*[0m   *[0;1mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;35;1mPosition Columns (0.009042)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.013916)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.001126)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.009222)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.000000)*[0m   *[0mMysql::Error: Column 'created_at' in order clause is ambiguous: SELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY created_at DESC*[0m
+
+
+ActionView::TemplateError (Mysql::Error: Column 'created_at' in order clause is ambiguous: SELECT * FROM `applicants`    INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 )  ORDER BY created_at DESC) on line #19 of positions/index.html.erb:
+16: 					&lt;%= truncate( sanitize( position.description ), 128 ) %&gt; &lt;br /&gt;
+17: 					&lt;span class=&quot;display_date&quot;&gt;&lt;%= position.updated_at.friendly_date %&gt;&lt;/span&gt;
+18: 				&lt;/td&gt;
+19: 				&lt;td class=&quot;t c&quot;&gt;&lt;%= position.applicants.length %&gt;&lt;/td&gt;
+20: 				&lt;td class=&quot;t l&quot;&gt;
+21: 					&lt;% position.reviewers.each do |reviewer| %&gt;
+22: 						&lt;div&gt;&lt;%= reviewer.display_name %&gt;&lt;/div&gt;
+
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:515:in `select'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:80:in `cache_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:582:in `find_by_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1341:in `find_every'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:536:in `find'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:47:in `find'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:305:in `find_target'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:259:in `load_target'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:200:in `length'
+    app/views/positions/index.html.erb:19:in `_run_erb_47app47views47positions47index46html46erb'
+    app/views/positions/index.html.erb:8:in `each'
+    app/views/positions/index.html.erb:8:in `_run_erb_47app47views47positions47index46html46erb'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:35:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:22:in `render_template'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:245:in `render_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1108:in `render_for_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:865:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:880:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/layout.rb:251:in `render_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `custom'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:107:in `respond_to'
+    app/controllers/positions_controller.rb:11:in `index'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-21 03:49:13) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.198267)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.124678)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000458)*[0m   *[0;1mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;35;1mPosition Columns (0.247914)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.246178)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.131185)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.205623)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.000000)*[0m   *[0mMysql::Error: Column 'created_at' in order clause is ambiguous: SELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY created_at DESC*[0m
+
+
+ActionView::TemplateError (Mysql::Error: Column 'created_at' in order clause is ambiguous: SELECT * FROM `applicants`    INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 )  ORDER BY created_at DESC) on line #19 of positions/index.html.erb:
+16: 					&lt;%= truncate( sanitize( position.description ), 128 ) %&gt; &lt;br /&gt;
+17: 					&lt;span class=&quot;display_date&quot;&gt;&lt;%= position.updated_at.friendly_date %&gt;&lt;/span&gt;
+18: 				&lt;/td&gt;
+19: 				&lt;td class=&quot;t c&quot;&gt;&lt;%= position.applicants.length %&gt;&lt;/td&gt;
+20: 				&lt;td class=&quot;t l&quot;&gt;
+21: 					&lt;% position.reviewers.each do |reviewer| %&gt;
+22: 						&lt;div&gt;&lt;%= reviewer.display_name %&gt;&lt;/div&gt;
+
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:515:in `select'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:80:in `cache_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:582:in `find_by_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1341:in `find_every'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:536:in `find'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:47:in `find'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:305:in `find_target'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:259:in `load_target'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:200:in `length'
+    app/views/positions/index.html.erb:19:in `_run_erb_47app47views47positions47index46html46erb'
+    app/views/positions/index.html.erb:8:in `each'
+    app/views/positions/index.html.erb:8:in `_run_erb_47app47views47positions47index46html46erb'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:338:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template_handlers/compilable.rb:29:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:35:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/template.rb:22:in `render_template'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:245:in `render_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1108:in `render_for_file'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:865:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:880:in `render_with_no_layout'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/layout.rb:251:in `render_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/core_ext/benchmark.rb:8:in `realtime'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:51:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `custom'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:107:in `respond_to'
+    app/controllers/positions_controller.rb:11:in `index'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-21 03:49:57) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003226)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000324)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000445)*[0m   *[0;1mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;35;1mPosition Columns (0.002474)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.001960)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000565)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.002201)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002199)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC*[0m
+  *[4;36;1mJoin Table Columns (0.001620)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000851)*[0m   *[0mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;36;1mDepartment Load (0.000285)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.002107)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002041)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 1 ) ORDER BY applicants.created_at DESC*[0m
+  *[4;35;1mJoin Table Columns (0.001909)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000678)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 1 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00087)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.07361 (13 reqs/sec) | Rendering: 0.03057 (41%) | DB: 0.85379 (1159%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-21 03:50:01) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003241)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001454)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002685)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000387)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.001887)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.001187)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000262)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000316)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.001840)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000383)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000307)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000316)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000302)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000273)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.001863)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001987)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC*[0m
+  *[4;36;1mJoin Table Columns (0.002293)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000819)*[0m   *[0mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.08178 (12 reqs/sec) | Rendering: 0.03796 (46%) | DB: 0.02210 (27%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#edit (for 127.0.0.1 at 2008-06-21 03:50:04) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;edit&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.002964)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000356)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002769)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000562)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+  *[4;36;1mUser Load (0.000467)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000395)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/edit
+  *[4;36;1mDepartment Columns (0.002125)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.000546)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000285)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000278)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000267)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 5) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000259)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00572)
+  *[4;36;1mApplicant Load (0.000814)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+  *[4;35;1mApplicant Columns (0.001926)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Exists (0.000318)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 4) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000244)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 8) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000228)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 9) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000176)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 3) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000174)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 10) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000175)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 12) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000173)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 14) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000174)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 11) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000172)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 13) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000205)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 7) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000178)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 5) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000175)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 15) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000173)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 6) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+Rendered applicants/_list (0.02645)
+Rendered shared/_set_focus (0.00004)
+Rendered users/_user_bar (0.00042)
+Rendered shared/_header (0.00081)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.22462 (4 reqs/sec) | Rendering: 0.09224 (41%) | DB: 0.01658 (7%) | 200 OK [http://localhost/positions/2/edit]
+
+
+Processing PositionsController#edit (for 127.0.0.1 at 2008-06-21 03:50:17) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;edit&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003126)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000359)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002565)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000457)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+  *[4;35;1mUser Load (0.000470)*[0m   *[0mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;36;1mDepartment Load (0.000534)*[0m   *[0;1mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/edit
+  *[4;35;1mDepartment Columns (0.003551)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mUser Exists (0.000389)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000303)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000279)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000268)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 5) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000539)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = 2 ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00529)
+  *[4;35;1mApplicant Load (0.000791)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+  *[4;36;1mApplicant Columns (0.002843)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Exists (0.000353)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 4) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000273)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 8) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000280)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 9) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000254)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 3) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000253)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 10) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000284)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 12) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000185)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 14) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000175)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 11) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000177)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 13) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000177)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 7) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000174)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 5) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;36;1mApplicant Exists (0.000175)*[0m   *[0;1mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 15) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+  *[4;35;1mApplicant Exists (0.000174)*[0m   *[0mSELECT `applicants`.id FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants`.`id` = 6) AND (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC LIMIT 1*[0m
+Rendered applicants/_list (0.02813)
+Rendered shared/_set_focus (0.00002)
+Rendered users/_user_bar (0.00026)
+Rendered shared/_header (0.00052)
+Rendered shared/_toolbar (0.00012)
+Rendered shared/_action_bar_wrapper (0.00031)
+Rendered shared/_footer (0.00001)
+Completed in 0.08397 (11 reqs/sec) | Rendering: 0.03491 (41%) | DB: 0.01941 (23%) | 200 OK [http://localhost/positions/2/edit]
+
+
+Processing PositionsController#update (for 127.0.0.1 at 2008-06-21 03:50:24) [PUT]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;commit&quot;=&gt;&quot;Update Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;1c65f5b477db564995596449d796d02cea6e2c21&quot;, &quot;_method&quot;=&gt;&quot;put&quot;, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;4&quot;, &quot;1&quot;, &quot;3&quot;], &quot;title&quot;=&gt;&quot;PHP Developer&quot;, &quot;is_closed&quot;=&gt;&quot;0&quot;, &quot;description&quot;=&gt;&quot;Liberal Leader St&#233;phane Dion revealed details of his party's $15.4-billion carbon tax plan Thursday, a proposal he pledged would be revenue neutral by offsetting the higher costs for burning fossil fuels with broad-based tax cuts.\r\n\r\n&#8220;We&#8217;ll cut taxes on those things we all want more of &#8212; income, investment and innovation &#8212; and we will shift those taxes on things we want less of &#8212; pollution, greenhouse gas emission and waste,\&quot; Dion said in a campaign-style speech.&quot;, &quot;department_id&quot;=&gt;&quot;3&quot;, &quot;applicant_ids&quot;=&gt;[&quot;8&quot;, &quot;3&quot;, &quot;14&quot;, &quot;11&quot;]}}
+  *[4;36;1mUser Columns (0.003320)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000413)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002614)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000986)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+  *[4;36;1mUser Load (0.000356)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` IN (4,1,3)) *[0m
+  *[4;35;1mJoin Table Columns (0.001795)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000672)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;35;1mSQL (0.000147)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000123)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mApplicant Columns (0.002461)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000379)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` IN (8,3,14,11)) *[0m
+  *[4;35;1mJoin Table Columns (0.002097)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001785)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC*[0m
+  *[4;35;1mSQL (0.000151)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mapplicants_positions Columns (0.001936)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mSQL (0.000377)*[0m   *[0mINSERT INTO `applicants_positions` (`updated_at`, `applicant_id`, `position_id`, `created_at`) VALUES ('2008-06-20 09:15:33', 3, 2, '2008-06-20 05:53:54')*[0m
+  *[4;36;1mapplicants_positions Columns (0.001946)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mSQL (0.000262)*[0m   *[0mINSERT INTO `applicants_positions` (`updated_at`, `applicant_id`, `position_id`, `created_at`) VALUES ('2008-06-20 06:06:34', 8, 2, '2008-06-20 06:06:34')*[0m
+  *[4;36;1mapplicants_positions Columns (0.001930)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mSQL (0.000208)*[0m   *[0mINSERT INTO `applicants_positions` (`updated_at`, `applicant_id`, `position_id`, `created_at`) VALUES ('2008-06-20 22:41:13', 11, 2, '2008-06-20 22:41:13')*[0m
+  *[4;36;1mapplicants_positions Columns (0.002430)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mSQL (0.000993)*[0m   *[0mINSERT INTO `applicants_positions` (`updated_at`, `applicant_id`, `position_id`, `created_at`) VALUES ('2008-06-20 23:26:26', 14, 2, '2008-06-20 23:26:26')*[0m
+  *[4;36;1mSQL (0.001505)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mSQL (0.000145)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mUser Load (0.000333)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mSQL (0.000137)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/positions/2
+Completed in 0.07570 (13 reqs/sec) | DB: 0.02950 (38%) | 302 Found [http://localhost/positions/2]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-21 03:50:25) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSInUG9zaXRpb24gd2FzIHN1Y2Nl
+c3NmdWxseSB1cGRhdGVkLgY6CkB1c2VkewY7B0Y6DGNzcmZfaWQiJWM1ODE1
+ZjlmNTQ4ODBlMWFjODRkMzUxMDY2MTJhOWRh--5fa0a2867d7c85d2276050c5f33ae57d1dc10286
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.002773)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000357)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002471)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000308)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;36;1mDepartment Columns (0.002267)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000261)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mUser Load (0.000260)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mVettingStage Load (0.000311)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;36;1mVettingStage Columns (0.002399)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000388)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000307)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000297)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000293)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000195)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.002043)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002434)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC*[0m
+  *[4;35;1mApplicant Columns (0.001878)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00017)
+Rendered positions/_applicant_status (0.00004)
+Rendered positions/_applicant_status (0.00004)
+Rendered positions/_applicant_status (0.00004)
+  *[4;36;1mJoin Table Columns (0.001887)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000685)*[0m   *[0mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00018)
+Rendered shared/_action_bar_wrapper (0.00048)
+Rendered shared/_footer (0.00002)
+Completed in 0.09024 (11 reqs/sec) | Rendering: 0.04505 (49%) | DB: 0.02211 (24%) | 200 OK [http://localhost/positions/2]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:52:15) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewY6C25vdGljZSInUG9zaXRpb24gd2FzIHN1Y2Nl
+c3NmdWxseSB1cGRhdGVkLgY6CkB1c2VkewY7B1Q6DGNzcmZfaWQiJWM1ODE1
+ZjlmNTQ4ODBlMWFjODRkMzUxMDY2MTJhOWRh--5ad77e20d7295d767aa820ebaf5c3e6facc6540f
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003454)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000362)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002030)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000337)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000293)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mUser Load (0.000306)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001539)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002005)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.001447)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00017)
+  *[4;35;1mComment Load (0.000360)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;36;1mVettingStage Load (0.000164)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;35;1mVettingStage Load (0.000155)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Columns (0.001950)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00454)
+Rendered users/_user_bar (0.00026)
+Rendered shared/_header (0.00051)
+Rendered shared/_toolbar (0.00010)
+Rendered shared/_action_bar_wrapper (0.00030)
+Rendered shared/_footer (0.00001)
+Completed in 0.06404 (15 reqs/sec) | Rendering: 0.01983 (30%) | DB: 0.01440 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:54:20) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003147)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000302)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.001981)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000310)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000299)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mUser Load (0.000339)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001963)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002116)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002384)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;36;1mComment Load (0.000507)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000248)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000228)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002200)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00642)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.07187 (13 reqs/sec) | Rendering: 0.02875 (39%) | DB: 0.01602 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:55:21) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003112)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000322)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002325)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000344)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000451)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002328)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002501)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002298)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;36;1mComment Load (0.000518)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000239)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000225)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002340)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00628)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00075)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00041)
+Rendered shared/_footer (0.00002)
+Completed in 0.07644 (13 reqs/sec) | Rendering: 0.03089 (40%) | DB: 0.01700 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 03:55:31) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003238)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000325)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002698)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001802)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000438)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002134)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002118)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001915)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00018)
+  *[4;36;1mComment Load (0.000498)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000242)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000227)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002523)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00683)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.07450 (13 reqs/sec) | Rendering: 0.02728 (36%) | DB: 0.01816 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-21 03:56:05) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003177)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000315)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.001995)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000543)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;36;1mDepartment Columns (0.001838)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000490)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mUser Load (0.000270)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mVettingStage Load (0.000308)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;36;1mVettingStage Columns (0.002112)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000398)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000305)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000302)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000297)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000194)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.001844)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002133)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.created_at DESC*[0m
+  *[4;35;1mApplicant Columns (0.002023)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00016)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+  *[4;36;1mJoin Table Columns (0.001724)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000866)*[0m   *[0mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00017)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.08244 (12 reqs/sec) | Rendering: 0.04109 (49%) | DB: 0.02143 (25%) | 200 OK [http://localhost/positions/2]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:04:16) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003346)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000363)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002578)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000922)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000332)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.003125)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002377)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002415)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;36;1mComment Load (0.000531)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000236)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000230)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.003282)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00841)
+Rendered users/_user_bar (0.00041)
+Rendered shared/_header (0.00081)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00043)
+Rendered shared/_footer (0.00002)
+Completed in 0.16357 (6 reqs/sec) | Rendering: 0.03188 (19%) | DB: 0.01974 (12%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:04:17) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003096)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000314)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002506)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000441)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000393)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002013)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.001857)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002306)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000492)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000246)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000230)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002250)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00672)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.06822 (14 reqs/sec) | Rendering: 0.02447 (35%) | DB: 0.01614 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:04:24) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003069)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000314)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002624)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000768)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000309)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002247)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002887)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001950)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000506)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000236)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000260)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002352)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00641)
+Rendered users/_user_bar (0.00035)
+Rendered shared/_header (0.00070)
+Rendered shared/_toolbar (0.00015)
+Rendered shared/_action_bar_wrapper (0.00041)
+Rendered shared/_footer (0.00002)
+Completed in 0.16154 (6 reqs/sec) | Rendering: 0.02898 (17%) | DB: 0.01752 (10%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:04:51) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003137)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000315)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002532)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000575)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000325)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002110)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002020)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002348)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000513)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000235)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000230)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.001949)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00554)
+Rendered users/_user_bar (0.00042)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00014)
+Rendered shared/_action_bar_wrapper (0.00040)
+Rendered shared/_footer (0.00002)
+Completed in 0.07111 (14 reqs/sec) | Rendering: 0.02803 (39%) | DB: 0.01629 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:05:47) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002339)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.002006)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002742)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000371)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000743)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002142)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002590)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002051)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000657)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000265)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000260)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002316)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00667)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00081)
+Rendered shared/_toolbar (0.00016)
+Rendered shared/_action_bar_wrapper (0.00048)
+Rendered shared/_footer (0.00002)
+Completed in 0.07605 (13 reqs/sec) | Rendering: 0.02418 (31%) | DB: 0.01848 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:06:01) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002139)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001814)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.033940)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.038778)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000337)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.001580)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.001988)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.001813)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00012)
+  *[4;36;1mComment Load (0.024627)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000308)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000234)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.001574)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00460)
+Rendered users/_user_bar (0.00028)
+Rendered shared/_header (0.00060)
+Rendered shared/_toolbar (0.00012)
+Rendered shared/_action_bar_wrapper (0.00033)
+Rendered shared/_footer (0.00001)
+Completed in 0.16573 (6 reqs/sec) | Rendering: 0.02067 (12%) | DB: 0.10913 (65%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:07:57) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003353)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001813)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.003378)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001156)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000345)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002313)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002864)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.004289)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000800)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000239)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000347)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.001947)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00607)
+Rendered users/_user_bar (0.00030)
+Rendered shared/_header (0.00060)
+Rendered shared/_toolbar (0.00013)
+Rendered shared/_action_bar_wrapper (0.00048)
+Rendered shared/_footer (0.00002)
+Completed in 0.08003 (12 reqs/sec) | Rendering: 0.02631 (32%) | DB: 0.02284 (28%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:08:12) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002993)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000886)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002499)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001124)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000283)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002052)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002695)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002690)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;36;1mComment Load (0.000518)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000234)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000265)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.002901)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00728)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00029)
+Rendered shared/_action_bar_wrapper (0.00060)
+Rendered shared/_footer (0.00002)
+Completed in 0.06957 (14 reqs/sec) | Rendering: 0.02424 (34%) | DB: 0.01914 (27%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-21 04:08:27) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003402)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000340)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002388)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000655)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000830)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002243)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.003294)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 8 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002595)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000640)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at ASC*[0m
+  *[4;35;1mVettingStage Load (0.000362)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+  *[4;36;1mVettingStage Load (0.000260)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+  *[4;35;1mVettingStage Columns (0.001985)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00507)
+Rendered users/_user_bar (0.00027)
+Rendered shared/_header (0.00056)
+Rendered shared/_toolbar (0.00011)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00001)
+Completed in 0.07366 (13 reqs/sec) | Rendering: 0.02499 (33%) | DB: 0.01899 (25%) | 200 OK [http://localhost/applicants/8]</diff>
      <filename>log/development.log</filename>
    </modified>
    <modified>
      <diff>@@ -116,7 +116,6 @@ form {
 
 
 #form_formatter label {
-	border: 1px solid red;
 	display: 												inline-block;
 	font-weight:											bold;
 	text-align: 											right;
@@ -370,6 +369,10 @@ td.c {
 	text-align:												center;
 }
 
+table.minor_padded td {
+	padding:												2px;
+}
+
 
 #applicant_status_table {
 	margin:													0px 0px 0px 8px;
@@ -409,7 +412,7 @@ ul.unadorned_list li {
 
 .detailed_data {
 	border:													1px solid #eee;
-	margin:													0px 16px 0px 8px;
+	margin:													0px 0px 0px 8px;
 	padding:												8px;
 }
 
@@ -571,13 +574,13 @@ font-size: 10px;
 
 #TB_window a {
 	border:													0px solid red;
-	color: #fff; 
+	color: 													#000; /* #fff; */ 
 	font-weight: bold; 
 	text-decoration: underline;
 }
 
 #TB_window a:hover {
-	color: #fff;
+	color: 													#000; /* #fff; */
 }
 
 
@@ -625,9 +628,10 @@ max-width: 70%;
 
 
 #TB_title{
-  	background-color: 										#008100;
+  	background-color: 										#ffff00; /* #008100; */
 	border:													0px solid red;
-	color: 													#fff;
+	color: 													#000; /* #fff; */
+	font-weight:											bold;
 	margin-bottom: 											15px;
 }
 </diff>
      <filename>public/stylesheets/application.css</filename>
    </modified>
    <modified>
      <diff>@@ -7,6 +7,7 @@ class Comment &lt; ActiveRecord::Base
   
   # NOTE: Comments belong to a user
   belongs_to :user
+  belongs_to :vetting_stage
   
   # Helper class method to lookup all comments assigned
   # to all commentable types for a given user.</diff>
      <filename>vendor/plugins/acts_as_commentable/lib/comment.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0b340ae0af8f8b0af883c38a1c17a4fb3c81711c</id>
    </parent>
  </parents>
  <author>
    <name>Chris</name>
    <email>chris@ChoOyu.local</email>
  </author>
  <url>http://github.com/senorprogrammer/applican/commit/f8da20687189f2c91ca53b5f558885e5563557b2</url>
  <id>f8da20687189f2c91ca53b5f558885e5563557b2</id>
  <committed-date>2008-06-21T04:09:37-07:00</committed-date>
  <authored-date>2008-06-21T04:09:37-07:00</authored-date>
  <message>Lots more towards improving commenting and display of applicant's page. Beginnings of acts_as_slugable</message>
  <tree>e6bfcb8a69cc11dcc620b3fd1f0f7668fde4b32c</tree>
  <committer>
    <name>Chris</name>
    <email>chris@ChoOyu.local</email>
  </committer>
</commit>
