Changeset 1531
- Timestamp:
- 07/14/08 15:13:37 (5 months ago)
- Location:
- doc/trunk
- Files:
-
- 17 added
- 1 removed
- 1 modified
-
ACKS.txt (added)
-
about.rst (added)
-
bugs.rst (added)
-
conf.py (modified) (6 diffs)
-
contents.rst (added)
-
copyright.rst (added)
-
howto (added)
-
html (added)
-
html/download.html (added)
-
html/indexcontent.html (added)
-
html/indexsidebar.html (added)
-
html/layout.html (added)
-
html/static (added)
-
html/static/logo.jpg (added)
-
html/static/pyamf.ico (added)
-
index.rst (deleted)
-
license.rst (added)
-
whatsnew (added)
-
whatsnew/0.4.rst (added)
Legend:
- Unmodified
- Added
- Removed
-
doc/trunk/conf.py
r1526 r1531 12 12 13 13 import sys, os, time 14 import pyamf 15 sys.path.append(os.path.abspath('html')) 14 16 15 17 # If your extensions are in another directory, add it here. If the directory … … 21 23 # --------------------- 22 24 23 # Add any paths that contain templates here, relative to this directory.24 templates_path = [' templates']25 # Paths that contain templates, relative to this directory. 26 templates_path = ['html'] 25 27 26 28 # The suffix of source filenames. … … 28 30 29 31 # The master toctree document. 30 master_doc = 'index'32 #master_doc = 'index' 31 33 32 34 # Location of the PyAMF source root folder. … … 48 50 # We look for the __init__.py file in the current PyAMF source tree 49 51 # and replace the values accordingly. 50 import pyamf 51 version = release = '.'.join(map(lambda x: str(x), pyamf.__version__))52 release = '.'.join(map(lambda x: str(x), pyamf.__version__)) 53 version = release[:3] 52 54 53 55 # There are two options for replacing |today|: either, you set today to some … … 87 89 #html_title = None 88 90 89 # The name of an image file (within the static path) to place at the top of90 # the sidebar.91 #html_logo = None92 93 91 # Add any paths that contain custom static files (such as style sheets) here, 94 92 # relative to this directory. They are copied after the builtin static files, 95 93 # so a file named "default.css" will overwrite the builtin "default.css". 96 html_static_path = ['_static'] 94 html_static_path = ['html/static'] 95 96 # The name of an image file (.ico) that is the favicon of the docs. 97 html_favicon = 'pyamf.ico' 97 98 98 99 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, … … 105 106 106 107 # Custom sidebar templates, maps document names to template names. 107 #html_sidebars = {} 108 html_sidebars = { 109 'index': 'indexsidebar.html', 110 } 108 111 109 112 # Additional templates that should be rendered to pages, maps page names to 110 113 # template names. 111 #html_additional_pages = {} 114 html_additional_pages = { 115 'download': 'download.html', 116 'index': 'indexcontent.html', 117 } 118 119 # Content template for the index page, filename relative to this file. 120 html_index = 'indexcontent.html' 112 121 113 122 # If false, no module index is generated.
