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

Fix doc links

vrana b2c9edd1 0597e765

+9 -8
+2 -1
src/docs/contributing/general_coding_standards.diviner
··· 135 135 Filesystem::writeFile('file.bak', $data); // Best 136 136 do_something_dangerous(); 137 137 138 - See @{article:System Commands} for details on the APIs used in this example. 138 + See @{article@libphutil:Command Execution} for details on the APIs used in this 139 + example. 139 140 140 141 = Documentation, Comments and Formatting = 141 142
+1 -1
src/docs/developer/unit_tests.diviner
··· 60 60 PASS <1ms* testAllIsRightWithTheWorld 61 61 62 62 For more information on writing tests, see 63 - @{class@arcnaist:ArcanistPhutilTestCase} and @{class:PhabricatorTestCase}. 63 + @{class@arcanist:ArcanistPhutilTestCase} and @{class:PhabricatorTestCase}. 64 64 65 65 = Database Isolation = 66 66
+1 -1
src/docs/feedback.diviner
··· 56 56 57 57 - Filing a bug of feature request in 58 58 [[http://secure.phabricator.com/maniphest/task/create/ | Maniphest]]; or 59 - - contributing to Phabricator with @{article:Contibutor Introduction}. 59 + - contributing to Phabricator with @{article:Contributor Introduction}.
+1 -1
src/docs/technical/conduit.diviner
··· 47 47 ##/conduit/##. 48 48 49 49 A log of connections and calls is stored by 50 - @{class:PhabriatorConduitConnectionLog} and 50 + @{class:PhabricatorConduitConnectionLog} and 51 51 @{class:PhabricatorConduitMethodCallLog}, and can be accessed on the web via 52 52 @{class:PhabricatorConduitLogController} at ##/conduit/log/##. 53 53
+1 -1
src/docs/userguide/arcanist_lint.diviner
··· 67 67 mistakes. 68 68 - @{class@arcanist:ArcanistFilenameLinter}, which can enforce generally 69 69 sensible rules about not giving files nonsense names. 70 - - @{class@arcanist:ArcanistLicenseLinter.php}, which can make sure license 70 + - @{class@arcanist:ArcanistLicenseLinter}, which can make sure license 71 71 headers are applied to all source files. 72 72 - @{class@arcanist:ArcanistNoLintLinter}, which can disable lint for files 73 73 marked unlintable.
+3 -3
src/infrastructure/storage/lisk/LiskDAO.php
··· 132 132 * $pugs = $dog->loadAllWhere('breed = %s', 'Pug'); 133 133 * $sawyer = $dog->loadOneWhere('name = %s', 'Sawyer'); 134 134 * 135 - * These methods work like @{function:queryfx}, but only take half of a query 136 - * (the part after the WHERE keyword). Lisk will handle the connection, columns, 137 - * and object construction; you are responsible for the rest of it. 135 + * These methods work like @{function@libphutil:queryfx}, but only take half of 136 + * a query (the part after the WHERE keyword). Lisk will handle the connection, 137 + * columns, and object construction; you are responsible for the rest of it. 138 138 * @{method:loadAllWhere} returns a list of objects, while 139 139 * @{method:loadOneWhere} returns a single object (or `null`). 140 140 *