mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-23 03:59:25 +01:00
Reorganize Diviner articles into user/
and tech/
Summary: Ref T988. I'm splitting the Phabricator documentation into two separate documentation books, one less technical and one more technical. Move all the `.diviner` article files around into `src/docs/user/` or `src/docs/tech/`, accordingly. The only actual changes here are a couple of config changes in the `.book` files. Test Plan: Regenerated user and technical documentation and saw stuff in the right places. Reviewers: btrahan Reviewed By: btrahan CC: chad, aran Maniphest Tasks: T988 Differential Revision: https://secure.phabricator.com/D6822
This commit is contained in:
parent
a96582c788
commit
536b0867de
83 changed files with 20 additions and 15 deletions
|
@ -6,13 +6,15 @@
|
||||||
"uri.source" :
|
"uri.source" :
|
||||||
"https://secure.phabricator.com/diffusion/P/browse/master/%f$%l",
|
"https://secure.phabricator.com/diffusion/P/browse/master/%f$%l",
|
||||||
"rules" : {
|
"rules" : {
|
||||||
"(\\.php$)" : "DivinerPHPAtomizer"
|
"(\\.php$)" : "DivinerPHPAtomizer",
|
||||||
|
"(\\.diviner$)" : "DivinerArticleAtomizer"
|
||||||
},
|
},
|
||||||
"exclude" : [
|
"exclude" : [
|
||||||
"(^externals/)",
|
"(^externals/)",
|
||||||
"(^scripts/)",
|
"(^scripts/)",
|
||||||
"(^support/)",
|
"(^support/)",
|
||||||
"(^resources/)"
|
"(^resources/)",
|
||||||
|
"(^src/docs/user/)"
|
||||||
],
|
],
|
||||||
"groups" : {
|
"groups" : {
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,11 @@
|
||||||
},
|
},
|
||||||
"exclude" : [
|
"exclude" : [
|
||||||
"(^externals/)",
|
"(^externals/)",
|
||||||
|
"(^webroot/rsrc/externals/)",
|
||||||
"(^scripts/)",
|
"(^scripts/)",
|
||||||
"(^support/)"
|
"(^support/)",
|
||||||
|
"(^resources/)",
|
||||||
|
"(^src/docs/tech/)"
|
||||||
],
|
],
|
||||||
"groups" : {
|
"groups" : {
|
||||||
"intro" : {
|
"intro" : {
|
||||||
|
|
|
@ -54,4 +54,4 @@ A log of connections and calls is stored by
|
||||||
Conduit provides a token-based handshake mechanism used by
|
Conduit provides a token-based handshake mechanism used by
|
||||||
##arc install-certificate## at ##/conduit/token/##, implemented by
|
##arc install-certificate## at ##/conduit/token/##, implemented by
|
||||||
@{class:PhabricatorConduitTokenController} which stores generated tokens using
|
@{class:PhabricatorConduitTokenController} which stores generated tokens using
|
||||||
@{class:PhabricatorConduitCertificateToken}.
|
@{class:PhabricatorConduitCertificateToken}.
|
|
@ -36,4 +36,4 @@ order to make files actually get written to it, you also need to extend
|
||||||
@{class:PhabricatorFileStorageEngineSelector}, provide an implementation which
|
@{class:PhabricatorFileStorageEngineSelector}, provide an implementation which
|
||||||
selects your storage engine for whatever files you want to store there, and then
|
selects your storage engine for whatever files you want to store there, and then
|
||||||
configure Phabricator to use your selector by setting
|
configure Phabricator to use your selector by setting
|
||||||
##storage.engine-selector##.
|
##storage.engine-selector##.
|
|
@ -102,4 +102,4 @@ Continue by:
|
||||||
|
|
||||||
- configuring file size upload limits with
|
- configuring file size upload limits with
|
||||||
@{article:Configuring File Upload Limits}; or
|
@{article:Configuring File Upload Limits}; or
|
||||||
- returning to the @{article:Configuration Guide}.
|
- returning to the @{article:Configuration Guide}.
|
|
@ -160,4 +160,4 @@ Continue by:
|
||||||
- reading recommendations on structuring revision control with
|
- reading recommendations on structuring revision control with
|
||||||
@{article:Recommendations on Revision Control}; or
|
@{article:Recommendations on Revision Control}; or
|
||||||
- reading recommendations on structuring branches with
|
- reading recommendations on structuring branches with
|
||||||
@{article:Recommendations on Branching}.
|
@{article:Recommendations on Branching}.
|
|
@ -66,4 +66,4 @@ might look like this:
|
||||||
You may also want to filter coverage information to the paths passed to the
|
You may also want to filter coverage information to the paths passed to the
|
||||||
unit test engine. See @{class@arcanist:ArcanistPhutilTestCase} and
|
unit test engine. See @{class@arcanist:ArcanistPhutilTestCase} and
|
||||||
@{class@arcanist:PhutilUnitTestEngine} for an example of coverage integration
|
@{class@arcanist:PhutilUnitTestEngine} for an example of coverage integration
|
||||||
in PHP using Xdebug.
|
in PHP using Xdebug.
|
|
@ -70,14 +70,14 @@ widths on different languages:
|
||||||
|
|
||||||
$linters = array();
|
$linters = array();
|
||||||
|
|
||||||
// Warn on JS/CSS lines longer than 80 columns.
|
// Warn on JS/CSS lines longer than 80 columns.
|
||||||
$linters['TextLinter80Col'] = id(new ArcanistTextLinter())
|
$linters['TextLinter80Col'] = id(new ArcanistTextLinter())
|
||||||
->setPaths(preg_grep('/\.(js|css)$/', $paths));
|
->setPaths(preg_grep('/\.(js|css)$/', $paths));
|
||||||
|
|
||||||
// Warn on Java lines longer than 120 columns.
|
// Warn on Java lines longer than 120 columns.
|
||||||
$linters['TextLinter120Col'] = id(new ArcanistTextLinter())
|
$linters['TextLinter120Col'] = id(new ArcanistTextLinter())
|
||||||
->setMaxLineLength(120)
|
->setMaxLineLength(120)
|
||||||
->setPaths(preg_grep('/\.(java)$/', $paths));
|
->setPaths(preg_grep('/\.(java)$/', $paths));
|
||||||
|
|
||||||
// ...
|
// ...
|
||||||
|
|
|
@ -5,4 +5,4 @@ Configuring Drydock for machine resource management.
|
||||||
|
|
||||||
= Overview =
|
= Overview =
|
||||||
|
|
||||||
NOTE: Drydock is extremely new and not very useful yet.
|
NOTE: Drydock is extremely new and not very useful yet.
|
|
@ -48,4 +48,4 @@ Then set your "Editor Link" to:
|
||||||
General instructions for configuring some other editors and environments can be
|
General instructions for configuring some other editors and environments can be
|
||||||
found here:
|
found here:
|
||||||
|
|
||||||
http://wiki.nette.org/en/howto-editor-link
|
http://wiki.nette.org/en/howto-editor-link
|
Loading…
Add table
Reference in a new issue