Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
65 lines
1.7 KiB
PHP
65 lines
1.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group maniphest
|
|
*/
|
|
final class ManiphestSubpriorityController extends ManiphestController {
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
|
|
if (!$request->validateCSRF()) {
|
|
return new Aphront403Response();
|
|
}
|
|
|
|
$task = id(new ManiphestTask())->load($request->getInt('task'));
|
|
if (!$task) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
if ($request->getInt('after')) {
|
|
$after_task = id(new ManiphestTask())->load($request->getInt('after'));
|
|
if (!$after_task) {
|
|
return new Aphront404Response();
|
|
}
|
|
$after_pri = $after_task->getPriority();
|
|
$after_sub = $after_task->getSubpriority();
|
|
} else {
|
|
$after_pri = $request->getInt('priority');
|
|
$after_sub = null;
|
|
}
|
|
|
|
$new_sub = ManiphestTransactionEditor::getNextSubpriority(
|
|
$after_pri,
|
|
$after_sub);
|
|
|
|
if ($after_pri != $task->getPriority()) {
|
|
$xaction = new ManiphestTransaction();
|
|
$xaction->setAuthorPHID($request->getUser()->getPHID());
|
|
|
|
// TODO: Content source?
|
|
|
|
$xaction->setTransactionType(ManiphestTransactionType::TYPE_PRIORITY);
|
|
$xaction->setNewValue($after_pri);
|
|
|
|
$editor = new ManiphestTransactionEditor();
|
|
$editor->setActor($request->getUser());
|
|
$editor->applyTransactions($task, array($xaction));
|
|
}
|
|
|
|
$task->setSubpriority($new_sub);
|
|
$task->save();
|
|
|
|
$pri_class = ManiphestTaskSummaryView::getPriorityClass(
|
|
$task->getPriority());
|
|
$class = 'maniphest-task-handle maniphest-active-handle '.$pri_class;
|
|
|
|
$response = array(
|
|
'className' => $class,
|
|
);
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($response);
|
|
}
|
|
|
|
}
|