Browse Source

Update repo links

David Cramer 13 years ago
parent
commit
b2d6bb1e6b
5 changed files with 8 additions and 8 deletions
  1. 1 1
      AUTHORS
  2. 2 2
      debian/control
  3. 3 3
      docs/contributing/index.rst
  4. 1 1
      sentry/templates/sentry/layout.html
  5. 1 1
      setup.py

+ 1 - 1
AUTHORS

@@ -1 +1 @@
-http://github.com/dcramer/django-sentry/contributors
+https://github.com/dcramer/sentry/contributors

+ 2 - 2
debian/control

@@ -2,7 +2,7 @@ Source: python-django-sentry
 Section: python
 Priority: optional
 Maintainer: David Cramer <dcramer@gmail.com>
-Homepage: https://github.com/dcramer/django-sentry
+Homepage: https://github.com/dcramer/sentry
 Bugs: https://github.com/dcramer/sentry/issues
 Build-Depends: debhelper, python-support
 
@@ -10,7 +10,7 @@ Package: python-django-sentry
 Architecture: all
 Depends: ${python:Depends}, python-support, python-django
 Provides: ${python:Provides}
-Description: 
+Description:
  Sentry provides you with a generic interface to view and interact with your
  error logs. By default, it will catch any exception thrown by Django and store
  it in a database. With this it allows you to interact and view near real-time

+ 3 - 3
docs/contributing/index.rst

@@ -51,12 +51,12 @@ right at home.
     python runtests.py --failfast
 
 ::
-    
+
     # Run only SentryRemoteTest
     python runtests.py sentry.SentryRemoteTest
 
 ::
-    
+
     # Run only the testTimestamp test on SentryRemoteTest
     python runtests.py sentry.SentryRemoteTest.testTimestamp
 
@@ -65,4 +65,4 @@ Contributing Back Code
 
 Ideally all patches should be sent as a pull request on GitHub, and include tests. If you're fixing a bug or making a large change the patch **must** include test coverage.
 
-You can see a list of open pull requests (pending changes) by visiting https://github.com/dcramer/django-sentry/pulls
+You can see a list of open pull requests (pending changes) by visiting https://github.com/dcramer/sentry/pulls

+ 1 - 1
sentry/templates/sentry/layout.html

@@ -109,7 +109,7 @@
         </section>
         <footer>
             <div class="container">
-                Sentry {% sentry_version %} | {% trans "Powered by sexy Django magic" %} | Conjured up by the <a href="http://code.disqus.com">DISQUS</a> team and other noble <a href="https://github.com/dcramer/django-sentry/contributors">sorcerers</a>. | <a href="https://github.com/dcramer/django-sentry">Contribute to Sentry</a>
+                Sentry {% sentry_version %} | {% trans "Powered by sexy Django magic" %} | Conjured up by the <a href="http://code.disqus.com">DISQUS</a> team and other noble <a href="https://github.com/dcramer/sentry/contributors">sorcerers</a>. | <a href="https://github.com/dcramer/sentry">Contribute to Sentry</a>
             </div>
         </footer>
         {% endblock %}

+ 1 - 1
setup.py

@@ -57,7 +57,7 @@ setup(
     version='2.0.0',
     author='David Cramer',
     author_email='dcramer@gmail.com',
-    url='http://github.com/dcramer/django-sentry',
+    url='http://github.com/dcramer/sentry',
     description='A realtime logging an aggregation server.',
     long_description=__doc__,
     packages=find_packages(exclude=("example_project", "tests")),