Skip to content

Commit

Permalink
Replace every reference to googlecode.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed May 2, 2015
1 parent 0c14a0f commit 1dc8986
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion doc/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% endblock %}

{% block rootrellink %}
<li><a href="http://code.google.com/p/deap/"><img src="{{ pathto('_static/deap_icon-39x55.png', 1) }}" style="height: 30px; vertical-align: middle; padding-right: 1em;" />Project Homepage</a>{{ reldelim1 }}</li>
<li><a href="http://www.github.com/deap/deap"><img src="{{ pathto('_static/deap_icon-39x55.png', 1) }}" style="height: 30px; vertical-align: middle; padding-right: 1em;" />Project Homepage</a>{{ reldelim1 }}</li>
<li><a href="{{ pathto('index') }}">{{ shorttitle }}</a>{{ reldelim1 }} </li>
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion doc/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Contributing
Reporting a bug
---------------

You can report a bug on the issue list on google code.
You can report a bug on deap Github issues page.

`<https://github.com/deap/deap/issues>`_

Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ and many features to build your own evolutions.
<https://groups.google.com/forum/?fromgroups#!forum/deap-users>`_,
or post a question.
* Report bugs with DEAP in our `issue tracker
<https://code.google.com/p/deap/issues/list>`_.
<https://www.github.com/deap/deap/issues>`_.

* **First steps:**

Expand Down
4 changes: 2 additions & 2 deletions doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The computation distribution requires SCOOP_.
CMA-ES requires Numpy_, and we recommend matplotlib_ for visualization of
results as it is fully compatible with DEAP's API.

.. _SCOOP: http://code.google.com/p/scoop
.. _SCOOP: http://www.pyscoop.org/
.. _Numpy: http://www.numpy.org/
.. _matplotlib: http://www.matplotlib.org/

Expand All @@ -38,7 +38,7 @@ If you wish to build from sources, download_ or clone_ the repository and type::
python setup.py install

.. _download: https://pypi.python.org/pypi/deap/
.. _clone: https://code.google.com/p/deap/source/checkout
.. _clone: https://github.com/DEAP/deap.git

.. _easy_install: http://pythonhosted.org/distribute/easy_install.html
.. _pip: http://www.pip-installer.org/en/latest/
2 changes: 1 addition & 1 deletion doc/porting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ General
=======

#. The algorithms from the :mod:`~deap.gp.algorithms` module now return a tuple of 2-elements : the population and a :class:`~deap.tools.Logbook`.
#. Replace every call to DTM by calls to `SCOOP <http://scoop.googlecode.com>`_.
#. Replace every call to DTM by calls to `SCOOP <http://www.pyscoop.org>`_.
#. Statistics and logging of data are accomplished by two distinct objects: :class:`~deap.tools.Statistics` and :class:`~deap.tools.Logbook`. Read the tutorial on :doc:`logging statistics <tutorials/basic/part3>`.
#. Replace :class:`~deap.tools.EvolutionLogger` by :class:`~deap.tools.Logbook`.
#. Replace usage of :func:`tools.mean`, :func:`tools.var`, :func:`tools.std`, and :func:`tools.median` by their Numpy equivalent.
Expand Down
4 changes: 2 additions & 2 deletions doc/tutorials/basic/part4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ toolbox.
.. multiprocessing module into the built-in :mod:`~deap.algorithms`, the only
.. thing to do is to replace the map operation by a parallel one. Then the
.. difference between the `Multiprocessing One Max Example
.. <http://deap.googlecode.com/hg/examples/mpga_onemax.py>`_ and the `Regular One
.. Max Example <http://deap.googlecode.com/hg/examples/ga_onemax.py>`_ is the
.. <https://www.github.com/deap/deap/examples/mpga_onemax.py>`_ and the `Regular One
.. Max Example <https://www.github.com/deap/deap/examples/ga_onemax.py>`_ is the
.. addition of these two lines
.. ::
..
Expand Down

0 comments on commit 1dc8986

Please sign in to comment.