diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-09 16:35:34 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-09 16:35:34 +0200 |
commit | 0354c0f8b67a46a80125e3feee28663a215f7052 (patch) | |
tree | 4923e4a872b5393d168626280eafa49057ab4156 /docs/conf.py | |
parent | fixed last commit (diff) | |
download | pyload-0354c0f8b67a46a80125e3feee28663a215f7052.tar.xz |
updated doc config
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/conf.py b/docs/conf.py index 006dec5b6..294684120 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ # serve to show the default. import sys, os -from os.path import dirname, join, abspath +from os.path import dirname, join, abspath, exists dir_name = join(dirname(abspath(""))) sys.path.append(dir_name) @@ -61,13 +61,13 @@ copyright = u'2013, pyLoad Team' # # The full version, including alpha/beta/rc tags. """ [[[cog -from pavement import options -v = options.version.split(".") +from pyload import __version__ +v = __version__.split(".") cog.outl("version = '%s'" % ".".join(v[:2])) cog.outl("release = '%s'" % ".".join(v)) ]]]""" -version = '0.5' -release = '0.5.0' +version = '0.4' +release = '0.4.9.9-dev' # [[[end]]] @@ -129,12 +129,12 @@ html_theme = 'default' # The name of an image file (relative to this directory) to place at the top # of the sidebar. -html_logo = join(dir_name, "pyload", "web", "app", "images", "default", "logo.png") +html_logo = join(dir_name, "pyload", "web", "app", "components", "pyload-common", "images", "logo.png") # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -html_favicon = join(dir_name, "pyload", "web", "app", "favicon.ico") +html_favicon = join(dir_name, "pyload", "web", "app", "components", "pyload-common", "favicon.ico") # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, |