if test -n "$(doxygen)"; then \
$(doxygen) $(srcdir)/doc/unbound.doxygen; fi
if test -x "`which sphinx-build 2>&1`"; then \
- sphinx-build -b html pythonmod/doc/source doc/html/pythonmod
- sphinx-build -b html libunbound/python/doc/source doc/html/pyunbound
+ sphinx-build -b html pythonmod/doc doc/html/pythonmod; \
+ sphinx-build -b html libunbound/python/doc doc/html/pyunbound;\
fi
strip:
2 April 2009: Wouter
- pyunbound (libunbound python plugin) compiles using libtool.
+ - documentation for pythonmod and pyunbound is generated in doc/html.
1 April 2009: Wouter
- suppress errors when trying to contact authority servers that gave
util/configparser.h \
util/configlexer.c \
util/locks.h \
- pythonmod/Unbound.py \
+ pythonmod/unboundmodule.py \
pythonmod/interface.h \
pythonmod/examples/resgen.py \
pythonmod/examples/resmod.py \
+ libunbound/python/unbound.py \
+ libunbound/python/libunbound_wrap.c \
./ldns-src
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# 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(os.path.join(os.path.dirname(__file__),'../../')))
+sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__),'../')))
+sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__),'../../../')))
+sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__),'../../../.libs/')))
#print sys.path
# General configuration
Complete source code
--------------------
-.. literalinclude:: ../../../examples/log.py
+.. literalinclude:: ../../examples/log.py
:language: python
Testing
Complete source code
--------------------
-.. literalinclude:: ../../../examples/resgen.py
+.. literalinclude:: ../../examples/resgen.py
:language: python
Testing
Complete source code
--------------------
-.. literalinclude:: ../../../examples/resmod.py
+.. literalinclude:: ../../examples/resmod.py
:language: python
Testing
Complete source code
--------------------
-.. literalinclude:: ../../../examples/dict.py
+.. literalinclude:: ../../examples/dict.py
:language: python