38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
From 7df10fb14d27e35faa590770594ea1b05552576f Mon Sep 17 00:00:00 2001
|
|
From: Alan Pevec <apevec@redhat.com>
|
|
Date: Thu, 5 Jan 2012 00:03:00 +0100
|
|
Subject: [PATCH] Add fixes for building the doc package
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Don't access the net and always reference
|
|
the swift module from the package we're building
|
|
Based on Nova/Glance EPEL patch by Pádraig Brady <P@draigBrady.com>
|
|
---
|
|
doc/source/conf.py | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/doc/source/conf.py b/doc/source/conf.py
|
|
index e6a43b0..3734cd4 100644
|
|
--- a/doc/source/conf.py
|
|
+++ b/doc/source/conf.py
|
|
@@ -20,14 +20,14 @@ import os
|
|
# 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
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
-sys.path.extend([os.path.abspath('../swift'), os.path.abspath('..'),
|
|
- os.path.abspath('../bin')])
|
|
+sys.path.extend([os.path.abspath('../../swift'), os.path.abspath('../..'),
|
|
+ os.path.abspath('../../bin')])
|
|
|
|
# -- 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 = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx',
|
|
+extensions = ['sphinx.ext.autodoc',
|
|
'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath',
|
|
'sphinx.ext.ifconfig']
|
|
todo_include_todos = True
|