[Yt-svn] commit/yt: 3 new changesets

Bitbucket commits-noreply at bitbucket.org
Sun Aug 21 04:26:52 PDT 2011


3 new changesets in yt:

http://bitbucket.org/yt_analysis/yt/changeset/e96282130e63/
changeset:   e96282130e63
branch:      yt
user:        MatthewTurk
date:        2011-08-18 20:03:11
summary:     Changing method of reading Enzo parameter files to be epsilon clearer.
affected #:  1 file (314 bytes)

--- a/yt/frontends/enzo/data_structures.py	Wed Aug 17 14:24:17 2011 -0400
+++ b/yt/frontends/enzo/data_structures.py	Thu Aug 18 14:03:11 2011 -0400
@@ -743,55 +743,65 @@
         self.unique_identifier = \
             int(os.stat(self.parameter_filename)[stat.ST_CTIME])
         lines = open(self.parameter_filename).readlines()
-        for lineI, line in enumerate(lines):
-            if line.find("#") >= 1: # Keep the commented lines
-                line=line[:line.find("#")]
-            line=line.strip().rstrip()
-            if len(line) < 2:
-                continue
-            try:
-                param, vals = map(string.strip,map(string.rstrip,
-                                                   line.split("=")))
-            except ValueError:
-                mylog.error("ValueError: '%s'", line)
-            if parameterDict.has_key(param):
-                t = map(parameterDict[param], vals.split())
-                if len(t) == 1:
-                    self.parameters[param] = t[0]
+        data_labels = {}
+        data_label_factors = {}
+        for line in (l.strip() for l in lines):
+            if len(line) < 2: continue
+            param, vals = (i.strip() for i in line.split("="))
+            # First we try to decipher what type of value it is.
+            vals = vals.split()
+            # Special case approaching.
+            if "(do" in vals: vals = vals[:1]
+            if len(vals) == 0:
+                pcast = str # Assume NULL output
+            else:
+                v = vals[0]
+                # Figure out if it's castable to floating point:
+                try:
+                    float(v)
+                except ValueError:
+                    pcast = str
                 else:
-                    self.parameters[param] = t
-                if param.endswith("Units") and not param.startswith("Temperature"):
-                    dataType = param[:-5]
-                    self.conversion_factors[dataType] = self.parameters[param]
-            elif param.startswith("#DataCGS"):
+                    if any("." in v or "e+" in v or "e-" in v for v in vals):
+                        pcast = float
+                    else:
+                        pcast = int
+            # Now we figure out what to do with it.
+            if param.endswith("Units") and not param.startswith("Temperature"):
+                dataType = param[:-5]
+                # This one better be a float.
+                self.conversion_factors[dataType] = float(vals[0])
+            if param.startswith("#DataCGS") or \
+                 param.startswith("#CGSConversionFactor"):
                 # Assume of the form: #DataCGSConversionFactor[7] = 2.38599e-26 g/cm^3
-                if lines[lineI-1].find("Label") >= 0:
-                    kk = lineI-1
-                elif lines[lineI-2].find("Label") >= 0:
-                    kk = lineI-2
-                dataType = lines[kk].split("=")[-1].rstrip().strip()
-                convFactor = float(line.split("=")[-1].split()[0])
-                self.conversion_factors[dataType] = convFactor
-            elif param.startswith("#CGSConversionFactor"):
-                dataType = param[20:].rstrip()
-                convFactor = float(line.split("=")[-1])
-                self.conversion_factors[dataType] = convFactor
-            elif param.startswith("DomainLeftEdge"):
-                self.domain_left_edge = \
-                self.parameters["DomainLeftEdge"] = \
-                    na.array([float(i) for i in vals.split()])
-            elif param.startswith("DomainRightEdge"):
-                self.domain_right_edge = \
-                self.parameters["DomainRightEdge"] = \
-                    na.array([float(i) for i in vals.split()])
+                # Which one does it belong to?
+                data_id = param[param.find("[")+1:param.find("]")]
+                data_label_factors[data_id] = float(vals[0])
+            if param.startswith("DataLabel"):
+                data_id = param[param.find("[")+1:param.find("]")]
+                data_labels[data_id] = vals[0]
+            if len(vals) == 0:
+                vals = ""
+            elif len(vals) == 1:
+                vals = pcast(vals[0])
+            else:
+                vals = na.array([pcast(i) for i in vals if i != "-99999"])
+            self.parameters[param] = vals
         for p, v in self._parameter_override.items():
             self.parameters[p] = v
         for p, v in self._conversion_override.items():
             self.conversion_factors[p] = v
+        for k, v in data_label_factors.items():
+            self.conversion_factors[data_labels[k]] = v
         self.refine_by = self.parameters["RefineBy"]
         self.dimensionality = self.parameters["TopGridRank"]
         self.domain_dimensions = self.parameters["TopGridDimensions"]
+        self.domain_left_edge = self.parameters["DomainLeftEdge"].copy()
+        self.domain_right_edge = self.parameters["DomainRightEdge"].copy()
         self.current_time = self.parameters["InitialTime"]
+        # To be enabled when we can break old pickles:
+        #if "MetaDataSimulationUUID" in self.parameters:
+        #    self.unique_identifier = self.parameters["MetaDataSimulationUUID"]
         if "CurrentTimeIdentifier" in self.parameters:
             self.unique_identifier = self.parameters["CurrentTimeIdentifier"]
         if self.parameters["ComovingCoordinates"]:


http://bitbucket.org/yt_analysis/yt/changeset/c54b5457919c/
changeset:   c54b5457919c
branch:      yt
user:        MatthewTurk
date:        2011-08-21 13:22:20
summary:     Merging
affected #:  2 files (136 bytes)

--- a/doc/install_script.sh	Thu Aug 18 14:03:11 2011 -0400
+++ b/doc/install_script.sh	Sun Aug 21 07:22:20 2011 -0400
@@ -269,10 +269,10 @@
 
 function get_enzotools
 {
-    echo "Downloading $1 from yt.enzotools.org"
+    echo "Downloading $1 from yt-project.org"
     [ -e $1 ] && return
-    wget -nv "http://yt.enzotools.org/dependencies/$1" || do_exit
-    wget -nv "http://yt.enzotools.org/dependencies/$1.md5" || do_exit
+    wget -nv "http://yt-project.org/dependencies/$1" || do_exit
+    wget -nv "http://yt-project.org/dependencies/$1.md5" || do_exit
     ( which md5sum &> /dev/null ) || return # return if we don't have md5sum
     ( md5sum -c $1.md5 2>&1 ) 1>> ${LOG_FILE} || do_exit
 }
@@ -465,11 +465,11 @@
     elif [ ! -e yt-hg ] 
     then
         YT_DIR="$PWD/yt-hg/"
