@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.

Correct spelling of "phabrictor" in Lipsum and elsewhere

Summary: Ref T12319. The product name is misspelled in some methods, and a few places in the documentation.

Test Plan: `grep`

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12319

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

+14 -17
+2 -2
src/applications/differential/lipsum/PhabricatorDifferentialRevisionTestDataGenerator.php
··· 8 8 } 9 9 10 10 public function generateObject() { 11 - $author = $this->loadPhabrictorUser(); 11 + $author = $this->loadPhabricatorUser(); 12 12 13 13 $revision = DifferentialRevision::initializeNewRevision($author); 14 14 $revision->attachReviewerStatus(array()); ··· 39 39 public function getCCPHIDs() { 40 40 $ccs = array(); 41 41 for ($i = 0; $i < rand(1, 4);$i++) { 42 - $ccs[] = $this->loadPhabrictorUserPHID(); 42 + $ccs[] = $this->loadPhabricatorUserPHID(); 43 43 } 44 44 return $ccs; 45 45 }
+1 -1
src/applications/files/lipsum/PhabricatorFileTestDataGenerator.php
··· 8 8 } 9 9 10 10 public function generateObject() { 11 - $author_phid = $this->loadPhabrictorUserPHID(); 11 + $author_phid = $this->loadPhabricatorUserPHID(); 12 12 $dimension = 1 << rand(5, 12); 13 13 $image = id(new PhabricatorLipsumMondrianArtist()) 14 14 ->generate($dimension, $dimension);
+2 -5
src/applications/lipsum/generator/PhabricatorTestDataGenerator.php
··· 89 89 return $xaction; 90 90 } 91 91 92 - 93 - 94 - 95 92 public function loadOneRandom($classname) { 96 93 try { 97 94 return newv($classname, array()) ··· 106 103 } 107 104 } 108 105 109 - public function loadPhabrictorUserPHID() { 106 + public function loadPhabricatorUserPHID() { 110 107 return $this->loadOneRandom('PhabricatorUser')->getPHID(); 111 108 } 112 109 113 - public function loadPhabrictorUser() { 110 + public function loadPhabricatorUser() { 114 111 return $this->loadOneRandom('PhabricatorUser'); 115 112 } 116 113
+3 -3
src/applications/maniphest/lipsum/PhabricatorManiphestTaskTestDataGenerator.php
··· 8 8 } 9 9 10 10 public function generateObject() { 11 - $author_phid = $this->loadPhabrictorUserPHID(); 11 + $author_phid = $this->loadPhabricatorUserPHID(); 12 12 $author = id(new PhabricatorUser()) 13 13 ->loadOneWhere('phid = %s', $author_phid); 14 14 $task = ManiphestTask::initializeNewTask($author) ··· 63 63 public function getCCPHIDs() { 64 64 $ccs = array(); 65 65 for ($i = 0; $i < rand(1, 4);$i++) { 66 - $ccs[] = $this->loadPhabrictorUserPHID(); 66 + $ccs[] = $this->loadPhabricatorUserPHID(); 67 67 } 68 68 return $ccs; 69 69 } ··· 83 83 if (rand(0, 3) == 0) { 84 84 return null; 85 85 } else { 86 - return $this->loadPhabrictorUserPHID(); 86 + return $this->loadPhabricatorUserPHID(); 87 87 } 88 88 } 89 89
+2 -2
src/applications/pholio/lipsum/PhabricatorPholioMockTestDataGenerator.php
··· 8 8 } 9 9 10 10 public function generateObject() { 11 - $author_phid = $this->loadPhabrictorUserPHID(); 11 + $author_phid = $this->loadPhabricatorUserPHID(); 12 12 $author = id(new PhabricatorUser()) 13 13 ->loadOneWhere('phid = %s', $author_phid); 14 14 $mock = PholioMock::initializeNewMock($author); ··· 82 82 public function getCCPHIDs() { 83 83 $ccs = array(); 84 84 for ($i = 0; $i < rand(1, 4);$i++) { 85 - $ccs[] = $this->loadPhabrictorUserPHID(); 85 + $ccs[] = $this->loadPhabricatorUserPHID(); 86 86 } 87 87 return $ccs; 88 88 }
+1 -1
src/docs/contributor/phabricator_code_layout.diviner
··· 55 55 phabricator/webroot/rsrc/css/application/derp/ 56 56 57 57 These directories under `phabricator/src/applications/derp/` represent 58 - the basic set of class types from which most Phabrictor applications are 58 + the basic set of class types from which most Phabricator applications are 59 59 assembled. Each would contain a class file. For `Derp`, these classes could be 60 60 something like: 61 61
+1 -1
src/docs/user/configuration/advanced_configuration.diviner
··· 79 79 To select a configuration file, write the name of the file (relative to 80 80 `phabricator/conf/`) to `phabricator/conf/local/ENVIRONMENT`. For example, to 81 81 select `phabricator/conf/custom/exampleconfig.conf.php`, you would write 82 - "custom/exampleconfig" to `phabrictor/conf/local/ENVIRONMENT`: 82 + "custom/exampleconfig" to `phabricator/conf/local/ENVIRONMENT`: 83 83 84 84 phabricator/ $ echo custom/exampleconfig > conf/local/ENVIRONMENT 85 85 phabricator/ $ cat conf/local/ENVIRONMENT
+1 -1
src/docs/user/userguide/audit.diviner
··· 59 59 - Alice publishes a commit containing some Javascript. 60 60 - This triggers an audit request to Bailey, the Javascript technical 61 61 lead on the project (see below for a description of trigger mechanisms). 62 - - Later, Bailey logs into Phabrictor and sees the audit request. She ignores 62 + - Later, Bailey logs into Phabricator and sees the audit request. She ignores 63 63 it for the moment, since it isn't blocking anything. At the end of the 64 64 week she looks through her open requests to see what the team has been 65 65 up to.
+1 -1
src/docs/user/userguide/projects.diviner
··· 37 37 otherwise could not. Likewise, removing projects does not affect visibility. 38 38 39 39 If you're familiar with other software that works differently, this may be 40 - unexpected, but the rule in Phabrictor is simple: **adding and removing 40 + unexpected, but the rule in Phabricator is simple: **adding and removing 41 41 projects never affects policies.** 42 42 43 43 Note that you //can// write policy rules which restrict capabilities to members