@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update Create Diff page for new Edit UI

Summary: Create a diff page, new UI

Test Plan: Create a diff from page

Reviewers: epriestley

Reviewed By: epriestley

Spies: Korvin

Differential Revision: https://secure.phabricator.com/D18529

+4 -8
+3 -8
src/applications/differential/controller/DifferentialDiffCreateController.php
··· 182 182 ->setValue($button)); 183 183 184 184 $form_box = id(new PHUIObjectBoxView()) 185 - ->setHeaderText(pht('Diff')) 185 + ->setHeaderText($title) 186 186 ->setValidationException($validation_exception) 187 187 ->setForm($form) 188 - ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 188 + ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) 189 189 ->setFormErrors($errors); 190 190 191 191 $crumbs = $this->buildApplicationCrumbs(); ··· 197 197 $crumbs->addTextCrumb($title); 198 198 $crumbs->setBorder(true); 199 199 200 - $header = id(new PHUIHeaderView()) 201 - ->setHeader($title) 202 - ->setHeaderIcon($header_icon); 203 - 204 200 $view = id(new PHUITwoColumnView()) 205 - ->setHeader($header) 206 201 ->setFooter(array( 207 - $info_view, 208 202 $form_box, 203 + $info_view, 209 204 )); 210 205 211 206 return $this->newPage()
+1
src/view/phui/PHUIInfoView.php
··· 59 59 } else { 60 60 $icon = id(new PHUIIconView()) 61 61 ->setIcon($icon); 62 + $this->icon = $icon; 62 63 } 63 64 64 65 return $this;