From: Stephen Finucane Date: Tue, 11 Oct 2016 17:13:11 +0000 (+0100) Subject: docs: Structure docs folder like online X-Git-Tag: v2.0.0-rc1~193 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b83754432049e77b4743323d77e4b44791c74bf7;p=thirdparty%2Fpatchwork.git docs: Structure docs folder like online The XML-RPC doc is renamed accordingly. Signed-off-by: Stephen Finucane --- diff --git a/docs/deployment.md b/docs/deployment/installation.md similarity index 100% rename from docs/deployment.md rename to docs/deployment/installation.md diff --git a/docs/upgrading.md b/docs/deployment/upgrading.md similarity index 100% rename from docs/upgrading.md rename to docs/deployment/upgrading.md diff --git a/docs/contributing.md b/docs/development/contributing.md similarity index 100% rename from docs/contributing.md rename to docs/development/contributing.md diff --git a/docs/development.md b/docs/development/installation.md similarity index 100% rename from docs/development.md rename to docs/development/installation.md diff --git a/docs/releasing.md b/docs/development/releasing.md similarity index 100% rename from docs/releasing.md rename to docs/development/releasing.md diff --git a/docs/api.md b/docs/development/xmlrpc.md similarity index 100% rename from docs/api.md rename to docs/development/xmlrpc.md diff --git a/mkdocs.yml b/mkdocs.yml index c8d81853..0bbe7e13 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -7,10 +7,10 @@ repo_url: git://github.com/getpatchwork/patchwork pages: - Home: 'index.md' - Development Guide: - - Installation: 'development.md' - - Contributing: 'contributing.md' - - Release Process: 'releasing.md' + - Installation: 'development/installation.md' + - Contributing: 'development/contributing.md' + - Release Process: 'development/releasing.md' + - XML-RPC API: 'development/xmlrpc.md' - Deployment Guide: - - Installation: 'deployment.md' - - Upgrading: 'upgrading.md' - - API: 'api.md' + - Installation: 'deployment/installation.md' + - Upgrading: 'deployment/upgrading.md'