diff --git a/src/__celerity_resource_map__.php b/src/__celerity_resource_map__.php index 0269cb8936..847e2a5886 100644 --- a/src/__celerity_resource_map__.php +++ b/src/__celerity_resource_map__.php @@ -1605,7 +1605,7 @@ celerity_register_resource_map(array( ), 'phriction-document-css' => array( - 'uri' => '/res/a0eb9ea1/rsrc/css/application/phriction/phriction-document-css.css', + 'uri' => '/res/8d09bd7f/rsrc/css/application/phriction/phriction-document-css.css', 'type' => 'css', 'requires' => array( diff --git a/src/applications/phriction/controller/base/PhrictionController.php b/src/applications/phriction/controller/base/PhrictionController.php index ed9f86f565..7b8f7d8633 100644 --- a/src/applications/phriction/controller/base/PhrictionController.php +++ b/src/applications/phriction/controller/base/PhrictionController.php @@ -30,25 +30,13 @@ abstract class PhrictionController extends PhabricatorController { $page->setTitle(idx($data, 'title')); $page->setGlyph("\xE2\x9A\xA1"); - $tabs = array(); - if (!empty($data['document'])) { - $tabs['document'] = array( - 'name' => 'Document', - 'href' => $data['document'], - ); - } - if (!empty($data['history'])) { - $tabs['history'] = array( - 'name' => 'History', - 'href' => $data['history'], - ); - } - - $tabs['help'] = array( - 'name' => 'Help', - 'href' => PhabricatorEnv::getDoclink('article/Phriction_User_Guide.html'), + $tabs = array( + 'help' => array( + 'name' => 'Help', + 'href' => + PhabricatorEnv::getDoclink('article/Phriction_User_Guide.html'), + ), ); - $page->setTabs($tabs, idx($data, 'tab')); $page->appendChild($view); diff --git a/src/applications/phriction/controller/diff/PhrictionDiffController.php b/src/applications/phriction/controller/diff/PhrictionDiffController.php index ba1d719aab..251b7a6db0 100644 --- a/src/applications/phriction/controller/diff/PhrictionDiffController.php +++ b/src/applications/phriction/controller/diff/PhrictionDiffController.php @@ -195,10 +195,7 @@ class PhrictionDiffController ), array( 'title' => 'Document History', - 'history' => PhrictionDocument::getSlugURI($slug, 'history'), - 'document' => PhrictionDocument::getSlugURI($slug), )); - } private function renderRevertButton( diff --git a/src/applications/phriction/controller/document/PhrictionDocumentController.php b/src/applications/phriction/controller/document/PhrictionDocumentController.php index 30b1150d02..acffc72807 100644 --- a/src/applications/phriction/controller/document/PhrictionDocumentController.php +++ b/src/applications/phriction/controller/document/PhrictionDocumentController.php @@ -72,6 +72,7 @@ class PhrictionDocumentController 'class' => 'green button', ), 'Create Page'); + $buttons = $button; } else { $version = $request->getInt('v'); if ($version) { @@ -127,13 +128,22 @@ class PhrictionDocumentController ''. ''; - $button = phutil_render_tag( + $edit_button = phutil_render_tag( 'a', array( 'href' => '/phriction/edit/'.$document->getID().'/', 'class' => 'button', ), 'Edit Page'); + $history_button = phutil_render_tag( + 'a', + array( + 'href' => PhrictionDocument::getSlugURI($slug, 'history'), + 'class' => 'button grey', + ), + 'View History'); + // these float right so button2 which is right most goes first + $buttons = $history_button.$edit_button; } if ($version_note) { @@ -144,7 +154,7 @@ class PhrictionDocumentController $page = '