Commit 6fe12a79 authored by Denis Bilenko's avatar Denis Bilenko

correct links to point to the right repo

parent d060fd4d
......@@ -34,7 +34,7 @@ installing from github
To install the latest development version:
pip install cython git+git://github.com/surfly/gevent.git#egg=gevent
pip install cython git+git://github.com/gevent/gevent.git#egg=gevent
running tests
......@@ -53,11 +53,11 @@ running tests
.. _c-ares: http://c-ares.haxx.se/
.. _inspired by eventlet: http://blog.gevent.org/2010/02/27/why-gevent/
.. _use gevent: http://groups.google.com/group/gevent/browse_thread/thread/4de9703e5dca8271
.. _open source projects based on gevent: https://github.com/surfly/gevent/wiki/Projects
.. _open source projects based on gevent: https://github.com/gevent/gevent/wiki/Projects
.. _Denis Bilenko: http://denisbilenko.com
.. _Python Package Index: http://pypi.python.org/pypi/gevent
.. _the repository: https://github.com/surfly/gevent
.. _bug tracker: https://github.com/surfly/gevent/wiki/Projects
.. _the repository: https://github.com/gevent/gevent
.. _bug tracker: https://github.com/gevent/gevent/wiki/Projects
.. _mailing list: http://groups.google.com/group/gevent
.. _blog: http://blog.gevent.org
.. _twitter (@gevent): http://twitter.com/gevent
......
The issue tracker is hosted at https://github.com/surfly/gevent/issues
The issue tracker is hosted at https://github.com/gevent/gevent/issues
......@@ -69,7 +69,7 @@ in a multi-greenlet environment.
See `examples/concurrent_download.py`__
__ https://github.com/surfly/gevent/blob/master/examples/concurrent_download.py#L1
__ https://github.com/gevent/gevent/blob/master/examples/concurrent_download.py#L1
Event loop
----------
......@@ -209,7 +209,7 @@ To limit concurrency, use the :class:`Pool` class (see `example: dns_mass_resolv
Gevent comes with TCP/SSL/HTTP/WSGI servers. See :doc:`servers`.
.. _`example: dns_mass_resolve.py`: https://github.com/surfly/gevent/blob/master/examples/dns_mass_resolve.py#L17
.. _`example: dns_mass_resolve.py`: https://github.com/gevent/gevent/blob/master/examples/dns_mass_resolve.py#L17
External resources
......
......@@ -73,7 +73,7 @@
{%- block sidebarrel %}
<h4 class="label label-orange">Related pages</h4>
<ul>
<li><a href="https://github.com/surfly/gevent/tree/master/examples"
<li><a href="https://github.com/gevent/gevent/tree/master/examples"
title="Browse gevent/examples in the development repository">Code examples</a></li>
</ul>
{%- endblock %}
......@@ -185,11 +185,11 @@
<div class="left navigation" id="main-nav">
<ul class="tabbed">
<li><a href="http://blog.gevent.org">Blog</a></li>
<li><a href="https://github.com/surfly/gevent">Code</a></li>
<li><a href="https://github.com/gevent/gevent">Code</a></li>
<li{%- if pagename!='community' and pagename!='sfc' %} class="current-tab"{%- endif %}><a href="/contents.html">Docs</a></li>
<li><a href="http://pypi.python.org/pypi/gevent#downloads">Download</a></li>
<li{%- if pagename=='community' %} class="current-tab"{%- endif %}><a href="/community.html">Mailing list</a></li>
<li><a href="https://github.com/surfly/gevent/issues">Issues</a></li>
<li><a href="https://github.com/gevent/gevent/issues">Issues</a></li>
<li><a href="http://webchat.freenode.net/?channels=gevent" rel="nofollow">IRC</a></li>
<li{%- if pagename=='sfc' %} class="current-tab"{%- endif %}><a href="/sfc.html">Donate</a></li>
</ul>
......@@ -247,7 +247,7 @@
<div class="right" id="footer-right">
<p class="large"><a href="http://blog.gevent.org">Blog</a> <span class="text-separator">|</span> <a href="https://github.com/surfly/gevent">Code</a> <span class="text-separator">|</span> <a href="/contents.html">Docs</a> <span class="text-separator">|</span> <a href="http://pypi.python.org/pypi/gevent">Download</a> <span class="text-separator">|</span> <a href="/community.html">Mailing list</a> <span class="text-separator">|</span> <a href="https://github.com/surfly/gevent/issues">Issue tracker</a> <span class="text-separator">|</span> <a href="http://webchat.freenode.net/?channels=gevent" rel="nofollow">IRC</a> <span class="text-separator">|</span> <a href="#top" class="quiet">Page Top &uarr;</a></p>
<p class="large"><a href="http://blog.gevent.org">Blog</a> <span class="text-separator">|</span> <a href="https://github.com/gevent/gevent">Code</a> <span class="text-separator">|</span> <a href="/contents.html">Docs</a> <span class="text-separator">|</span> <a href="http://pypi.python.org/pypi/gevent">Download</a> <span class="text-separator">|</span> <a href="/community.html">Mailing list</a> <span class="text-separator">|</span> <a href="https://github.com/gevent/gevent/issues">Issue tracker</a> <span class="text-separator">|</span> <a href="http://webchat.freenode.net/?channels=gevent" rel="nofollow">IRC</a> <span class="text-separator">|</span> <a href="#top" class="quiet">Page Top &uarr;</a></p>
</div>
......
......@@ -41,13 +41,13 @@ More examples are available in the `code repository`_:
- `wsgiserver.py`_ - demonstrates :class:`wsgi.WSGIServer <gevent.wsgi.WSGIServer>`
- `wsgiserver_ssl.py`_ - demonstrates :class:`pywsgi.WSGIServer <gevent.pywsgi.WSGIServer>`
.. _`code repository`: https://github.com/surfly/gevent/tree/master/examples
.. _`code repository`: https://github.com/gevent/gevent/tree/master/examples
.. _`does not support streaming`: http://code.google.com/p/gevent/issues/detail?id=4
.. _`pipelining does not work`: http://code.google.com/p/gevent/issues/detail?id=32
.. _gunicorn: http://gunicorn.org
.. _`echoserver.py`: https://github.com/surfly/gevent/blob/master/examples/echoserver.py#L34
.. _`wsgiserver.py`: https://github.com/surfly/gevent/blob/master/examples/wsgiserver.py#L18
.. _`wsgiserver_ssl.py`: https://github.com/surfly/gevent/blob/master/examples/wsgiserver_ssl.py#L17
.. _`echoserver.py`: https://github.com/gevent/gevent/blob/master/examples/echoserver.py#L34
.. _`wsgiserver.py`: https://github.com/gevent/gevent/blob/master/examples/wsgiserver.py#L18
.. _`wsgiserver_ssl.py`: https://github.com/gevent/gevent/blob/master/examples/wsgiserver_ssl.py#L17
.. toctree::
......
......@@ -52,7 +52,7 @@ except ImportError:
# the following makes hidden imports visible to freezing tools like
# py2exe. see https://github.com/surfly/gevent/issues/181
# py2exe. see https://github.com/gevent/gevent/issues/181
def __dependencies_for_freezing():
from gevent import core, resolver_thread, resolver_ares, socket,\
threadpool, thread, threading, select, subprocess
......
......@@ -340,7 +340,7 @@ class TestPool(greentest.TestCase):
expected = ['1', '2', '10']
self.assertEqual(result, expected)
# https://github.com/surfly/gevent/issues/423
# https://github.com/gevent/gevent/issues/423
def test_imap_no_stop(self):
q = Queue()
q.put(123)
......@@ -355,7 +355,7 @@ class TestPool(greentest.TestCase):
result = list(self.pool.imap_unordered(lambda _: _, q))
self.assertEqual(result, [1234])
# same issue, but different test: https://github.com/surfly/gevent/issues/311
# same issue, but different test: https://github.com/gevent/gevent/issues/311
def test_imap_final_sleep(self):
result = list(self.pool.imap(sqr, final_sleep()))
self.assertEqual(result, [0, 1, 4])
......
......@@ -95,10 +95,10 @@ def compare_relaxed(a, b):
>>> compare_relaxed('2607:f8b0:6708:24af:1fd:700:60d4:4af', '2607:f8b0:2d00::f000:0')
True
>>> compare_relaxed('a.surfly.com', 'b.surfly.com')
>>> compare_relaxed('a.google.com', 'b.google.com')
True
>>> compare_relaxed('a.surfly.com', 'a.gevent.org')
>>> compare_relaxed('a.google.com', 'a.gevent.org')
False
"""
# IPv6 address from different requests might be different
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment