doc cleanup

This commit is contained in:
Alexander Goedde
2014-08-10 12:08:10 +02:00
parent f9a2f9bc37
commit e6957e29d2
6 changed files with 16 additions and 17 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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 #############################################################

View File

@@ -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 {

View File

@@ -31,5 +31,3 @@
<h4><a href="{{ pathto('reference/autobahn') }}">API Reference</a></h4>
<h4><a href="{{ pathto('genindex') }}">Index</a></h4>
</div>
<img src="" alt="">

View File

@@ -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'
]