[Yt-svn] commit/yt-doc: 2 new changesets

Bitbucket commits-noreply at bitbucket.org
Fri Aug 26 04:15:17 PDT 2011


2 new changesets in yt-doc:

http://bitbucket.org/yt_analysis/yt-doc/changeset/bdfad2b2f947/
changeset:   bdfad2b2f947
user:        MatthewTurk
date:        2011-08-26 13:11:12
summary:     Minor reshuffling of welcome statement
affected #:  1 file (192 bytes)

--- a/source/index.rst	Fri Aug 26 06:32:21 2011 -0400
+++ b/source/index.rst	Fri Aug 26 07:11:12 2011 -0400
@@ -1,23 +1,27 @@
 yt Overview
 ===========
 
-yt is a general-purpose toolkit designed to analyze, manage and visualize
-adaptive mesh refinement data. It has full support for the `Enzo
-<http://enzo.googlecode.com/>`_, Orion, and `FLASH codes
+yt is a community-developed analysis and visualization toolkit for
+astrophysical simulation data.  yt provides full support for the `Enzo
+<http://enzo.googlecode.com/>`_, Orion, `Nyx
+<https://ccse.lbl.gov/Research/NYX/index.html`_, and `FLASH codes
 <http://flash.uchicago.edu/website/home/>`_, with preliminary support for
 `RAMSES
 <http://irfu.cea.fr/Phocea/Vie_des_labos/Ast/ast_sstechnique.php?id_ast=904>`_,
-ART, Chombo, CASTRO and MAESTRO codes. It runs both interactively and
+ART, and Maestro.
+It runs both interactively and
 non-interactively, and has been designed to support as many operations as
 possible in parallel. For more detailed information, see our `ApJS paper
 <http://adsabs.harvard.edu/abs/2011ApJS..192....9T>`_.
 
 To install ``yt``, see :ref:`orientation` or :ref:`installing-yt`.
 
-If you use ``yt`` in a paper, you are highly encouraged to read about our
-policy on :ref:`free repository space<free_repo_space>` for analysis code!
-We encourage you to explore the source code and
-even consider :ref:`contributing <contributing-code>` your enhancements and
+If you use ``yt`` in a paper, you are highly encouraged to submit the
+repository containing the scripts you used to analyze and visualize your data
+to the `yt Hub <http://yt-project.org/>`, and we ask that you consider citing
+our `method paper <http://adsabs.harvard.edu/abs/2011ApJS..192....9T>`_, as
+well.  We encourage you to explore the source code and even consider
+:ref:`contributing <contributing-code>` your enhancements and
 scripts.
 
 For more information, please visit `our homepage <http://yt.enzotools.org/>`_


http://bitbucket.org/yt_analysis/yt-doc/changeset/59aed48dd35b/
changeset:   59aed48dd35b
user:        MatthewTurk
date:        2011-08-26 13:15:07
summary:     Changing all the enzotools to yt-project references.  Will have to happen in
the cookbook, too.
affected #:  46 files (60 bytes)

--- a/helper_scripts/update_recipes.py	Fri Aug 26 07:11:12 2011 -0400
+++ b/helper_scripts/update_recipes.py	Fri Aug 26 07:15:07 2011 -0400
@@ -8,7 +8,7 @@
 
 .. note::
    All of these scripts are located in the mercurial repository at