-        ( ${HG_EXEC} --debug clone http://hg.enzotools.org/yt-supplemental/ 2>&1 ) 1>> ${LOG_FILE}
+        ( ${HG_EXEC} --debug clone http://hg.yt-project.org/yt-supplemental/ 2>&1 ) 1>> ${LOG_FILE}
         # Recently the hg server has had some issues with timeouts.  In lieu of
         # a new webserver, we are now moving to a three-stage process.
         # First we clone the repo, but only up to r0.
-        ( ${HG_EXEC} --debug clone http://hg.enzotools.org/yt/ ./yt-hg 2>&1 ) 1>> ${LOG_FILE}
+        ( ${HG_EXEC} --debug clone http://hg.yt-project.org/yt/ ./yt-hg 2>&1 ) 1>> ${LOG_FILE}
         # Now we update to the branch we're interested in.
         ( ${HG_EXEC} -R ${YT_DIR} up -C ${BRANCH} 2>&1 ) 1>> ${LOG_FILE}
     elif [ -e yt-hg ] 
@@ -652,7 +652,7 @@
     echo
     echo "For support, see the website and join the mailing list:"
     echo
-    echo "    http://yt.enzotools.org/"
+    echo "    http://yt-project.org/"
     echo "    http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org"
     echo
     echo "========================================================================"


--- a/yt/convenience.py	Thu Aug 18 14:03:11 2011 -0400
+++ b/yt/convenience.py	Sun Aug 21 07:22:20 2011 -0400
@@ -35,12 +35,14 @@
     output_type_registry, \
     EnzoRunDatabase
 
-def all_pfs(basedir='.',max_depth=1, name_spec="*.hierarchy", **kwargs):
+def all_pfs(basedir='.', skip=None, max_depth=1, name_spec="*.hierarchy", **kwargs):
     """
-    This function searchs a directory and its sub-directories, up to a depth of
-    *max_depth*, for parameter files.  It looks for the *name_spec* and then
-    instantiates an EnzoStaticOutput from each.  All subsequent *kwargs* are
-    passed on to the EnzoStaticOutput constructor.
+    This function searchs a directory and its sub-directories, up to a
+    depth of *max_depth*, for parameter files.  It looks for the
+    *name_spec* and then instantiates an EnzoStaticOutput from
+    each. You can skip every *skip* parameter files, if *skip* is not
+    None; otherwise it will return all files.  All subsequent *kwargs*
+    are passed on to the EnzoStaticOutput constructor.
     """
     list_of_names = []
     basedir = os.path.expanduser(basedir)
@@ -48,7 +50,7 @@
         bb = list('*' * i) + [name_spec]
         list_of_names += glob.glob(os.path.join(basedir,*bb))
     list_of_names.sort(key=lambda b: os.path.basename(b))
-    for fn in list_of_names:
+    for fn in list_of_names[::skip]:
         yield load(fn[:-10], **kwargs)
 
 def max_spheres(width, unit, **kwargs):


http://bitbucket.org/yt_analysis/yt/changeset/23e94dae7ee0/
changeset:   23e94dae7ee0
branch:      yt
user:        MatthewTurk
date:        2011-08-21 13:26:11
summary:     enzotools -> yt-project.
affected #:  235 files (492 bytes)

--- a/README	Sun Aug 21 07:22:20 2011 -0400
+++ b/README	Sun Aug 21 07:26:11 2011 -0400
@@ -5,8 +5,8 @@
 
 Full documentation and a user community can be found at:
 
-http://yt.enzotools.org/
-http://yt.enzotools.org/doc/
+http://yt-project.org/
+http://yt-project.org/doc/
 
 If you have used Python before, and are comfortable with installing packages,
 you should find the setup.py script fairly straightforward: simply execute
@@ -20,6 +20,6 @@
 interested in helping out, see the developer documentation in
 doc/how_to_develop_yt.txt or at:
 
-http://yt.enzotools.org/doc/advanced/developing.html
+http://yt-project.org/doc/advanced/developing.html
 
 Enjoy!


--- a/doc/README	Sun Aug 21 07:22:20 2011 -0400
+++ b/doc/README	Sun Aug 21 07:26:11 2011 -0400
@@ -1,7 +1,7 @@
 This directory contains the compiled yt documentation.  Development of the
 documentation happens in a mercurial repository, yt-doc, available at:
 
-http://hg.enzotools.org/yt-doc/
+http://hg.yt-project.org/yt-doc/
 
 It's written to be used with Sphinx, a tool designed for writing Python
 documentation.  Sphinx is available at this URL:
@@ -11,11 +11,11 @@
 All of the pre-built HTML files, accessible with any web browser, are available
 in the build/ directory, as well as at:
 
-http://yt.enzotools.org/doc/index.html
+http://yt-project.org/doc/index.html
 
 You can also download a copy of the documentation and unzip it right here:
 
-wget http://yt.enzotools.org/doc/download.zip
+wget http://yt-project.org/doc/download.zip
 unzip download.zip
 
 Then open index.html with your favorite web browser, and be off!


--- a/doc/how_to_develop_yt.txt	Sun Aug 21 07:22:20 2011 -0400
+++ b/doc/how_to_develop_yt.txt	Sun Aug 21 07:26:11 2011 -0400
@@ -31,10 +31,10 @@
 --------------------------
 
 yt is hosted on BitBucket, and you can see all of the yt repositories at
-http://hg.enzotools.org/ .  With the yt installation script you should have a
+http://hg.yt-project.org/ .  With the yt installation script you should have a
 copy of Mercurial.  You can clone the repository like so:
 
-   $ hg clone http://hg.enzotools.org/yt/
+   $ hg clone http://hg.yt-project.org/yt/
 
 You can update to any branch or revision by executing the command:
 
@@ -54,7 +54,7 @@
 You can submit changes a couple different ways, but the easiest is to use the
 "fork" mechanism on BitBucket.  Just go here:
 
-http://hg.enzotools.org/yt/fork
+http://hg.yt-project.org/yt/fork
 
 and you're all set, ready to go.  You'll have to either clone a new copy of the
 repository or edit .hg/hgrc to point to the location of your new fork, first,
@@ -62,7 +62,7 @@
 
 When you're ready to submit them to the main repository, simply go to:
 
-http://hg.enzotools.org/yt/fork
+http://hg.yt-project.org/yt/fork
 
 Make sure you notify "yt_analysis" and put in a little description.  That'll
 notify the core developers that you've got something ready to submit, and we
@@ -131,7 +131,7 @@
 The next commit and all subsequent commits will be contained within that named
 branch.  At this point, add your branch here:
 
-http://yt.enzotools.org/wiki/ExistingBranches
+http://yt-project.org/wiki/ExistingBranches
 
 To merge changes in from another branch, you would execute:
 


--- a/scripts/yt_lodgeit.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/scripts/yt_lodgeit.py	Sun Aug 21 07:26:11 2011 -0400
@@ -33,7 +33,7 @@
 
 SCRIPT_NAME = os.path.basename(sys.argv[0])
 VERSION = '0.3'
-SERVICE_URL = 'http://paste.enzotools.org/'
+SERVICE_URL = 'http://paste.yt-project.org/'
 SETTING_KEYS = ['author', 'title', 'language', 'private', 'clipboard',
                 'open_browser']
 


--- a/setup.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/setup.py	Sun Aug 21 07:26:11 2011 -0400
@@ -25,7 +25,7 @@
     print "Now attempting to install Cython"
     import pip
     rv = pip.main(["install",
-              "http://yt.enzotools.org/dependencies/Cython-latest.tar.gz"])
+              "http://yt-project.org/dependencies/Cython-latest.tar.gz"])
     if rv == 1:
         print "Unable to install Cython.  Please report this bug to yt-users."
         sys.exit(1)
@@ -129,7 +129,7 @@
                        ]},
         author="Matthew J. Turk",
         author_email="matthewturk at gmail.com",
-        url = "http://yt.enzotools.org/",
+        url = "http://yt-project.org/",
         license="GPL-3",
         configuration=configuration,
         zip_safe=False,


--- a/yt/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -6,8 +6,8 @@
 wide-variety of methods.
 
 An ever-growing collection of documentation is also available at
-http://yt.enzotools.org/doc/ . Additionally, there is a
-project site at http://yt.enzotools.org/ with recipes, a wiki, a variety of
+http://yt-project.org/doc/ . Additionally, there is a
+project site at http://yt-project.org/ with recipes, a wiki, a variety of
 ways of peering into the version control, and a bug-reporting system.
 
 YT is divided into several packages.
