From dc6f41c7e988e03a2ba163be3accdc87e9ddd802 Mon Sep 17 00:00:00 2001 From: Ben Konrath Date: Mon, 18 Mar 2013 21:27:23 +0100 Subject: [PATCH] Update URLs to github hosted webpage. --- polymorphic/base.py | 2 +- polymorphic/manager.py | 2 +- polymorphic/polymorphic_model.py | 5 ++--- polymorphic/query.py | 2 +- polymorphic/query_translate.py | 2 +- polymorphic/tests.py | 2 +- 6 files changed, 7 insertions(+), 8 deletions(-) diff --git a/polymorphic/base.py b/polymorphic/base.py index f87a0e4..334f542 100644 --- a/polymorphic/base.py +++ b/polymorphic/base.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """ PolymorphicModel Meta Class - Please see README.rst or DOCS.rst or http://bserve.webhop.org/wiki/django_polymorphic + Please see README.rst or DOCS.rst or http://chrisglass.github.com/django_polymorphic/ """ import sys diff --git a/polymorphic/manager.py b/polymorphic/manager.py index bb1fd6b..cdef305 100644 --- a/polymorphic/manager.py +++ b/polymorphic/manager.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """ PolymorphicManager - Please see README.rst or DOCS.rst or http://bserve.webhop.org/wiki/django_polymorphic + Please see README.rst or DOCS.rst or http://chrisglass.github.com/django_polymorphic/ """ from django.db import models diff --git a/polymorphic/polymorphic_model.py b/polymorphic/polymorphic_model.py index ac657e5..76cecf9 100644 --- a/polymorphic/polymorphic_model.py +++ b/polymorphic/polymorphic_model.py @@ -6,9 +6,8 @@ Seamless Polymorphic Inheritance for Django Models Please see README.rst and DOCS.rst for further information. Or on the Web: -http://bserve.webhop.org/wiki/django_polymorphic -http://github.com/bconstantin/django_polymorphic -http://bitbucket.org/bconstantin/django_polymorphic +http://chrisglass.github.com/django_polymorphic/ +http://github.com/chrisglass/django_polymorphic Copyright: This code and affiliated files are (C) by Bert Constantin and individual contributors. diff --git a/polymorphic/query.py b/polymorphic/query.py index 6e397f7..ac097a5 100644 --- a/polymorphic/query.py +++ b/polymorphic/query.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """ QuerySet for PolymorphicModel - Please see README.rst or DOCS.rst or http://bserve.webhop.org/wiki/django_polymorphic + Please see README.rst or DOCS.rst or http://chrisglass.github.com/django_polymorphic/ """ from compatibility_tools import defaultdict diff --git a/polymorphic/query_translate.py b/polymorphic/query_translate.py index faefe16..2d1b730 100644 --- a/polymorphic/query_translate.py +++ b/polymorphic/query_translate.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """ PolymorphicQuerySet support functions - Please see README.rst or DOCS.rst or http://bserve.webhop.org/wiki/django_polymorphic + Please see README.rst or DOCS.rst or http://chrisglass.github.com/django_polymorphic/ """ from django.db import models diff --git a/polymorphic/tests.py b/polymorphic/tests.py index b485722..ee9173d 100644 --- a/polymorphic/tests.py +++ b/polymorphic/tests.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """ Test Cases - Please see README.rst or DOCS.rst or http://bserve.webhop.org/wiki/django_polymorphic + Please see README.rst or DOCS.rst or http://chrisglass.github.com/django_polymorphic/ """ from django.conf import settings