# HG changeset patch # User David Demelier # Date 1475147398 -7200 # Node ID 5795a1769de52d45270a4a054b7f2e51287b2b20 # Parent c143682678b9ede4dfa881f69d70a366abdb8328 Docs: add more indexes diff -r c143682678b9 -r 5795a1769de5 doc/html/CMakeLists.txt --- a/doc/html/CMakeLists.txt Thu Sep 29 12:41:19 2016 +0200 +++ b/doc/html/CMakeLists.txt Thu Sep 29 13:09:58 2016 +0200 @@ -137,15 +137,20 @@ ${html_SOURCE_DIR}/api/event/onQuery.md ${html_SOURCE_DIR}/build/build-from-sources.md ${html_SOURCE_DIR}/build/build-options.md + ${html_SOURCE_DIR}/build/index.md + ${html_SOURCE_DIR}/dev/index.md ${html_SOURCE_DIR}/dev/plugin-javascript-introduction.md ${html_SOURCE_DIR}/dev/socket-commands.md ${html_SOURCE_DIR}/dev/socket-protocol.md ${html_SOURCE_DIR}/irccd/configuring.md + ${html_SOURCE_DIR}/irccd/index.md ${html_SOURCE_DIR}/irccdctl/commands.md ${html_SOURCE_DIR}/irccdctl/configuring.md + ${html_SOURCE_DIR}/irccdctl/index.md ${html_SOURCE_DIR}/irccdctl/usage.md ${html_SOURCE_DIR}/misc/common-patterns-and-formatting.md ${html_SOURCE_DIR}/misc/configuration-syntax.md + ${html_SOURCE_DIR}/misc/index.md ) set( diff -r c143682678b9 -r 5795a1769de5 doc/html/build/index.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/html/build/index.md Thu Sep 29 13:09:58 2016 +0200 @@ -0,0 +1,8 @@ +--- +title: "Building" +header: "Building" +guide: yes +--- + +- [Build from sources](build/build-from-sources.html) +- [Build options](build/build-options.html) diff -r c143682678b9 -r 5795a1769de5 doc/html/dev/index.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/html/dev/index.md Thu Sep 29 13:09:58 2016 +0200 @@ -0,0 +1,9 @@ +--- +title: "Development" +header: "Development" +guide: yes +--- + + - [Javascript plugin introduction](plugin-javascript-introduction.html) + - [Network protocol](socket-protocol.html) + - [Network commands](socket-commands.html) diff -r c143682678b9 -r 5795a1769de5 doc/html/index.md --- a/doc/html/index.md Thu Sep 29 12:41:19 2016 +0200 +++ b/doc/html/index.md Thu Sep 29 13:09:58 2016 +0200 @@ -1,5 +1,5 @@ --- -header: Irccd documentation +header: "Irccd documentation" guide: true --- @@ -7,22 +7,40 @@ # Building +Everything you need to build irccd. + - [Build from sources](build/build-from-sources.html) - [Build options](build/build-options.html) # Running +Running irccd, configuration and command line options. + - [Configure irccd](irccd/configuring.html) + +And about irccdctl. + - [Configure irccdctl](irccdctl/configuring.html) + - [List of irccdctl commands](irccdctl/commands.html) + - [Irccdctl command line usage](irccdctl/usage.html) -# Plugins +# Development + +Development of plugins and other development documentation. - [Javascript plugin introduction](dev/plugin-javascript-introduction.html) + - [Network protocol](dev/socket-protocol.html) + - [Network commands](dev/socket-commands.html) + +# Plugin API + +The official Javascript API. + - [Javascript API](api/index.html) # Miscellaneous +Miscellaneous documentation. + - [Common patterns and formatting](misc/common-patterns-and-formatting.html) - [Configuration file syntax](misc/configuration-syntax.html) - - [Network protocol](dev/socket-protocol.html) - - [Network commands](dev/socket-commands.html) diff -r c143682678b9 -r 5795a1769de5 doc/html/irccd/index.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/html/irccd/index.md Thu Sep 29 13:09:58 2016 +0200 @@ -0,0 +1,7 @@ +--- +title: "Irccd" +header: "Irccd" +guide: yes +--- + + - [Configure irccd](configuring.html) diff -r c143682678b9 -r 5795a1769de5 doc/html/irccdctl/index.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/html/irccdctl/index.md Thu Sep 29 13:09:58 2016 +0200 @@ -0,0 +1,9 @@ +--- +title: "Irccdctl" +header: "Irccdctl" +guide: yes +--- + + - [Configure irccdctl](configuring.html) + - [List of irccdctl commands](commands.html) + - [Irccdctl command line usage](usage.html) diff -r c143682678b9 -r 5795a1769de5 doc/html/misc/configuration-syntax.md --- a/doc/html/misc/configuration-syntax.md Thu Sep 29 12:41:19 2016 +0200 +++ b/doc/html/misc/configuration-syntax.md Thu Sep 29 13:09:58 2016 +0200 @@ -1,7 +1,6 @@ --- title: Configuration file format guide: yes -toc: yes --- Both `irccd` and `irccdctl` use configuration file in a extended [INI][ini] format. diff -r c143682678b9 -r 5795a1769de5 doc/html/misc/index.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/html/misc/index.md Thu Sep 29 13:09:58 2016 +0200 @@ -0,0 +1,8 @@ +--- +title: "Miscellaneous" +header: "Miscellaneous" +guide: yes +--- + + - [Common patterns and formatting](common-patterns-and-formatting.html) + - [Configuration file syntax](configuration-syntax.html)