@@ -62,7 +62,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/absorption_spectrum/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/absorption_spectrum/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/absorption_spectrum/absorption_line.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/absorption_spectrum/absorption_line.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: Michigan State University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/absorption_spectrum/absorption_spectrum.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/absorption_spectrum/absorption_spectrum.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: Michigan State University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/absorption_spectrum/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/absorption_spectrum/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/coordinate_transformation/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/coordinate_transformation/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/coordinate_transformation/transforms.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/coordinate_transformation/transforms.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: JS Oishi <jsoishi at astro.berkeley.edu>
 Organization: UC Berkeley
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk, J. S. Oishi.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_finding/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_finding/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_finding/halo_objects.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_finding/halo_objects.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Stephen Skory <s at skory.us>
 Affiliation: UCSD Physics/CASS
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_finding/parallel_hop/parallel_hop_interface.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_finding/parallel_hop/parallel_hop_interface.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Stephen Skory <s at skory.us>
 Affiliation: UCSD/CASS
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Stephen Skory.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_mass_function/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_mass_function/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_mass_function/halo_mass_function.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_mass_function/halo_mass_function.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Stephen Skory <s at skory.us>
 Affiliation: UC San Diego / CASS
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Stephen Skory (and others).  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_merger_tree/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_merger_tree/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_merger_tree/enzofof_merger_tree.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_merger_tree/enzofof_merger_tree.py	Sun Aug 21 07:26:11 2011 -0400
@@ -6,7 +6,7 @@
 Affiliation: Columbia University
 Author: John H. Wise <jwise at astro.princeton.edu>
 Affiliation: Princeton
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_merger_tree/merger_tree.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_merger_tree/merger_tree.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Stephen Skory <s at skory.us>
 Affiliation: CASS/UC San Diego, CA
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Stephen Skory.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_profiler/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_profiler/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_profiler/centering_methods.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_profiler/centering_methods.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Stephen Skory <s at skory.us>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Stephen Skory.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_profiler/halo_filters.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_profiler/halo_filters.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_profiler/multi_halo_profiler.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_profiler/multi_halo_profiler.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/halo_profiler/standard_analysis.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/halo_profiler/standard_analysis.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/hierarchy_subset/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/hierarchy_subset/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/hierarchy_subset/hierarchy_subset.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/hierarchy_subset/hierarchy_subset.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/level_sets/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/level_sets/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/level_sets/clump_tools.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/level_sets/clump_tools.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: David Collins <dcollins at physics.ucsd.edu>
 Affiliation: Center for Astrophysics and Space Sciences, U C San Diego
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 David Collins.  All Rights Reserved.
 


--- a/yt/analysis_modules/level_sets/contour_finder.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/level_sets/contour_finder.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_cone/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_cone/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_cone/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_cone/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_cone/common_n_volume.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_cone/common_n_volume.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_cone/halo_mask.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_cone/halo_mask.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_cone/light_cone.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_cone/light_cone.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_cone/light_cone_projection.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_cone/light_cone_projection.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_cone/unique_solution.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_cone/unique_solution.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_ray/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_ray/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/light_ray/light_ray.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/light_ray/light_ray.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/list_modules.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/list_modules.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/simulation_handler/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/simulation_handler/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/simulation_handler/enzo_simulation.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/simulation_handler/enzo_simulation.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/analysis_modules/spectral_integrator/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/spectral_integrator/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/spectral_integrator/spectral_frequency_integrator.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/spectral_integrator/spectral_frequency_integrator.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/star_analysis/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/star_analysis/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/star_analysis/sfr_spectrum.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/star_analysis/sfr_spectrum.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Stephen Skory <s at skory.us>
 Affiliation: UC San Diego / CASS
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Stephen Skory (and others).  All Rights Reserved.
 


--- a/yt/analysis_modules/sunrise_export/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/sunrise_export/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/sunrise_export/sunrise_exporter.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/sunrise_export/sunrise_exporter.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/two_point_functions/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/two_point_functions/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/analysis_modules/two_point_functions/two_point_functions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/analysis_modules/two_point_functions/two_point_functions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Stephen Skory <s at skory.us>
 Affiliation: UCSD Physics/CASS
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Stephen Skory.  All Rights Reserved.
 


--- a/yt/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/arraytypes.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/arraytypes.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/astro_objects/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/astro_objects/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/astro_objects/astrophysical_object.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/astro_objects/astrophysical_object.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/astro_objects/clumped_region.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/astro_objects/clumped_region.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/astro_objects/simulation_volume.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/astro_objects/simulation_volume.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/config.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/config.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/convenience.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/convenience.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/analyzer_objects.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/analyzer_objects.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/data_containers.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/data_containers.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <Britton.Smith at colorado.edu>
 Affiliation: University of Colorado at Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/derived_quantities.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/derived_quantities.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/field_info_container.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/field_info_container.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/grid_patch.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/grid_patch.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/hierarchy.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/hierarchy.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/object_finding_mixin.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/object_finding_mixin.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/particle_io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/particle_io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/profiles.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/profiles.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Samuel Skillman <samskillman at gmail.com>
 Affiliation: CASA, University of Colorado at Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/static_output.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/static_output.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Presumably at some point EnzoRun will be absorbed into here.
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk, J. S. Oishi.  All Rights Reserved.
 


--- a/yt/data_objects/time_series.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/time_series.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/data_objects/universal_fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/data_objects/universal_fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/art/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/art/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/art/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/art/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/art/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/art/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/art/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/art/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/art/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/art/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/castro/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/castro/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/castro/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/castro/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/castro/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/castro/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2010 J. S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/castro/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/castro/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2010 J.S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/castro/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/castro/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: UC Berkeley
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2010 J. S. Oishi, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/castro/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/castro/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Author: Matthew Turk <matthewturk at gmail.com>
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2010 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/chombo/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/chombo/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Author: Matthew Turk <matthewturk at gmail.com>
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk, J. S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/chombo/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/chombo/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J.S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/chombo/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/chombo/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009-2011 J. S. Oishi, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/chombo/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/chombo/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Author: Matthew Turk <matthewturk at gmail.com>
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/enzo/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/enzo/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/enzo/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/enzo/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/enzo/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/enzo/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.


--- a/yt/frontends/enzo/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/enzo/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/enzo/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/enzo/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/enzo/misc.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/enzo/misc.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/flash/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/flash/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/flash/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/flash/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/flash/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/flash/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/flash/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/flash/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk, John ZuHone.  All Rights Reserved.
 


--- a/yt/frontends/flash/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/flash/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/gadget/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gadget/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/gadget/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gadget/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/gadget/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gadget/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: UCSD
 Author: Chris Moody <cemoody at ucsc.edu>
 Affiliation: UCSC
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/gadget/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gadget/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Christopher E Moody <juxtaposicion at gmail.com>
 Affiliation: UC Santa Cruz
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Christopher E Moody, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/gadget/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gadget/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Christopher E Moody <juxtaposicion at gmail.com>
 Affiliation: UC Santa Cruz
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Christopher E Moody, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/gdf/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gdf/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Author: Matthew Turk <matthewturk at gmail.com>
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk, J. S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/gdf/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gdf/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J.S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/gdf/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gdf/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009-2011 J. S. Oishi, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/gdf/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/gdf/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Author: Matthew Turk <matthewturk at gmail.com>
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/maestro/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/maestro/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -9,7 +9,7 @@
 Affiliation: MSU
 Author: Chris Malone <chris.m.malone at gmail.com>
 Affiliation: SUNY Stony Brook
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/maestro/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/maestro/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -9,7 +9,7 @@
 Affiliation: MSU
 Author: Chris Malone <chris.m.malone at gmail.com>
 Affiliation: SUNY Stony Brook
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/maestro/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/maestro/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Chris Malone <chris.m.malone at gmail.com>
 Affiliation: SUNY Stony Brook
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J. S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/maestro/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/maestro/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -6,7 +6,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Chris Malone <chris.m.malone at gmail.com>
 Affiliation: SUNY Stony Brook
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J.S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/maestro/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/maestro/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: UC Berkeley
 Author: Chris Malone <chris.m.malone at gmail.com>
 Affiliation: SUNY Stony Brook
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J. S. Oishi, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/maestro/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/maestro/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Chris Malone <chris.m.malone at gmail.com>
 Affiliation: SUNY Stony Brook
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/nyx/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/nyx/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Casey W. Stark <caseywstark at gmail.com>
 Affiliation: UC Berkeley
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Casey W. Stark, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/nyx/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/nyx/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: UC Berkeley
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Casey W. Stark, J. S. Oishi, Matthew Turk.  All Rights
   Reserved.


--- a/yt/frontends/nyx/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/nyx/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: UC Berkeley
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Casey W. Stark, J. S. Oishi, Matthew Turk.  All Rights
   Reserved.


--- a/yt/frontends/nyx/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/nyx/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: UC Berkeley
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Casey W. Stark, J. S. Oishi, Matthew Turk.  All Rights
   Reserved.


--- a/yt/frontends/nyx/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/nyx/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -6,7 +6,7 @@
 Author: Matthew Turk <matthewturk at gmail.com>
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Casey W. Stark, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/nyx/utils.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/nyx/utils.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Casey W. Stark <caseywstark at gmail.com>
 Affiliation: UC Berkeley
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Casey W. Stark, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/orion/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/orion/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/orion/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/orion/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/orion/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/orion/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J. S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/orion/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/orion/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J.S. Oishi.  All Rights Reserved.
 


--- a/yt/frontends/orion/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/orion/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: UC Berkeley
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 J. S. Oishi, Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/orion/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/orion/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Author: Matthew Turk <matthewturk at gmail.com>
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/ramses/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/ramses/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/ramses/_ramses_reader.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/ramses/_ramses_reader.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: UCSD
 Author: Oliver Hahn <ohahn at stanford.edu>
 Affiliation: KIPAC / Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/ramses/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/ramses/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/ramses/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/ramses/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/ramses/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/ramses/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/ramses/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/ramses/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/stream/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/stream/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/stream/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/stream/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/stream/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/stream/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.


--- a/yt/frontends/stream/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/stream/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/stream/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/stream/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/stream/misc.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/stream/misc.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/tiger/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/tiger/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/tiger/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/tiger/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/tiger/data_structures.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/tiger/data_structures.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/tiger/fields.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/tiger/fields.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/frontends/tiger/io.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/frontends/tiger/io.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/funcs.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/funcs.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 
@@ -387,14 +387,14 @@
     sys.__excepthook__(exc_type, exc, tb)
     import xmlrpclib, cStringIO
     p = xmlrpclib.ServerProxy(
-            "http://paste.enzotools.org/xmlrpc/",
+            "http://paste.yt-project.org/xmlrpc/",
             allow_none=True)
     s = cStringIO.StringIO()
     traceback.print_exception(exc_type, exc, tb, file=s)
     s = s.getvalue()
     ret = p.pastes.newPaste('pytb', s, None, '', '', True)
     print
-    print "Traceback pasted to http://paste.enzotools.org/show/%s" % (ret)
+    print "Traceback pasted to http://paste.yt-project.org/show/%s" % (ret)
     print
 
 def paste_traceback_detailed(exc_type, exc, tb):
