<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>db/migrate/20080621104318_create_undo_records.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,7 @@
 class CommentsController &lt; ApplicationController
+  
+  undoable_methods
+  
   def new
     @applicant = Applicant.find(params[:id])
 
@@ -26,4 +29,9 @@ class CommentsController &lt; ApplicationController
       end
     end
   end
+  
+  
+  def destroy
+    
+  end
 end</diff>
      <filename>app/controllers/comments_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@ class Applicant &lt; ActiveRecord::Base
   
   validates_presence_of :user, :name, :contact_info
   
-  file_column :resume_file, :root_path =&gt; File.join(RAILS_ROOT, &quot;public/system&quot;), :web_root =&gt; 'resumes/'
+  file_column :resume_file, :root_path =&gt; File.join(RAILS_ROOT, &quot;public/system&quot;), :web_root =&gt; 'system/'
   
   acts_as_commentable
   </diff>
      <filename>app/models/applicant.rb</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,13 @@
 				&lt;td class=&quot;t r&quot;&gt;&lt;%= applicant.id %&gt;
 				&lt;td class=&quot;t l&quot;&gt;&lt;%= link_to( sanitize( applicant.name ), applicant_path( applicant ) ) %&gt;&lt;/td&gt;
 				&lt;td class=&quot;t l&quot; width=&quot;50%&quot;&gt;&lt;%= truncate( sanitize( applicant.contact_info ), 128 ) %&gt;&lt;/td&gt;
-				&lt;td class=&quot;t l&quot;&gt;&lt;%= link_to( &quot;resume&quot;, applicant.resume_file ) if applicant.resume_file %&gt;&lt;/td&gt;
+				&lt;td class=&quot;t l&quot;&gt;
+					&lt;%= 
+						# TODO: I immensely dislike this assignment to a global. Is there a better way?
+						@applicant = applicant
+						link_to( &quot;resume&quot;, url_for_file_column( &quot;applicant&quot;, &quot;resume_file&quot;) ) if @applicant.resume_file 
+					%&gt;
+				&lt;/td&gt;
 				
 				&lt;td&gt;&lt;%= link_to( 'View', applicant ) %&gt;&lt;/td&gt;
 				&lt;td&gt;&lt;%= link_to( 'Edit', edit_applicant_path(applicant) ) if current_user.is_admin %&gt;&lt;/td&gt;</diff>
      <filename>app/views/applicants/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,30 +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; DELETE_CONFIRM_MSG + &quot; '#{@applicant.name}'?&quot;, :method =&gt; :delete ) + ' | ' if current_user.is_admin %&gt;
+		&lt;%= link_to( DELETE, @applicant, :confirm =&gt; DELETE_CONFIRM_MSG + &quot; '#{@applicant.name}'?&quot;, :method =&gt; :delete ) if current_user.is_admin %&gt;
 	&lt;/div&gt;
 	
 	&lt;h2 class=&quot;item_title&quot;&gt;&lt;%= image_tag &quot;applicant.png&quot; %&gt; &lt;%= @applicant.id %&gt;: &lt;%= @applicant.name %&gt;&lt;/h2&gt;
 	&lt;div class=&quot;display_date small&quot;&gt;&lt;%= ADDED_ON %&gt; &lt;%= @applicant.created_at.friendly_date %&gt;&lt;/div&gt;
-	
-	&lt;% if @applicant.contact_info %&gt;
-		&lt;div id=&quot;wide_left&quot;&gt;
-			&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= CONTACT_INFO %&gt;&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 class=&quot;tri_column&quot;&gt;
+		&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= CONTACT_INFO %&gt;&lt;/h4&gt;
+		&lt;div class=&quot;general_data&quot;&gt;
+			&lt;%= auto_link( simple_format( parse_data( @applicant.contact_info ) ) ) if @applicant.contact_info %&gt;
 		&lt;/div&gt;
-	&lt;% end %&gt;
+	&lt;/div&gt;
 	
-	&lt;% if @applicant.resume_file %&gt;
-		&lt;div id=&quot;thin_right&quot;&gt;
-			&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= @applicant.first_name.possessive %&gt; &lt;%= RESUME %&gt;&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 class=&quot;tri_column&quot;&gt;
+		&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= @applicant.first_name.possessive %&gt; &lt;%= RESUME %&gt;&lt;/h4&gt;
+		&lt;div class=&quot;general_data&quot;&gt;
+			&lt;%= link_to( @applicant.resume_file_before_type_cast, url_for_file_column( &quot;applicant&quot;, &quot;resume_file&quot;) ) if @applicant.resume_file %&gt;
 		&lt;/div&gt;
