paths = $paths; return $this; } public function setHandles(array $handles) { $this->handles = $handles; return $this; } public static function renderLastModifiedColumns( PhabricatorRepository $repository, array $handles, PhabricatorRepositoryCommit $commit = null, PhabricatorRepositoryCommitData $data = null) { if ($commit) { $epoch = $commit->getEpoch(); $modified = DiffusionView::linkCommit( $repository, $commit->getCommitIdentifier()); $date = date('M j, Y', $epoch); $time = date('g:i A', $epoch); } else { $modified = ''; $date = ''; $time = ''; } if ($data) { $author_phid = $data->getCommitDetail('authorPHID'); if ($author_phid && isset($handles[$author_phid])) { $author = $handles[$author_phid]->renderLink(); } else { $author = phutil_escape_html($data->getAuthorName()); } $details = phutil_escape_html($data->getSummary()); } else { $author = ''; $details = ''; } return array( 'commit' => $modified, 'date' => $date, 'time' => $time, 'author' => $author, 'details' => $details, ); } public function render() { $request = $this->getDiffusionRequest(); $repository = $request->getRepository(); $base_path = trim($request->getPath(), '/'); if ($base_path) { $base_path = $base_path.'/'; } $need_pull = array(); $rows = array(); foreach ($this->paths as $path) { if ($path->getFileType() == DifferentialChangeType::FILE_DIRECTORY) { $browse_text = $path->getPath().'/'; $dir_slash = '/'; $browse_link = ''.$this->linkBrowse( $base_path.$path->getPath().$dir_slash, array( 'text' => $browse_text, )).''; } else { $browse_text = $path->getPath(); $dir_slash = null; $browse_link = $this->linkBrowse( $base_path.$path->getPath().$dir_slash, array( 'text' => $browse_text, )); } $commit = $path->getLastModifiedCommit(); if ($commit) { $dict = self::renderLastModifiedColumns( $repository, $this->handles, $commit, $path->getLastCommitData()); } else { $dict = array( 'commit' => celerity_generate_unique_node_id(), 'date' => celerity_generate_unique_node_id(), 'time' => celerity_generate_unique_node_id(), 'author' => celerity_generate_unique_node_id(), 'details' => celerity_generate_unique_node_id(), ); $uri = '/diffusion/'.$repository->getCallsign().'/lastmodified/'. $request->getBranchURIComponent($request->getBranch()). $base_path.$path->getPath(); if ($request->getRawCommit()) { $uri .= ';'.$request->getRawCommit(); } $need_pull[$uri] = $dict; foreach ($dict as $k => $uniq) { $dict[$k] = ''; } } $rows[] = array( $this->linkHistory($base_path.$path->getPath().$dir_slash), $browse_link, $dict['commit'], $dict['date'], $dict['time'], $dict['author'], $dict['details'], ); } if ($need_pull) { Javelin::initBehavior('diffusion-pull-lastmodified', $need_pull); } $view = new AphrontTableView($rows); $view->setHeaders( array( 'History', 'Path', 'Modified', 'Date', 'Time', 'Author', 'Details', )); $view->setColumnClasses( array( '', '', '', '', 'right', '', 'wide', )); return $view->render(); } }