[Yt-svn] yt-commit r715 - in branches/yt-1.0/doc: . build

mturk at wrangler.dreamhost.com mturk at wrangler.dreamhost.com
Thu Jul 31 14:58:17 PDT 2008


Author: mturk
Date: Thu Jul 31 14:58:16 2008
New Revision: 715
URL: http://yt.spacepope.org/changeset/715

Log:
Okay, we're doing away with the problem of the large diffs.  I'm simply
deleting the build directory, and we're going to go to a zip-file base
distribution method.

This should save LOTS of space, time, etc etc.  Plus, smaller diffs.



Added:
   branches/yt-1.0/doc/docs_html.zip   (contents, props changed)
Removed:
   branches/yt-1.0/doc/build/
Modified:
   branches/yt-1.0/doc/README
   branches/yt-1.0/doc/wipe_svn.sh

Modified: branches/yt-1.0/doc/README
==============================================================================
--- branches/yt-1.0/doc/README	(original)
+++ branches/yt-1.0/doc/README	Thu Jul 31 14:58:16 2008
@@ -8,3 +8,10 @@
 in the build/ directory, as well as at:
 
 http://yt.enzotools.org/doc/index.html
+
+Additionally, we include pre-generated docs right here for you, inside the zip
+file docs_html.zip.  Just do this, and you get the docs, right here!
+
+unzip docs_html.zip
+
+Then open build/html/index.html . 

Added: branches/yt-1.0/doc/docs_html.zip
==============================================================================
Binary file. No diff available.

Modified: branches/yt-1.0/doc/wipe_svn.sh
==============================================================================
--- branches/yt-1.0/doc/wipe_svn.sh	(original)
+++ branches/yt-1.0/doc/wipe_svn.sh	Thu Jul 31 14:58:16 2008
@@ -1,23 +1,20 @@
-for ext in txt html css png js doctree pickle json
-do
-    find build/ -name "*.${ext}" -exec rm -v {} \;
-done
-
-PYTHONPATH=`pwd`/../
+export PYTHONPATH=`pwd`/../
 make html
 
 echo "Files deleted since last svn commit:"
 echo " (generated with 'svn stat | grep \! ')"
 echo 
-svn stat | grep \!
+svn stat | grep \! |grep -v build
 echo
 
 echo "Files added since last svn commit:"
 echo " (generated with 'svn stat | grep \? ')"
 echo
-svn stat | grep \?
+svn stat | grep \? | grep -v build/html
 echo
 
 echo "Examples files status:"
 echo
 svn stat ../examples/
+
+zip -r docs_html.zip build/html/



More information about the yt-svn mailing list