1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 08:42:41 +01:00

Fix Diffusion line number links in Git

Summary:
When you click a line number link in Git from a branch tip, it takes you to
"...;origin/master$..." which (a) doesn't work and (b) doesn't permanently
reference the line.

Link to the "stable commit name" instead.

Also fix a few other bugs/warnings/layout things.

Test Plan:
Clicked line number links in Git and SVN repositories, browsed around stuff,
checked error log.

Reviewed By: jungejason
Reviewers: jungejason, tuomaspelkonen, aran
CC: aran, epriestley, jungejason
Differential Revision: 303
This commit is contained in:
epriestley 2011-05-18 07:44:53 -07:00
parent 28146171ce
commit 6b8da8c347
7 changed files with 100 additions and 43 deletions

View file

@ -54,17 +54,20 @@ class DiffusionBrowseFileController extends DiffusionController {
} }
$select .= '</select>'; $select .= '</select>';
require_celerity_resource('diffusion-source-css');
$view_select_panel = new AphrontPanelView(); $view_select_panel = new AphrontPanelView();
$view_select_form = phutil_render_tag( $view_select_form = phutil_render_tag(
'form', 'form',
array( array(
'action' => $request->getRequestURI(), 'action' => $request->getRequestURI(),
'method' => 'get', 'method' => 'get',
'style' => 'display: inline', 'class' => 'diffusion-browse-type-form',
), ),
$select. $select.
'<button>view</button>'); '<button>View</button>');
$view_select_panel->appendChild($view_select_form); $view_select_panel->appendChild($view_select_form);
$view_select_panel->appendChild('<div style="clear: both;"></div>');
// Build the content of the file. // Build the content of the file.
$corpus = $this->buildCorpus($selected); $corpus = $this->buildCorpus($selected);
@ -102,7 +105,7 @@ class DiffusionBrowseFileController extends DiffusionController {
*/ */
public function getImageType($path) { public function getImageType($path) {
$ext = pathinfo($path); $ext = pathinfo($path);
$ext = $ext['extension']; $ext = idx($ext, 'extension');
return idx($this->imageTypes, $ext); return idx($this->imageTypes, $ext);
} }
@ -173,7 +176,6 @@ class DiffusionBrowseFileController extends DiffusionController {
case 'blame': case 'blame':
default: default:
require_celerity_resource('syntax-highlighting-css'); require_celerity_resource('syntax-highlighting-css');
require_celerity_resource('diffusion-source-css');
list($text_list, $rev_list, $blame_dict) = $file_query->getBlameData(); list($text_list, $rev_list, $blame_dict) = $file_query->getBlameData();
@ -215,10 +217,14 @@ class DiffusionBrowseFileController extends DiffusionController {
$rows = array(); $rows = array();
$n = 1; $n = 1;
if ($blame_dict) {
$epoch_list = ipull($blame_dict, 'epoch'); $epoch_list = ipull($blame_dict, 'epoch');
$max = max($epoch_list); $max = max($epoch_list);
$min = min($epoch_list); $min = min($epoch_list);
$range = $max - $min + 1; $range = $max - $min + 1;
} else {
$range = 1;
}
foreach ($text_list as $k => $line) { foreach ($text_list as $k => $line) {
if ($needs_blame) { if ($needs_blame) {
@ -284,11 +290,12 @@ class DiffusionBrowseFileController extends DiffusionController {
// Create the row display. // Create the row display.
$uri_path = $drequest->getUriPath(); $uri_path = $drequest->getUriPath();
$uri_rev = $drequest->getCommit(); $uri_rev = $drequest->getStableCommitName();
$l = phutil_render_tag( $l = phutil_render_tag(
'a', 'a',
array( array(
'class' => 'diffusion-line-link',
'href' => $uri_path.';'.$uri_rev.'$'.$n, 'href' => $uri_path.';'.$uri_rev.'$'.$n,
), ),
$n); $n);

View file

@ -27,6 +27,11 @@ final class DiffusionGitBrowseQuery extends DiffusionBrowseQuery {
$local_path = $repository->getDetail('local-path'); $local_path = $repository->getDetail('local-path');
if ($path == '') {
// Fast path to improve the performance of the repository view; we know
// the root is always a tree at any commit and always exists.
$stdout = 'tree';
} else {
try { try {
list($stdout) = execx( list($stdout) = execx(
"(cd %s && git cat-file -t %s:%s)", "(cd %s && git cat-file -t %s:%s)",
@ -57,6 +62,7 @@ final class DiffusionGitBrowseQuery extends DiffusionBrowseQuery {
throw $e; throw $e;
} }
} }
}
if (trim($stdout) == 'blob') { if (trim($stdout) == 'blob') {
$this->reason = self::REASON_IS_FILE; $this->reason = self::REASON_IS_FILE;

View file

@ -27,6 +27,7 @@ class DiffusionRequest {
protected $repository; protected $repository;
protected $repositoryCommit; protected $repositoryCommit;
protected $repositoryCommitData; protected $repositoryCommitData;
protected $stableCommitName;
final private function __construct() { final private function __construct() {
// <private> // <private>
@ -136,6 +137,19 @@ class DiffusionRequest {
return $this->repositoryCommitData; return $this->repositoryCommitData;
} }
/**
* Retrieve a stable, permanent commit name. This returns a non-symbolic
* identifier for the current commit: e.g., a specific commit hash in git
* (NOT a symbolic name like "origin/master") or a specific revision number
* in SVN (NOT a symbolic name like "HEAD").
*
* @return string Stable commit name, like a git hash or SVN revision. Not
* a symbolic commit reference.
*/
public function getStableCommitName() {
return $this->stableCommitName;
}
final public function getRawCommit() { final public function getRawCommit() {
return $this->commit; return $this->commit;
} }

View file

@ -52,7 +52,7 @@ class DiffusionGitRequest extends DiffusionRequest {
// message to indicate whether they've typed in some bogus branch and/or // message to indicate whether they've typed in some bogus branch and/or
// followed a bad link, or misconfigured the default branch in the // followed a bad link, or misconfigured the default branch in the
// Repository tool. // Repository tool.
execx( list($this->stableCommitName) = execx(
'(cd %s && git rev-parse --verify %s)', '(cd %s && git rev-parse --verify %s)',
$local_path, $local_path,
$branch); $branch);
@ -67,6 +67,10 @@ class DiffusionGitRequest extends DiffusionRequest {
// sha1s. // sha1s.
$this->commit = trim($commit); $this->commit = trim($commit);
// If we have a commit, overwrite the branch commit with the more
// specific commit.
$this->stableCommitName = $this->commit;
/* /*
TODO: Unclear if this is actually a good idea or not; it breaks commit views TODO: Unclear if this is actually a good idea or not; it breaks commit views
@ -119,6 +123,10 @@ class DiffusionGitRequest extends DiffusionRequest {
return $this->getBranch(); return $this->getBranch();
} }
public function getStableCommitName() {
return substr($this->stableCommitName, 0, 16);
}
public function getBranchURIComponent($branch) { public function getBranchURIComponent($branch) {
return $this->encodeBranchName($branch).'/'; return $this->encodeBranchName($branch).'/';
} }

View file

@ -18,8 +18,6 @@
class DiffusionSvnRequest extends DiffusionRequest { class DiffusionSvnRequest extends DiffusionRequest {
private $loadedCommit;
protected function initializeFromAphrontRequestDictionary(array $data) { protected function initializeFromAphrontRequestDictionary(array $data) {
parent::initializeFromAphrontRequestDictionary($data); parent::initializeFromAphrontRequestDictionary($data);
if (!strncmp($this->path, ':', 1)) { if (!strncmp($this->path, ':', 1)) {
@ -28,18 +26,34 @@ class DiffusionSvnRequest extends DiffusionRequest {
} }
} }
public function getStableCommitName() {
if ($this->commit) {
return $this->commit;
}
if ($this->stableCommitName === null) {
$commit = id(new PhabricatorRepositoryCommit())
->loadOneWhere(
'repositoryID = %d ORDER BY epoch DESC LIMIT 1',
$this->getRepository()->getID());
if ($commit) {
$this->stableCommitName = $commit->getCommitIdentifier();
} else {
// For new repositories, we may not have parsed any commits yet. Call
// the stable commit "1" and avoid fataling.
$this->stableCommitName = 1;
}
}
return $this->stableCommitName;
}
public function getCommit() { public function getCommit() {
if ($this->commit) { if ($this->commit) {
return $this->commit; return $this->commit;
} }
if (!$this->loadedCommit) { return $this->getStableCommitName();
$this->loadedCommit = id(new PhabricatorRepositoryCommit())->loadOneWhere(
'repositoryID = %d ORDER BY epoch DESC LIMIT 1',
$this->getRepository()->getID())->getCommitIdentifier();
}
return $this->loadedCommit;
} }
} }

View file

@ -124,7 +124,7 @@ abstract class DiffusionView extends AphrontView {
switch ($repository->getVersionControlSystem()) { switch ($repository->getVersionControlSystem()) {
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT: case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
$commit_name = substr($commit, 0, 7); $commit_name = substr($commit, 0, 16);
break; break;
default: default:
$commit_name = $commit; $commit_name = $commit;

View file

@ -37,3 +37,11 @@
overflow: hidden; overflow: hidden;
} }
.diffusion-line-link {
/* Give the user a larger click target. */
display: block;
}
.diffusion-browse-type-form {
float: right;
}