-	&lt;% end %&gt;
+	&lt;/div&gt;
 	
+	&lt;div class=&quot;tri_column&quot;&gt;
+		&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= POSITIONS_APPLIED_FOR %&gt;&lt;/h4&gt;
+		&lt;div class=&quot;general_data&quot;&gt;
+			&lt;%= render( :partial =&gt; 'positions/position_brief', :collection =&gt; @applicant.positions )if @applicant.positions.length &gt; 0 %&gt;
+		&lt;/div&gt;
+	&lt;/div&gt;
+
 	&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
 	
 	&lt;% if @applicant.cover_letter %&gt;
@@ -34,11 +37,6 @@
 		&lt;/div&gt;
 	&lt;% end %&gt;
 	
-	&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= POSITIONS_APPLIED_FOR %&gt;&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;
 		&lt;%= COMMENTS_YOURS %&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;</diff>
      <filename>app/views/applicants/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1 @@
-&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;%= link_to( sanitize( position_brief.title ), position_path( position_brief ) ) %&gt;
\ No newline at end of file</diff>
      <filename>app/views/positions/_position_brief.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@
 			&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( '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;/div&gt;
 	
 	&lt;br /&gt;
@@ -19,7 +19,7 @@
 		&lt;% end %&gt;
 		
 		&lt;h4 class=&quot;sub_header&quot;&gt;Description&lt;/h4&gt;
-		&lt;div class=&quot;detailed_data&quot;&gt;
+		&lt;div class=&quot;general_data&quot;&gt;
 			&lt;%= simple_format( @position.description ) %&gt;
 		&lt;/div&gt;
 		</diff>
      <filename>app/views/positions/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -72777,3 +72777,1552 @@ Rendered shared/_toolbar (0.00006)
 Rendered shared/_action_bar_wrapper (0.00041)
 Rendered shared/_footer (0.00002)
 Completed in 0.38990 (2 reqs/sec) | Rendering: 0.04190 (10%) | DB: 0.01580 (4%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:15: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.003206)*[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;1mApplicant Columns (0.001983)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000323)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000377)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002232)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002217)*[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.002026)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00020)
