<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/controllers/hiring_stages_controller.rb</filename>
    </added>
    <added>
      <filename>app/helpers/hiring_stages_helper.rb</filename>
    </added>
    <added>
      <filename>app/models/hiring_stage.rb</filename>
    </added>
    <added>
      <filename>app/views/hiring_stages/edit.html.erb</filename>
    </added>
    <added>
      <filename>app/views/hiring_stages/index.html.erb</filename>
    </added>
    <added>
      <filename>app/views/hiring_stages/new.html.erb</filename>
    </added>
    <added>
      <filename>app/views/hiring_stages/show.html.erb</filename>
    </added>
    <added>
      <filename>app/views/layouts/hiring_stages.html.erb</filename>
    </added>
    <added>
      <filename>db/migrate/20080624152323_create_hiring_stages.rb</filename>
    </added>
    <added>
      <filename>test/fixtures/hiring_stages.yml</filename>
    </added>
    <added>
      <filename>test/functional/hiring_stages_controller_test.rb</filename>
    </added>
    <added>
      <filename>test/unit/hiring_stage_test.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -2,9 +2,7 @@ class ApplicantsController &lt; ApplicationController
   before_filter :login_check
   before_filter :admin_check, :only =&gt; [:new, :create, :edit, :update]
     
-    
-  # GET /applicants
-  # GET /applicants.xml
+
   def index
     @applicants = Applicant.find( :all, :order =&gt; 'applicants.name ASC' )
 
@@ -14,8 +12,7 @@ class ApplicantsController &lt; ApplicationController
     end
   end
 
-  # GET /applicants/1
-  # GET /applicants/1.xml
+
   def show
     @applicant = Applicant.find(params[:id])
     @vetting_stages = VettingStage.find( :all )
@@ -26,8 +23,7 @@ class ApplicantsController &lt; ApplicationController
     end
   end
 
-  # GET /applicants/new
-  # GET /applicants/new.xml
+
   def new
     @applicant = Applicant.new
     
@@ -43,25 +39,23 @@ class ApplicantsController &lt; ApplicationController
     end
   end
 
-  # GET /applicants/1/edit
+
   def edit
     @applicant = Applicant.find(params[:id])
   end
 
-  # POST /applicants
-  # POST /applicants.xml
+
   def create
-    @applicant = Applicant.new(params[:applicant])
+    @applicant = Applicant.new( params[:applicant] )
     @applicant.user_id = current_user.id
     
-    # If a position is identified, link them up
+    # If a position is identified in the form as opposed to the checkboxes, link them up
     @position = Position.find_by_id( params[:position][:id] ) if params[:position]
     @applicant.positions &lt;&lt; @position if @position
 
     respond_to do |format|
       if @applicant.save
         flash[:notice] = 'Applicant was successfully created.'
-#        format.html { redirect_to(@applicant) }
         format.html { redirect_to :action =&gt; &quot;index&quot; }
         format.xml  { render :xml =&gt; @applicant, :status =&gt; :created, :location =&gt; @applicant }
       else
@@ -71,15 +65,13 @@ class ApplicantsController &lt; ApplicationController
     end
   end
 
-  # PUT /applicants/1
-  # PUT /applicants/1.xml
+
   def update
     @applicant = Applicant.find(params[:id])
 
     respond_to do |format|
       if @applicant.update_attributes(params[:applicant])
         flash[:notice] = 'Applicant was successfully updated.'
-#        format.html { redirect_to(@applicant) }
         format.html { redirect_to :action =&gt; &quot;index&quot; }
         format.xml  { head :ok }
       else
@@ -89,8 +81,7 @@ class ApplicantsController &lt; ApplicationController
     end
   end
 
-  # DELETE /applicants/1
-  # DELETE /applicants/1.xml
+
   def destroy
     @applicant = Applicant.find(params[:id])
     @applicant.destroy</diff>
      <filename>app/controllers/applicants_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,8 +3,7 @@ class PositionsController &lt; ApplicationController
   before_filter :admin_check, :only =&gt; [:new, :create, :edit, :update]
   
   
-  # GET /positions
-  # GET /positions.xml
+
   def index
     @positions = Position.find( :all, :conditions =&gt; &quot;is_closed = 0&quot;, :order =&gt; 'positions.created_at DESC' )
 
@@ -15,10 +14,8 @@ class PositionsController &lt; ApplicationController
   end
 
 
-  # GET /positions/1
-  # GET /positions/1.xml
   def show
-    @position = Position.find(params[:id])
+    @position = Position.find( params[:id] )
 
     respond_to do |format|
       format.html # show.html.erb
@@ -27,8 +24,6 @@ class PositionsController &lt; ApplicationController
   end
 
 
-  # GET /positions/new
-  # GET /positions/new.xml
   def new
     @position = Position.new
     @users = User.find( :all, :order =&gt; 'name ASC' )
@@ -41,24 +36,21 @@ class PositionsController &lt; ApplicationController
   end
 
 
-  # GET /positions/1/edit
   def edit
-    @position = Position.find(params[:id])
+    @position = Position.find( params[:id] )
     @users = User.find( :all, :order =&gt; 'name ASC' )
     @departments = Department.find( :all, :order =&gt; &quot;name ASC&quot; )
   end
 
 
-  # POST /positions
-  # POST /positions.xml
   def create
-    @position = Position.new(params[:position])
+    @position = Position.new( params[:position] )
     @position.user_id = current_user.id
 
     respond_to do |format|
       if @position.save
         flash[:notice] = 'Position was successfully created.'
-        format.html { redirect_to(@position) }
+        format.html { redirect_to( @position ) }
         format.xml  { render :xml =&gt; @position, :status =&gt; :created, :location =&gt; @position }
       else
         format.html { render :action =&gt; &quot;new&quot; }
@@ -68,15 +60,13 @@ class PositionsController &lt; ApplicationController
   end
 
 
-  # PUT /positions/1
-  # PUT /positions/1.xml
   def update
-    @position = Position.find(params[:id])
+    @position = Position.find( params[:id] )
 
     respond_to do |format|
-      if @position.update_attributes(params[:position])
+      if @position.update_attributes( params[:position] )
         flash[:notice] = 'Position was successfully updated.'
-        format.html { redirect_to(@position) }
+        format.html { redirect_to( @position ) }
         format.xml  { head :ok }
       else
         format.html { render :action =&gt; &quot;edit&quot; }
@@ -86,14 +76,12 @@ class PositionsController &lt; ApplicationController
   end
 
 
-  # DELETE /positions/1
-  # DELETE /positions/1.xml
   def destroy
-    @position = Position.find(params[:id])
+    @position = Position.find( params[:id] )
     @position.destroy
 
     respond_to do |format|
-      format.html { redirect_to(positions_url) }
+      format.html { redirect_to( positions_url ) }
       format.xml  { head :ok }
     end
   end</diff>
      <filename>app/controllers/positions_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -77,10 +77,7 @@ class VettingStagesController &lt; ApplicationController
   # DELETE /vetting_stages/1.xml
   def destroy
     @vetting_stage = VettingStage.find( params[:id] )
-    
-#    if @vetting_stage.extract_self_from_chain()
-      @vetting_stage.destroy
-#    end
+    @vetting_stage.destroy
 
     respond_to do |format|
       format.html { redirect_to(vetting_stages_url) }</diff>
      <filename>app/controllers/vetting_stages_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,10 @@
 class Applicant &lt; ActiveRecord::Base
-  belongs_to :user
-  
-  has_many :votes, :order =&gt; 'votes.created_at DESC', :dependent =&gt; :destroy
-  
-  has_and_belongs_to_many :positions, :order =&gt; 'positions.created_at DESC'
+  belongs_to :user                                                                  # the user that added this applicant to the system
+
+  has_many :hiring_stages                                                           # one per job position they're linked to
+
+	has_and_belongs_to_many :positions, :join_table =&gt; 'hiring_stages'                # each position they're applying for
+	has_and_belongs_to_many :vetting_stages, :join_table =&gt; 'hiring_stages'           # the hiring stage they're in for each position they're applying for
   
   validates_presence_of :user, :name, :contact_info
   </diff>
      <filename>app/models/applicant.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,27 @@
 class Position &lt; ActiveRecord::Base
-  belongs_to :department
-  belongs_to :user
+  belongs_to :department                                                                  #the company department that created the new position
+  belongs_to :user                                                                        # the user that added this position to the system
   
-  has_many :votes
+  has_many :hiring_stages                                                                 # one per each applicant applying for this position
+
+	has_and_belongs_to_many :applicants, :join_table =&gt; 'hiring_stages'                     # each applicant applying for this position
+	has_and_belongs_to_many :vetting_stages, :join_table =&gt; 'hiring_stages'                 # TODO: necessary?
   
   has_and_belongs_to_many :reviewers, :class_name =&gt; 'User', :order =&gt; 'name ASC'
-  has_and_belongs_to_many :applicants, :order =&gt; 'applicants.name ASC'
-  
+
   validates_presence_of :title
+  
+  
+  # Before a position is created link it up with all the vetting stages it will need
+=begin
+  def add_vetting_stages( stage = nil )
+    stage = VettingStage.find( :first, :conditions =&gt; 'parent_id IS NULL' ) if ( nil == stage )
+    
+    self.vetting_stages &lt;&lt; stage
+    
+    stage.children.each do |stage|
+      self.add_vetting_stages( stage )
+    end
+  end
+=end
 end</diff>
      <filename>app/models/position.rb</filename>
    </modified>
    <modified>
      <diff>@@ -14,12 +14,12 @@ class User &lt; ActiveRecord::Base
   validates_length_of       :name,     :maximum =&gt; 100
 
   validates_presence_of     :email
-  validates_length_of       :email,    :within =&gt; 6..100 #r@a.wk
+  validates_length_of       :email,    :within =&gt; 6..100
   validates_uniqueness_of   :email,    :case_sensitive =&gt; false
   validates_format_of       :email,    :with =&gt; RE_EMAIL_OK, :message =&gt; MSG_EMAIL_BAD
 
   has_many :comments, :as =&gt; :commentable, :order =&gt; 'comments.created_at DESC', :dependent =&gt; :destroy
-  has_many :votes, :as =&gt; :votable, :order =&gt; 'votes.created_at DESC', :dependent =&gt; :nullify
+  has_many :votes, :order =&gt; 'votes.created_at DESC', :dependent =&gt; :nullify
   
   has_and_belongs_to_many :positions, :order =&gt; 'title ASC'
   </diff>
      <filename>app/models/user.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,8 @@
 class VettingStage &lt; ActiveRecord::Base
-  has_many :comments
-  has_many :votes
+  has_many :hiring_stages                                                         # one for each applicant currently at this VettingStage level of the process
+
+	has_and_belongs_to_many :applicants, :join_table =&gt; 'hiring_stages'             # each applicant currently applying for a position
+	has_and_belongs_to_many :positions, :join_table =&gt; 'hiring_stages'              # the positions for which their are active applicants
 
   before_destroy :extract_self_from_chain
 </diff>
      <filename>app/models/vetting_stage.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,6 @@
 &lt;div id=&quot;body_data&quot;&gt;
 	&lt;div id=&quot;nav_bar&quot;&gt;
 		&lt;%  if !@position.is_closed &amp;&amp; current_user.is_admin %&gt;
-			&lt;%# link_to( 'Add New Applicant', new_applicant_path + &quot;?position_id=#{@position.id}&quot; ) + ' | ' %&gt;
 			&lt;%= link_to( 'Edit', edit_position_path( @position ) ) + ' | ' %&gt;
 		&lt;% end %&gt;
 		&lt;%= link_to( 'Delete', @position, :confirm =&gt; &quot;Are you sure you want to delete '#{@position.title}'?&quot;, :method =&gt; :delete ) if current_user.is_admin %&gt;</diff>
      <filename>app/views/positions/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,6 @@
 ActionController::Routing::Routes.draw do |map|
+  map.resources :hiring_stages
+
   map.resources :votes
 
   map.logout '/logout', :controller =&gt; 'sessions', :action =&gt; 'destroy'</diff>
      <filename>config/routes.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 class AddEnabledToPosition &lt; ActiveRecord::Migration
   def self.up
-    add_column &quot;positions&quot;, &quot;is_closed&quot;, :boolean, :null =&gt; false, :default =&gt; 1
+    add_column &quot;positions&quot;, &quot;is_closed&quot;, :boolean, :null =&gt; false, :default =&gt; 0
   end
 
   def self.down</diff>
      <filename>db/migrate/20080620083931_add_enabled_to_position.rb</filename>
    </modified>
    <modified>
      <diff>@@ -89882,3 +89882,3798 @@ Rendered shared/_toolbar (0.00004)
 Rendered shared/_action_bar_wrapper (0.00023)
 Rendered shared/_footer (0.00002)
 Completed in 0.04233 (23 reqs/sec) | Rendering: 0.01308 (30%) | DB: 0.00737 (17%) | 200 OK [http://localhost/vetting_stages]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:27:54) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.002996)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000326)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000352)*[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.002668)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.002324)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000314)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.001827)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001597)*[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.002532)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000926)*[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.000246)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001824)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001976)*[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.001493)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.001006)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00073)
+Rendered shared/_header (0.00115)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00034)
+Rendered shared/_footer (0.00002)
+Completed in 0.85394 (1 reqs/sec) | Rendering: 0.54460 (63%) | DB: 0.02241 (2%) | 200 OK [http://localhost/positions]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:27:58) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002205)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001232)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000649)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002510)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00010)
+Rendered users/_user_bar (0.00086)
+Rendered shared/_header (0.00123)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00027)
+Rendered shared/_footer (0.00002)
+Completed in 0.06770 (14 reqs/sec) | Rendering: 0.03383 (49%) | DB: 0.00660 (9%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:28:06) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;3&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003390)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000361)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002468)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000413)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 3) *[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.002237)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002250)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 3 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.003071)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.015281)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 3 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.002776)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00837)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00063)
+Rendered shared/_header (0.00106)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00034)
+Rendered shared/_footer (0.00002)
+Completed in 0.17928 (5 reqs/sec) | Rendering: 0.11141 (62%) | DB: 0.03255 (18%) | 200 OK [http://localhost/applicants/3]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:28:16) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003137)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000294)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Load (0.000369)*[0m   *[0mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;36;1mPosition Columns (0.003131)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mDepartment Columns (0.001742)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000734)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mJoin Table Columns (0.001605)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002989)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001872)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000728)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000276)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001748)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.003010)*[0m   *[0mSELECT * 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;36;1mJoin Table Columns (0.001916)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.001672)*[0m   *[0mSELECT * 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 admin_settings/_admin_bar (0.00008)
+Rendered users/_user_bar (0.00089)
+Rendered shared/_header (0.00168)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00062)
+Rendered shared/_footer (0.00003)
+Completed in 0.07895 (12 reqs/sec) | Rendering: 0.03105 (39%) | DB: 0.02522 (31%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:28:17) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003470)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001836)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002277)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000791)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;36;1mDepartment Columns (0.002342)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000406)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mUser Load (0.000271)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mVettingStage Load (0.000298)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;36;1mVettingStage Columns (0.002004)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000342)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000222)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000225)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000207)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000189)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.002142)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.003303)*[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.001988)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00018)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+Rendered positions/_applicant_status (0.00005)
+  *[4;35;1mJoin Table Columns (0.001826)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000430)*[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 admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00042)
+Rendered shared/_header (0.00071)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00001)
+Completed in 0.09783 (10 reqs/sec) | Rendering: 0.04694 (47%) | DB: 0.02457 (25%) | 200 OK [http://localhost/positions/2]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:28:45) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;3&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003466)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000321)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002370)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000547)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 3) *[0m
+  *[4;35;1mSQL (0.000175)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000517)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 3) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000304)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 3 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.002219)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002460)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 3 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002597)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mSQL (0.000293)*[0m   *[0mDELETE FROM `applicants_positions` WHERE applicant_id = 3 AND position_id IN (2)*[0m
+  *[4;36;1mApplicant Destroy (0.000279)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 3
+*[0m
+  *[4;35;1mSQL (0.040262)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.25160 (3 reqs/sec) | DB: 0.05581 (22%) | 302 Found [http://localhost/applicants/3]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:28:45) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002728)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000922)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000515)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.002599)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00066)
+Rendered shared/_header (0.00095)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.03891 (25 reqs/sec) | Rendering: 0.01065 (27%) | DB: 0.00676 (17%) | 200 OK [http://localhost/applicants]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:28:49) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;2&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003572)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000818)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002423)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000316)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;36;1mDepartment Columns (0.002532)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000607)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mUser Load (0.000300)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mVettingStage Load (0.000319)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;36;1mVettingStage Columns (0.001777)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000271)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000255)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000209)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000237)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000174)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.002370)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002430)*[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.002034)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered positions/_applicant_status (0.00018)
+Rendered positions/_applicant_status (0.00006)
+Rendered positions/_applicant_status (0.00005)
+  *[4;35;1mJoin Table Columns (0.001598)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000558)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00062)
+Rendered shared/_header (0.00106)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.18184 (5 reqs/sec) | Rendering: 0.13739 (75%) | DB: 0.02280 (12%) | 200 OK [http://localhost/positions/2]
+
+
+Processing ApplicantsController#edit (for 127.0.0.1 at 2008-06-24 07:28:56) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;edit&quot;, &quot;id&quot;=&gt;&quot;6&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002809)*[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.002568)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000713)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 6) *[0m
+Rendering template within layouts/application
+Rendering applicants/edit
+  *[4;35;1mPosition Load (0.000486)*[0m   *[0mSELECT * FROM `positions` ORDER BY title ASC*[0m
+  *[4;36;1mPosition Columns (0.002406)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Exists (0.000362)*[0m   *[0mSELECT `positions`.id FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`positions`.`id` = 1) AND (`applicants_positions`.applicant_id = 6 ) ORDER BY positions.created_at DESC LIMIT 1*[0m
+  *[4;36;1mPosition Exists (0.000270)*[0m   *[0;1mSELECT `positions`.id FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`positions`.`id` = 3) AND (`applicants_positions`.applicant_id = 6 ) ORDER BY positions.created_at DESC LIMIT 1*[0m
+  *[4;35;1mPosition Exists (0.000266)*[0m   *[0mSELECT `positions`.id FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`positions`.`id` = 2) AND (`applicants_positions`.applicant_id = 6 ) ORDER BY positions.created_at DESC LIMIT 1*[0m
+Rendered positions/_list (0.02047)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00081)
+Rendered shared/_header (0.00123)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.08073 (12 reqs/sec) | Rendering: 0.04453 (55%) | DB: 0.01020 (12%) | 200 OK [http://localhost/applicants/6/edit]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:28:59) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003357)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000484)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000547)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.001660)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00041)
+Rendered shared/_header (0.00069)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.03802 (26 reqs/sec) | Rendering: 0.00746 (19%) | DB: 0.00605 (15%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:00) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;6&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002281)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.104377)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.866872)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.001829)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 6) *[0m
+  *[4;36;1mVettingStage Load (0.000269)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002433)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.001419)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 6 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000312)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 6 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.001271)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00390)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00045)
+Rendered shared/_header (0.00074)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 1.03723 (0 reqs/sec) | Rendering: 0.01697 (1%) | DB: 0.98106 (94%) | 200 OK [http://localhost/applicants/6]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:05) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;6&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.025347)*[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.076550)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000394)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 6) *[0m
+  *[4;35;1mSQL (0.000147)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000408)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 6) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000320)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 6 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.287729)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002585)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 6 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mApplicant Destroy (0.199096)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 6
+*[0m
+  *[4;35;1mSQL (0.021669)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.83398 (1 reqs/sec) | DB: 0.61458 (73%) | 302 Found [http://localhost/applicants/6]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:05) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.031761)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001652)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000575)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.016022)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00063)
+Rendered shared/_header (0.00106)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.08361 (11 reqs/sec) | Rendering: 0.01137 (13%) | DB: 0.05001 (59%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:19) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;5&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003221)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000367)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002420)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000637)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 5) *[0m
+  *[4;36;1mVettingStage Load (0.000320)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002208)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002130)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 5 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000518)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 5 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.002559)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00647)
+Rendered admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00055)
+Rendered shared/_header (0.00100)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00031)
+Rendered shared/_footer (0.00002)
+Completed in 0.15998 (6 reqs/sec) | Rendering: 0.02429 (15%) | DB: 0.01438 (8%) | 200 OK [http://localhost/applicants/5]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:21) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;5&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003289)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000321)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002478)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000389)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 5) *[0m
+  *[4;35;1mSQL (0.000136)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000325)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 5) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000240)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 5 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.001660)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002749)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 5 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mApplicant Destroy (0.000282)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 5
+*[0m
+  *[4;35;1mSQL (0.000836)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.04858 (20 reqs/sec) | DB: 0.01270 (26%) | 302 Found [http://localhost/applicants/5]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:21) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003235)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000328)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000706)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.002057)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00064)
+Rendered shared/_header (0.00107)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.04407 (22 reqs/sec) | Rendering: 0.01260 (28%) | DB: 0.00633 (14%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:22) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002648)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000378)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002501)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000329)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 7) *[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.001662)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002757)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 7 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000461)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 7 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.002166)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00661)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00061)
+Rendered shared/_header (0.00103)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00034)
+Rendered shared/_footer (0.00002)
+Completed in 0.06525 (15 reqs/sec) | Rendering: 0.02031 (31%) | DB: 0.01320 (20%) | 200 OK [http://localhost/applicants/7]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:24) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;7&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.000300)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.001786)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000727)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 7) *[0m
+  *[4;35;1mSQL (0.000070)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000400)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 7) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000237)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 7 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.002073)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001867)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 7 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mApplicant Destroy (0.000296)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 7
+*[0m
+  *[4;35;1mSQL (0.000866)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.13643 (7 reqs/sec) | DB: 0.01181 (8%) | 302 Found [http://localhost/applicants/7]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:24) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.001774)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001735)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000491)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.001616)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00048)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00024)
+Rendered shared/_footer (0.00002)
+Completed in 0.03725 (26 reqs/sec) | Rendering: 0.00886 (23%) | DB: 0.00562 (15%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:28) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;10&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003118)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000336)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002996)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000569)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 10) *[0m
+  *[4;36;1mVettingStage Load (0.000348)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002966)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002230)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 10 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000459)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 10 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.001653)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00492)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00046)
+Rendered shared/_header (0.00077)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.15921 (6 reqs/sec) | Rendering: 0.02311 (14%) | DB: 0.01467 (9%) | 200 OK [http://localhost/applicants/10]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:30) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;10&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003140)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000347)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002256)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000319)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 10) *[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000393)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 10) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000236)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 10 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.001903)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002126)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 10 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mApplicant Destroy (0.000408)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 10
+*[0m
+  *[4;35;1mSQL (0.000796)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.04825 (20 reqs/sec) | DB: 0.01206 (25%) | 302 Found [http://localhost/applicants/10]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:30) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003816)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000403)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.002663)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.001664)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00045)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00025)
+Rendered shared/_footer (0.00002)
+Completed in 0.13239 (7 reqs/sec) | Rendering: 0.00766 (5%) | DB: 0.00855 (6%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:32) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;12&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003235)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000386)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002664)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000322)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 12) *[0m
+  *[4;36;1mVettingStage Load (0.000460)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002023)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.001877)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 12 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000464)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 12 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.001829)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00619)
+Rendered admin_settings/_admin_bar (0.00008)
+Rendered users/_user_bar (0.00073)
+Rendered shared/_header (0.00122)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00040)
+Rendered shared/_footer (0.00003)
+Completed in 0.06933 (14 reqs/sec) | Rendering: 0.02346 (33%) | DB: 0.01326 (19%) | 200 OK [http://localhost/applicants/12]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:34) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;12&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.000324)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002625)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000868)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 12) *[0m
+  *[4;35;1mSQL (0.000169)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000442)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 12) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000321)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 12 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.002386)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002252)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 12 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mApplicant Destroy (0.000298)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 12
+*[0m
+  *[4;35;1mSQL (0.000857)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.14735 (6 reqs/sec) | DB: 0.01371 (9%) | 302 Found [http://localhost/applicants/12]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:35) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002758)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000352)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000494)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.002765)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00062)
+Rendered shared/_header (0.00107)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.04081 (24 reqs/sec) | Rendering: 0.01132 (27%) | DB: 0.00637 (15%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:37) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;4&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003104)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000318)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002629)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000983)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 4) *[0m
+  *[4;36;1mVettingStage Load (0.000340)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002329)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002131)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 4 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000500)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 4 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.002642)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00773)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00063)
+Rendered shared/_header (0.00107)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.15780 (6 reqs/sec) | Rendering: 0.02563 (16%) | DB: 0.01498 (9%) | 200 OK [http://localhost/applicants/4]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:39) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;4&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003054)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000365)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002559)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000332)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 4) *[0m
+  *[4;35;1mSQL (0.000148)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000464)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 4) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000324)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 4 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.002116)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001728)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 4 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mApplicant Destroy (0.000339)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 4
+*[0m
+  *[4;35;1mSQL (0.000758)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.05568 (17 reqs/sec) | DB: 0.01219 (21%) | 302 Found [http://localhost/applicants/4]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:39) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002902)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000572)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000494)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.002813)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00008)
+Rendered users/_user_bar (0.00068)
+Rendered shared/_header (0.00106)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00032)
+Rendered shared/_footer (0.00002)
+Completed in 0.13031 (7 reqs/sec) | Rendering: 0.00969 (7%) | DB: 0.00678 (5%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:40) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;11&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003283)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001267)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002644)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000430)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 11) *[0m
+  *[4;36;1mVettingStage Load (0.000304)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.002351)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.003245)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 11 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002375)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00014)
+  *[4;36;1mComment Load (0.000503)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 11 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.002241)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00628)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00060)
+Rendered shared/_header (0.00102)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.08003 (12 reqs/sec) | Rendering: 0.02713 (33%) | DB: 0.01864 (23%) | 200 OK [http://localhost/applicants/11]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:43) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;11&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.032666)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000340)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.003021)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000899)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 11) *[0m
+  *[4;36;1mSQL (0.000214)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mVote Load (0.000377)*[0m   *[0mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 11) ORDER BY votes.created_at DESC*[0m
+  *[4;36;1mComment Load (0.000287)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 11 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;35;1mJoin Table Columns (0.002166)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002555)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 11 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002137)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mSQL (0.000254)*[0m   *[0;1mDELETE FROM `applicants_positions` WHERE applicant_id = 11 AND position_id IN (2)*[0m
+  *[4;35;1mApplicant Destroy (0.000229)*[0m   *[0m DELETE FROM `applicants`
+ WHERE `id` = 11
+*[0m
+  *[4;36;1mSQL (0.000785)*[0m   *[0;1mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.17701 (5 reqs/sec) | DB: 0.04593 (25%) | 302 Found [http://localhost/applicants/11]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:43) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002827)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000483)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000536)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002553)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00068)
+Rendered shared/_header (0.00104)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00025)
+Rendered shared/_footer (0.00002)
+Completed in 0.04000 (24 reqs/sec) | Rendering: 0.01016 (25%) | DB: 0.00640 (15%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:46) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  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.002942)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000267)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002515)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000431)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mVettingStage Load (0.000398)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002686)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002572)*[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.002442)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000557)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mComment Columns (0.002922)*[0m   *[0;1mSHOW FIELDS FROM `comments`*[0m
+  *[4;35;1mVettingStage Columns (0.001900)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000314)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 5) *[0m
+Rendered comments/_comment (0.01036)
+  *[4;35;1mVettingStage Load (0.000390)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 4) *[0m
+Rendered comments/_comment (0.00165)
+  *[4;36;1mVettingStage Load (0.000263)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 1) *[0m
+Rendered comments/_comment (0.00278)
+Rendered comments/_form (0.00150)
+Rendered admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00050)
+Rendered shared/_header (0.00088)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00028)
+Rendered shared/_footer (0.00002)
+Completed in 0.19730 (5 reqs/sec) | Rendering: 0.06163 (31%) | DB: 0.02060 (10%) | 200 OK [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:47) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003148)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000299)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002246)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000415)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 8) *[0m
+  *[4;35;1mSQL (0.000153)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.001213)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 8) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000406)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 8 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mUndoManager Columns (0.002115)*[0m   *[0;1mSHOW FIELDS FROM `undo_managers`*[0m
+  *[4;35;1mUndoManager Create (0.030680)*[0m   *[0mINSERT INTO `undo_managers` (`current_action_id`) VALUES(NULL)*[0m
+  *[4;36;1mComment Destroy (0.000429)*[0m   *[0;1m DELETE FROM `comments`
+ WHERE `id` = 4
+*[0m
+  *[4;35;1mComment Destroy (0.000243)*[0m   *[0m DELETE FROM `comments`
+ WHERE `id` = 5
+*[0m
+  *[4;36;1mComment Destroy (0.000233)*[0m   *[0;1m DELETE FROM `comments`
+ WHERE `id` = 6
+*[0m
+  *[4;35;1mJoin Table Columns (0.001779)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002121)*[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.002045)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mSQL (0.000234)*[0m   *[0;1mDELETE FROM `applicants_positions` WHERE applicant_id = 8 AND position_id IN (2)*[0m
+  *[4;35;1mApplicant Destroy (0.000200)*[0m   *[0m DELETE FROM `applicants`
+ WHERE `id` = 8
+*[0m
+  *[4;36;1mSQL (0.001077)*[0m   *[0;1mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.14367 (6 reqs/sec) | DB: 0.04904 (34%) | 302 Found [http://localhost/applicants/8]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:48) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002572)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001575)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000490)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.001583)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00064)
+Rendered shared/_header (0.00170)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00107)
+Rendered shared/_footer (0.00002)
+Completed in 0.04193 (23 reqs/sec) | Rendering: 0.00889 (21%) | DB: 0.00622 (14%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:50) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;9&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003475)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000366)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002950)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000638)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 9) *[0m
+  *[4;35;1mVettingStage Load (0.000333)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002042)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002465)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 9 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mComment Load (0.000425)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 9 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.002488)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00648)
+Rendered admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00057)
+Rendered shared/_header (0.00094)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00031)
+Rendered shared/_footer (0.00002)
+Completed in 0.07162 (13 reqs/sec) | Rendering: 0.02412 (33%) | DB: 0.01518 (21%) | 200 OK [http://localhost/applicants/9]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:52) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;9&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002729)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000392)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002398)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000620)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 9) *[0m
+  *[4;36;1mSQL (0.000151)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mVote Load (0.001041)*[0m   *[0mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 9) ORDER BY votes.created_at DESC*[0m
+  *[4;36;1mComment Load (0.000357)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 9 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;35;1mJoin Table Columns (0.002141)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002665)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 9 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mApplicant Destroy (0.000287)*[0m   *[0m DELETE FROM `applicants`
+ WHERE `id` = 9
+*[0m
+  *[4;36;1mSQL (0.000940)*[0m   *[0;1mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.06043 (16 reqs/sec) | DB: 0.01372 (22%) | 302 Found [http://localhost/applicants/9]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:52) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002672)*[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 Load (0.000366)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002344)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00061)
+Rendered shared/_header (0.00103)
+Rendered shared/_toolbar (0.00007)
+Rendered shared/_action_bar_wrapper (0.00047)
+Rendered shared/_footer (0.00002)
+Completed in 0.03657 (27 reqs/sec) | Rendering: 0.00971 (26%) | DB: 0.00569 (15%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:53) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;15&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003253)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000374)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002752)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000492)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 15) *[0m
+  *[4;35;1mVettingStage Load (0.000321)*[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.001975)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 15 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mComment Load (0.000563)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 15 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.001783)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00692)
+Rendered admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00051)
+Rendered shared/_header (0.00086)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00027)
+Rendered shared/_footer (0.00002)
+Completed in 0.15610 (6 reqs/sec) | Rendering: 0.02136 (13%) | DB: 0.01364 (8%) | 200 OK [http://localhost/applicants/15]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:54) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;15&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003174)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000318)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002570)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000359)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 15) *[0m
+  *[4;36;1mSQL (0.000136)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mVote Load (0.000380)*[0m   *[0mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 15) ORDER BY votes.created_at DESC*[0m
+  *[4;36;1mComment Load (0.000343)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 15 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;35;1mJoin Table Columns (0.002175)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002082)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 15 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mApplicant Destroy (0.000416)*[0m   *[0m DELETE FROM `applicants`
+ WHERE `id` = 15
+*[0m
+  *[4;36;1mSQL (0.000895)*[0m   *[0;1mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.05236 (19 reqs/sec) | DB: 0.01285 (24%) | 302 Found [http://localhost/applicants/15]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:54) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  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.000363)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000375)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002306)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00117)
+Rendered shared/_header (0.00215)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00039)
+Rendered shared/_footer (0.00003)
+Completed in 0.03860 (25 reqs/sec) | Rendering: 0.01109 (28%) | DB: 0.00614 (15%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:29:57) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;13&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003277)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000291)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002633)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000343)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 13) *[0m
+  *[4;35;1mVettingStage Load (0.000340)*[0m   *[0mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;36;1mJoin Table Columns (0.002140)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002056)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 13 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mComment Load (0.000498)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 13 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;35;1mVettingStage Columns (0.002437)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00682)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00069)
+Rendered shared/_header (0.00112)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07035 (14 reqs/sec) | Rendering: 0.02347 (33%) | DB: 0.01401 (19%) | 200 OK [http://localhost/applicants/13]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:29:58) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;13&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003126)*[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.002791)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000586)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 13) *[0m
+  *[4;36;1mSQL (0.000140)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mVote Load (0.000336)*[0m   *[0mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 13) ORDER BY votes.created_at DESC*[0m
+  *[4;36;1mComment Load (0.000235)*[0m   *[0;1mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 13 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;35;1mJoin Table Columns (0.002121)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mPosition Load (0.002102)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 13 ) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mApplicant Destroy (0.000421)*[0m   *[0m DELETE FROM `applicants`
+ WHERE `id` = 13
+*[0m
+  *[4;36;1mSQL (0.000862)*[0m   *[0;1mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.05536 (18 reqs/sec) | DB: 0.01306 (23%) | 302 Found [http://localhost/applicants/13]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:29:58) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002875)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000327)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000332)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;36;1mApplicant Columns (0.002248)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00062)
+Rendered shared/_header (0.00110)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.03518 (28 reqs/sec) | Rendering: 0.00931 (26%) | DB: 0.00578 (16%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 07:30:00) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;14&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002153)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000267)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002567)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000315)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 14) *[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.002178)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.002674)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 14 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002396)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+Rendered positions/_position_brief (0.00015)
+  *[4;35;1mComment Load (0.000539)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 14 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.002222)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00683)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00062)
+Rendered shared/_header (0.00104)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00034)
+Rendered shared/_footer (0.00002)
+Completed in 0.16117 (6 reqs/sec) | Rendering: 0.02572 (15%) | DB: 0.01562 (9%) | 200 OK [http://localhost/applicants/14]
+
+
+Processing ApplicantsController#destroy (for 127.0.0.1 at 2008-06-24 07:30:01) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;14&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002656)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000392)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002565)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000490)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 14) *[0m
+  *[4;35;1mSQL (0.000135)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mVote Load (0.000387)*[0m   *[0;1mSELECT * FROM `votes` WHERE (`votes`.applicant_id = 14) ORDER BY votes.created_at DESC*[0m
+  *[4;35;1mComment Load (0.000303)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 14 AND `comments`.commentable_type = 'Applicant') ORDER BY created_at ASC*[0m
+  *[4;36;1mJoin Table Columns (0.002293)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mPosition Load (0.001766)*[0m   *[0mSELECT * FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`applicants_positions`.applicant_id = 14 ) ORDER BY positions.created_at DESC*[0m
+  *[4;36;1mPosition Columns (0.002586)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mSQL (0.000338)*[0m   *[0mDELETE FROM `applicants_positions` WHERE applicant_id = 14 AND position_id IN (2)*[0m
+  *[4;36;1mApplicant Destroy (0.000226)*[0m   *[0;1m DELETE FROM `applicants`
+ WHERE `id` = 14
+*[0m
+  *[4;35;1mSQL (0.000745)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.05985 (16 reqs/sec) | DB: 0.01488 (24%) | 302 Found [http://localhost/applicants/14]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:30:01) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.042961)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001678)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000381)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+Rendered admin_settings/_admin_bar (0.00008)
+Rendered users/_user_bar (0.00338)
+Rendered shared/_header (0.00381)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.07836 (12 reqs/sec) | Rendering: 0.00716 (9%) | DB: 0.04502 (57%) | 200 OK [http://localhost/applicants]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:30:04) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  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.003094)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000373)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002475)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000306)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002228)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000293)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000271)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002355)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000427)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000347)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000339)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000336)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000326)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.002056)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.003261)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001597)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.001988)*[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 admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00053)
+Rendered shared/_header (0.00090)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00029)
+Rendered shared/_footer (0.00002)
+Completed in 0.09316 (10 reqs/sec) | Rendering: 0.04544 (48%) | DB: 0.02237 (24%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:32:12) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &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.003202)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.001855)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002580)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000315)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Completed in 0.03858 (25 reqs/sec) | Rendering: 0.00637 (16%) | DB: 0.00795 (20%) | 200 OK [http://localhost/positions/2.xml]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:32:20) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  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.003249)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000555)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002622)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000342)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002335)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000285)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000256)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000266)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.001964)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000364)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000303)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000298)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000294)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000281)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.002030)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002006)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001554)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000889)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00063)
+Rendered shared/_header (0.00112)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.08230 (12 reqs/sec) | Rendering: 0.03870 (47%) | DB: 0.01989 (24%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:32:46) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003150)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000325)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Load (0.000462)*[0m   *[0mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;36;1mPosition Columns (0.003005)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mDepartment Columns (0.002287)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000313)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mJoin Table Columns (0.002100)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001787)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001512)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.001429)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000253)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001858)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001750)*[0m   *[0mSELECT * 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;36;1mJoin Table Columns (0.001794)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000530)*[0m   *[0mSELECT * 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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00064)
+Rendered shared/_header (0.00107)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.07689 (13 reqs/sec) | Rendering: 0.03152 (40%) | DB: 0.02255 (29%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:32:49) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003693)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000332)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000453)*[0m   *[0;1mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+  *[4;35;1mPosition Columns (0.002618)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+Completed in 0.03900 (25 reqs/sec) | Rendering: 0.00926 (23%) | DB: 0.00710 (18%) | 200 OK [http://localhost/positions.xml]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:32:55) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.002756)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.002049)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000359)*[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.002394)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.001829)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000801)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.001726)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002359)*[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.002130)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.001524)*[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.000271)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001979)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001528)*[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.001843)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000685)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00064)
+Rendered shared/_header (0.00109)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07675 (13 reqs/sec) | Rendering: 0.03401 (44%) | DB: 0.02423 (31%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:34:45) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  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.003460)*[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;1mPosition Columns (0.002381)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000357)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 2) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.001947)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000577)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000375)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000296)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002180)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000378)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000302)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000299)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000331)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000197)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.001670)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002132)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.002191)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000613)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00066)
+Rendered shared/_header (0.00115)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.17094 (5 reqs/sec) | Rendering: 0.12705 (74%) | DB: 0.02000 (11%) | 200 OK [http://localhost/positions/2]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:34:51) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.051454)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000332)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Load (0.000465)*[0m   *[0mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;36;1mPosition Columns (0.002628)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mDepartment Columns (0.002260)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000494)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mJoin Table Columns (0.001566)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002055)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001951)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000631)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000275)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001959)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001907)*[0m   *[0mSELECT * 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;36;1mJoin Table Columns (0.001589)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000777)*[0m   *[0mSELECT * 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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00061)
+Rendered shared/_header (0.00111)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.12510 (7 reqs/sec) | Rendering: 0.03177 (25%) | DB: 0.07034 (56%) | 200 OK [http://localhost/positions]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 07:34:54) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.003112)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000332)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000352)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00206)
+Rendered shared/_header (0.00234)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00024)
+Rendered shared/_footer (0.00002)
+Completed in 0.12595 (7 reqs/sec) | Rendering: 0.00456 (3%) | DB: 0.00380 (3%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#new (for 127.0.0.1 at 2008-06-24 07:34:55) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.001932)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000869)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.002596)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mPosition Load (0.000409)*[0m   *[0;1mSELECT * FROM `positions` WHERE (is_closed = 0) *[0m
+Rendering template within layouts/application
+Rendering applicants/new
+  *[4;35;1mPosition Load (0.000514)*[0m   *[0mSELECT * FROM `positions` ORDER BY title ASC*[0m
+  *[4;36;1mPosition Columns (0.002118)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Exists (0.000349)*[0m   *[0mSELECT `positions`.id FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`positions`.`id` = 1) AND (`applicants_positions`.applicant_id = NULL ) ORDER BY positions.created_at DESC LIMIT 1*[0m
+  *[4;36;1mPosition Exists (0.000267)*[0m   *[0;1mSELECT `positions`.id FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`positions`.`id` = 3) AND (`applicants_positions`.applicant_id = NULL ) ORDER BY positions.created_at DESC LIMIT 1*[0m
+  *[4;35;1mPosition Exists (0.000259)*[0m   *[0mSELECT `positions`.id FROM `positions` INNER JOIN `applicants_positions` ON `positions`.id = `applicants_positions`.position_id WHERE (`positions`.`id` = 2) AND (`applicants_positions`.applicant_id = NULL ) ORDER BY positions.created_at DESC LIMIT 1*[0m
+Rendered positions/_list (0.00876)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00062)
+Rendered shared/_header (0.00104)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00032)
+Rendered shared/_footer (0.00002)
+Completed in 0.08756 (11 reqs/sec) | Rendering: 0.04632 (52%) | DB: 0.00931 (10%) | 200 OK [http://localhost/applicants/new]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:44:42) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003163)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000308)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000357)*[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.002419)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.001737)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.001173)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.001617)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002633)*[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.001522)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.002441)*[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.000259)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001814)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001770)*[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.001783)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000491)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00065)
+Rendered shared/_header (0.00110)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.16688 (5 reqs/sec) | Rendering: 0.12198 (73%) | DB: 0.02349 (14%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 07:44:45) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002725)*[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;1mPosition Columns (0.002509)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000520)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000430)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;36;1mDepartment Columns (0.002527)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.000438)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000297)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000275)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000268)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000284)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000270)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00628)
+  *[4;35;1mApplicant Load (0.000402)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.01519)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00058)
+Rendered shared/_header (0.00097)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00031)
+Rendered shared/_footer (0.00002)
+Completed in 0.10881 (9 reqs/sec) | Rendering: 0.06511 (59%) | DB: 0.01126 (10%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 07:44:54) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;1&quot;], &quot;title&quot;=&gt;&quot;VS Test&quot;, &quot;description&quot;=&gt;&quot;asdfsad&quot;, &quot;department_id&quot;=&gt;&quot;3&quot;}}
+  *[4;36;1mUser Columns (0.003129)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000362)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002724)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000350)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mSQL (0.000152)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000145)*[0m   *[0mCOMMIT*[0m
+  *[4;36;1mVettingStage Columns (0.002484)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000321)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`parent_id` IS NULL) *[0m
+  *[4;36;1mSQL (0.000149)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mCOMMIT*[0m
+  *[4;36;1mSQL (0.000130)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000272)*[0m   *[0mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'chris' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;36;1mSQL (0.000212)*[0m   *[0;1mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'chris@postal-code.com' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;35;1mSQL (0.000080)*[0m   *[0mCOMMIT*[0m
+Rendering template within layouts/application
+Rendering positions/new
+
+
+ActionView::TemplateError (You have a nil object when you didn't expect it!
+You might have expected an instance of Array.
+The error occurred while evaluating nil.collect) on line #11 of positions/new.html.erb:
+8: 				&lt;label for=&quot;position_title&quot;&gt;Title&lt;/label&gt; &lt;%= f.text_field :title, :size =&gt; 36 %&gt;
+9: 			&lt;/p&gt;
+10: 			&lt;p&gt;
+11: 				&lt;label for=&quot;position_department&quot;&gt;Department&lt;/label&gt; &lt;%= f.select :department_id, @departments.collect { |t| [ t.name, t.id ] }, { :include_blank =&gt; true } %&gt;
+12: 				&lt;span class=&quot;small&quot;&gt;(&lt;%= link_to( &quot;add new&quot;, new_department_path ) %&gt;)&lt;/span&gt;
+13: 			&lt;/p&gt;
+14: 			&lt;p&gt;
+
+    app/views/positions/new.html.erb:11:in `_run_erb_47app47views47positions47new46html46erb'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/helpers/form_helper.rb:317:in `fields_for'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/helpers/form_helper.rb:253:in `form_for'
+    app/views/positions/new.html.erb:4:in `_run_erb_47app47views47positions47new46html46erb'
+    /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'
+    app/controllers/positions_controller.rb:58:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:131:in `custom'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:160:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:154:in `respond'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:107:in `respond_to'
+    app/controllers/positions_controller.rb:52:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:45:47) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003122)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000420)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000371)*[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.002072)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.001934)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000314)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.001839)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001773)*[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.001683)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000708)*[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.000251)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001633)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002250)*[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.002287)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000612)*[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 admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00064)
+Rendered shared/_header (0.00106)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00031)
+Rendered shared/_footer (0.00002)
+Completed in 0.07625 (13 reqs/sec) | Rendering: 0.03246 (42%) | DB: 0.02127 (27%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 07:45:53) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.044712)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000538)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002656)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000547)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000407)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;36;1mDepartment Columns (0.002706)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.000376)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000282)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000272)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000273)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000268)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000223)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00597)
+  *[4;35;1mApplicant Load (0.000326)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.01087)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00046)
+Rendered shared/_header (0.00074)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.19984 (5 reqs/sec) | Rendering: 0.02320 (11%) | DB: 0.05359 (26%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 07:46:07) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;1&quot;], &quot;title&quot;=&gt;&quot;VS Test&quot;, &quot;description&quot;=&gt;&quot;asdfsad&quot;, &quot;department_id&quot;=&gt;&quot;3&quot;}}
+  *[4;36;1mUser Columns (0.003084)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.001599)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002518)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000348)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mSQL (0.000153)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000145)*[0m   *[0mCOMMIT*[0m
+  *[4;36;1mVettingStage Columns (0.002299)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000335)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`parent_id` IS NULL) *[0m
+  *[4;36;1mSQL (0.000148)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000363)*[0m   *[0mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'chris' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;36;1mSQL (0.000335)*[0m   *[0;1mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'chris@postal-code.com' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;35;1mPosition Create (0.000280)*[0m   *[0mINSERT INTO `positions` (`updated_at`, `title`, `is_closed`, `description`, `user_id`, `department_id`, `created_at`) VALUES('2008-06-24 14:46:07', 'VS Test', 1, 'asdfsad', 1, 3, '2008-06-24 14:46:07')*[0m
+  *[4;36;1mpositions_users Columns (0.002049)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mSQL (0.000592)*[0m   *[0mINSERT INTO `positions_users` (`position_id`, `user_id`) VALUES (4, 1)*[0m
+  *[4;36;1mSQL (0.033017)*[0m   *[0;1mCOMMIT*[0m
+Redirected to http://localhost:3000/positions/4
+Completed in 0.09202 (10 reqs/sec) | DB: 0.04727 (51%) | 302 Found [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:46:07) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIidQb3NpdGlvbiB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0
+ZWQuBjoKQHVzZWR7BjsHRjoMdXNlcl9pZGkG--91889809a9ef59eda42d4b04d433b6fdc07eca5e
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;4&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003251)*[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;1mPosition Columns (0.002217)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000421)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 4) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002307)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000288)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000300)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000259)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002065)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000388)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000332)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000203)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000205)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000193)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.001907)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001752)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 4 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001733)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000555)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 4 ) ORDER BY name ASC*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00069)
+Rendered shared/_header (0.00111)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00034)
+Rendered shared/_footer (0.00002)
+Completed in 0.08126 (12 reqs/sec) | Rendering: 0.03882 (47%) | DB: 0.01870 (23%) | 200 OK [http://localhost/positions/4]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:47:07) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiJ1Bvc2l0aW9uIHdhcyBzdWNjZXNz
+ZnVsbHkgY3JlYXRlZC4GOgpAdXNlZHsGOwhU--c1689bdcdfcb4bc3200f9f0bbe9a63e39d57a8b2
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;4&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003354)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000491)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002620)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000430)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 4) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002213)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000536)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mUser Load (0.000265)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000284)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002015)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000347)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000269)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000261)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000200)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000193)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.002299)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002730)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 4 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001505)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.001418)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 4 ) ORDER BY name ASC*[0m
+Rendered admin_settings/_admin_bar (0.00008)
+Rendered users/_user_bar (0.00069)
+Rendered shared/_header (0.00115)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00003)
+Completed in 0.17140 (5 reqs/sec) | Rendering: 0.12496 (72%) | DB: 0.02143 (12%) | 200 OK [http://localhost/positions/4]
+
+
+Processing PositionsController#destroy (for 127.0.0.1 at 2008-06-24 07:52:38) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;4&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003171)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000433)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002045)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000310)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 4) *[0m
+
+
+ActiveRecord::RecordNotFound (Couldn't find Position with ID=4):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1379:in `find_one'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1362:in `find_from_ids'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:537:in `find'
+    /app/controllers/positions_controller.rb:80:in `destroy'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (not_found)
+
+
+Processing PositionsController#destroy (for 127.0.0.1 at 2008-06-24 07:52:54) [DELETE]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;_method&quot;=&gt;&quot;delete&quot;, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;4&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002196)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000391)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.001470)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000675)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 4) *[0m
+
+
+ActiveRecord::RecordNotFound (Couldn't find Position with ID=4):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1379:in `find_one'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1362:in `find_from_ids'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:537:in `find'
+    /app/controllers/positions_controller.rb:80:in `destroy'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (not_found)
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:53:25) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;4&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003147)*[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;1mPosition Columns (0.002844)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000360)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 4) *[0m
+
+
+ActiveRecord::RecordNotFound (Couldn't find Position with ID=4):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1379:in `find_one'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1362:in `find_from_ids'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:537:in `find'
+    /app/controllers/positions_controller.rb:18: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/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 PositionsController#new (for 127.0.0.1 at 2008-06-24 07:53:26) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002138)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000240)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002387)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000508)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000358)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;36;1mDepartment Columns (0.002106)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.000402)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000298)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000287)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000323)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000324)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000440)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00660)
+  *[4;35;1mApplicant Load (0.000280)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.01012)
+Rendered shared/_set_focus (0.00001)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00043)
+Rendered shared/_header (0.00071)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.06049 (16 reqs/sec) | Rendering: 0.02361 (39%) | DB: 0.02750 (45%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:53:29) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003140)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000377)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000460)*[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.002045)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.002093)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000292)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.002023)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001729)*[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.001446)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.002015)*[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.000272)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.002029)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001817)*[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.001903)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000912)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00072)
+Rendered shared/_header (0.00115)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.07841 (12 reqs/sec) | Rendering: 0.03145 (40%) | DB: 0.02255 (28%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 07:53:30) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002139)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000686)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002403)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000723)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000480)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;36;1mDepartment Columns (0.001934)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.000410)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000318)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000310)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000308)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000333)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000418)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00708)
+  *[4;35;1mApplicant Load (0.000368)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.10769)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00045)
+Rendered shared/_header (0.00080)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00024)
+Rendered shared/_footer (0.00002)
+Completed in 0.15988 (6 reqs/sec) | Rendering: 0.12183 (76%) | DB: 0.01083 (6%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 07:53:39) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;1&quot;], &quot;title&quot;=&gt;&quot;VS Test&quot;, &quot;description&quot;=&gt;&quot;sadfasd&quot;, &quot;department_id&quot;=&gt;&quot;4&quot;}}
+  *[4;36;1mUser Columns (0.003162)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000300)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.001729)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000728)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mSQL (0.000102)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000095)*[0m   *[0mCOMMIT*[0m
+  *[4;36;1mSQL (0.000241)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000287)*[0m   *[0mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'chris' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;36;1mSQL (0.000197)*[0m   *[0;1mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'chris@postal-code.com' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;35;1mVettingStage Load (0.000000)*[0m   *[0mMysql::Error: Unknown column 'parent' in 'where clause': SELECT * FROM `vetting_stages` WHERE (parent IS NULL) LIMIT 1*[0m
+  *[4;36;1mSQL (0.000116)*[0m   *[0;1mROLLBACK*[0m
+
+
+ActiveRecord::StatementInvalid (Mysql::Error: Unknown column 'parent' in 'where clause': SELECT * FROM `vetting_stages`     WHERE (parent IS NULL)  LIMIT 1):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:515:in `select'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:80:in `cache_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:582:in `find_by_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1341:in `find_every'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1303:in `find_initial'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:534:in `find'
+    /app/models/position.rb:19:in `add_vetting_stages'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `evaluate_method'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:161:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:93:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:272:in `run_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:298:in `callback'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:219:in `create_without_timestamps'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/timestamp.rb:29:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2472:in `create_or_update_without_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:207:in `create_or_update'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2200:in `save_without_validation'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/validations.rb:901:in `save_without_dirty'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/dirty.rb:75:in `save_without_transactions'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:79:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:98:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /app/controllers/positions_controller.rb:51:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/positions_controller.rb:50:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 07:53:49) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003194)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000325)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002425)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000508)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000460)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;36;1mDepartment Columns (0.002360)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.000365)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000355)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000310)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000273)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000271)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000192)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00596)
+  *[4;35;1mApplicant Load (0.000323)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.00990)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00048)
+Rendered shared/_header (0.00076)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.06438 (15 reqs/sec) | Rendering: 0.02328 (36%) | DB: 0.01832 (28%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:53:52) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003090)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000367)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000477)*[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.002655)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.001978)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.001952)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.002156)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001602)*[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.001849)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000664)*[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.000276)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001891)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001484)*[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.001525)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000870)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00062)
+Rendered shared/_header (0.00104)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.08323 (12 reqs/sec) | Rendering: 0.03484 (41%) | DB: 0.02284 (27%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 07:53:55) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;1&quot;], &quot;title&quot;=&gt;&quot;VS Test&quot;, &quot;description&quot;=&gt;&quot;sadfasd&quot;, &quot;department_id&quot;=&gt;&quot;4&quot;}}
+  *[4;35;1mUser Columns (0.003269)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000331)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002406)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000330)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mSQL (0.000151)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000247)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mSQL (0.000148)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000366)*[0m   *[0;1mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'chris' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;35;1mSQL (0.000447)*[0m   *[0mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'chris@postal-code.com' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;36;1mVettingStage Load (0.000328)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002433)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mSQL (0.000264)*[0m   *[0;1mROLLBACK*[0m
+
+
+NoMethodError (undefined method `add_vetting_stage' for #&lt;Position:0x3797f7c&gt;):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:256:in `method_missing'
+    /app/models/position.rb:21:in `add_vetting_stages'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `evaluate_method'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:161:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:93:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:272:in `run_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:298:in `callback'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:219:in `create_without_timestamps'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/timestamp.rb:29:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2472:in `create_or_update_without_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:207:in `create_or_update'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2200:in `save_without_validation'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/validations.rb:901:in `save_without_dirty'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/dirty.rb:75:in `save_without_transactions'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:79:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:98:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /app/controllers/positions_controller.rb:51:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/positions_controller.rb:50:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 07:54:07) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.177004)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000334)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002513)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000576)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000361)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;36;1mDepartment Columns (0.001827)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.000387)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000278)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000268)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000271)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000268)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000184)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00551)
+  *[4;35;1mApplicant Load (0.000395)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.00982)
+Rendered shared/_set_focus (0.00001)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00043)
+Rendered shared/_header (0.00071)
+Rendered shared/_toolbar (0.00003)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00001)
+Completed in 0.23759 (4 reqs/sec) | Rendering: 0.02226 (9%) | DB: 0.19539 (82%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 07:54:09) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003191)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000358)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000385)*[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.002290)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.002425)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000323)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.002234)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001732)*[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.001469)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000877)*[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.000276)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001666)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002188)*[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.001602)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000817)*[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 admin_settings/_admin_bar (0.00009)
+Rendered users/_user_bar (0.00073)
+Rendered shared/_header (0.00123)
+Rendered shared/_toolbar (0.00007)
+Rendered shared/_action_bar_wrapper (0.00042)
+Rendered shared/_footer (0.00003)
+Completed in 0.08093 (12 reqs/sec) | Rendering: 0.03482 (43%) | DB: 0.02183 (26%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 07:54:11) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;1&quot;], &quot;title&quot;=&gt;&quot;VS Test&quot;, &quot;description&quot;=&gt;&quot;sadfasd&quot;, &quot;department_id&quot;=&gt;&quot;4&quot;}}
+  *[4;35;1mUser Columns (0.003207)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000359)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002957)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000449)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mSQL (0.000156)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000101)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mSQL (0.000149)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000369)*[0m   *[0;1mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'chris' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;35;1mSQL (0.000322)*[0m   *[0mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'chris@postal-code.com' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;36;1mVettingStage Load (0.000293)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002206)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mSQL (0.000166)*[0m   *[0;1mROLLBACK*[0m
+  *[4;35;1mSQL (0.000510)*[0m   *[0mSHOW TABLES*[0m
+
+
+NoMethodError (undefined method `children' for #&lt;Class:0x3b56708&gt;):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:1667:in `method_missing'
+    /app/models/position.rb:23:in `add_vetting_stages'
+    /app/models/position.rb:21:in `add_vetting_stages'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `evaluate_method'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:161:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:93:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:272:in `run_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:298:in `callback'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:219:in `create_without_timestamps'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/timestamp.rb:29:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2472:in `create_or_update_without_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:207:in `create_or_update'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2200:in `save_without_validation'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/validations.rb:901:in `save_without_dirty'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/dirty.rb:75:in `save_without_transactions'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:79:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:98:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /app/controllers/positions_controller.rb:51:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/positions_controller.rb:50:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 07:56:03) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003331)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000322)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002361)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000677)*[0m   *[0mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;36;1mDepartment Load (0.000495)*[0m   *[0;1mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;35;1mDepartment Columns (0.003030)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mUser Exists (0.000395)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000375)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000315)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000276)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000410)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000352)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00688)
+  *[4;36;1mApplicant Load (0.000610)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.01637)
+Rendered shared/_set_focus (0.00003)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00048)
+Rendered shared/_header (0.00083)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00025)
+Rendered shared/_footer (0.00002)
+Completed in 0.16638 (6 reqs/sec) | Rendering: 0.02937 (17%) | DB: 0.02419 (14%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 07:56:04) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;1&quot;], &quot;title&quot;=&gt;&quot;VS Test&quot;, &quot;description&quot;=&gt;&quot;sadfasd&quot;, &quot;department_id&quot;=&gt;&quot;4&quot;}}
+  *[4;35;1mUser Columns (0.003056)*[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.002584)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000374)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mSQL (0.000159)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000129)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mSQL (0.000170)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000375)*[0m   *[0;1mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'chris' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;35;1mSQL (0.000387)*[0m   *[0mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'chris@postal-code.com' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;36;1mVettingStage Load (0.000258)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002292)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000369)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000313)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000311)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000296)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000299)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mPosition Create (0.000194)*[0m   *[0mINSERT INTO `positions` (`updated_at`, `title`, `is_closed`, `description`, `user_id`, `department_id`, `created_at`) VALUES('2008-06-24 14:56:04', 'VS Test', 1, 'sadfasd', 1, 4, '2008-06-24 14:56:04')*[0m
+  *[4;36;1mpositions_users Columns (0.001568)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mSQL (0.000731)*[0m   *[0mINSERT INTO `positions_users` (`position_id`, `user_id`) VALUES (5, 1)*[0m
+  *[4;36;1mpositions_vetting_stages Columns (0.000000)*[0m   *[0;1mMysql::Error: Table 'applican_development.positions_vetting_stages' doesn't exist: SHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;35;1mSQL (0.000858)*[0m   *[0mROLLBACK*[0m
+
+
+ActiveRecord::StatementInvalid (Mysql::Error: Table 'applican_development.positions_vetting_stages' doesn't exist: SHOW FIELDS FROM `positions_vetting_stages`):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:429:in `columns'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/has_and_belongs_to_many_association.rb:35:in `insert_record'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations.rb:1215:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations.rb:1215:in `after_create_or_update_associated_records_for_vetting_stages'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:274:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_proxy.rb:175:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_proxy.rb:175:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_proxy.rb:175:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_proxy.rb:175:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:274:in `method_missing'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations.rb:1215:in `after_create_or_update_associated_records_for_vetting_stages'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `evaluate_method'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:161:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:93:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:272:in `run_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:298:in `callback'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:221:in `create_without_timestamps'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/timestamp.rb:29:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2472:in `create_or_update_without_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:207:in `create_or_update'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2200:in `save_without_validation'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/validations.rb:901:in `save_without_dirty'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/dirty.rb:75:in `save_without_transactions'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:79:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:98:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /app/controllers/positions_controller.rb:51:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/positions_controller.rb:50:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+  *[4;36;1mSQL (0.000216)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000166)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mSQL (0.000397)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mSQL (0.029620)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000466)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000352)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000342)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000234)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000232)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000232)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000323)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000257)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000237)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000233)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000232)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000232)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000232)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000231)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000233)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000232)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000231)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUsers (20080619071355)
+  *[4;35;1mSQL (0.000243)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddAdminToUser (20080619195143)
+  *[4;36;1mSQL (0.000229)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicants (20080619201047)
+  *[4;35;1mSQL (0.000232)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositions (20080619201215)
+  *[4;36;1mSQL (0.000231)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateDepartments (20080619210955)
+  *[4;35;1mSQL (0.000233)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositionsUsers (20080619224940)
+  *[4;36;1mSQL (0.000231)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to VettingStages (20080620022524)
+  *[4;35;1mSQL (0.000232)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicantsPositions (20080620071254)
+  *[4;36;1mSQL (0.000231)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddEnabledToPosition (20080620083931)
+  *[4;35;1mSQL (0.000233)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddCoverLetterToApplicant (20080620091324)
+  *[4;36;1mSQL (0.000229)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUserNotes (20080620235051)
+  *[4;35;1mSQL (0.000231)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to ActsAsCommentable (20080621083331)
+  *[4;36;1mSQL (0.000233)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to DropTableUsernotes (20080621083443)
+  *[4;35;1mSQL (0.000232)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddVettingStageToComment (20080621095038)
+  *[4;36;1mSQL (0.000228)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddTimestampsToApplicantsPositions (20080621104316)
+  *[4;35;1mSQL (0.000231)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUndoRecords (20080621104318)
+  *[4;36;1mSQL (0.000230)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateAdminSettings (20080623211636)
+  *[4;35;1mSQL (0.000232)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateVotes (20080623221948)
+  *[4;36;1mSQL (0.000231)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositionsVettingStages (20080624145642)
+  *[4;35;1mSQL (0.000233)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.020339)*[0m   *[0;1mCREATE TABLE `positions_vetting_stages` (`position_id` int(11) NOT NULL, `vetting_stage_id` int(11) NOT NULL) ENGINE=InnoDB*[0m
+  *[4;35;1mSQL (0.000912)*[0m   *[0mINSERT INTO schema_migrations (version) VALUES ('20080624145642')*[0m
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 07:59:53) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003213)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000367)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002804)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000626)*[0m   *[0mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;36;1mDepartment Load (0.000332)*[0m   *[0;1mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;35;1mDepartment Columns (0.002024)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mUser Exists (0.000366)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000329)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000278)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000312)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000272)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000266)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00601)
+  *[4;36;1mApplicant Load (0.000327)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.01112)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00042)
+Rendered shared/_header (0.00070)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00001)
+Completed in 0.06814 (14 reqs/sec) | Rendering: 0.02297 (33%) | DB: 0.02663 (39%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 07:59:56) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;1&quot;], &quot;title&quot;=&gt;&quot;VS Test&quot;, &quot;description&quot;=&gt;&quot;sadfasd&quot;, &quot;department_id&quot;=&gt;&quot;4&quot;}}
+  *[4;35;1mUser Columns (0.002623)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000343)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002780)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000347)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mSQL (0.000197)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000150)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mSQL (0.000133)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000331)*[0m   *[0;1mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'chris' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;35;1mSQL (0.000289)*[0m   *[0mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'chris@postal-code.com' AND `users`.id &lt;&gt; 1) *[0m
+  *[4;36;1mVettingStage Load (0.000259)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002148)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000486)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000313)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000411)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000316)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000284)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mPosition Create (0.000282)*[0m   *[0mINSERT INTO `positions` (`updated_at`, `title`, `is_closed`, `description`, `user_id`, `department_id`, `created_at`) VALUES('2008-06-24 14:59:56', 'VS Test', 1, 'sadfasd', 1, 4, '2008-06-24 14:59:56')*[0m
+  *[4;36;1mpositions_users Columns (0.001686)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mSQL (0.000271)*[0m   *[0mINSERT INTO `positions_users` (`position_id`, `user_id`) VALUES (6, 1)*[0m
+  *[4;36;1mpositions_vetting_stages Columns (0.002128)*[0m   *[0;1mSHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;35;1mSQL (0.025262)*[0m   *[0mINSERT INTO `positions_vetting_stages` (`position_id`, `vetting_stage_id`) VALUES (6, 1)*[0m
+  *[4;36;1mpositions_vetting_stages Columns (0.001864)*[0m   *[0;1mSHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;35;1mSQL (0.000395)*[0m   *[0mINSERT INTO `positions_vetting_stages` (`position_id`, `vetting_stage_id`) VALUES (6, 8)*[0m
+  *[4;36;1mpositions_vetting_stages Columns (0.001826)*[0m   *[0;1mSHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;35;1mSQL (0.000558)*[0m   *[0mINSERT INTO `positions_vetting_stages` (`position_id`, `vetting_stage_id`) VALUES (6, 10)*[0m
+  *[4;36;1mpositions_vetting_stages Columns (0.001996)*[0m   *[0;1mSHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;35;1mSQL (0.000626)*[0m   *[0mINSERT INTO `positions_vetting_stages` (`position_id`, `vetting_stage_id`) VALUES (6, 13)*[0m
+  *[4;36;1mpositions_vetting_stages Columns (0.001575)*[0m   *[0;1mSHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;35;1mSQL (0.000471)*[0m   *[0mINSERT INTO `positions_vetting_stages` (`position_id`, `vetting_stage_id`) VALUES (6, 22)*[0m
+  *[4;36;1mSQL (0.000794)*[0m   *[0;1mCOMMIT*[0m
+Redirected to http://localhost:3000/positions/6
+Completed in 0.10706 (9 reqs/sec) | DB: 0.05114 (47%) | 302 Found [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 07:59:56) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiJ1Bvc2l0aW9uIHdhcyBzdWNjZXNz
+ZnVsbHkgY3JlYXRlZC4GOgpAdXNlZHsGOwhG--304af72ad05e7ef07e2dd194e4debf2a68c2510c
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;6&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.002671)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000405)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002413)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000564)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 6) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002227)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000430)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 4) *[0m
+  *[4;35;1mUser Load (0.000269)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mVettingStage Load (0.000328)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002212)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000395)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000305)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000297)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000299)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000283)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.002286)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.002105)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 6 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001977)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000562)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 6 ) ORDER BY name ASC*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00063)
+Rendered shared/_header (0.00107)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.17552 (5 reqs/sec) | Rendering: 0.13231 (75%) | DB: 0.02003 (11%) | 200 OK [http://localhost/positions/6]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 08:01:00) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIidQb3NpdGlvbiB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0
+ZWQuBjoKQHVzZWR7BjsHVDoMdXNlcl9pZGkG--619123aaf52f0b5c4e553348ef1fcd381015e7b0
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;6&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003068)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000368)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002796)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Load (0.000653)*[0m   *[0;1mSELECT * FROM `positions` WHERE (`positions`.`id` = 6) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;35;1mDepartment Columns (0.002246)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000620)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 4) *[0m
+  *[4;35;1mUser Load (0.000276)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001675)*[0m   *[0;1mSHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000477)*[0m   *[0mSELECT * FROM `vetting_stages` INNER JOIN `positions_vetting_stages` ON `vetting_stages`.id = `positions_vetting_stages`.vetting_stage_id WHERE (`positions_vetting_stages`.position_id = 6 AND (parent_id IS NULL)) LIMIT 1*[0m
+  *[4;36;1mVettingStage Columns (0.002181)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000363)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000304)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000296)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000413)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000275)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.001944)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001569)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 6 ) ORDER BY applicants.name ASC*[0m
+  *[4;36;1mJoin Table Columns (0.001464)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000947)*[0m   *[0mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 6 ) ORDER BY name ASC*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00061)
+Rendered shared/_header (0.00108)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.09155 (10 reqs/sec) | Rendering: 0.04386 (47%) | DB: 0.02193 (23%) | 200 OK [http://localhost/positions/6]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 08:01:17) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;6&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003019)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000291)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002253)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000599)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 6) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;36;1mDepartment Columns (0.002231)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000748)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 4) *[0m
+  *[4;36;1mUser Load (0.000326)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.002594)*[0m   *[0mSHOW FIELDS FROM `positions_vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000472)*[0m   *[0;1mSELECT * FROM `vetting_stages` INNER JOIN `positions_vetting_stages` ON `vetting_stages`.id = `positions_vetting_stages`.vetting_stage_id WHERE (`positions_vetting_stages`.position_id = 6 AND (parent_id IS NULL)) LIMIT 1*[0m
+  *[4;35;1mVettingStage Columns (0.002345)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.000388)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000299)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000398)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000333)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000292)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;35;1mJoin Table Columns (0.002003)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001746)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 6 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001692)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000553)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 6 ) ORDER BY name ASC*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00064)
+Rendered shared/_header (0.00108)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.09042 (11 reqs/sec) | Rendering: 0.04474 (49%) | DB: 0.02258 (24%) | 200 OK [http://localhost/positions/6]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 08:02:44) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003156)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000403)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Load (0.000470)*[0m   *[0mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;36;1mPosition Columns (0.001984)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mDepartment Columns (0.002267)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000379)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mJoin Table Columns (0.001890)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001797)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001817)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000811)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000417)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001748)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001939)*[0m   *[0mSELECT * 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;36;1mJoin Table Columns (0.001779)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000624)*[0m   *[0mSELECT * 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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00061)
+Rendered shared/_header (0.00104)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.16972 (5 reqs/sec) | Rendering: 0.03623 (21%) | DB: 0.02148 (12%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 08:02:44) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003158)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000317)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000372)*[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.002436)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.002319)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000851)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.001695)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.002533)*[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.001838)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000614)*[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.000270)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.002158)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001725)*[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.001761)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000791)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00063)
+Rendered shared/_header (0.00106)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.07827 (12 reqs/sec) | Rendering: 0.03370 (43%) | DB: 0.02284 (29%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 08:02:47) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.016601)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.074373)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.063748)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.070289)*[0m   *[0;1mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000412)*[0m   *[0mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;36;1mDepartment Columns (0.060650)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mUser Exists (0.123233)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000360)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000300)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000325)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000305)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000273)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.12980)
+  *[4;35;1mApplicant Load (0.000287)*[0m   *[0mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.01306)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00006)
+Rendered users/_user_bar (0.00044)
+Rendered shared/_header (0.00071)
+Rendered shared/_toolbar (0.00003)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.46908 (2 reqs/sec) | Rendering: 0.02641 (5%) | DB: 0.41116 (87%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 08:02:55) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;11&quot;], &quot;title&quot;=&gt;&quot;Current User Test&quot;, &quot;description&quot;=&gt;&quot;asd&quot;, &quot;department_id&quot;=&gt;&quot;3&quot;}}
+  *[4;36;1mUser Columns (0.002326)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000881)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002589)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000445)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 11) *[0m
+  *[4;36;1mSQL (0.000140)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000136)*[0m   *[0mCOMMIT*[0m
+  *[4;36;1mSQL (0.000149)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mSQL (0.000415)*[0m   *[0mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'test' AND `users`.id &lt;&gt; 11) *[0m
+  *[4;36;1mSQL (0.000202)*[0m   *[0;1mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'test@test.com' AND `users`.id &lt;&gt; 11) *[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mROLLBACK*[0m
+
+
+NameError (undefined local variable or method `current_user' for #&lt;Position:0x3b06aa0&gt;):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:256:in `method_missing'
+    /app/models/position.rb:17:in `add_creator'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:173:in `evaluate_method'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:161:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:93:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:92:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/callbacks.rb:272:in `run_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:298:in `callback'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:219:in `create_without_timestamps'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/timestamp.rb:29:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2472:in `create_or_update_without_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:207:in `create_or_update'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2200:in `save_without_validation'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/validations.rb:901:in `save_without_dirty'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/dirty.rb:75:in `save_without_transactions'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:79:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:98:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /app/controllers/positions_controller.rb:51:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/positions_controller.rb:50:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 08:03:04) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003184)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000314)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002466)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000595)*[0m   *[0mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;36;1mDepartment Load (0.000408)*[0m   *[0;1mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;35;1mDepartment Columns (0.002329)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mUser Exists (0.000369)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000276)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000274)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000384)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000202)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000189)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.09949)
+  *[4;36;1mApplicant Load (0.000341)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.01139)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00044)
+Rendered shared/_header (0.00072)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.16003 (6 reqs/sec) | Rendering: 0.11854 (74%) | DB: 0.01875 (11%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#create (for 127.0.0.1 at 2008-06-24 08:03:06) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Position&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;, &quot;position&quot;=&gt;{&quot;reviewer_ids&quot;=&gt;[&quot;11&quot;], &quot;title&quot;=&gt;&quot;Current User Test&quot;, &quot;description&quot;=&gt;&quot;asd&quot;, &quot;department_id&quot;=&gt;&quot;3&quot;}}
+  *[4;35;1mUser Columns (0.002745)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000404)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mPosition Columns (0.002384)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mUser Load (0.000577)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 11) *[0m
+  *[4;35;1mSQL (0.000156)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000145)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mSQL (0.000148)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mSQL (0.000385)*[0m   *[0;1mSELECT `login` FROM `users` WHERE (LOWER(`users`.login) = 'test' AND `users`.id &lt;&gt; 11) *[0m
+  *[4;35;1mSQL (0.000428)*[0m   *[0mSELECT `email` FROM `users` WHERE (LOWER(`users`.email) = 'test@test.com' AND `users`.id &lt;&gt; 11) *[0m
+  *[4;36;1mPosition Create (0.000000)*[0m   *[0;1mMysql::Error: Column 'user_id' cannot be null: INSERT INTO `positions` (`updated_at`, `title`, `is_closed`, `description`, `user_id`, `department_id`, `created_at`) VALUES('2008-06-24 15:03:06', 'Current User Test', 1, 'asd', NULL, 3, '2008-06-24 15:03:06')*[0m
+  *[4;35;1mSQL (0.000154)*[0m   *[0mROLLBACK*[0m
+
+
+ActiveRecord::StatementInvalid (Mysql::Error: Column 'user_id' cannot be null: INSERT INTO `positions` (`updated_at`, `title`, `is_closed`, `description`, `user_id`, `department_id`, `created_at`) VALUES('2008-06-24 15:03:06', 'Current User Test', 1, 'asd', NULL, 3, '2008-06-24 15:03:06')):
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:161:in `insert_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:309:in `insert_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:44:in `insert_without_query_dirty'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:19:in `insert'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2506:in `create_without_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:220:in `create_without_timestamps'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/timestamp.rb:29:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2472:in `create_or_update_without_callbacks'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/callbacks.rb:207:in `create_or_update'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2200:in `save_without_validation'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/validations.rb:901:in `save_without_dirty'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/dirty.rb:75:in `save_without_transactions'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:79:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:98:in `transaction'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/transactions.rb:106:in `save'
+    /app/controllers/positions_controller.rb:51:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/positions_controller.rb:50:in `create'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing PositionsController#new (for 127.0.0.1 at 2008-06-24 08:04:07) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003165)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000308)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002439)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mUser Load (0.000487)*[0m   *[0mSELECT * FROM `users` ORDER BY name ASC*[0m
+  *[4;36;1mDepartment Load (0.000362)*[0m   *[0;1mSELECT * FROM `departments` ORDER BY name ASC*[0m
+Rendering template within layouts/application
+Rendering positions/new
+  *[4;35;1mDepartment Columns (0.002201)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mUser Exists (0.000363)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 2) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000279)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 4) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000276)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 7) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000272)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 1) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;36;1mUser Exists (0.000268)*[0m   *[0;1mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 3) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+  *[4;35;1mUser Exists (0.000184)*[0m   *[0mSELECT `users`.id FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`users`.`id` = 11) AND (`positions_users`.position_id = NULL ) ORDER BY name ASC LIMIT 1*[0m
+Rendered positions/_reviewers_list (0.00551)
+  *[4;36;1mApplicant Load (0.000319)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY name ASC*[0m
+Rendered applicants/_list (0.00992)
+Rendered shared/_set_focus (0.00002)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00042)
+Rendered shared/_header (0.00070)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.06434 (15 reqs/sec) | Rendering: 0.02290 (35%) | DB: 0.01845 (28%) | 200 OK [http://localhost/positions/new]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 08:04:09) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;35;1mUser Columns (0.003292)*[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;1mPosition Load (0.000441)*[0m   *[0mSELECT * FROM `positions` WHERE (is_closed = 0) ORDER BY positions.created_at DESC*[0m
+Rendering template within layouts/application
+Rendering positions/index
+  *[4;36;1mPosition Columns (0.002487)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mDepartment Columns (0.002317)*[0m   *[0mSHOW FIELDS FROM `departments`*[0m
+  *[4;36;1mDepartment Load (0.000348)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;35;1mJoin Table Columns (0.002186)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001882)*[0m   *[0;1mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 2 ) ORDER BY applicants.name ASC*[0m
+  *[4;35;1mJoin Table Columns (0.001907)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000965)*[0m   *[0;1mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 2 ) ORDER BY name ASC*[0m
+  *[4;35;1mDepartment Load (0.000208)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;36;1mJoin Table Columns (0.001942)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001904)*[0m   *[0mSELECT * 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;36;1mJoin Table Columns (0.001835)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000987)*[0m   *[0mSELECT * 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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00062)
+Rendered shared/_header (0.00105)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00035)
+Rendered shared/_footer (0.00002)
+Completed in 0.16754 (5 reqs/sec) | Rendering: 0.03154 (18%) | DB: 0.02303 (13%) | 200 OK [http://localhost/positions]
+
+
+Processing PositionsController#show (for 127.0.0.1 at 2008-06-24 08:13:17) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;6&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.003112)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000367)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Columns (0.002691)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Load (0.000530)*[0m   *[0mSELECT * FROM `positions` WHERE (`positions`.`id` = 6) *[0m
+Rendering template within layouts/application
+Rendering positions/show
+  *[4;36;1mDepartment Columns (0.002384)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.000394)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 4) *[0m
+  *[4;36;1mUser Load (0.000262)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;35;1mVettingStage Load (0.000295)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (parent_id IS NULL) LIMIT 1*[0m
+  *[4;36;1mVettingStage Columns (0.001549)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;35;1mVettingStage Load (0.000272)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 1) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000206)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 8) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000201)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 10) ORDER BY name*[0m
+  *[4;36;1mVettingStage Load (0.000201)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 13) ORDER BY name*[0m
+  *[4;35;1mVettingStage Load (0.000196)*[0m   *[0mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.parent_id = 22) ORDER BY name*[0m
+  *[4;36;1mJoin Table Columns (0.002061)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001816)*[0m   *[0mSELECT * FROM `applicants` INNER JOIN `applicants_positions` ON `applicants`.id = `applicants_positions`.applicant_id WHERE (`applicants_positions`.position_id = 6 ) ORDER BY applicants.name ASC*[0m
+  *[4;36;1mJoin Table Columns (0.001851)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000847)*[0m   *[0mSELECT * FROM `users` INNER JOIN `positions_users` ON `users`.id = `positions_users`.user_id WHERE (`positions_users`.position_id = 6 ) ORDER BY name ASC*[0m
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00063)
+Rendered shared/_header (0.00115)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.08224 (12 reqs/sec) | Rendering: 0.03798 (46%) | DB: 0.01923 (23%) | 200 OK [http://localhost/positions/6]
+
+
+Processing PositionsController#index (for 127.0.0.1 at 2008-06-24 08:13:18) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;positions&quot;}
+  *[4;36;1mUser Columns (0.142916)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.080845)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mPosition Load (0.000476)*[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.148809)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mDepartment Columns (0.122025)*[0m   *[0;1mSHOW FIELDS FROM `departments`*[0m
+  *[4;35;1mDepartment Load (0.054542)*[0m   *[0mSELECT * FROM `departments` WHERE (`departments`.`id` = 3) *[0m
+  *[4;36;1mJoin Table Columns (0.001933)*[0m   *[0;1mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;35;1mApplicant Load (0.001793)*[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.001707)*[0m   *[0;1mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;35;1mUser Load (0.000832)*[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.000275)*[0m   *[0;1mSELECT * FROM `departments` WHERE (`departments`.`id` = 1) *[0m
+  *[4;35;1mJoin Table Columns (0.001997)*[0m   *[0mSHOW FIELDS FROM `applicants_positions`*[0m
+  *[4;36;1mApplicant Load (0.001750)*[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.001584)*[0m   *[0mSHOW FIELDS FROM `positions_users`*[0m
+  *[4;36;1mUser Load (0.000889)*[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 admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00081)
+Rendered shared/_header (0.00126)
+Rendered shared/_toolbar (0.00005)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.62337 (1 reqs/sec) | Rendering: 0.03711 (5%) | DB: 0.56237 (90%) | 200 OK [http://localhost/positions]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 08:13:19) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.003466)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000468)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Load (0.000439)*[0m   *[0mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+Rendered admin_settings/_admin_bar (0.00008)
+Rendered users/_user_bar (0.00324)
+Rendered shared/_header (0.00375)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00037)
+Rendered shared/_footer (0.00002)
+Completed in 0.12187 (8 reqs/sec) | Rendering: 0.00723 (5%) | DB: 0.00437 (3%) | 200 OK [http://localhost/applicants]
+  *[4;36;1mSQL (0.000150)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000109)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mSQL (0.000394)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mSQL (0.000312)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000149)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000145)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000142)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000129)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000147)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000142)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000142)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000140)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000141)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000141)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000141)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000142)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000141)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUsers (20080619071355)
+  *[4;36;1mSQL (0.000142)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddAdminToUser (20080619195143)
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicants (20080619201047)
+  *[4;36;1mSQL (0.000140)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositions (20080619201215)
+  *[4;35;1mSQL (0.000128)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateDepartments (20080619210955)
+  *[4;36;1mSQL (0.000141)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositionsUsers (20080619224940)
+  *[4;35;1mSQL (0.000197)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to VettingStages (20080620022524)
+  *[4;36;1mSQL (0.000143)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicantsPositions (20080620071254)
+  *[4;35;1mSQL (0.000142)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddEnabledToPosition (20080620083931)
+  *[4;36;1mSQL (0.000140)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddCoverLetterToApplicant (20080620091324)
+  *[4;35;1mSQL (0.000161)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUserNotes (20080620235051)
+  *[4;36;1mSQL (0.000154)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to ActsAsCommentable (20080621083331)
+  *[4;35;1mSQL (0.000126)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to DropTableUsernotes (20080621083443)
+  *[4;36;1mSQL (0.000124)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddVettingStageToComment (20080621095038)
+  *[4;35;1mSQL (0.000233)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddTimestampsToApplicantsPositions (20080621104316)
+  *[4;36;1mSQL (0.000153)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUndoRecords (20080621104318)
+  *[4;35;1mSQL (0.000140)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateAdminSettings (20080623211636)
+  *[4;36;1mSQL (0.000151)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateVotes (20080623221948)
+  *[4;35;1mSQL (0.000144)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicantPositionVettingStage (20080624151207)
+  *[4;36;1mSQL (0.000144)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.003039)*[0m   *[0mCREATE TABLE `applicants_positions_vetting_stages` (`applicant_id` int(11) NOT NULL, `position_id` int(11) NOT NULL, `vetting_stage_id` int(11) NOT NULL) ENGINE=InnoDB*[0m
+  *[4;36;1mSQL (0.000883)*[0m   *[0;1mINSERT INTO schema_migrations (version) VALUES ('20080624151207')*[0m
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 08:29:11) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002706)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000622)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000409)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+Rendered admin_settings/_admin_bar (0.00007)
+Rendered users/_user_bar (0.00384)
+Rendered shared/_header (0.00437)
+Rendered shared/_toolbar (0.00006)
+Rendered shared/_action_bar_wrapper (0.00036)
+Rendered shared/_footer (0.00002)
+Completed in 0.03938 (25 reqs/sec) | Rendering: 0.00773 (19%) | DB: 0.00374 (9%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#new (for 127.0.0.1 at 2008-06-24 08:29:12) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.002012)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000246)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.001898)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mPosition Load (0.000289)*[0m   *[0;1mSELECT * FROM `positions` WHERE (is_closed = 0) *[0m
+Rendering template within layouts/application
+Rendering applicants/new
+  *[4;35;1mPosition Load (0.000401)*[0m   *[0mSELECT * FROM `positions` ORDER BY title ASC*[0m
+  *[4;36;1mPosition Columns (0.001718)*[0m   *[0;1mSHOW FIELDS FROM `positions`*[0m
+  *[4;35;1mPosition Exists (0.000000)*[0m   *[0mMysql::Error: Table 'applican_development.hiring_stages' doesn't exist: SELECT `positions`.id FROM `positions` INNER JOIN `hiring_stages` ON `positions`.id = `hiring_stages`.position_id WHERE (`positions`.`id` = 1) AND (`hiring_stages`.applicant_id = NULL ) LIMIT 1*[0m
+
+
+ActionView::TemplateError (Mysql::Error: Table 'applican_development.hiring_stages' doesn't exist: SELECT `positions`.id FROM `positions`  INNER JOIN `hiring_stages` ON `positions`.id = `hiring_stages`.position_id   WHERE (`positions`.`id` = 1) AND (`hiring_stages`.applicant_id = NULL )  LIMIT 1) on line #6 of positions/_list.html.erb:
+3: 		&lt;% Position.find( :all, :order =&gt; &quot;title ASC&quot; ).each do |position| %&gt;
+4: 			&lt;li class=&quot;selectable&quot;&gt;
+5: 				&lt;label class='unstyled'&gt;
+6: 					&lt;%= check_box_tag(&quot;applicant[position_ids][]&quot;, position.id, @applicant.positions.include?( position ) ) %&gt;
+7: 					&lt;%= position.title %&gt;
+8: 				&lt;/label&gt;
+9: 			&lt;/li&gt;
+
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/mysql_adapter.rb:515:in `select'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:80:in `cache_sql'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:59:in `select_all'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:602:in `exists?'
+    /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'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/associations/association_collection.rb:245:in `include?'
+    app/views/positions/_list.html.erb:6:in `_run_erb_47app47views47positions47_list46html46erb'
+    app/views/positions/_list.html.erb:3:in `each'
+    app/views/positions/_list.html.erb:3:in `_run_erb_47app47views47positions47_list46html46erb'
+    /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/partial_template.rb:20:in `render'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:26:in `benchmark'
+    /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:26:in `benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/partial_template.rb:19: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/partials.rb:110:in `render_partial'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/base.rb:273:in `render'
+    app/views/applicants/new.html.erb:36:in `_run_erb_47app47views47applicants47new46html46erb'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/helpers/form_helper.rb:317:in `fields_for'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_view/helpers/form_helper.rb:253:in `form_for'
+    app/views/applicants/new.html.erb:4:in `_run_erb_47app47views47applicants47new46html46erb'
+    /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:36:in `new'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /usr/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/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)
+  *[4;36;1mSQL (0.000151)*[0m   *[0;1mSET NAMES 'utf8'*[0m
+  *[4;35;1mSQL (0.000108)*[0m   *[0mSET SQL_AUTO_IS_NULL=0*[0m
+  *[4;36;1mSQL (0.000393)*[0m   *[0;1mSHOW TABLES*[0m
+  *[4;35;1mSQL (0.000301)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000161)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000194)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000149)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000323)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000172)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000150)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000144)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000174)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000143)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000143)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000142)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000142)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000177)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000125)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000129)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000156)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+  *[4;36;1mSQL (0.000124)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.000144)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUsers (20080619071355)
+  *[4;36;1mSQL (0.000142)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddAdminToUser (20080619195143)
+  *[4;35;1mSQL (0.000142)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicants (20080619201047)
+  *[4;36;1mSQL (0.000141)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositions (20080619201215)
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateDepartments (20080619210955)
+  *[4;36;1mSQL (0.000143)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreatePositionsUsers (20080619224940)
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to VettingStages (20080620022524)
+  *[4;36;1mSQL (0.000142)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateApplicantsPositions (20080620071254)
+  *[4;35;1mSQL (0.000142)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddEnabledToPosition (20080620083931)
+  *[4;36;1mSQL (0.000192)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddCoverLetterToApplicant (20080620091324)
+  *[4;35;1mSQL (0.000122)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUserNotes (20080620235051)
+  *[4;36;1mSQL (0.000123)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to ActsAsCommentable (20080621083331)
+  *[4;35;1mSQL (0.000193)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to DropTableUsernotes (20080621083443)
+  *[4;36;1mSQL (0.000144)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to AddVettingStageToComment (20080621095038)
+  *[4;35;1mSQL (0.000143)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to AddTimestampsToApplicantsPositions (20080621104316)
+  *[4;36;1mSQL (0.000140)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateUndoRecords (20080621104318)
+  *[4;35;1mSQL (0.000142)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateAdminSettings (20080623211636)
+  *[4;36;1mSQL (0.000139)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+Migrating to CreateVotes (20080623221948)
+  *[4;35;1mSQL (0.000141)*[0m   *[0mSELECT version FROM schema_migrations*[0m
+Migrating to CreateHiringStages (20080624152323)
+  *[4;36;1mSQL (0.000157)*[0m   *[0;1mSELECT version FROM schema_migrations*[0m
+  *[4;35;1mSQL (0.054732)*[0m   *[0mCREATE TABLE `hiring_stages` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `applicant_id` int(11) NOT NULL, `position_id` int(11) NOT NULL, `vetting_stage_id` int(11) NOT NULL, `created_at` datetime DEFAULT NULL NULL, `updated_at` datetime DEFAULT NULL NULL) ENGINE=InnoDB*[0m
+  *[4;36;1mSQL (0.001210)*[0m   *[0;1mINSERT INTO schema_migrations (version) VALUES ('20080624152323')*[0m
+
+
+Processing ApplicantsController#new (for 127.0.0.1 at 2008-06-24 08:31:52) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.002539)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.000250)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.001860)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mPosition Load (0.000449)*[0m   *[0mSELECT * FROM `positions` WHERE (is_closed = 0) *[0m
+Rendering template within layouts/application
+Rendering applicants/new
+  *[4;36;1mPosition Load (0.000334)*[0m   *[0;1mSELECT * FROM `positions` ORDER BY title ASC*[0m
+  *[4;35;1mPosition Columns (0.001696)*[0m   *[0mSHOW FIELDS FROM `positions`*[0m
+  *[4;36;1mPosition Exists (0.000398)*[0m   *[0;1mSELECT `positions`.id FROM `positions` INNER JOIN `hiring_stages` ON `positions`.id = `hiring_stages`.position_id WHERE (`positions`.`id` = 1) AND (`hiring_stages`.applicant_id = NULL ) LIMIT 1*[0m
+  *[4;35;1mPosition Exists (0.000182)*[0m   *[0mSELECT `positions`.id FROM `positions` INNER JOIN `hiring_stages` ON `positions`.id = `hiring_stages`.position_id WHERE (`positions`.`id` = 2) AND (`hiring_stages`.applicant_id = NULL ) LIMIT 1*[0m
+  *[4;36;1mPosition Exists (0.000224)*[0m   *[0;1mSELECT `positions`.id FROM `positions` INNER JOIN `hiring_stages` ON `positions`.id = `hiring_stages`.position_id WHERE (`positions`.`id` = 6) AND (`hiring_stages`.applicant_id = NULL ) LIMIT 1*[0m
+Rendered positions/_list (0.00647)
+Rendered shared/_set_focus (0.00001)
+Rendered admin_settings/_admin_bar (0.00011)
+Rendered users/_user_bar (0.00059)
+Rendered shared/_header (0.00088)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00002)
+Completed in 0.04860 (20 reqs/sec) | Rendering: 0.01000 (20%) | DB: 0.01005 (20%) | 200 OK [http://localhost/applicants/new]
+
+
+Processing ApplicantsController#create (for 127.0.0.1 at 2008-06-24 08:31:58) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA6DHVzZXJfaWRpBg==--f7be90079653712af2c763b580ca73ec25553391
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create Applicant&quot;, &quot;applicant&quot;=&gt;{&quot;name&quot;=&gt;&quot;Bob&quot;, &quot;cover_letter&quot;=&gt;&quot;asdfasdf&quot;, &quot;resume_file_temp&quot;=&gt;&quot;&quot;, &quot;contact_info&quot;=&gt;&quot;asdfsadf&quot;, &quot;resume_file&quot;=&gt;&quot;&quot;}, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;35;1mUser Columns (0.027491)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.007286)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mApplicant Columns (0.012081)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mSQL (0.002472)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mUser Load (0.000364)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mApplicant Create (0.000282)*[0m   *[0;1mINSERT INTO `applicants` (`name`, `updated_at`, `cover_letter`, `contact_info`, `resume_file`, `user_id`, `created_at`) VALUES('Bob', '2008-06-24 15:31:58', 'asdfasdf', 'asdfsadf', NULL, 1, '2008-06-24 15:31:58')*[0m
+  *[4;35;1mSQL (0.007291)*[0m   *[0mCOMMIT*[0m
+Redirected to http://localhost:3000/applicants
+Completed in 0.09282 (10 reqs/sec) | DB: 0.05727 (61%) | 302 Found [http://localhost/applicants]
+
+
+Processing ApplicantsController#index (for 127.0.0.1 at 2008-06-24 08:31:58) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiKEFwcGxpY2FudCB3YXMgc3VjY2Vz
+c2Z1bGx5IGNyZWF0ZWQuBjoKQHVzZWR7BjsIRg==--43609beb6fa95a4ffe04943df84ed6f75efe1cd8
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.249012)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.008243)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Load (0.000326)*[0m   *[0;1mSELECT * FROM `applicants` ORDER BY applicants.name ASC*[0m
+Rendering template within layouts/application
+Rendering applicants/index
+  *[4;35;1mApplicant Columns (0.002019)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00049)
+Rendered shared/_header (0.00078)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00023)
+Rendered shared/_footer (0.00001)
+Completed in 0.29081 (3 reqs/sec) | Rendering: 0.00756 (2%) | DB: 0.25960 (89%) | 200 OK [http://localhost/applicants]
+
+
+Processing ApplicantsController#show (for 127.0.0.1 at 2008-06-24 08:32:05) [GET]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIihBcHBsaWNhbnQgd2FzIHN1Y2Nlc3NmdWxseSBjcmVh
+dGVkLgY6CkB1c2VkewY7B1Q6DHVzZXJfaWRpBg==--7e19e24fd39b25429939215e0ba1190e670ae240
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;16&quot;, &quot;controller&quot;=&gt;&quot;applicants&quot;}
+  *[4;36;1mUser Columns (0.020084)*[0m   *[0;1mSHOW FIELDS FROM `users`*[0m
+  *[4;35;1mUser Load (0.002921)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;36;1mApplicant Columns (0.002375)*[0m   *[0;1mSHOW FIELDS FROM `applicants`*[0m
+  *[4;35;1mApplicant Load (0.000554)*[0m   *[0mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 16) *[0m
+  *[4;36;1mVettingStage Load (0.000308)*[0m   *[0;1mSELECT * FROM `vetting_stages` *[0m
+Rendering template within layouts/application
+Rendering applicants/show
+  *[4;35;1mJoin Table Columns (0.003192)*[0m   *[0mSHOW FIELDS FROM `hiring_stages`*[0m
+  *[4;36;1mPosition Load (0.001160)*[0m   *[0;1mSELECT * FROM `positions` INNER JOIN `hiring_stages` ON `positions`.id = `hiring_stages`.position_id WHERE (`hiring_stages`.applicant_id = 16 ) *[0m
+  *[4;35;1mComment Load (0.000579)*[0m   *[0mSELECT * FROM `comments` WHERE (`comments`.commentable_id = 16 AND `comments`.commentable_type = 'Applicant' AND (user_id = 1)) ORDER BY created_at DESC, created_at ASC*[0m
+  *[4;36;1mVettingStage Columns (0.001837)*[0m   *[0;1mSHOW FIELDS FROM `vetting_stages`*[0m
+Rendered comments/_form (0.00813)
+Rendered admin_settings/_admin_bar (0.00005)
+Rendered users/_user_bar (0.00043)
+Rendered shared/_header (0.00072)
+Rendered shared/_toolbar (0.00004)
+Rendered shared/_action_bar_wrapper (0.00024)
+Rendered shared/_footer (0.00002)
+Completed in 0.19112 (5 reqs/sec) | Rendering: 0.02443 (12%) | DB: 0.03301 (17%) | 200 OK [http://localhost/applicants/16]
+
+
+Processing CommentsController#new (for 127.0.0.1 at 2008-06-24 08:32:14) [POST]
+  Session ID: BAh7CDoMY3NyZl9pZCIlNjk4NmY5ZTBmMjEzMDlkYjA4ODNlZjc1MDVmNTM0
+ZGE6DHVzZXJfaWRpBiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
+c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--0961466b14f332907fbd1acef43bdec01e7eba20
+  Parameters: {&quot;commit&quot;=&gt;&quot;Save Comment&quot;, &quot;authenticity_token&quot;=&gt;&quot;debe9d7b52eb4878beb5410f99b0efd93fbaf491&quot;, &quot;action&quot;=&gt;&quot;new&quot;, &quot;id&quot;=&gt;&quot;16&quot;, &quot;controller&quot;=&gt;&quot;comments&quot;, &quot;comment&quot;=&gt;{&quot;title&quot;=&gt;&quot;Boogers&quot;, &quot;vetting_stage_id&quot;=&gt;&quot;1&quot;, &quot;comment&quot;=&gt;&quot;sadfasdfa&quot;}}
+  *[4;35;1mApplicant Columns (0.002909)*[0m   *[0mSHOW FIELDS FROM `applicants`*[0m
+  *[4;36;1mApplicant Load (0.000542)*[0m   *[0;1mSELECT * FROM `applicants` WHERE (`applicants`.`id` = 16) *[0m
+  *[4;35;1mUser Columns (0.001962)*[0m   *[0mSHOW FIELDS FROM `users`*[0m
+  *[4;36;1mUser Load (0.000897)*[0m   *[0;1mSELECT * FROM `users` WHERE (`users`.`id` = 1) LIMIT 1*[0m
+  *[4;35;1mSQL (0.000154)*[0m   *[0mBEGIN*[0m
+  *[4;36;1mComment Create (0.000277)*[0m   *[0;1mINSERT INTO `comments` (`commentable_type`, `title`, `commentable_id`, `user_id`, `vetting_stage_id`, `comment`, `created_at`) VALUES('Applicant', 'Boogers', 16, 1, 1, 'sadfasdfa', '2008-06-24 15:32:14')*[0m
+  *[4;35;1mSQL (0.000805)*[0m   *[0mCOMMIT*[0m
+  *[4;36;1mSQL (0.000205)*[0m   *[0;1mBEGIN*[0m
+  *[4;35;1mUser Load (0.000299)*[0m   *[0mSELECT * FROM `users` WHERE (`users`.`id` = 1) *[0m
+  *[4;36;1mSQL (0.000162)*[0m   *[0;1mCOMMIT*[0m
+  *[4;35;1mVettingStage Columns (0.001727)*[0m   *[0mSHOW FIELDS FROM `vetting_stages`*[0m
+  *[4;36;1mVettingStage Load (0.001054)*[0m   *[0;1mSELECT * FROM `vetting_stages` WHERE (`vetting_stages`.`id` = 1) *[0m
+Rendered comments/_comment (0.00569)
+Completed in 0.05986 (16 reqs/sec) | Rendering: 0.00906 (15%) | DB: 0.01099 (18%) | 200 OK [http://localhost/comments/16/new]</diff>
      <filename>log/development.log</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6293b83987213d15a8c7cfa1fe2391f3e44f17fa</id>
    </parent>
  </parents>
  <author>
    <name>Chris</name>
    <email>chris@ChoOyu.local</email>
  </author>
  <url>http://github.com/senorprogrammer/applican/commit/c1b2e1a0df7b7f44546a85b8931d8c1a4adfc896</url>
  <id>c1b2e1a0df7b7f44546a85b8931d8c1a4adfc896</id>
  <committed-date>2008-06-24T08:34:10-07:00</committed-date>
  <authored-date>2008-06-24T08:34:10-07:00</authored-date>
  <message>First steps in adding the linking between applicants, positions and hiring stages, if I have the modelling correct....</message>
  <tree>4ef29a1b658b0e590c4598d048afc5ac82652003</tree>
  <committer>
    <name>Chris</name>
    <email>chris@ChoOyu.local</email>
  </committer>
</commit>
