Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15442283
D21408.id50951.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D21408.id50951.diff
View Options
diff --git a/src/applications/diffusion/controller/DiffusionRepositoryController.php b/src/applications/diffusion/controller/DiffusionRepositoryController.php
--- a/src/applications/diffusion/controller/DiffusionRepositoryController.php
+++ b/src/applications/diffusion/controller/DiffusionRepositoryController.php
@@ -299,16 +299,10 @@
$handles,
$browse_pager);
- $content[] = $this->buildHistoryTable(
- $history_results,
- $history,
- $history_exception);
-
if ($readme) {
$content[] = $readme;
}
-
try {
$branch_button = $this->buildBranchList($drequest);
$this->branchButton = $branch_button;
@@ -428,51 +422,6 @@
return null;
}
- private function buildHistoryTable(
- $history_results,
- $history,
- $history_exception) {
-
- $request = $this->getRequest();
- $viewer = $request->getUser();
- $drequest = $this->getDiffusionRequest();
- $repository = $drequest->getRepository();
-
- if ($history_exception) {
- if ($repository->isImporting()) {
- return $this->renderStatusMessage(
- pht('Still Importing...'),
- pht(
- 'This repository is still importing. History is not yet '.
- 'available.'));
- } else {
- return $this->renderStatusMessage(
- pht('Unable to Retrieve History'),
- $history_exception->getMessage());
- }
- }
-
- $history_table = id(new DiffusionHistoryTableView())
- ->setUser($viewer)
- ->setDiffusionRequest($drequest)
- ->setHistory($history)
- ->setIsHead(true);
-
- if ($history_results) {
- $history_table->setParents($history_results['parents']);
- }
-
- $panel = id(new PHUIObjectBoxView())
- ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
- ->addClass('diffusion-mobile-view');
- $header = id(new PHUIHeaderView())
- ->setHeader(pht('Recent Commits'));
- $panel->setHeader($header);
- $panel->setTable($history_table);
-
- return $panel;
- }
-
private function buildBranchList(DiffusionRequest $drequest) {
$viewer = $this->getViewer();
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 27, 10:34 PM (6 d, 21 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7228799
Default Alt Text
D21408.id50951.diff (2 KB)
Attached To
Mode
D21408: Remove "Recent Commits" from repository landing page
Attached
Detach File
Event Timeline
Log In to Comment