@@ -409,11 +409,11 @@
     s = s.getvalue()
     print s
     p = xmlrpclib.ServerProxy(
-            "http://paste.enzotools.org/xmlrpc/",
+            "http://paste.yt-project.org/xmlrpc/",
             allow_none=True)
     ret = p.pastes.newPaste('text', s, None, '', '', True)
     print
-    print "Traceback pasted to http://paste.enzotools.org/show/%s" % (ret)
+    print "Traceback pasted to http://paste.yt-project.org/show/%s" % (ret)
     print
 
 def traceback_writer_hook(file_suffix = ""):


--- a/yt/gui/opengl_widgets/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/opengl_widgets/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/basic_repl.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/basic_repl.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/bottle_mods.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/bottle_mods.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/extdirect_repl.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/extdirect_repl.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 
@@ -384,23 +384,23 @@
     def paste_session(self):
         import xmlrpclib, cStringIO
         p = xmlrpclib.ServerProxy(
-            "http://paste.enzotools.org/xmlrpc/",
+            "http://paste.yt-project.org/xmlrpc/",
             allow_none=True)
         cs = cStringIO.StringIO()
         cs.write("\n######\n".join(self.executed_cell_texts))
         cs = cs.getvalue()
         ret = p.pastes.newPaste('python', cs, None, '', '', True)
-        site = "http://paste.enzotools.org/show/%s" % ret
+        site = "http://paste.yt-project.org/show/%s" % ret
         return {'status': 'SUCCESS', 'site': site}
 
     @lockit
     def paste_text(self, to_paste):
         import xmlrpclib, cStringIO
         p = xmlrpclib.ServerProxy(
-            "http://paste.enzotools.org/xmlrpc/",
+            "http://paste.yt-project.org/xmlrpc/",
             allow_none=True)
         ret = p.pastes.newPaste('python', to_paste, None, '', '', True)
-        site = "http://paste.enzotools.org/show/%s" % ret
+        site = "http://paste.yt-project.org/show/%s" % ret
         return {'status': 'SUCCESS', 'site': site}
 
     _api_key = 'f62d550859558f28c4c214136bc797c7'


--- a/yt/gui/reason/html/help.html	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/help.html	Sun Aug 21 07:26:11 2011 -0400
@@ -87,12 +87,12 @@
 <h1>yt:</h1><p>because your data isn't going to analyze itself!</p><ul class="quick_list">
-<li><a href="http://yt.enzotools.org/doc/">docs</a></li>
-<li><a href="http://yt.enzotools.org/wiki/Gallery">gallery</a> ( <a href="video_gallery.html">video</a> )</li>
-<li><a href="http://yt.enzotools.org/wiki">wiki</a></li>
-<li><a href="http://yt.enzotools.org/doc/orientation.html">quick start</a></li>
-<li><a href="http://yt.enzotools.org/newticket">report a bug</a></li>
-<li><a href="http://yt.enzotools.org/browser">source</a></li>
+<li><a href="http://yt-project.org/doc/">docs</a></li>
+<li><a href="http://yt-project.org/wiki/Gallery">gallery</a> ( <a href="video_gallery.html">video</a> )</li>
+<li><a href="http://yt-project.org/wiki">wiki</a></li>
+<li><a href="http://yt-project.org/doc/orientation.html">quick start</a></li>
+<li><a href="http://yt-project.org/newticket">report a bug</a></li>
+<li><a href="http://yt-project.org/browser">source</a></li><li><a href="principles.html">principles</a></li><li><a href="http://blog.enzotools.org/">development blog</a></li></ul>
@@ -130,7 +130,7 @@
 download a copy of your session on your local machine.  By clicking "Save" you
 can save a copy on the server on which Reason is running.  By clicking
 "Pastebin" you can send a copy of it to the <a
-href="http://paste.enzotools.org/">yt pastebin</a>.</p>
+href="http://paste.yt-project.org/">yt pastebin</a>.</p><p>If you use the command 'load_script' and supply it a file the server can
 find locally, it will read that file in and populate the contents of your next


