Menu

Commit [r6167]  Maximize  Restore  History

Major rework of the sphinx template.

I'm committing this as a separate directory because I changed way too
much of the original code and I want to make sure others can have a
look before removing the old code.

fer_perez 2008-10-08

1 2 > >> (Page 1 of 2)
added /trunk/py4science/examples/sphinx_template2
added /trunk/py4science/examples/sphinx_template2/Makefile
added /trunk/py4science/examples/sphinx_template2/README.txt
added /trunk/py4science/examples/sphinx_template2/conf.py
added /trunk/py4science/examples/sphinx_template2/index.rst
added /trunk/py4science/examples/sphinx_template2/model
added /trunk/py4science/examples/sphinx_template2/model/api_docs.rst
added /trunk/py4science/examples/sphinx_template2/model/index.rst
added /trunk/py4science/examples/sphinx_template2/model/introduction.rst
added /trunk/py4science/examples/sphinx_template2/model/next_steps.rst
added /trunk/py4science/examples/sphinx_template2/model/sphinx_helpers.rst
added /trunk/py4science/examples/sphinx_template2/pyplots
added /trunk/py4science/examples/sphinx_template2/pyplots/elegant.py
added /trunk/py4science/examples/sphinx_template2/pyplots/hairy.py
added /trunk/py4science/examples/sphinx_template2/simulations
added /trunk/py4science/examples/sphinx_template2/simulations/finale.rst
added /trunk/py4science/examples/sphinx_template2/simulations/index.rst
added /trunk/py4science/examples/sphinx_template2/simulations/introduction.rst
added /trunk/py4science/examples/sphinx_template2/simulations/preliminary.rst
added /trunk/py4science/examples/sphinx_template2/tools
added /trunk/py4science/examples/sphinx_template2/tools/sphinxext
added /trunk/py4science/examples/sphinx_template2/tools/sphinxext/inheritance_diagram.py
added /trunk/py4science/examples/sphinx_template2/tools/sphinxext/ipython_console_highlighting.py
added /trunk/py4science/examples/sphinx_template2/tools/sphinxext/mathmpl.py
added /trunk/py4science/examples/sphinx_template2/tools/sphinxext/only_directives.py
/trunk/py4science/examples/sphinx_template2/Makefile Diff Switch to side-by-side view
--- a
+++ b/trunk/py4science/examples/sphinx_template2/Makefile
@@ -0,0 +1,89 @@
+# Makefile for Sphinx documentation
+#
+
+PDFNAME=sampledoc
+SRCDIR=.
+
+# You can set these variables from the command line.
+SPHINXOPTS    =
+SPHINXBUILD   = sphinx-build
+PAPER         = letter
+
+# Internal variables.
+PAPEROPT_a4     = -D latex_paper_size=a4
+PAPEROPT_letter = -D latex_paper_size=letter
+ALLSPHINXOPTS   = -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(SRCDIR)
+
+.PHONY: help clean html web pickle htmlhelp latex changes linkcheck pdf all dist
+
+help:
+	@echo "Please use \`make <target>' where <target> is one of"
+	@echo "  html      to make standalone HTML files"
+	@echo "  pickle    to make pickle files (usable by e.g. sphinx-web)"
+	@echo "  htmlhelp  to make HTML files and a HTML help project"
+	@echo "  latex     to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
+	@echo "  changes   to make an overview over all changed/added/deprecated items"
+	@echo "  linkcheck to check all external links for integrity"
+	@echo
+	@echo "Compound utility targets:"
+	@echo "  pdf       latex and then runs the PDF generation"
+	@echo "  all       html and pdf"
+	@echo "  dist      all, and then puts the results in dist/"
+
+clean:
+	-rm -rf build/ dist/ _static/ pyplots/*png pyplots/*pdf
+
+pdf: latex
+	cd build/latex && make all-pdf
+
+all: html pdf
+
+dist: clean all
+	mkdir -p dist
+	ln build/latex/$(PDFNAME).pdf dist/
+	cp -al build/html dist/
+	@echo "Build finished.  Final docs are in dist/"
+
+html:
+	mkdir -p build/html build/doctrees
+	$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) build/html
+	@echo
+	@echo "Build finished. The HTML pages are in build/html."
+
+pickle:
+	mkdir -p build/pickle build/doctrees
+	$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) build/pickle
+	@echo
+	@echo "Build finished; now you can process the pickle files or run"
+	@echo "  sphinx-web build/pickle"
+	@echo "to start the sphinx-web server."
+
+web: pickle
+
+htmlhelp:
+	mkdir -p build/htmlhelp build/doctrees
+	$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) build/htmlhelp
+	@echo
+	@echo "Build finished; now you can run HTML Help Workshop with the" \
+	      ".hhp project file in build/htmlhelp."
+
+latex:
+	mkdir -p build/latex build/doctrees
+	$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) build/latex
+	@echo
+	@echo "Build finished; the LaTeX files are in build/latex."
+	@echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
+	      "run these through (pdf)latex."
+
+changes:
+	mkdir -p build/changes build/doctrees
+	$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) build/changes
+	@echo
+	@echo "The overview file is in build/changes."
+
+linkcheck:
+	mkdir -p build/linkcheck build/doctrees
+	$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) build/linkcheck
+	@echo
+	@echo "Link check complete; look for any errors in the above output " \
+	      "or in build/linkcheck/output.txt."
/trunk/py4science/examples/sphinx_template2/README.txt Diff Switch to side-by-side view
--- a
+++ b/trunk/py4science/examples/sphinx_template2/README.txt
@@ -0,0 +1,54 @@
+===========================
+ sphinx template sampledoc
+===========================
+
+This is the top level build directory for the sphinx "sampledoc" documentation.
+You can use this as a starter template for your own projects.  The name
+"sampledoc" is the mock name for the project, you'll need to configure this for
+your needs by editing the conf.py and index.rst files.
+
+All of the documentation is written using reStructuredText and is meant to be
+built Sphinx, a python documentation system built on top of ReST.  As of Python
+2.6, Sphinx is the default docuentation system for Python itself, and it is
+becoming rapidly adopted by multiple projects.
+
+This directory contains:
+
+* index.rst - the top level include document for your project.
+
+* conf.py - the sphinx configuration file.  You need to edit this file to set
+  your project name, authors, etc.
+
+* Makefile - just type 'make' to see a list of available targets.
+
+* model - A directory for a mock document describing a model.  Be sure to see
+  the cheat sheet file "model/sphinx_helpers.rst".
+
+* simulations - A directory for another mock part of your project.
+
+* pyplots - a directory with matplotlib scripts to generate figures that can be
+  included in your document with the 'plot' directive.  See the
+  sphinx_helpers.rst file for details.
+  
+* tools - a directory that contains:
+
+  * sphinxext - some extensions to sphinx to handle math, ipython syntax
+    highlighting, autodocs.
+
+  * static - directory where you can put your static content, meant to be
+    copied on output by Sphinx into the top-level _static directory.  This is
+    never overwritten, so you can keep static CSS files, etc here, that can
+    then override the Sphinx ones.
+
+  * templates - directory for your own templates, also used by sphinx.
+
+  
+Note: The makefile and sphinx build system create three directories when
+bulding the output, named ``build``, ``dist`` and ``_static``.  Do *not* make
+directories with these names as part of your project, to avoid possible
+conflicts.
+
+
+You can get the latest svn of this document with::
+
+    svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/trunk/py4science/examples/sphinx_template2
/trunk/py4science/examples/sphinx_template2/conf.py Diff Switch to side-by-side view
--- a
+++ b/trunk/py4science/examples/sphinx_template2/conf.py
@@ -0,0 +1,177 @@
+# -*- coding: utf-8 -*-
+#
+# sampledoc documentation build configuration file, created by
+# sphinx-quickstart on Tue Jun  3 12:40:24 2008.
+#
+# This file is execfile()d with the current directory set to its containing dir.
+#
+# The contents of this file are pickled, so don't put values in the namespace
+# that aren't pickleable (module imports are okay, they're removed automatically).
+#
+# All configuration values have a default value; values that are commented out
+# serve to show the default value.
+
+import sys, os
+
+# If your extensions are in another directory, add it here. If the directory
+# is relative to the documentation root, use os.path.abspath to make it
+# absolute, like shown here.
+sys.path.append(os.path.abspath('tools/sphinxext'))
+
+
+# Import support for ipython console session syntax highlighting (lives
+# in the sphinxext directory defined above)
+import ipython_console_highlighting
+
+# General configuration
+# ---------------------
+
+# Add any Sphinx extension module names here, as strings. They can be extensions
+# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
+extensions = [#'mathmpl',
+              'ipython_console_highlighting', 'sphinx.ext.autodoc',
+              'inheritance_diagram', 'only_directives', 'plot_directive',
+              'sphinx.ext.pngmath',
+              ]
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['tools/templates']
+
+# The suffix of source filenames.
+source_suffix = '.rst'
+
+# The master toctree document.
+master_doc = 'index'
+
+# General substitutions.
+project = 'sampledoc'
+copyright = '2008, John D. Hunter, Cast of Thousands'
+
+# The default replacements for |version| and |release|, also used in various
+# other places throughout the built documents.
+#
+# The short X.Y version.
+version = '0.2'
+# The full version, including alpha/beta/rc tags.
+release = '0.2'
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+#today = ''
+# Else, today_fmt is used as the format for a strftime call.
+today_fmt = '%B %d, %Y'
+
+# List of documents that shouldn't be included in the build.
+#unused_docs = []
+
+# List of directories, relative to source directories, that shouldn't be
+# searched for source files.
+#exclude_dirs = []
+
+# If true, '()' will be appended to :func: etc. cross-reference text.
+#add_function_parentheses = True
+
+# If true, the current module name will be prepended to all description
+# unit titles (such as .. function::).
+#add_module_names = True
+
+# If true, sectionauthor and moduleauthor directives will be shown in the
+# output. They are ignored by default.
+#show_authors = False
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = 'sphinx'
+
+
+# Options for HTML output
+# -----------------------
+
+# The style sheet to use for HTML and HTML Help pages. A file of that name
+# must exist either in Sphinx' static/ path, or in one of the custom paths
+# given in html_static_path.
+html_style = 'default.css'
+
+# The name for this set of Sphinx documents.  If None, it defaults to
+# "<project> v<release> documentation".
+#html_title = None
+
+# The name of an image file (within the static path) to place at the top of
+# the sidebar.
+#html_logo = None
+
+# 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,
+# so a file named "default.css" will overwrite the builtin "default.css".
+html_static_path = ['tools/static','_static']
+
+# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
+# using the given strftime format.
+html_last_updated_fmt = '%b %d, %Y'
+
+# If true, SmartyPants will be used to convert quotes and dashes to
+# typographically correct entities.
+#html_use_smartypants = True
+
+# Custom sidebar templates, maps document names to template names.
+#html_sidebars = {}
+
+# Additional templates that should be rendered to pages, maps page names to
+# template names.
+#html_additional_pages = {}
+
+# If false, no module index is generated.
+#html_use_modindex = True
+
+# If true, the reST sources are included in the HTML build as _sources/<name>.
+#html_copy_source = True
+
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a <link> tag referring to it.  The value of this option must be the
+# base URL from which the finished HTML is served.
+#html_use_opensearch = ''
+
+# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
+#html_file_suffix = ''
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = project
+
+
+# Options for LaTeX output
+# ------------------------
+
+# The paper size ('letter' or 'a4').
+#latex_paper_size = 'letter'
+
+# The font size ('10pt', '11pt' or '12pt').
+#latex_font_size = '10pt'
+
+# Grouping the document tree into LaTeX files. List of tuples (source start
+# file, target name, title, author, document class [howto/manual]).
+
+main_manual_tex = project + '.tex'
+
+latex_documents = [
+  (master_doc,
+   main_manual_tex,
+   'sampledoc Documentation',
+   'John D. Hunter, Cast of Thousands',
+   'manual'),
+]
+
+# The name of an image file (relative to this directory) to place at the top of
+# the title page.
+#latex_logo = None
+
+# For "manual" documents, if this is true, then toplevel headings are parts,
+# not chapters.
+#latex_use_parts = False
+
+# Additional stuff for the LaTeX preamble.
+#latex_preamble = ''
+
+# Documents to append as an appendix to all manuals.
+#latex_appendices = []
+
+# If false, no module index is generated.
+#latex_use_modindex = True
/trunk/py4science/examples/sphinx_template2/index.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/model/api_docs.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/model/index.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/model/introduction.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/model/next_steps.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/model/sphinx_helpers.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/pyplots/elegant.py Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/pyplots/hairy.py Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/simulations/finale.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/simulations/index.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/simulations/introduction.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/simulations/preliminary.rst Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/tools/sphinxext/inheritance_diagram.py Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/tools/sphinxext/ipython_console_highlighting.py Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/tools/sphinxext/mathmpl.py Diff Switch to side-by-side view
Loading...
/trunk/py4science/examples/sphinx_template2/tools/sphinxext/only_directives.py Diff Switch to side-by-side view
Loading...
1 2 > >> (Page 1 of 2)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.