summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-01-21 16:59:21 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-01-21 16:59:21 -0800
commit2da914252064af8dc419b49a423ab57fdb0617c4 (patch)
tree27fdd3d93db3ccf8af80c03893a858d20c20fdf8 /tasks.py
parentc224fdecf174077f3b7a15f056e65b10282fed38 (diff)
downloadparamiko-2da914252064af8dc419b49a423ab57fdb0617c4.tar.gz
Rename 'main' doctree to 'www'; refactor sphinx task conf
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py27
1 files changed, 17 insertions, 10 deletions
diff --git a/tasks.py b/tasks.py
index 3326a773..c7164158 100644
--- a/tasks.py
+++ b/tasks.py
@@ -1,16 +1,23 @@
+from os.path import join
+
from invoke import Collection
-from invocations import docs, testing
+from invocations import docs as _docs, testing
+
+d = 'sites'
-# Usage doc/API site
-api = Collection.from_module(docs, name='docs', config={
- 'sphinx.source': 'sites/docs',
- 'sphinx.target': 'sites/docs/_build',
+# Usage doc/API site (published as docs.paramiko.org)
+path = join(d, 'docs')
+docs = Collection.from_module(_docs, name='docs', config={
+ 'sphinx.source': path,
+ 'sphinx.target': join(path, '_build'),
})
-# Main/about/changelog site
-main = Collection.from_module(docs, name='main', config={
- 'sphinx.source': 'sites/main',
- 'sphinx.target': 'sites/main/_build',
+
+# Main/about/changelog site ((www.)?paramiko.org)
+path = join(d, 'www')
+www = Collection.from_module(_docs, name='www', config={
+ 'sphinx.source': path,
+ 'sphinx.target': join(path, '_build'),
})
-ns = Collection(testing.test, docs=api, main=main)
+ns = Collection(testing.test, docs=docs, www=www)