--- a/yt/gui/reason/html/js/functions.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/functions.js	Sun Aug 21 07:26:11 2011 -0400
@@ -9,7 +9,7 @@
 Affiliation: MSU
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/html/js/menu_items.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/menu_items.js	Sun Aug 21 07:26:11 2011 -0400
@@ -9,7 +9,7 @@
 Affiliation: MSU
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 
@@ -91,7 +91,7 @@
             }},
            {xtype:'menuitem', text: 'yt Chat',
                 handler: function (b,e) { 
-                        window.open("http://yt.enzotools.org/irc.html", "_new");
+                        window.open("http://yt-project.org/irc.html", "_new");
             }},
            {xtype: 'menuseparator'},
            {xtype:'menuitem', text: 'Quit',


--- a/yt/gui/reason/html/js/reason.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/reason.js	Sun Aug 21 07:26:11 2011 -0400
@@ -9,7 +9,7 @@
 Affiliation: MSU
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/html/js/widget_griddata.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/widget_griddata.js	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/html/js/widget_gridviewer.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/widget_gridviewer.js	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: University of Colorado at Boulder
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/html/js/widget_phaseplot.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/widget_phaseplot.js	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/html/js/widget_plotwindow.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/widget_plotwindow.js	Sun Aug 21 07:26:11 2011 -0400
@@ -9,7 +9,7 @@
 Affiliation: MSU
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/html/js/widget_progressbar.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/widget_progressbar.js	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/html/js/widget_streamlineviewer.js	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/html/js/widget_streamlineviewer.js	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: University of Colorado at Boulder
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/http_repl.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/http_repl.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/reason/pannable_map.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/reason/pannable_map.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/traited_explorer/plot_editors.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/traited_explorer/plot_editors.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/traited_explorer/traited_explorer.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/traited_explorer/traited_explorer.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/gui/traited_explorer/tvtk_interface.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/gui/traited_explorer/tvtk_interface.py	Sun Aug 21 07:26:11 2011 -0400
@@ -1,11 +1,11 @@
 """
 This is the preliminary interface to VTK.  Note that as of VTK 5.2, it still
 requires a patchset prepared here:
-http://yt.enzotools.org/files/vtk_composite_data.zip
+http://yt-project.org/files/vtk_composite_data.zip
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/mods.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/mods.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/CICDeposit.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/CICDeposit.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: CASA/University of Colorado
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/ContourFinding.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/ContourFinding.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/DepthFirstOctree.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/DepthFirstOctree.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/Interpolators.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/Interpolators.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/Octree.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/Octree.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/PointsInVolume.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/PointsInVolume.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: John Wise <jwise77 at gmail.com>
 Affiliation: Princeton
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 John.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/QuadTree.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/QuadTree.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/RayIntegrators.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/RayIntegrators.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/VolumeIntegrator.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/VolumeIntegrator.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/fortran_reader.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/fortran_reader.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/freetype_writer.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/freetype_writer.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/healpix_interface.pxd	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/healpix_interface.pxd	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/kdtree_utils.pxd	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/kdtree_utils.pxd	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/misc_utilities.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/misc_utilities.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/_amr_utils/png_writer.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/_amr_utils/png_writer.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/amr_kdtree/amr_kdtree.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/amr_kdtree/amr_kdtree.py	Sun Aug 21 07:26:11 2011 -0400
@@ -6,7 +6,7 @@
 Wil St. Charles <fallen751 at gmail.com>
 Affiliation: University of Colorado at Boulder
 
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Samuel Skillman.  All Rights Reserved.
 


--- a/yt/utilities/amr_kdtree/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/amr_kdtree/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -6,7 +6,7 @@
 Wil St. Charles <fallen751 at gmail.com>
 Affiliation: University of Colorado at Boulder
 
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Samuel Skillman.  All Rights Reserved.
 


--- a/yt/utilities/amr_utils.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/amr_utils.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/answer_testing/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/answer_testing/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/answer_testing/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/answer_testing/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/answer_testing/default_tests.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/answer_testing/default_tests.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/answer_testing/hydro_tests.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/answer_testing/hydro_tests.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/answer_testing/output_tests.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/answer_testing/output_tests.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/answer_testing/runner.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/answer_testing/runner.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/command_line.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/command_line.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 
@@ -678,7 +678,7 @@
         """
         Print an online pastebin to STDOUT for local use. Paste ID is 
         the number at the end of the url.  So to locally access pastebin:
-        http://paste.enzotools.org/show/1688/
+        http://paste.yt-project.org/show/1688/
 
         Usage: yt pastebin_grab <Paste ID> 
         Ex: yt pastebin_grab 1688 > script.py
@@ -714,7 +714,7 @@
         print "==============================================================="
         print "At any time in advance of the upload of the bug, you should feel free"
         print "to ctrl-C out and submit the bug report manually by going here:"
-        print "   http://hg.enzotools.org/yt/issues/new"
+        print "   http://hg.yt-project.org/yt/issues/new"
         print 
         print "Also, in order to submit a bug through this interface, you"
         print "need a Bitbucket account. If you don't have one, exit this "
@@ -722,12 +722,12 @@
         print
         print "Have you checked the existing bug reports to make"
         print "sure your bug has not already been recorded by someone else?"
-        print "   http://hg.enzotools.org/yt/issues?status=new&status=open"
+        print "   http://hg.yt-project.org/yt/issues?status=new&status=open"
         print
         print "Finally, are you sure that your bug is, in fact, a bug? It might"
         print "simply be a misunderstanding that could be cleared up by"
         print "visiting the yt irc channel or getting advice on the email list:"
-        print "   http://yt.enzotools.org/irc.html"
+        print "   http://yt-project.org/irc.html"
         print "   http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org"
         print
         summary = raw_input("Press <enter> if you remain firm in your conviction to continue.")
@@ -802,7 +802,7 @@
         retval = bb_apicall(endpoint, data, use_pass=True)
         import json
         retval = json.loads(retval)
-        url = "http://hg.enzotools.org/yt/issue/%s" % retval['local_id']
+        url = "http://hg.yt-project.org/yt/issue/%s" % retval['local_id']
         print 
         print "==============================================================="
         print
@@ -855,12 +855,12 @@
                 print "Okay, I understand.  You can check it out yourself."
                 print "This command will do it:"
                 print
-                print "$ hg clone http://hg.enzotools.org/yt-supplemental/ ",
+                print "$ hg clone http://hg.yt-project.org/yt-supplemental/ ",
                 print "%s" % (supp_path)
                 print
                 sys.exit(1)
             rv = commands.clone(uu,
-                    "http://hg.enzotools.org/yt-supplemental/", supp_path)
+                    "http://hg.yt-project.org/yt-supplemental/", supp_path)
             if rv:
                 print "Something has gone wrong.  Quitting."
                 sys.exit(1)


