/**
  * View for a booking that is about to start.
  */
 public function waitingAction()
 {
     $this->view->headTitle($this->_headPrefix . 'Reservation');
     $this->view->bid = $this->_request->getParam('bid');
     if (!$this->view->bid) {
         $this->_redirectTo('index', 'queue');
     }
     $booking = Sahara_Soap::getSchedServerBookingsClient()->getBooking(array('userID' => array('userQName' => $this->_auth->getIdentity()), 'bookingID' => array('bookingID' => $this->view->bid)));
     $this->view->displayName = $booking->displayName;
     $this->view->time = Sahara_DateTimeUtil::getTsFromISO8601($booking->startTime) - time();
 }