2011-05-21 03:56:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 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.
|
|
|
|
*/
|
|
|
|
|
2011-07-04 22:04:22 +02:00
|
|
|
/**
|
|
|
|
* @group maniphest
|
|
|
|
*/
|
2011-05-21 03:56:18 +02:00
|
|
|
class ManiphestTaskDescriptionChangeController extends ManiphestController {
|
|
|
|
|
|
|
|
private $transactionID;
|
|
|
|
|
2011-12-08 06:41:33 +01:00
|
|
|
private function setTransactionID($transaction_id) {
|
|
|
|
$this->transactionID = $transaction_id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTransactionID() {
|
|
|
|
return $this->transactionID;
|
|
|
|
}
|
|
|
|
|
2011-05-21 03:56:18 +02:00
|
|
|
public function willProcessRequest(array $data) {
|
2011-12-08 06:41:33 +01:00
|
|
|
$this->setTransactionID($data['id']);
|
2011-05-21 03:56:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
2011-12-08 06:41:33 +01:00
|
|
|
// this means we're using "show more" on a diff of a description and
|
|
|
|
// should thus use the rendering reference to identify the transaction
|
|
|
|
$ref = $request->getStr('ref');
|
|
|
|
if ($ref) {
|
|
|
|
$this->setTransactionID($ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
$transaction_id = $this->getTransactionID();
|
|
|
|
$transaction = id(new ManiphestTransaction())->load($transaction_id);
|
2011-05-21 03:56:18 +02:00
|
|
|
if (!$transaction) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$transactions = array($transaction);
|
|
|
|
|
|
|
|
$phids = array();
|
|
|
|
foreach ($transactions as $transaction) {
|
|
|
|
foreach ($transaction->extractPHIDs() as $phid) {
|
|
|
|
$phids[$phid] = $phid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$handles = id(new PhabricatorObjectHandleData($phids))->loadHandles();
|
|
|
|
|
Generalize the markup engine factory
Summary:
This thing services every app but it lives inside Differential right now. Pull
it out, and separate the factory interfaces per-application.
This will let us accommodate changes we need to make for Phriction to support
wiki linking.
Test Plan: Tested remarkup in differential, diffusion, maniphest, people,
slowvote.
Reviewed By: hsb
Reviewers: hsb, codeblock, jungejason, tuomaspelkonen, aran
CC: aran, hsb
Differential Revision: 646
2011-07-12 00:58:32 +02:00
|
|
|
$engine = PhabricatorMarkupEngine::newManiphestMarkupEngine();
|
2011-05-21 03:56:18 +02:00
|
|
|
|
|
|
|
$view = new ManiphestTransactionDetailView();
|
|
|
|
$view->setTransactionGroup($transactions);
|
|
|
|
$view->setHandles($handles);
|
Use phabricator_ time functions in more places
Summary:
Replace some more date() calls with locale-aware calls.
Also, at least on my system, the DateTimeZone / DateTime stuff didn't actually
work and always rendered in UTC. Fixed that.
Test Plan:
Viewed daemon console, differential revisions, files, and maniphest timestamps
in multiple timezones.
Reviewed By: toulouse
Reviewers: toulouse, fratrik, jungejason, aran, tuomaspelkonen
CC: aran, toulouse
Differential Revision: 530
2011-06-26 18:22:52 +02:00
|
|
|
$view->setUser($user);
|
2011-05-21 03:56:18 +02:00
|
|
|
$view->setMarkupEngine($engine);
|
|
|
|
$view->setRenderSummaryOnly(true);
|
|
|
|
$view->setRenderFullSummary(true);
|
2011-12-08 06:41:33 +01:00
|
|
|
$view->setRangeSpecification($request->getStr('range'));
|
2011-05-21 03:56:18 +02:00
|
|
|
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($view->render());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|