[Scipy-svn] r5208 - in trunk/doc: . source
scipy-svn at scipy.org
scipy-svn at scipy.org
Sun Nov 30 09:48:19 EST 2008
Author: ptvirtan
Date: 2008-11-30 08:48:09 -0600 (Sun, 30 Nov 2008)
New Revision: 5208
Modified:
trunk/doc/
trunk/doc/Makefile
trunk/doc/source/conf.py
Log:
Fetch Sphinx extensions from Numpy's SVN, via svn:externals
Property changes on: trunk/doc
___________________________________________________________________
Name: svn:externals
+ sphinxext http://svn.scipy.org/svn/numpy/trunk/doc/sphinxext
Modified: trunk/doc/Makefile
===================================================================
--- trunk/doc/Makefile 2008-11-30 01:28:12 UTC (rev 5207)
+++ trunk/doc/Makefile 2008-11-30 14:48:09 UTC (rev 5208)
@@ -48,15 +48,12 @@
find build/dist -type d -print0 | xargs -0r chmod g+s
generate: build/generate-stamp
-build/generate-stamp: $(wildcard source/*.rst) ext
+build/generate-stamp: $(wildcard source/*.rst)
mkdir -p build
- ./ext/autosummary_generate.py source/*.rst \
+ ./sphinxext/autosummary_generate.py source/*.rst \
-p dump.xml -o source/generated
touch build/generate-stamp
-ext:
- svn co http://sphinx.googlecode.com/svn/contrib/trunk/numpyext ext
-
html: generate
mkdir -p build/html build/doctrees
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) build/html
Modified: trunk/doc/source/conf.py
===================================================================
--- trunk/doc/source/conf.py 2008-11-30 01:28:12 UTC (rev 5207)
+++ trunk/doc/source/conf.py 2008-11-30 14:48:09 UTC (rev 5208)
@@ -5,7 +5,7 @@
# 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('../ext'))
+sys.path.append(os.path.abspath('../sphinxext'))
# Check Sphinx version
import sphinx
More information about the Scipy-svn
mailing list