private function buildStorageProperties(PhabricatorRepository $repository, PhabricatorActionListView $actions)
 {
     $viewer = $this->getRequest()->getUser();
     $view = id(new PHUIPropertyListView())->setUser($viewer)->setActionList($actions);
     $service_phid = $repository->getAlmanacServicePHID();
     if ($service_phid) {
         $v_service = $viewer->renderHandle($service_phid);
     } else {
         $v_service = phutil_tag('em', array(), pht('Local'));
     }
     $view->addProperty(pht('Storage Service'), $v_service);
     $view->addProperty(pht('Storage Path'), $repository->getHumanReadableDetail('local-path'));
     return $view;
 }
 private function buildLocalProperties(PhabricatorRepository $repository, PhabricatorActionListView $actions)
 {
     $viewer = $this->getRequest()->getUser();
     $view = id(new PHUIPropertyListView())->setUser($viewer)->setActionList($actions);
     $view->addProperty(pht('Local Path'), $repository->getHumanReadableDetail('local-path'));
     return $view;
 }