You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/04/26 17:34:20 UTC

[2/9] git commit: Mock out matplotlib for readthedocs

Mock out matplotlib for readthedocs

Signed-off-by: Tim Van Steenburgh <tv...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/77ebed31
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/77ebed31
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/77ebed31

Branch: refs/heads/cj/5655
Commit: 77ebed310b089a9da03a963f130502c715b2abfa
Parents: 670d962
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Tue Apr 16 02:40:48 2013 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Fri Apr 26 15:28:58 2013 +0000

----------------------------------------------------------------------
 Allura/docs/conf.py |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/77ebed31/Allura/docs/conf.py
----------------------------------------------------------------------
diff --git a/Allura/docs/conf.py b/Allura/docs/conf.py
index cd227ca..5f2d6cb 100644
--- a/Allura/docs/conf.py
+++ b/Allura/docs/conf.py
@@ -29,6 +29,14 @@
 # serve to show the default.
 
 import sys, os
+import mock
+
+MOCK_MODULES = ['matplotlib', 'matplotlib.axes',
+        'matplotlib.backends', 'matplotlib.backends.backend_agg',
+        'matplotlib.figure', 'matplotlib.patches']
+
+for mod_name in MOCK_MODULES:
+    sys.modules[mod_name] = mock.Mock()
 
 # If extensions (or modules to document with autodoc) are in another directory,
 # add these directories to sys.path here. If the directory is relative to the
@@ -54,7 +62,7 @@ source_suffix = '.rst'
 master_doc = 'index'
 
 # General information about the project.
-project = 'Apache Allura'
+project = 'Apache Allura (incubating)'
 copyright = '2012-2013 The Apache Software Foundation'
 
 # The version info for the project you're documenting, acts as replacement for