Changeset 4830
- Timestamp:
- 06/28/08 13:58:57 (5 months ago)
- Files:
-
- trunk/docs/conf.py (modified) (4 diffs)
- trunk/docs/tgext.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/conf.py
r4557 r4830 17 17 # is relative to the documentation root, use os.path.abspath to make it 18 18 # absolute, like shown here. 19 #sys.path.append(os.path.abspath('some/directory'))19 sys.path.append(os.path.dirname(os.path.abspath(__file__))) 20 20 21 21 # General configuration … … 24 24 # Add any Sphinx extension module names here, as strings. They can be extensions 25 25 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 26 extensions = ['sphinx.ext.autodoc' ]26 extensions = ['sphinx.ext.autodoc', 'tgext'] 27 27 28 28 # Add any paths that contain templates here, relative to this directory. … … 54 54 55 55 # List of documents that shouldn't be included in the build. 56 # unused_docs = []56 # unused_docs = [] 57 57 58 58 # If true, '()' will be appended to :func: etc. cross-reference text. … … 148 148 # If false, no module index is generated. 149 149 #latex_use_modindex = True 150 151 code_path = os.path.dirname(os.path.abspath(__file__)) + os.path.sep + 'project_code' + os.path.sep 152 code_scm = 'svn'