]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Moved documentation for pythonmod.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 2 Apr 2009 09:51:51 +0000 (09:51 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 2 Apr 2009 09:51:51 +0000 (09:51 +0000)
git-svn-id: file:///svn/unbound/trunk@1576 be551aaa-1e26-0410-a405-d3ace91eadb9

18 files changed:
pythonmod/doc/Makefile [deleted file]
pythonmod/doc/_static/readme [moved from pythonmod/doc/source/_static/readme with 100% similarity]
pythonmod/doc/conf.py [moved from pythonmod/doc/source/conf.py with 100% similarity]
pythonmod/doc/examples/example0-1.py [moved from pythonmod/doc/source/examples/example0-1.py with 100% similarity]
pythonmod/doc/examples/example0.rst [moved from pythonmod/doc/source/examples/example0.rst with 100% similarity]
pythonmod/doc/examples/example1.rst [moved from pythonmod/doc/source/examples/example1.rst with 100% similarity]
pythonmod/doc/examples/example2.rst [moved from pythonmod/doc/source/examples/example2.rst with 100% similarity]
pythonmod/doc/examples/example3.rst [moved from pythonmod/doc/source/examples/example3.rst with 100% similarity]
pythonmod/doc/examples/example4.rst [moved from pythonmod/doc/source/examples/example4.rst with 100% similarity]
pythonmod/doc/examples/index.rst [moved from pythonmod/doc/source/examples/index.rst with 100% similarity]
pythonmod/doc/index.rst [moved from pythonmod/doc/source/index.rst with 100% similarity]
pythonmod/doc/install.rst [moved from pythonmod/doc/source/install.rst with 100% similarity]
pythonmod/doc/modules/config.rst [moved from pythonmod/doc/source/modules/config.rst with 100% similarity]
pythonmod/doc/modules/env.rst [moved from pythonmod/doc/source/modules/env.rst with 100% similarity]
pythonmod/doc/modules/functions.rst [moved from pythonmod/doc/source/modules/functions.rst with 100% similarity]
pythonmod/doc/modules/index.rst [moved from pythonmod/doc/source/modules/index.rst with 100% similarity]
pythonmod/doc/modules/struct.rst [moved from pythonmod/doc/source/modules/struct.rst with 100% similarity]
pythonmod/doc/usecase.rst [moved from pythonmod/doc/source/usecase.rst with 100% similarity]

diff --git a/pythonmod/doc/Makefile b/pythonmod/doc/Makefile
deleted file mode 100644 (file)
index b029353..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-# Makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line.
-SPHINXOPTS    =
-SPHINXBUILD   = sphinx-build
-PAPER         =
-
-# Internal variables.
-PAPEROPT_a4     = -D latex_paper_size=a4
-PAPEROPT_letter = -D latex_paper_size=letter
-ALLSPHINXOPTS   = -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
-
-.PHONY: env help clean html web pickle htmlhelp latex changes linkcheck
-
-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"
-
-clean:
-       -rm -rf build/*
-   
-env:
-
-html: env
-       mkdir -p build/html build/doctrees
-       LD_LIBRARY_PATH=../../.libs:../../ldns-src/lib $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) build/html
-       @echo
-       @echo "Build finished. The HTML pages are in build/html."
-
-pickle: env
-       mkdir -p build/pickle build/doctrees
-       LD_LIBRARY_PATH=../../.libs:../../ldns-src/lib $(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: env
-       mkdir -p build/htmlhelp build/doctrees
-       LD_LIBRARY_PATH=../../.libs:../../ldns-src/lib $(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: env
-       mkdir -p build/latex build/doctrees
-       LD_LIBRARY_PATH=../../.libs:../../ldns-src/lib $(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: env
-       mkdir -p build/changes build/doctrees
-       LD_LIBRARY_PATH=../../.libs:../../ldns-src/lib $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) build/changes
-       @echo
-       @echo "The overview file is in build/changes."
-
-linkcheck: env
-       mkdir -p build/linkcheck build/doctrees
-       LD_LIBRARY_PATH=../../.libs:../../ldns-src/lib $(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."
-