-   http://hg.enzotools.org/cookbook/
+   http://hg.yt-project.org/cookbook/
 
 """
 footer = """ """
@@ -23,7 +23,7 @@
     recipes = cStringIO.StringIO()
 recipes.write(header)
 
-url = "here: http://hg.enzotools.org/cookbook/raw/tip/%s ."
+url = "here: http://hg.yt-project.org/cookbook/raw/tip/%s ."
 
 def cond_output(f, v):
     if not v:
@@ -31,7 +31,7 @@
     return True
 
 repo = hg.repository(uii, "../cookbook/")
-commands.pull(uii, repo, "http://hg.enzotools.org/cookbook/")
+commands.pull(uii, repo, "http://hg.yt-project.org/cookbook/")
 ctx = repo["tip"]
 for file in ctx:
     if not file.startswith("recipes/"): continue


--- a/source/advanced/developing.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/advanced/developing.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -152,12 +152,12 @@
 --------------------------
 
 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:
 
 .. code-block:: bash
 
-   $ 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:
 
@@ -181,7 +181,7 @@
 You can submit changes a couple different ways, but the easiest is to use the
 "fork" mechanism on BitBucket.  Just go to the "fork" page at:
 
-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,
@@ -189,7 +189,7 @@
 
 When you're ready to submit them to the main repository, simply go to:
 
-http://hg.enzotools.org/yt/pull
+http://hg.yt-project.org/yt/pull
 
 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
@@ -252,7 +252,7 @@
 
 The next commit and all subsequent commits will be contained within that named
 branch.  At this point, add your branch on the `ExistingBranches
-<http://yt.enzotools.org/wiki/ExistingBranches>`_ wiki page.
+<http://yt-project.org/wiki/ExistingBranches>`_ wiki page.
 
 To merge changes in from another branch, you would execute:
 
@@ -378,7 +378,7 @@
 as ensure that the other codes we support -- Orion, Tiger, etc -- are
 well-supported.
 
-`A page has been set up <http://yt.enzotools.org/wiki/AddingSupportForANewCode>`_
+`A page has been set up <http://yt-project.org/wiki/AddingSupportForANewCode>`_
 on the Trac site to describe the method of adding support for a new code to
 ``yt``.  Please feel free to use it as a reference, but if you would like some
 assistance, drop a line to one of the mailing lists (see :ref:`mailing-list`)
@@ -405,8 +405,8 @@
 ^^^^^^^^^
 
 If you have simple bug fixes, please feel free to attach them to a ticket on
-the `bug tracker <http://yt.enzotools.org/newticket/>`_ (you might have to
-`register <http://yt.enzotools.org/register>`_ first) or to email them to one
+the `bug tracker <http://yt-project.org/newticket/>`_ (you might have to
+`register <http://yt-project.org/register>`_ first) or to email them to one
 of the developers directly.  We're always happy to hear about the things we've
 done wrong, and how you've fixed them!
 


--- a/source/advanced/installing.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/advanced/installing.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -15,7 +15,7 @@
 
 .. code-block:: bash
 
-   $ wget http://hg.enzotools.org/yt/raw/stable/doc/install_script.sh
+   $ wget http://hg.yt-project.org/yt/raw/stable/doc/install_script.sh
    $ bash install_script.sh
 
 at a command prompt.  This script will download the **stable** version of the
@@ -75,7 +75,7 @@
 
 .. code-block:: bash
 
-   $ hg clone http://hg.enzotools.org/yt ./yt-hg
+   $ hg clone http://hg.yt-project.org/yt ./yt-hg
    $ cd yt-hg
    $ hg up -C stable
 
@@ -89,9 +89,9 @@
 .. code-block:: bash
 
    $ rm -rf yt-hg
-   $ hg clone -r 10 http://hg.enzotools.org/yt ./yt-hg
+   $ hg clone -r 10 http://hg.yt-project.org/yt ./yt-hg
    $ cd yt-hg
-   $ wget http://yt.enzotools.org/dependencies/yt.hg
+   $ wget http://yt-project.org/dependencies/yt.hg
    $ hg unbundle yt.hg
    $ hg pull
    $ hg up -C stable


--- a/source/analysis_modules/star_analysis.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/analysis_modules/star_analysis.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -112,7 +112,7 @@
 converted from the original ASCII files (available at the link above). The
 HDF5 files are one-quarter the size of the ASCII files, and greatly reduce
 the time required to read the data off disk. The HDF5 files are available from
-the main yt website `here <http://yt.enzotools.org/files/bc03/>`_.
+the main yt website `here <http://yt-project.org/files/bc03/>`_.
 Both the Salpeter and Chabrier models have been converted,
 and it is simplest to download all the files to the same location.
 Please read the original B&C sources for information on the differences between


--- a/source/askingforhelp.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/askingforhelp.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -86,6 +86,6 @@
 that reproduces the bug.
 
 To submit a bug report, register an account on the 
-`yt Trac site <http://yt.enzotools.org/wiki/>`_ and submit a 
-`new ticket <http://yt.enzotools.org/newticket>`_.  Alternatively, email the
+`yt Trac site <http://yt-project.org/wiki/>`_ and submit a 
+`new ticket <http://yt-project.org/newticket>`_.  Alternatively, email the
 ``yt-users`` mailing list and we will construct a new ticket in your stead.


--- a/source/cookbook/aligned_cutting_plane.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/aligned_cutting_plane.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 vector in a sphere, and then use that to take an oblique slice.  See
 :ref:`derived-quantities` and :ref:`methods-cutting-planes` for more information.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/aligned_cutting_plane.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/aligned_cutting_plane.py .
 
 .. code-block:: python
 


--- a/source/cookbook/arbitrary_vectors_on_slice.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/arbitrary_vectors_on_slice.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 through it, and add some extra vectors on top.  Here we've used the imaginary
 fields ``magnetic_field_x``, ``magnetic_field_y`` and ``magnetic_field_z``.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/arbitrary_vectors_on_slice.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/arbitrary_vectors_on_slice.py .
 
 .. code-block:: python
 


--- a/source/cookbook/average_value.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/average_value.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -8,7 +8,7 @@
 multiple CPUs if executed with mpirun and supplied the --parallel command line
 argument.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/average_value.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/average_value.py .
 
 .. code-block:: python
 


--- a/source/cookbook/contours_on_slice.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/contours_on_slice.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 This is a simple recipe to show how to open a dataset, plot a slice
 through it, and add contours of another quantity on top.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/contours_on_slice.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/contours_on_slice.py .
 
 .. code-block:: python
 


--- a/source/cookbook/extract_fixed_resolution_data.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/extract_fixed_resolution_data.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -8,7 +8,7 @@
 recipe shows how to insert a dataset into an external HDF5 file using h5py.
 For more information see :class:`covering_grid`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/extract_fixed_resolution_data.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/extract_fixed_resolution_data.py .
 
 .. code-block:: python
 


--- a/source/cookbook/find_clumps.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/find_clumps.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -9,7 +9,7 @@
 found in astro-ph/0806.1653.  For more information, see
 :ref:`methods-contours`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/find_clumps.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/find_clumps.py .
 
 .. code-block:: python
 


--- a/source/cookbook/global_phase_plots.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/global_phase_plots.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -8,7 +8,7 @@
 of multiple CPUs if executed with mpirun and supplied the --parallel command
 line argument.  For more information, see :ref:`methods-profiles`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/global_phase_plots.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/global_phase_plots.py .
 
 .. code-block:: python
 


--- a/source/cookbook/halo_finding.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/halo_finding.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 This script shows the simples way of getting halo information.  For more
 information, see :ref:`halo_finding`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/halo_finding.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/halo_finding.py .
 
 .. code-block:: python
 


--- a/source/cookbook/halo_mass_info.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/halo_mass_info.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -8,7 +8,7 @@
 supplied the --parallel command line argument.  For more information, see
 :ref:`halo_finding`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/halo_mass_info.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/halo_mass_info.py .
 
 .. code-block:: python
 


--- a/source/cookbook/halo_particle_plotting.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/halo_particle_plotting.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 This is a simple mechanism for overplotting the particles belonging only to
 halos.  For more information, see :ref:`halo_finding`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/halo_particle_plotting.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/halo_particle_plotting.py .
 
 .. code-block:: python
 


--- a/source/cookbook/halo_plotting.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/halo_plotting.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 This is a mechanism for plotting circles representing identified particle halos
 on an image.  For more information, see :ref:`halo_finding`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/halo_plotting.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/halo_plotting.py .
 
 .. code-block:: python
 


--- a/source/cookbook/light_cone_halo_mask.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/light_cone_halo_mask.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -10,7 +10,7 @@
 positions in the light cone projection of all the halos in the mask, their 
 redshifts, virial radii, and virial masses.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/light_cone_halo_mask.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/light_cone_halo_mask.py .
 
 .. code-block:: python
 


--- a/source/cookbook/make_light_cone.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/make_light_cone.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 The following recipe will make a light cone projection (see :ref:`light-cone-generator`) 
 of a single quantity over the redshift interval 0 to 0.4.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/make_light_cone.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/make_light_cone.py .
 
 .. code-block:: python
 


--- a/source/cookbook/make_light_ray.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/make_light_ray.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 z = 0 to z = 0.1.  In this example, we will also get the distance and mass of the 
 halo nearest to every element of the ray.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/make_light_ray.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/make_light_ray.py .
 
 .. code-block:: python
 


--- a/source/cookbook/multi_plot.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/multi_plot.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 through it, centered at its most dense point.  For more information, see
 :func:`~yt.visualization.plot_collection.get_multi_plot`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/multi_plot.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/multi_plot.py .
 
 .. code-block:: python
 


--- a/source/cookbook/multi_plot_3x2.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/multi_plot_3x2.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 through it, centered at its most dense point.  For more information, see
 :func:`~yt.visualization.plot_collection.get_multi_plot`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/multi_plot_3x2.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/multi_plot_3x2.py .
 
 .. code-block:: python
 


--- a/source/cookbook/multi_width_save.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/multi_width_save.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 different widths, ensuring that across the plots we have the same min/max for
 the colorbar.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/multi_width_save.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/multi_width_save.py .
 
 .. code-block:: python
 


--- a/source/cookbook/offaxis_projection.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/offaxis_projection.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -10,7 +10,7 @@
 Additionally, for the purposes of the recipe, we have simplified the image
 considerably.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/offaxis_projection.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/offaxis_projection.py .
 
 .. code-block:: python
 


--- a/source/cookbook/overplot_particles.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/overplot_particles.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 through it, and add particles on top.  For more information see
 :ref:`callbacks`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/overplot_particles.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/overplot_particles.py .
 
 .. code-block:: python
 


--- a/source/cookbook/recipes.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/recipes.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -10,7 +10,7 @@
 
 .. note::
    All of these scripts are located in the mercurial repository at
-   http://hg.enzotools.org/cookbook/
+   http://hg.yt-project.org/cookbook/
 
 .. contents::
    :depth: 1


--- a/source/cookbook/run_halo_profiler.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/run_halo_profiler.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 within a cosmological simulation.  See :ref:`halo_profiling` for full documentation 
 of the HaloProfiler.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/run_halo_profiler.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/run_halo_profiler.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simple_pdf.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simple_pdf.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 distribution represents the fraction of the total mass rather than
 absolute mass, you must include the "fractional" keyword.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simple_pdf.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simple_pdf.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simple_phase.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simple_phase.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 This is a simple recipe to show how to open a dataset and then plot a phase
 plot showing mass distribution in the rho-T plane.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simple_phase.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simple_phase.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simple_profile.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simple_profile.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 profile showing mass-weighted average Temperature as a function of Density
 inside a sphere.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simple_profile.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simple_profile.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simple_projection.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simple_projection.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 weighted-average projection through it, centered at its most dense point.  For
 more information see :ref:`methods-projections`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simple_projection.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simple_projection.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simple_radial_profile.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simple_radial_profile.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 profile showing mass-weighted average Density inside a sphere.  For more
 information, see :ref:`methods-profiles`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simple_radial_profile.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simple_radial_profile.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simple_slice.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simple_slice.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 through it, centered at its most dense point.  For more information, see
 :ref:`methods-slices`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simple_slice.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simple_slice.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simple_volume_rendering.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simple_volume_rendering.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -12,7 +12,7 @@
 Additionally, for the purposes of the recipe, we have simplified the image
 considerably.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simple_volume_rendering.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simple_volume_rendering.py .
 
 .. code-block:: python
 


--- a/source/cookbook/simplest_slice.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simplest_slice.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -4,7 +4,7 @@
 This is a script to show the absolute simplest way to make a slice of an
 object.  It's not fancy, but it's short!
 
-The latest version of this recipe can be downloaded `here <http://hg.enzotools.org/cookbook/raw-file/tip/recipes/simplest_slice.py>`_.
+The latest version of this recipe can be downloaded `here <http://hg.yt-project.org/cookbook/raw-file/tip/recipes/simplest_slice.py>`_.
 
 .. code-block:: python
 


--- a/source/cookbook/simulation_halo_profiler.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/simulation_halo_profiler.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 The following recipe will run the HaloProfiler (see :ref:`halo_profiling`) on
 all the datasets in one simulation between z = 10 and 0.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/simulation_halo_profiler.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/simulation_halo_profiler.py .
 
 .. code-block:: python
 


--- a/source/cookbook/sum_mass_in_sphere.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/sum_mass_in_sphere.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -9,7 +9,7 @@
 supplied the --parallel command line argument.  For more information, see
 :ref:`derived-quantities`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/sum_mass_in_sphere.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/sum_mass_in_sphere.py .
 
 .. code-block:: python
 


--- a/source/cookbook/thin_slice_projection.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/thin_slice_projection.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -7,7 +7,7 @@
 weighted-average projection through it, but only through a very thin slice of
 the region.  For more information see :ref:`methods-projections`.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/thin_slice_projection.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/thin_slice_projection.py .
 
 .. code-block:: python
 


--- a/source/cookbook/time_series_phase.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/time_series_phase.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -9,7 +9,7 @@
 If run with mpirun and the --parallel flag, this will take advantage of
 multiple processors.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/time_series_phase.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/time_series_phase.py .
 
 .. code-block:: python
 


--- a/source/cookbook/time_series_quantity.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/time_series_quantity.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -9,7 +9,7 @@
 If run with mpirun and the --parallel flag, this will take advantage of
 multiple processors.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/time_series_quantity.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/time_series_quantity.py .
 
 .. code-block:: python
 


--- a/source/cookbook/unique_light_cones.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/unique_light_cones.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 The following recipe will create 15 light cone projections that have 
 at most 10% volume in common with each other.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/unique_light_cones.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/unique_light_cones.py .
 
 .. code-block:: python
 


--- a/source/cookbook/velocity_vectors_on_slice.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/velocity_vectors_on_slice.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -6,7 +6,7 @@
 This is a simple recipe to show how to open a dataset, plot a slice
 through it, and add velocity vectors on top.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/velocity_vectors_on_slice.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/velocity_vectors_on_slice.py .
 
 .. code-block:: python
 


--- a/source/cookbook/zoomin_frames.inc	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/cookbook/zoomin_frames.inc	Fri Aug 26 07:15:07 2011 -0400
@@ -8,7 +8,7 @@
 recipe is provided to show how to be more flexible and add annotations and the
 like -- the base system, of a zoomin, is provided by the ``yt zoomin`` command.
 
-The latest version of this recipe can be downloaded here: http://hg.enzotools.org/cookbook/raw/tip/recipes/zoomin_frames.py .
+The latest version of this recipe can be downloaded here: http://hg.yt-project.org/cookbook/raw/tip/recipes/zoomin_frames.py .
 
 .. code-block:: python
 


--- a/source/index.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/index.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -24,7 +24,7 @@
 :ref:`contributing <contributing-code>` your enhancements and
 scripts.
 
-For more information, please visit `our homepage <http://yt.enzotools.org/>`_
+For more information, please visit `our homepage <http://yt-project.org/>`_
 and for help, please see :ref:`asking-for-help`.
 
 .. toctree::


--- a/source/orientation.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/orientation.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -59,7 +59,7 @@
 
 .. code-block:: bash
 
-  http://hg.enzotools.org/yt/raw/stable/doc/install_script.sh
+  http://hg.yt-project.org/yt/raw/stable/doc/install_script.sh
 
 By default, it will install an array of items, with an option to also download
 the current stable version of Enzo.  The script has all its options at the top


--- a/source/visualizing/image_panner.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/visualizing/image_panner.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -242,7 +242,7 @@
    var swf = new SWFObject("https://media.dreamhost.com/mp4/player.swf", "mpl", "201", "211", 8);
    swf.addParam("allowfullscreen", "true");
    swf.addParam("allowscriptaccess", "always");
-   swf.addVariable("file", "http://yt.enzotools.org/files/20100328_chaco_ui_conv.flv");
-   swf.addVariable("image", "http://yt.enzotools.org/files/20100328_chaco_ui_conv.jpeg");
+   swf.addVariable("file", "http://yt-project.org/files/20100328_chaco_ui_conv.flv");
+   swf.addVariable("image", "http://yt-project.org/files/20100328_chaco_ui_conv.jpeg");
    swf.write("v7570");
    </script>


--- a/source/welcome_to_yt.rst	Fri Aug 26 07:11:12 2011 -0400
+++ b/source/welcome_to_yt.rst	Fri Aug 26 07:15:07 2011 -0400
@@ -26,7 +26,7 @@
 yt is currently being developed by a team of developers, including me, Britton
 Smith, Jeff Oishi, Stephen Skory, Sam Skillman, Devin Silvia, John Wise, David
 Collins, Christopher Moody, Oliver Hahn, and John ZuHone.  All development is
-conducted in the open, accessible at http://yt.enzotools.org/ .
+conducted in the open, accessible at http://yt-project.org/ .
 
 What functionality does yt offer?
 ---------------------------------

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

--

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