Changeset 1070
- Timestamp:
- 06/28/08 12:16:35 (2 months ago)
- Files:
-
- trunk/timeseries/scikits/timeseries/doc/README (added)
- trunk/timeseries/scikits/timeseries/doc/conf.py (modified) (5 diffs)
- trunk/timeseries/scikits/timeseries/doc/index.rst (modified) (2 diffs)
- trunk/timeseries/scikits/timeseries/doc/make.py (added)
- trunk/timeseries/scikits/timeseries/doc/sphinxext (added)
- trunk/timeseries/scikits/timeseries/doc/sphinxext/only_directives.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/timeseries/scikits/timeseries/doc/conf.py
r1062 r1070 18 18 # is relative to the documentation root, use os.path.abspath to make it 19 19 # absolute, like shown here. 20 #sys.path.append(os.path.abspath('some/directory'))20 sys.path.append(os.path.abspath('sphinxext')) 21 21 22 22 # General configuration … … 25 25 # Add any Sphinx extension module names here, as strings. They can be extensions 26 26 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 27 #extensions = []27 extensions = ['sphinx.ext.autodoc', 'only_directives'] 28 28 29 29 # Add any paths that contain templates here, relative to this directory. … … 38 38 # General substitutions. 39 39 project = 'scikits.timeseries' 40 copyright = '2008, Pierre GF G ERARD-MARCHANT, Matt KNOX'40 copyright = '2008, Pierre GF Gerard-Marchant, Matt Knox' 41 41 42 42 # The default replacements for |version| and |release|, also used in various … … 138 138 # contain a <link> tag referring to it. The value of this option must be the 139 139 # base URL from which the finished HTML is served. 140 #html_use_opensearch = ''140 html_use_opensearch = 'False' 141 141 142 142 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). … … 151 151 152 152 # The paper size ('letter' or 'a4'). 153 #latex_paper_size = 'letter'153 latex_paper_size = 'letter' 154 154 155 155 # The font size ('10pt', '11pt' or '12pt'). 156 #latex_font_size = '10pt'156 latex_font_size = '11pt' 157 157 158 158 # Grouping the document tree into LaTeX files. List of tuples 159 159 # (source start file, target name, title, author, document class [howto/manual]). 160 160 latex_documents = [ 161 ('index', 'scikitstimeseries.tex', 'scikits.timeseries Documentation', 'Pierre GF G ERARD-MARCHANT & Matt KNOX', 'manual'),161 ('index', 'scikitstimeseries.tex', 'scikits.timeseries Documentation', 'Pierre GF Gerard-Marchant, Matt Knox', 'manual'), 162 162 ] 163 163 164 164 # The name of an image file (relative to this directory) to place at the top of 165 165 # the title page. 166 #latex_logo = None 167 168 # For "manual" documents, if this is true, then toplevel headings are parts, 169 # not chapters. 170 #latex_use_parts = False 166 latex_logo = None 171 167 172 168 # Additional stuff for the LaTeX preamble. 173 #latex_preamble = ''169 latex_preamble = '' 174 170 175 171 # Documents to append as an appendix to all manuals. 176 #latex_appendices = []172 latex_appendices = [] 177 173 178 174 # If false, no module index is generated. 179 #latex_use_modindex = True 175 latex_use_modindex = True 176 177 #latex_use_parts = True 178 179 # Show both class-level docstring and __init__ docstring in class 180 # documentation 181 autoclass_content = 'both' trunk/timeseries/scikits/timeseries/doc/index.rst
r1062 r1070 1 ################## 2 scikits.timeseries3 ################## 1 ################### 2 scikits.timeseries 3 ################### 4 4 5 :Release: |version| 6 :Date: |today| 5 .. htmlonly:: 7 6 8 Contents: 7 :Release: |version| 8 :Date: |today| 9 9 10 10 .. toctree:: … … 14 14 installing.rst 15 15 16 Indices and tables 17 ================== 16 .. htmlonly:: 18 17 19 * :ref:`genindex`20 * :ref:`modindex`21 * :ref:`search`18 * :ref:`genindex` 19 * :ref:`modindex` 20 * :ref:`search`