+  *[4;35;1mComment Load (0.000514)*[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.000268)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00086)
+  *[4;35;1mVettingStage Load (0.000217)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00067)
+Rendered comments/_comment (0.00030)
+Rendered comments/_comment (0.00026)
+Rendered comments/_comment (0.00026)
+  *[4;36;1mVettingStage Columns (0.001584)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00406)
+Rendered users/_user_bar (0.00025)
+Rendered shared/_header (0.00051)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00001)
+Completed in 0.18533 (5 reqs/sec) | Rendering: 0.04948 (26%) | DB: 0.01531 (8%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:16:06) [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.003251)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000362)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.003149)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.001022)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000334)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002188)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002903)*[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.002255)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00026)
+  *[4;35;1mComment Load (0.000618)*[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.000249)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00089)
+  *[4;35;1mVettingStage Load (0.000231)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00076)
+Rendered comments/_comment (0.00046)
+Rendered comments/_comment (0.00042)
+Rendered comments/_comment (0.00041)
+  *[4;36;1mVettingStage Columns (0.002355)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00652)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.16636 (6 reqs/sec) | Rendering: 0.02965 (17%) | DB: 0.01892 (11%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:16: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.003273)*[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;1mApplicant Columns (0.002742)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000345)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000287)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.001975)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002054)*[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.002502)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000582)*[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.000243)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00086)
+  *[4;35;1mVettingStage Load (0.000226)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00075)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002314)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00637)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07588 (13 reqs/sec) | Rendering: 0.02925 (38%) | DB: 0.01690 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:17:36) [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.003415)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000312)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002420)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000311)*[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;1mJoin Table Columns (0.002242)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002231)*[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.002194)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00017)
+  *[4;35;1mComment Load (0.001412)*[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.000298)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00116)
+  *[4;35;1mVettingStage Load (0.000229)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00075)
+Rendered comments/_comment (0.00053)
+Rendered comments/_comment (0.00041)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002571)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00785)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07716 (12 reqs/sec) | Rendering: 0.03014 (39%) | DB: 0.01793 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:17:40) [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.003134)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000338)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.001762)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000918)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000401)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.001986)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002282)*[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.002288)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000599)*[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.000244)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00087)
+  *[4;35;1mVettingStage Load (0.000227)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00074)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002216)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00657)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07095 (14 reqs/sec) | Rendering: 0.02689 (37%) | DB: 0.01640 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:18: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.003206)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000337)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002889)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000651)*[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;1mJoin Table Columns (0.002124)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002142)*[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.002339)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000611)*[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
+Rendered comments/_comment (0.00087)
+  *[4;35;1mVettingStage Load (0.000227)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00074)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002330)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00719)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00079)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07348 (13 reqs/sec) | Rendering: 0.02812 (38%) | DB: 0.01740 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:18:36) [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.003266)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000333)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002710)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000641)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000463)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002636)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002405)*[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.002319)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000597)*[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.000376)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00114)
+  *[4;35;1mVettingStage Load (0.000264)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00082)
+Rendered comments/_comment (0.00047)
+Rendered comments/_comment (0.00042)
+Rendered comments/_comment (0.00045)
+  *[4;36;1mVettingStage Columns (0.002249)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00639)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00081)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.16138 (6 reqs/sec) | Rendering: 0.02891 (17%) | DB: 0.01826 (11%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:18: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;35;1mUser Columns (0.003347)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000384)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.001777)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000970)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000290)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002156)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002476)*[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.001909)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;35;1mComment Load (0.000606)*[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.000248)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00088)
+  *[4;35;1mVettingStage Load (0.000228)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00074)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00041)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002413)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00637)
+Rendered users/_user_bar (0.00040)
+Rendered shared/_header (0.00081)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.07301 (13 reqs/sec) | Rendering: 0.02791 (38%) | DB: 0.01680 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:19: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.003153)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000314)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002551)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000514)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000336)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.001950)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002212)*[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.002395)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000718)*[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.000245)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00093)
+  *[4;35;1mVettingStage Load (0.000242)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00080)
+Rendered comments/_comment (0.00130)
+Rendered comments/_comment (0.00038)
+Rendered comments/_comment (0.00035)
+  *[4;36;1mVettingStage Columns (0.002322)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00665)
+Rendered users/_user_bar (0.00034)
+Rendered shared/_header (0.00068)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00030)
+Rendered shared/_footer (0.00002)
+Completed in 0.07774 (12 reqs/sec) | Rendering: 0.03054 (39%) | DB: 0.01695 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:19:36) [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.003269)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000335)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002575)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000345)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000350)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002154)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002561)*[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.002403)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+  *[4;35;1mComment Load (0.000565)*[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
+Rendered comments/_comment (0.00086)
+  *[4;35;1mVettingStage Load (0.000227)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00073)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00041)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002288)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00635)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07576 (13 reqs/sec) | Rendering: 0.02909 (38%) | DB: 0.01731 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:19: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;35;1mUser Columns (0.003187)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000314)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002870)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000548)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000284)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002074)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002490)*[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.002817)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000591)*[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.000241)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00086)
+  *[4;35;1mVettingStage Load (0.000224)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00087)
+Rendered comments/_comment (0.00095)
+Rendered comments/_comment (0.00042)
+Rendered comments/_comment (0.00039)
+  *[4;36;1mVettingStage Columns (0.002294)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00645)
+Rendered users/_user_bar (0.00035)
+Rendered shared/_header (0.00069)
+Rendered shared/_toolbar (0.00013)
+Rendered shared/_action_bar_wrapper (0.00040)
+Rendered shared/_footer (0.00002)
+Completed in 0.07610 (13 reqs/sec) | Rendering: 0.03057 (40%) | DB: 0.01793 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:21: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;35;1mUser Columns (0.003102)*[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.002755)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000329)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000428)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mSQL (0.019214)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mPosition Columns (0.002763)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+
+
+ActionView::TemplateError (undefined method `many?' for #&lt;Class:0x3b9f8a4&gt;) on line #22 of applicants/show.html.erb:
+19: 	&lt;div class=&quot;tri_column&quot;&gt;
+20: 		&lt;h4 class=&quot;sub_header&quot;&gt;&lt;%= POSITIONS_APPLIED_FOR %&gt;&lt;/h4&gt;
+21: 		&lt;div class=&quot;general_data&quot;&gt;
+22: 			&lt;% if @applicant.positions.many? %&gt;
+23: 				&lt;%= render( :partial =&gt; 'positions/position_brief', :collection =&gt; @applicant.positions ) %&gt;
+24: 			&lt;% end %&gt;
+25: 		&lt;/div&gt;
+
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1667:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:285:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:285:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1852:in `with_scope'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_proxy.rb:168:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_proxy.rb:168:in `with_scope'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:281:in `method_missing'
+    app/views/applicants/show.html.erb:22: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-22 03:23:33) [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.003252)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000353)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002594)*[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.000303)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002024)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002800)*[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.001884)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000579)*[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
+Rendered comments/_comment (0.00086)
+  *[4;36;1mVettingStage Load (0.000239)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00082)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00040)
+  *[4;35;1mVettingStage Columns (0.002224)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00620)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.17417 (5 reqs/sec) | Rendering: 0.03075 (17%) | DB: 0.03886 (22%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 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;1mUser Columns (0.003246)*[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.002835)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000372)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000356)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002085)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002053)*[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.001815)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+  *[4;36;1mComment Load (0.000563)*[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.000247)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00087)
+  *[4;36;1mVettingStage Load (0.000229)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00074)
+Rendered comments/_comment (0.00047)
+Rendered comments/_comment (0.00043)
+Rendered comments/_comment (0.00075)
+  *[4;35;1mVettingStage Columns (0.002301)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00654)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.07761 (12 reqs/sec) | Rendering: 0.03011 (38%) | DB: 0.01642 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:25: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.003223)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001775)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002544)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000376)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000660)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002215)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002238)*[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.002292)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;36;1mComment Load (0.000575)*[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.000329)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00099)
+  *[4;36;1mVettingStage Load (0.000423)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00121)
+Rendered comments/_comment (0.00047)
+Rendered comments/_comment (0.00041)
+Rendered comments/_comment (0.00035)
+  *[4;35;1mVettingStage Columns (0.002263)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00666)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.07787 (12 reqs/sec) | Rendering: 0.02956 (37%) | DB: 0.01891 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:26: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.003002)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000305)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002390)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000416)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000351)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002673)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002710)*[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.002057)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;36;1mComment Load (0.000594)*[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
+Rendered comments/_comment (0.00088)
+  *[4;36;1mVettingStage Load (0.000237)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00076)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00041)
+Rendered comments/_comment (0.00046)
+  *[4;35;1mVettingStage Columns (0.002395)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00687)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00091)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00042)
+Rendered shared/_footer (0.00002)
+Completed in 0.15842 (6 reqs/sec) | Rendering: 0.11423 (72%) | DB: 0.01736 (10%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:27:10) [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.003401)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000359)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002219)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000303)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000327)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002027)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002800)*[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.002560)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+  *[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.000243)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00086)
+  *[4;36;1mVettingStage Load (0.000199)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00072)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00047)
+  *[4;35;1mVettingStage Columns (0.002467)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00666)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00086)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.08020 (12 reqs/sec) | Rendering: 0.03184 (39%) | DB: 0.01747 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:27: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;36;1mUser Columns (0.004142)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000331)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002607)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001220)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000321)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.001883)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.003086)*[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.002466)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;36;1mComment Load (0.000606)*[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.000294)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00093)
+  *[4;36;1mVettingStage Load (0.000232)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00077)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00041)
+  *[4;35;1mVettingStage Columns (0.002606)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00655)
+Rendered users/_user_bar (0.00040)
+Rendered shared/_header (0.00085)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.16772 (5 reqs/sec) | Rendering: 0.03029 (18%) | DB: 0.01979 (11%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 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;36;1mUser Columns (0.003651)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000379)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.003088)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000594)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;36;1mVettingStage Load (0.000316)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002041)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002782)*[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.001844)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00016)
+  *[4;36;1mComment Load (0.000609)*[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
+Rendered comments/_comment (0.00087)
+  *[4;36;1mVettingStage Load (0.000225)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00080)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00043)
+Rendered comments/_comment (0.00040)
+  *[4;35;1mVettingStage Columns (0.002335)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00626)
+Rendered users/_user_bar (0.00040)
+Rendered shared/_header (0.00086)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07749 (12 reqs/sec) | Rendering: 0.02996 (38%) | DB: 0.01811 (23%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-22 03:32:45) [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.002318)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000255)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000388)*[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.002521)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.001885)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000540)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.002510)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.003217)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;36;1mJoin Table Columns (0.001814)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.001570)*[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.000300)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001469)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002455)*[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.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001792)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000769)*[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.00040)
+Rendered shared/_header (0.00091)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00039)
+Rendered shared/_footer (0.00006)
+Completed in 0.11753 (8 reqs/sec) | Rendering: 0.07312 (62%) | DB: 0.02380 (20%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-22 03:32:46) [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.002321)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000948)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002277)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000382)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.001703)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.001087)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000287)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000235)*[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.000485)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000722)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000388)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000557)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000321)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000346)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.003104)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.003391)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;36;1mApplicant Columns (0.001943)*[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.00010)
+  *[4;35;1mJoin Table Columns (0.001672)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000975)*[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.00039)
+Rendered shared/_header (0.00079)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.18560 (5 reqs/sec) | Rendering: 0.14081 (75%) | DB: 0.02555 (13%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-22 03:32:58) [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.115669)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000393)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.001611)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.001039)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.001778)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000838)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000193)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000253)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.001532)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000329)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000211)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 2) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000202)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000202)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000200)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000192)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.001543)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002886)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;36;1mApplicant Columns (0.002390)*[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)
+  *[4;35;1mJoin Table Columns (0.002499)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.001475)*[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.00062)
+Rendered shared/_header (0.00109)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.19544 (5 reqs/sec) | Rendering: 0.03861 (19%) | DB: 0.13544 (69%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-22 03:33:24) [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.003034)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000472)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002768)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.001158)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002061)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000989)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000222)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000279)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002317)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000411)*[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.000303)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 4) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000299)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 5) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000300)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 6) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000194)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 7) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.002067)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.003877)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;36;1mApplicant Columns (0.002648)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00024)
+Rendered positions/_applicant_status (0.00006)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+  *[4;35;1mJoin Table Columns (0.002232)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000640)*[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.00072)
+Rendered shared/_header (0.00136)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00045)
+Rendered shared/_footer (0.00002)
+Completed in 0.19666 (5 reqs/sec) | Rendering: 0.04930 (25%) | DB: 0.02658 (13%) | 200 OK [http://localhost/positions/2]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-22 03:34:09) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&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.000300)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000614)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002329)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.10296 (9 reqs/sec) | Rendering: 0.07576 (73%) | DB: 0.00639 (6%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:34:10) [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.003083)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000319)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002775)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000386)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000419)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002359)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.003365)*[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.002365)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000583)*[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.000420)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00139)
+  *[4;35;1mVettingStage Load (0.000366)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00099)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00065)
+  *[4;36;1mVettingStage Columns (0.002723)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00685)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00079)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00005)
+Completed in 0.08737 (11 reqs/sec) | Rendering: 0.03677 (42%) | DB: 0.01916 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:35: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;35;1mUser Columns (0.003440)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000316)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002502)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000376)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000313)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002408)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.003532)*[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.002276)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00030)
+  *[4;35;1mComment Load (0.000711)*[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.000302)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00126)
+  *[4;35;1mVettingStage Load (0.000236)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00088)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00064)
+  *[4;36;1mVettingStage Columns (0.001793)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00604)
+Rendered users/_user_bar (0.00034)
+Rendered shared/_header (0.00069)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00030)
+Rendered shared/_footer (0.00002)
+Completed in 0.08401 (11 reqs/sec) | Rendering: 0.03704 (44%) | DB: 0.01820 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:36: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.003123)*[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.002202)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000367)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000511)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.001608)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002552)*[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.001902)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000563)*[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.000253)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00089)
+  *[4;35;1mVettingStage Load (0.000265)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00078)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.001903)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00566)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07720 (12 reqs/sec) | Rendering: 0.03092 (40%) | DB: 0.01557 (20%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:37: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.003249)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000371)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002628)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000314)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000291)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002269)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002474)*[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.002367)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+  *[4;35;1mComment Load (0.000510)*[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.000383)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00108)
+  *[4;35;1mVettingStage Load (0.000213)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00066)
+Rendered comments/_comment (0.00039)
+Rendered comments/_comment (0.00035)
+Rendered comments/_comment (0.00042)
+  *[4;36;1mVettingStage Columns (0.002285)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00618)
+Rendered users/_user_bar (0.00042)
+Rendered shared/_header (0.00089)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00003)
+Completed in 0.08254 (12 reqs/sec) | Rendering: 0.03344 (40%) | DB: 0.01735 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:37: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.003167)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000316)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002658)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000668)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000385)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002083)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001980)*[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.002256)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00018)
+  *[4;35;1mComment Load (0.000616)*[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.000241)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00087)
+  *[4;35;1mVettingStage Load (0.000226)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00074)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002305)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00627)
+Rendered users/_user_bar (0.00039)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.07956 (12 reqs/sec) | Rendering: 0.03181 (39%) | DB: 0.01690 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicationController#index (for 127.0.0.1 at 2008-06-22 03:37:32) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {}
+
+
+ActionController::RoutingError (No route matches &quot;/resumes/applicant/resume_file/8/TermsUse.DOC&quot; with {:method=&gt;:get}):
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/routing/recognition_optimisation.rb:67:in `recognize_path'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/routing/route_set.rb:384:in `recognize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:148: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 (not_found)
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:37:36) [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.003361)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001889)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002718)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000370)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000344)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002090)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002177)*[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.002267)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00018)
+  *[4;35;1mComment Load (0.000573)*[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.000383)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00108)
+  *[4;35;1mVettingStage Load (0.000241)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00084)
+Rendered comments/_comment (0.00051)
+Rendered comments/_comment (0.00041)
+Rendered comments/_comment (0.00045)
+  *[4;36;1mVettingStage Columns (0.002451)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00685)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.07849 (12 reqs/sec) | Rendering: 0.02958 (37%) | DB: 0.01886 (24%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:37:58) [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.003037)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000358)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002416)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000326)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000307)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002045)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002436)*[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.002115)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00018)
+  *[4;35;1mComment Load (0.001240)*[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.000814)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00149)
+  *[4;35;1mVettingStage Load (0.000214)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00077)
+Rendered comments/_comment (0.00045)
+Rendered comments/_comment (0.00033)
+Rendered comments/_comment (0.00032)
+  *[4;36;1mVettingStage Columns (0.002170)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00609)
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00081)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.08076 (12 reqs/sec) | Rendering: 0.03263 (40%) | DB: 0.01748 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:39:00) [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.003101)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000336)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002524)*[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.000338)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002249)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001825)*[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.001984)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000704)*[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.000328)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00101)
+  *[4;35;1mVettingStage Load (0.000234)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00074)
+Rendered comments/_comment (0.00047)
+Rendered comments/_comment (0.00040)
+Rendered comments/_comment (0.00040)
+  *[4;36;1mVettingStage Columns (0.002414)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00676)
+Rendered users/_user_bar (0.00042)
+Rendered shared/_header (0.00090)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07694 (12 reqs/sec) | Rendering: 0.03021 (39%) | DB: 0.01634 (21%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:39:06) [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.017220)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.002377)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.021698)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.001308)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000306)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.031198)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.224304)*[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.032396)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.024913)*[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.000285)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.00100)
+  *[4;35;1mVettingStage Load (0.000237)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00077)
+Rendered comments/_comment (0.00047)
+Rendered comments/_comment (0.00044)
+Rendered comments/_comment (0.00042)
+  *[4;36;1mVettingStage Columns (0.002611)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00666)
+Rendered users/_user_bar (0.00041)
+Rendered shared/_header (0.00083)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.49938 (2 reqs/sec) | Rendering: 0.02593 (5%) | DB: 0.35885 (71%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-22 03:39:25) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003092)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000685)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000758)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002584)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered users/_user_bar (0.00051)
+Rendered shared/_header (0.00095)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.04188 (23 reqs/sec) | Rendering: 0.01278 (30%) | DB: 0.00712 (16%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-22 03:40:09) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003075)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000418)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000574)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002360)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+
+
+ActionView::TemplateError (You have a nil object when you didn't expect it!
+The error occurred while evaluating nil.resume_file_relative_path) on line #13 of applicants/index.html.erb:
+10: 				&lt;td class=&quot;t r&quot;&gt;&lt;%= applicant.id %&gt;
+11: 				&lt;td class=&quot;t l&quot;&gt;&lt;%= link_to( sanitize( applicant.name ), applicant_path( applicant ) ) %&gt;&lt;/td&gt;
+12: 				&lt;td class=&quot;t l&quot; width=&quot;50%&quot;&gt;&lt;%= truncate( sanitize( applicant.contact_info ), 128 ) %&gt;&lt;/td&gt;
+13: 				&lt;td class=&quot;t l&quot;&gt;&lt;%= link_to( applicant.resume_file_before_type_cast, url_for_file_column( &quot;applicant&quot;, &quot;resume_file&quot;) ) if applicant.resume_file %&gt;&lt;/td&gt;
+14: 				
+15: 				&lt;td&gt;&lt;%= link_to( 'View', applicant ) %&gt;&lt;/td&gt;
+16: 				&lt;td&gt;&lt;%= link_to( 'Edit', edit_applicant_path(applicant) ) if current_user.is_admin %&gt;&lt;/td&gt;
+
+    vendor/plugins/file_column/lib/file_column_helper.rb:75:in `send'
+    vendor/plugins/file_column/lib/file_column_helper.rb:75:in `url_for_file_column'
+    app/views/applicants/index.html.erb:13:in `_run_erb_47app47views47applicants47index46html46erb'
+    app/views/applicants/index.html.erb:8:in `each'
+    app/views/applicants/index.html.erb:8:in `_run_erb_47app47views47applicants47index46html46erb'
+    /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: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 ApplicantsController#index (for 127.0.0.1 at 2008-06-22 03:41:15) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003142)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000320)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000686)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.001971)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered users/_user_bar (0.00033)
+Rendered shared/_header (0.00071)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00031)
+Rendered shared/_footer (0.00002)
+Completed in 0.04111 (24 reqs/sec) | Rendering: 0.01360 (33%) | DB: 0.00848 (20%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-22 03:43:24) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003146)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000320)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000693)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.001886)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered users/_user_bar (0.00038)
+Rendered shared/_header (0.00079)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.04260 (23 reqs/sec) | Rendering: 0.01438 (33%) | DB: 0.00605 (14%) | 200 OK [http://localhost/applicants]
+  *[4;36;1mSQL (0.000218)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000143)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mSQL (0.000529)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mSQL (0.000309)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000154)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000142)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000139)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000138)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000136)*[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.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000139)*[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.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.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUsers (20080619071355)
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddAdminToUser (20080619195143)
+  *[4;35;1mSQL (0.000137)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicants (20080619201047)
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositions (20080619201215)
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateDepartments (20080619210955)
+  *[4;36;1mSQL (0.000134)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositionsUsers (20080619224940)
+  *[4;35;1mSQL (0.000135)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to VettingStages (20080620022524)
+  *[4;36;1mSQL (0.000135)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicantsPositions (20080620071254)
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddEnabledToPosition (20080620083931)
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddCoverLetterToApplicant (20080620091324)
+  *[4;35;1mSQL (0.000135)*[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.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to DropTableUsernotes (20080621083443)
+  *[4;36;1mSQL (0.000143)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddVettingStageToComment (20080621095038)
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddTimestampsToApplicantsPositions (20080621104316)
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUndoRecords (20080621104318)
+  *[4;35;1mSQL (0.000136)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.038558)*[0m   *[0;1mCREATE TABLE `undo_records` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `operation` int(11) DEFAULT NULL NULL, `undoable_type` varchar(100) DEFAULT NULL NULL, `undoable_id` int(11) DEFAULT NULL NULL, `revision` int(11) DEFAULT NULL NULL, `data` blob(5242880) DEFAULT NULL NULL, `undo_action_id` int(11) NOT NULL, `created_at` datetime DEFAULT NULL NULL, `updated_at` datetime DEFAULT NULL NULL) ENGINE=InnoDB*[0m
+  *[4;35;1mSQL (0.032026)*[0m   *[0mCREATE UNIQUE INDEX `undoable` ON `undo_records` (`undoable_type`, `undoable_id`, `revision`)*[0m
+  *[4;36;1mSQL (0.002944)*[0m   *[0;1mCREATE TABLE `undo_actions` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `description` varchar(100) DEFAULT NULL NULL, `undo_redirect` varchar(100) DEFAULT NULL NULL, `redo_redirect` varchar(100) DEFAULT NULL NULL, `undo_manager_id` int(11) NOT NULL) ENGINE=InnoDB*[0m
+  *[4;35;1mSQL (0.002608)*[0m   *[0mCREATE TABLE `undo_managers` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `current_action_id` int(11) DEFAULT NULL NULL) ENGINE=InnoDB*[0m
+  *[4;36;1mSQL (0.000701)*[0m   *[0;1mINSERT INTO schema_migrations (version) VALUES ('20080621104318')*[0m
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-22 03:49:46) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mSQL (0.000185)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000110)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mUser Columns (0.003100)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000395)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000742)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.002668)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered users/_user_bar (0.00056)
+Rendered shared/_header (0.02006)
+Rendered shared/_toolbar (0.00007)
+Rendered shared/_action_bar_wrapper (0.01485)
+Rendered shared/_footer (0.00005)
+Completed in 0.17692 (5 reqs/sec) | Rendering: 0.14362 (81%) | DB: 0.00720 (4%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-22 03:49:49) [GET]
+  Session ID: BAh7CDoMdXNlcl9pZGkGIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpG
+bGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOgxjc3JmX2lkIiVjNTgxNWY5
+ZjU0ODgwZTFhYzg0ZDM1MTA2NjEyYTlkYQ==--ca0d51c524b3353148fbf7185785fb00af78e7ff
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.030060)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.070707)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000753)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.092326)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered users/_user_bar (0.00033)
+Rendered shared/_header (0.00068)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00038)
+Rendered shared/_footer (0.00002)
+Completed in 0.22784 (4 reqs/sec) | Rendering: 0.01193 (5%) | DB: 0.19385 (85%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-22 03:49:52) [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.003264)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000345)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002338)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000375)*[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;1mJoin Table Columns (0.002352)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002429)*[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.001815)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00017)
+  *[4;36;1mComment Load (0.000534)*[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.002770)*[0m   *[0mSHOW FIELDS FROM `comments`*[0m
+  *[4;36;1mVettingStage Columns (0.001727)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000555)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 2) *[0m
+Rendered comments/_comment (0.01102)
+  *[4;36;1mVettingStage Load (0.000290)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00086)
+Rendered comments/_comment (0.00048)
+Rendered comments/_comment (0.00041)
+Rendered comments/_comment (0.00040)
+Rendered comments/_form (0.00392)
+Rendered users/_user_bar (0.00040)
+Rendered shared/_header (0.00079)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.35626 (2 reqs/sec) | Rendering: 0.30678 (86%) | DB: 0.01914 (5%) | 200 OK [http://localhost/applicants/8]</diff>
      <filename>log/development.log</filename>
    </modified>
    <modified>
      <diff>@@ -269,8 +269,9 @@ ul#toolbar li a.admin {
 
 
 .tri_column {
+	border:	0px solid red;
 	float:													left;
-	width:													32%;
+	width:													33%;
 }
 
 </diff>
      <filename>public/stylesheets/application.css</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,8 @@
 class Comment &lt; ActiveRecord::Base
   belongs_to :commentable, :polymorphic =&gt; true
   
+  acts_as_undoable
+  
   # NOTE: install the acts_as_votable plugin if you 
   # want user to vote on the quality of comments.
   #acts_as_voteable</diff>
      <filename>vendor/plugins/acts_as_commentable/lib/comment.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>bf3345afd5f130bc7024884bbae4b0f99d2381a0</id>
    </parent>
  </parents>
  <author>
    <name>Chris</name>
    <email>chris@ChoOyu.local</email>
  </author>
  <url>http://github.com/senorprogrammer/applican/commit/41c84f82a461199f3eec74820afa9891c013bb74</url>
  <id>41c84f82a461199f3eec74820afa9891c013bb74</id>
  <committed-date>2008-06-22T03:59:02-07:00</committed-date>
  <authored-date>2008-06-22T03:59:02-07:00</authored-date>
  <message>Some cosmetic work and more progress on rur</message>
  <tree>23dde1953ef67c9fb494305fe5736252591e23b3</tree>
  <committer>
    <name>Chris</name>
    <email>chris@ChoOyu.local</email>
  </committer>
</commit>
