Browse Source

Update raven repository url

David Cramer 12 years ago
parent
commit
fec2c3ee47

+ 1 - 1
README.rst

@@ -20,7 +20,7 @@ Sentry is a Server
 ------------------
 
 The Sentry package, at its core, is just a simple server and web UI. It will
-handle authenticating clients (such as `Raven <https://github.com/dcramer/raven>`_)
+handle authenticating clients (such as `Raven <https://github.com/getsentry/raven-python>`_)
 and all of the logic behind storage and aggregation.
 
 That said, Sentry is not limited to Python. The primary implementation is in

+ 1 - 1
docs/client/index.rst

@@ -4,7 +4,7 @@ Available Clients
 The following clients are officially recognized as production-ready, and support the current Sentry
 protocol:
 
-* Python (`raven-python <http://github.com/dcramer/raven>`_)
+* Python (`raven-python <http://github.com/getsentry/raven-python>`_)
 * PHP (`raven-php <http://github.com/getsentry/raven-php>`_)
 * Java (`raven-java <https://github.com/kencochrane/raven-java>`_)
 * Ruby (`raven-ruby <https://github.com/coderanger/raven-ruby>`_)

+ 1 - 1
docs/config/index.rst

@@ -1,7 +1,7 @@
 Configuration
 =============
 
-This document describes additional configuration options available to the Sentry server. If you are looking for documentation for the client, it is maintained in the `Raven <http://github.com/dcramer/raven>`_ project.
+This document describes additional configuration options available to the Sentry server. If you are looking for documentation for the client, it is maintained in the `Raven <http://github.com/getsentry/raven-python>`_ project.
 
 .. note:: While the options below are labeled without the ``SENTRY_`` prefix, when you are configuring them via your ``settings.py`` you **must* specify the prefix.
 

+ 1 - 1
sentry/templates/sentry/partial/client_config/django.html

@@ -1,6 +1,6 @@
 {% load i18n %}
 
-<p>{% blocktrans with 'https://github.com/dcramer/raven' as link %}Start by installing <a href="{{ link }}">raven-python</a>:{% endblocktrans %}</p>
+<p>{% blocktrans with 'https://github.com/getsentry/raven-python' as link %}Start by installing <a href="{{ link }}">raven-python</a>:{% endblocktrans %}</p>
 
 <pre>pip install raven</pre>
 

+ 1 - 1
sentry/templates/sentry/partial/client_config/flask.html

@@ -1,6 +1,6 @@
 {% load i18n %}
 
-<p>{% blocktrans with 'https://github.com/dcramer/raven' as link %}Start by installing <a href="{{ link }}">raven-python</a> and Blinker:{% endblocktrans %}</p>
+<p>{% blocktrans with 'https://github.com/getsentry/raven-python' as link %}Start by installing <a href="{{ link }}">raven-python</a> and Blinker:{% endblocktrans %}</p>
 
 <pre>pip install raven blinker</pre>
 

+ 1 - 1
sentry/templates/sentry/partial/client_config/python.html

@@ -1,6 +1,6 @@
 {% load i18n %}
 
-<p>{% blocktrans with 'https://github.com/dcramer/raven' as link %}Start by installing <a href="{{ link }}">raven-python</a>:{% endblocktrans %}</p>
+<p>{% blocktrans with 'https://github.com/getsentry/raven-python' as link %}Start by installing <a href="{{ link }}">raven-python</a>:{% endblocktrans %}</p>
 
 <pre>pip install raven</pre>
 

+ 1 - 1
setup.py

@@ -11,7 +11,7 @@ Sentry is a Server
 ------------------
 
 The Sentry package, at its core, is just a simple server and web UI. It will
-handle authentication clients (such as `Raven <https://github.com/dcramer/raven>`_)
+handle authentication clients (such as `Raven <https://github.com/getsentry/raven-python>`_)
 and all of the logic behind storage and aggregation.
 
 That said, Sentry is not limited to Python. The primary implementation is in