[Commits] r554 - website

commits at geoext.org commits at geoext.org
Thu Apr 30 21:11:19 CEST 2009


Author: tschaub
Date: 2009-04-30 21:11:19 +0200 (Thu, 30 Apr 2009)
New Revision: 554

Removed:
   website/www/
Modified:
   website/pavement.py
Log:
All content in the www dir will be accessible online (sphinx should not be putting things like doctrees there).  All web content will come from docsrc directory.  The website directory will be for utilities to build the website, not for the content or theme stuff.

Modified: website/pavement.py
===================================================================
--- website/pavement.py	2009-04-30 18:49:05 UTC (rev 553)
+++ website/pavement.py	2009-04-30 19:11:19 UTC (rev 554)
@@ -55,7 +55,7 @@
                      paver_command_line="build_all"
                      ),
     sphinx=Bunch(docroot="src/trunk/docsrc",
-                 builddir=path(curdir) / "www")
+                 builddir=path(curdir) / "built")
     )
 
 @task
@@ -113,7 +113,7 @@
         'paver.doctools.html'])
 def build_docs():
     # will need to get smarter with new releases
-    destdir = path('www/docs')
+    destdir = path('www')
     destdir.rmtree()
     builtdocs = options.builddir / "html"
     builtdocs.move(destdir)



More information about the Commits mailing list