mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 21:40:55 +01:00
Some documentation updates.
This commit is contained in:
parent
1620bce842
commit
4bec2579d5
59 changed files with 174 additions and 4 deletions
|
@ -11,13 +11,17 @@
|
|||
"differential" : "Differential (Code Review)",
|
||||
"diffusion" : "Diffusion (Repository Browser)",
|
||||
"maniphest" : "Maniphest (Task Tracking)",
|
||||
"slowvote" : "Slowvote (Polls)",
|
||||
"herald" : "Herald (Notifications)",
|
||||
"conduit" : "Conduit (Phabricator HTTP API)",
|
||||
"celerity" : "Celerity (CSS/JS Management)",
|
||||
"phriction" : "Phriction (Wiki)",
|
||||
"aphront" : "Aphront (Web Stack)",
|
||||
"console" : "DarkConsole (Debugging Console)",
|
||||
"storage" : "Storage",
|
||||
"filestorage" : "File Storage",
|
||||
"search" : "Search",
|
||||
"daemon" : "Daemons, Tasks and Workers",
|
||||
"irc" : "IRC",
|
||||
"markup" : "Remarkup Extensions"
|
||||
},
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsole {
|
||||
|
||||
}
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsoleController extends PhabricatorController {
|
||||
|
||||
protected $op;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
final class DarkConsoleCore {
|
||||
|
||||
const PLUGIN_ERRORLOG = 'ErrorLog';
|
||||
|
@ -57,7 +60,6 @@ final class DarkConsoleCore {
|
|||
|
||||
public static function newPlugin($plugin) {
|
||||
$class = 'DarkConsole'.$plugin.'Plugin';
|
||||
PhutilSymbolLoader::loadClass($class);
|
||||
return newv($class, array());
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
abstract class DarkConsolePlugin {
|
||||
|
||||
private $data;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsoleConfigPlugin extends DarkConsolePlugin {
|
||||
|
||||
public function getName() {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsoleErrorLogPlugin extends DarkConsolePlugin {
|
||||
|
||||
public function getName() {
|
||||
|
|
|
@ -16,7 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsoleErrorLogPluginAPI {
|
||||
|
||||
private static $errors = array();
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsoleRequestPlugin extends DarkConsolePlugin {
|
||||
|
||||
public function getName() {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsoleServicesPlugin extends DarkConsolePlugin {
|
||||
|
||||
protected $observations;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
class DarkConsoleXHProfPlugin extends DarkConsolePlugin {
|
||||
|
||||
protected $xhprofID;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group console
|
||||
*/
|
||||
final class DarkConsoleXHProfPluginAPI {
|
||||
|
||||
private static $profilerStarted;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionActionConstants extends PhrictionConstants {
|
||||
|
||||
const ACTION_CREATE = 'create';
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
abstract class PhrictionConstants {
|
||||
|
||||
}
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
abstract class PhrictionController extends PhabricatorController {
|
||||
|
||||
public function buildStandardPageResponse($view, array $data) {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionDiffController
|
||||
extends PhrictionController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionDocumentController
|
||||
extends PhrictionController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionDocumentPreviewController
|
||||
extends PhrictionController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionEditController
|
||||
extends PhrictionController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionHistoryController
|
||||
extends PhrictionController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionListController
|
||||
extends PhrictionController {
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
/**
|
||||
* Create or update Phriction documents.
|
||||
*
|
||||
* @group phriction
|
||||
*/
|
||||
final class PhrictionDocumentEditor {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
abstract class PhrictionDAO extends PhabricatorLiskDAO {
|
||||
|
||||
public function getApplicationName() {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionContent extends PhrictionDAO {
|
||||
|
||||
protected $id;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionDocument extends PhrictionDAO {
|
||||
|
||||
protected $id;
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @group markup
|
||||
* @group phriction
|
||||
*/
|
||||
class PhrictionDocumentTestCase extends PhabricatorTestCase {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
final class PhabricatorSearchField {
|
||||
|
||||
const FIELD_TITLE = 'titl';
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
final class PhabricatorSearchRelationship {
|
||||
|
||||
const RELATIONSHIP_AUTHOR = 'auth';
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchAttachController extends PhabricatorSearchController {
|
||||
|
||||
private $phid;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
abstract class PhabricatorSearchBaseController extends PhabricatorController {
|
||||
|
||||
public function buildStandardPageResponse($view, array $data) {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchIndexController extends PhabricatorSearchBaseController {
|
||||
|
||||
private $phid;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchController extends PhabricatorSearchBaseController {
|
||||
|
||||
private $id;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchSelectController
|
||||
extends PhabricatorSearchController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
final class PhabricatorSearchEngineMySQL extends PhabricatorSearchEngine {
|
||||
|
||||
public function reindexAbstractDocument(
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
final class PhabricatorSearchAbstractDocument {
|
||||
|
||||
private $phid;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
abstract class PhabricatorSearchDocumentIndexer {
|
||||
|
||||
// TODO: Make this whole class tree concrete?
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchDifferentialIndexer
|
||||
extends PhabricatorSearchDocumentIndexer {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchManiphestIndexer
|
||||
extends PhabricatorSearchDocumentIndexer {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchPhrictionIndexer
|
||||
extends PhabricatorSearchDocumentIndexer {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchCommitIndexer
|
||||
extends PhabricatorSearchDocumentIndexer {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchUserIndexer
|
||||
extends PhabricatorSearchDocumentIndexer {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
abstract class PhabricatorSearchEngineSelector {
|
||||
|
||||
final public function __construct() {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
final class PhabricatorDefaultSearchEngineSelector
|
||||
extends PhabricatorSearchEngineSelector {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
abstract class PhabricatorSearchDAO extends PhabricatorLiskDAO {
|
||||
|
||||
public function getApplicationName() {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchDocument extends PhabricatorSearchDAO {
|
||||
|
||||
protected $phid;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchDocumentField extends PhabricatorSearchDAO {
|
||||
|
||||
protected $phid;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchDocumentRelationship extends PhabricatorSearchDAO {
|
||||
|
||||
protected $phid;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
class PhabricatorSearchQuery extends PhabricatorSearchDAO {
|
||||
|
||||
protected $authorPHID;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group search
|
||||
*/
|
||||
final class PhabricatorSearchResultView extends AphrontView {
|
||||
|
||||
private $handle;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
abstract class PhabricatorSlowvoteController extends PhabricatorController {
|
||||
|
||||
public function buildStandardPageResponse($view, array $data) {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvoteCreateController
|
||||
extends PhabricatorSlowvoteController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvoteListController
|
||||
extends PhabricatorSlowvoteController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvotePollController
|
||||
extends PhabricatorSlowvoteController {
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvoteDAO extends PhabricatorLiskDAO {
|
||||
|
||||
public function getApplicationName() {
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvoteChoice extends PhabricatorSlowvoteDAO {
|
||||
|
||||
protected $pollID;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvoteComment extends PhabricatorSlowvoteDAO {
|
||||
|
||||
protected $pollID;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvoteOption extends PhabricatorSlowvoteDAO {
|
||||
|
||||
protected $pollID;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group slowvote
|
||||
*/
|
||||
class PhabricatorSlowvotePoll extends PhabricatorSlowvoteDAO {
|
||||
|
||||
const RESPONSES_VISIBLE = 0;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
@group intro
|
||||
|
||||
Insight into the direction and progress of Phabricator. This document was last
|
||||
updated **July 22, 2011**.
|
||||
updated **September 14th, 2011**.
|
||||
|
||||
= Status =
|
||||
|
||||
|
@ -14,6 +14,7 @@ active development.
|
|||
The current focus on Phabricator is primarily feature buildout, particularly in
|
||||
these applications:
|
||||
|
||||
- **Mercurial**: Mercurial support is actively landing.
|
||||
- **Maniphest**: A lot of early adopters are getting into the suite because
|
||||
of this tool, and we're continuing to improve it.
|
||||
- **Phriction**: We just landed a wiki application, which basically works but
|
||||
|
|
Loading…
Reference in a new issue