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:
epriestley
2013-08-28 09:57:00 -07:00
parent a96582c788
commit 536b0867de
83 changed files with 20 additions and 15 deletions

View File

@@ -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" : {
} }

View File

@@ -10,8 +10,11 @@
}, },
"exclude" : [ "exclude" : [
"(^externals/)", "(^externals/)",
"(^webroot/rsrc/externals/)",
"(^scripts/)", "(^scripts/)",
"(^support/)" "(^support/)",
"(^resources/)",
"(^src/docs/tech/)"
], ],
"groups" : { "groups" : {
"intro" : { "intro" : {

View File

@@ -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));
// ... // ...