mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
826e5405b6
Summary: This allows writing inline comments and reduces different behavior between normal and very large diffs. Test Plan: Verify that normal diff works. Verify that very large diff works. Reviewers: epriestley Reviewed By: epriestley CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2361
89 lines
2.5 KiB
PHP
89 lines
2.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2012 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
final class DiffusionChangeController extends DiffusionController {
|
|
|
|
public function processRequest() {
|
|
$drequest = $this->diffusionRequest;
|
|
|
|
$content = array();
|
|
|
|
$diff_query = DiffusionDiffQuery::newFromDiffusionRequest($drequest);
|
|
$changeset = $diff_query->loadChangeset();
|
|
|
|
if (!$changeset) {
|
|
// TODO: Refine this.
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$callsign = $drequest->getRepository()->getCallsign();
|
|
$changesets = array(
|
|
0 => $changeset,
|
|
);
|
|
|
|
$changeset_view = new DifferentialChangesetListView();
|
|
$changeset_view->setChangesets($changesets);
|
|
$changeset_view->setVisibleChangesets($changesets);
|
|
$changeset_view->setRenderingReferences(
|
|
array(
|
|
0 => $diff_query->getRenderingReference(),
|
|
));
|
|
|
|
$raw_params = array(
|
|
'action' => 'browse',
|
|
'params' => array(
|
|
'view' => 'raw',
|
|
),
|
|
);
|
|
$right_uri = $drequest->generateURI($raw_params);
|
|
$raw_params['params']['before'] = $drequest->getRawCommit();
|
|
$left_uri = $drequest->generateURI($raw_params);
|
|
$changeset_view->setRawFileURIs($left_uri, $right_uri);
|
|
|
|
$changeset_view->setRenderURI(
|
|
'/diffusion/'.$callsign.'/diff/');
|
|
$changeset_view->setWhitespace(
|
|
DifferentialChangesetParser::WHITESPACE_SHOW_ALL);
|
|
$changeset_view->setUser($this->getRequest()->getUser());
|
|
|
|
$content[] = $this->buildCrumbs(
|
|
array(
|
|
'branch' => true,
|
|
'path' => true,
|
|
'view' => 'change',
|
|
));
|
|
|
|
// TODO: This is pretty awkward, unify the CSS between Diffusion and
|
|
// Differential better.
|
|
require_celerity_resource('differential-core-view-css');
|
|
$content[] =
|
|
'<div class="differential-primary-pane">'.
|
|
$changeset_view->render().
|
|
'</div>';
|
|
|
|
$nav = $this->buildSideNav('change', true);
|
|
$nav->appendChild($content);
|
|
|
|
return $this->buildStandardPageResponse(
|
|
$nav,
|
|
array(
|
|
'title' => 'Change',
|
|
));
|
|
}
|
|
|
|
}
|