--- a/yt/utilities/cookbook.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/cookbook.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/cosmology.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/cosmology.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Britton Smith <brittons at origins.colorado.edu>
 Affiliation: CASA/University of CO, Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Britton Smith.  All Rights Reserved.
 


--- a/yt/utilities/definitions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/definitions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 
 @todo: Move into yt.Defs, along with enki.EnkiDefs
 License:


--- a/yt/utilities/exceptions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/exceptions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/io_handler.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/io_handler.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/libconfig_wrapper.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/libconfig_wrapper.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/linear_interpolators.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/linear_interpolators.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/lodgeit.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/lodgeit.py	Sun Aug 21 07:26:11 2011 -0400
@@ -33,7 +33,7 @@
 
 SCRIPT_NAME = os.path.basename(sys.argv[0])
 VERSION = '0.3'
-SERVICE_URL = 'http://paste.enzotools.org/'
+SERVICE_URL = 'http://paste.yt-project.org/'
 SETTING_KEYS = ['author', 'title', 'language', 'private', 'clipboard',
                 'open_browser']
 


--- a/yt/utilities/logger.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/logger.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/math_utils.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/math_utils.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 Affiliation: UCSD Physics/CASS
 Author: Stephen Skory <s at skory.us>
 Affiliation: UCSD Physics/CASS
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/parallel_tools/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/parallel_tools/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/parallel_tools/distributed_object_collection.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/parallel_tools/distributed_object_collection.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/parallel_tools/parallel_analysis_interface.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/parallel_tools/parallel_analysis_interface.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/parallel_tools/task_queue.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/parallel_tools/task_queue.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/parameter_file_storage.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/parameter_file_storage.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/pasteboard.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/pasteboard.py	Sun Aug 21 07:26:11 2011 -0400
@@ -1,7 +1,7 @@
 """
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/performance_counters.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/performance_counters.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/rpdb.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/rpdb.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/utilities/voropp.pyx	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/utilities/voropp.pyx	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -8,7 +8,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/easy_plots.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/easy_plots.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: UCSD
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/eps_writer.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/eps_writer.py	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 Author: John Wise <jwise at astro.princeton.edu>
 Date: April 2010
 Affiliation: Princeton
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 
 Requirements: PyX
 


--- a/yt/visualization/fixed_resolution.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/fixed_resolution.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/image_panner/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/image_panner/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -1,7 +1,7 @@
 """
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/image_panner/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/image_panner/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/image_panner/pan_and_scan_widget.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/image_panner/pan_and_scan_widget.py	Sun Aug 21 07:26:11 2011 -0400
@@ -1,7 +1,7 @@
 """
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/image_panner/vm_panner.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/image_panner/vm_panner.py	Sun Aug 21 07:26:11 2011 -0400
@@ -1,7 +1,7 @@
 """
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/plot_collection.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/plot_collection.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/plot_modifications.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/plot_modifications.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: UC Berkeley
 Author: Stephen Skory <s at skory.us>
 Affiliation: UC San Diego
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2008-2011 Matthew Turk, JS Oishi, Stephen Skory.  All Rights Reserved.
 


--- a/yt/visualization/plot_types.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/plot_types.py	Sun Aug 21 07:26:11 2011 -0400
@@ -5,7 +5,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2007-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/plot_window.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/plot_window.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: J. S. Oishi <jsoishi at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 J. S. Oishi.  All Rights Reserved.
 


--- a/yt/visualization/profile_plotter.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/profile_plotter.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: Columbia University
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/streamlines.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/streamlines.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Samuel Skillman <samskillman at gmail.com>
 Affiliation: University of Colorado
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Samuel Skillman.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/CUDARayCast.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/CUDARayCast.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/UBVRI.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/UBVRI.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: JS Oishi
 Affiliation: UC Berkeley
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 J.S. Oishi.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/__init__.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/__init__.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/_cuda_caster.cu	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/_cuda_caster.cu	Sun Aug 21 07:26:11 2011 -0400
@@ -4,7 +4,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/api.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/api.py	Sun Aug 21 07:26:11 2011 -0400
@@ -7,7 +7,7 @@
 Affiliation: KIPAC/SLAC/Stanford
 Author: Britton Smith <brittonsmith at gmail.com>
 Affiliation: MSU
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/camera.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/camera.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/grid_partitioner.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/grid_partitioner.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/image_handling.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/image_handling.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Samuel Skillman <samskillman at gmail.com>
 Affiliation: University of Colorado at Boulder
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2010-2011 Samuel Skillman.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/software_sampler.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/software_sampler.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/transfer_function_widget.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/transfer_function_widget.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.
 


--- a/yt/visualization/volume_rendering/transfer_functions.py	Sun Aug 21 07:22:20 2011 -0400
+++ b/yt/visualization/volume_rendering/transfer_functions.py	Sun Aug 21 07:26:11 2011 -0400
@@ -3,7 +3,7 @@
 
 Author: Matthew Turk <matthewturk at gmail.com>
 Affiliation: KIPAC/SLAC/Stanford
-Homepage: http://yt.enzotools.org/
+Homepage: http://yt-project.org/
 License:
   Copyright (C) 2009 Matthew Turk.  All Rights Reserved.

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list