diff --git a/doc/Makefile b/doc/Makefile index c2c86c83..503af674 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -54,11 +54,17 @@ copy_serve: cp serve.py ../../AutobahnCpp/doc/ cp serve.py ../../AutobahnTestsuite/doc/ -copy_readme: - cp README.md ../../AutobahnJS/doc/ - cp README.md ../../AutobahnAndroid/doc/ - cp README.md ../../AutobahnCpp/doc/ - cp README.md ../../AutobahnTestsuite/doc/ +copy_wordlist: + cp spelling_wordlist.txt ../../AutobahnJS/doc/ + cp spelling_wordlist.txt ../../AutobahnAndroid/doc/ + cp spelling_wordlist.txt ../../AutobahnCpp/doc/ + cp spelling_wordlist.txt ../../AutobahnTestsuite/doc/ + +# copy_readme: +# cp README.md ../../AutobahnJS/doc/ +# cp README.md ../../AutobahnAndroid/doc/ +# cp README.md ../../AutobahnCpp/doc/ +# cp README.md ../../AutobahnTestsuite/doc/ copy: copy_makefile copy_gitignore copy_serve diff --git a/doc/README.md b/doc/README.md index 1fbcadb0..700c96cd 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,6 +1,6 @@ # Documentation -The documentation is generated using [Sphinx](http://sphinx.pocoo.org/) and the generated documentation is hosted [here](http://autobahn.ws/) under the language specific subsite. +The documentation is generated using [Sphinx](http://sphinx.pocoo.org/) and the generated documentation is hosted [here](http://autobahn.ws/python). ## Prerequisites diff --git a/doc/SConstruct b/doc/SConstruct index c76fc6de..b422754d 100644 --- a/doc/SConstruct +++ b/doc/SConstruct @@ -42,6 +42,7 @@ BUCKET_PREFIX = 'python' CSTATIC = "//tavendo-common-static.s3-eu-west-1.amazonaws.com" CSTATIC_LOCAL = "http://127.0.0.1:8888" + ### END OF CONFIG ############################################################# diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index 10d89ece..e01234e0 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -11,11 +11,7 @@ .navbar-brand { width: 239px; height: 50px; - /*width: 209px;*/ - /*height: 21px;*/ - /*margin-top: 10px;*/ - /*margin-left: 0px !important;*/ - /*background-image: url({{ cstatic }}/img/gen/autobahnpython.svg.gz)*/ + } .navbar-brand::after { diff --git a/doc/_templates/side-primary.html b/doc/_templates/side-primary.html index 1c53ecd6..539374db 100644 --- a/doc/_templates/side-primary.html +++ b/doc/_templates/side-primary.html @@ -31,5 +31,3 @@

API Reference

Index

- - diff --git a/doc/conf.py b/doc/conf.py index a1cc5b11..0bcbe316 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -4,6 +4,7 @@ import os import sys import sphinx_bootstrap_theme +# only needed for Autobahn|Python sys.path.insert(0, os.path.abspath('./_extensions')) sys.path.insert(0, os.path.abspath('../autobahn')) @@ -14,7 +15,7 @@ extensions = [ 'sphinx.ext.viewcode', 'sphinx.ext.ifconfig', 'sphinxcontrib.spelling', - 'txsphinx' + 'txsphinx' # only needed for Autobahn|Python ] spelling_lang = 'en_US' @@ -194,9 +195,6 @@ html_logo = None # Custom sidebar templates, maps document names to template names. html_sidebars = { - 'index': [ - 'side-primary.html' - ], '**': [ 'side-primary.html' ]