Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14003087
D8302.id19748.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D8302.id19748.diff
View Options
diff --git a/src/applications/diffusion/controller/DiffusionBrowseFileController.php b/src/applications/diffusion/controller/DiffusionBrowseFileController.php
--- a/src/applications/diffusion/controller/DiffusionBrowseFileController.php
+++ b/src/applications/diffusion/controller/DiffusionBrowseFileController.php
@@ -104,8 +104,7 @@
$view,
$drequest,
$show_blame,
- $show_color,
- $binary_uri);
+ $show_color);
$properties = $this->buildPropertyView($drequest, $action_list);
$object_box = id(new PHUIObjectBoxView())
@@ -304,10 +303,12 @@
Javelin::initBehavior('load-blame', array('id' => $id));
}
- $button = $this->createEditButton();
+ $edit = $this->renderEditButton();
+ $file = $this->renderFileButton();
$header = id(new PHUIHeaderView())
->setHeader(pht('File Contents'))
- ->addActionLink($button);
+ ->addActionLink($edit)
+ ->addActionLink($file);
$corpus = id(new PHUIObjectBoxView())
->setHeader($header)
@@ -320,8 +321,7 @@
PhabricatorActionListView $view,
DiffusionRequest $drequest,
$show_blame,
- $show_color,
- $binary_uri) {
+ $show_color) {
$viewer = $this->getRequest()->getUser();
$base_uri = $this->getRequest()->getRequestURI();
@@ -396,24 +396,10 @@
->setIcon('warning')
->setDisabled(!$href));
- if ($binary_uri) {
- $view->addAction(
- id(new PhabricatorActionView())
- ->setName(pht('Download Raw File'))
- ->setHref($binary_uri)
- ->setIcon('download'));
- } else {
- $view->addAction(
- id(new PhabricatorActionView())
- ->setName(pht('View Raw File'))
- ->setHref($base_uri->alter('view', 'raw'))
- ->setIcon('file'));
- }
-
return $view;
}
- private function createEditButton() {
+ private function renderEditButton() {
$request = $this->getRequest();
$user = $request->getUser();
@@ -439,6 +425,33 @@
return $button;
}
+ private function renderFileButton($file_uri = null) {
+
+ $base_uri = $this->getRequest()->getRequestURI();
+
+ if ($file_uri) {
+ $text = pht('Download Raw File');
+ $href = $file_uri;
+ $icon = 'download';
+ } else {
+ $text = pht('View Raw File');
+ $href = $base_uri->alter('view', 'raw');
+ $icon = 'file';
+ }
+
+ $iconview = id(new PHUIIconView())
+ ->setSpriteSheet(PHUIIconView::SPRITE_ICONS)
+ ->setSpriteIcon($icon);
+ $button = id(new PHUIButtonView())
+ ->setTag('a')
+ ->setText($text)
+ ->setHref($href)
+ ->setIcon($iconview);
+
+ return $button;
+ }
+
+
private function buildDisplayRows(
array $text_list,
array $rev_list,
@@ -847,8 +860,13 @@
'src' => $file_uri,
)));
+ $file = $this->renderFileButton($file_uri);
+ $header = id(new PHUIHeaderView())
+ ->setHeader(pht('Image'))
+ ->addActionLink($file);
+
return id(new PHUIObjectBoxView())
- ->setHeaderText(pht('Image'))
+ ->setHeader($header)
->addPropertyList($properties);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Oct 27, 2:01 AM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6711037
Default Alt Text
D8302.id19748.diff (3 KB)
Attached To
Mode
D8302: Move raw file download icon to file box in Diffusion
Attached
Detach File
Event Timeline
Log In to Comment