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

Modernize Arcanist documentation

Summary: Change `project_id` to `project.name` and `conduit_uri` to `phabricator.uri`.

Test Plan: `grep`

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

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

+7 -7
+1 -1
src/docs/user/configuration/advanced_configuration.diviner
··· 25 25 running `bin/config`. 26 26 - **Config Files**: Values are stored in a config file in `conf/`. The file 27 27 to use is selected by writing to `conf/local/ENVIRONMENT`, or setting the 28 - PHABRICATOR_ENV configuration variable. See below for more information. 28 + `PHABRICATOR_ENV` configuration variable. See below for more information. 29 29 - **Defaults**: Defaults hard-coded in the Phabricator source, which can not 30 30 be edited. They have the lowest priority, and all other settings override 31 31 them.
+1 -1
src/docs/user/userguide/arcanist_new_project.diviner
··· 149 149 ...arc looks for it by trying these paths: 150 150 151 151 - `path/to/root/examplelib/src/` First, arc looks in the project's root 152 - directory (where the .arcconfig lives) to see if the library is part of 152 + directory (where the `.arcconfig` lives) to see if the library is part of 153 153 the project. This makes it easy to just put project-specific code in a 154 154 project. 155 155 - `path/to/root/../examplelib/src/` Next, arc looks //next to// the project's
+4 -4
src/docs/user/userguide/arcanist_quick_start.diviner
··· 44 44 yourproject/ $ $EDITOR .arcconfig 45 45 yourproject/ $ cat .arcconfig 46 46 { 47 - "project_id" : "yourprojectname", 48 - "conduit_uri" : "https://phabricator.example.com/" 47 + "project.name" : "yourprojectname", 48 + "phabricator.uri" : "https://phabricator.example.com/" 49 49 } 50 50 51 - Set `project_id` to a string that identifies the project. 51 + Set `project.name` to a string that identifies the project. 52 52 53 - Set `conduit_uri` to the URI for your Phabricator install (where `arc` 53 + Set `phabricator.uri` to the URI for your Phabricator install (where `arc` 54 54 should send changes to). 55 55 56 56 NOTE: You should **commit this file** to the repository.
+1 -1
src/docs/user/userguide/libraries.diviner
··· 83 83 ##libcustom/.arcconfig##: 84 84 85 85 { 86 - "project_id" : "libcustom", 86 + "project.name" : "libcustom", 87 87 "load" : [ 88 88 "phabricator/src/" 89 89 ]