From 02cd1bf7ffd3066261cd969ecfcf339beb623629 Mon Sep 17 00:00:00 2001 From: Bryan Veloso Date: Mon, 3 Jun 2013 12:50:20 -0700 Subject: [PATCH] I, for one, welcome our new @matthewwithanm overlords. --- AUTHORS | 2 +- CONTRIBUTING.rst | 2 +- README.rst | 12 ++++++------ imagekit/models/fields/__init__.py | 2 +- imagekit/specs/sourcegroups.py | 2 +- setup.py | 6 +++--- tests/test_sourcegroups.py | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/AUTHORS b/AUTHORS index 34c4c8d..255827b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,8 +6,8 @@ HZDG_. Maintainers ----------- -* `Bryan Veloso`_ * `Matthew Tretter`_ +* `Bryan Veloso`_ * `Chris Drackett`_ * `Greg Newman`_ diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index e36fd1c..b9f2de2 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -21,4 +21,4 @@ __ http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html __ https://groups.google.com/forum/#!forum/django-imagekit __ irc://irc.freenode.net/imagekit .. _nose: https://nose.readthedocs.org/en/latest/ -__ https://github.com/jdriscoll/django-imagekit/tree/develop/tests +__ https://github.com/matthewwithanm/django-imagekit/tree/develop/tests diff --git a/README.rst b/README.rst index ae65e8a..53e8781 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ |Build Status|_ -.. |Build Status| image:: https://travis-ci.org/jdriscoll/django-imagekit.png?branch=develop -.. _Build Status: https://travis-ci.org/jdriscoll/django-imagekit +.. |Build Status| image:: https://travis-ci.org/matthewwithanm/django-imagekit.png?branch=develop +.. _Build Status: https://travis-ci.org/matthewwithanm/django-imagekit ImageKit is a Django app for processing images. Need a thumbnail? A black-and-white version of a user-uploaded image? ImageKit will make them for @@ -371,7 +371,7 @@ it in your spec's ``processors`` list: options = {'quality': 60} Note that when you import a processor from ``imagekit.processors``, imagekit -in turn imports the processor from `PILKit`_. So if you are looking for +in turn imports the processor from `PILKit`_. So if you are looking for available processors, look at PILKit. .. _`PILKit`: https://github.com/matthewwithanm/pilkit @@ -414,7 +414,7 @@ of generator ids in order to generate images selectively. Community ========= -Please use `the GitHub issue tracker `_ +Please use `the GitHub issue tracker `_ to report bugs with django-imagekit. `A mailing list `_ also exists to discuss the project and ask questions, as well as the official `#imagekit `_ channel on Freenode. @@ -436,5 +436,5 @@ Check out our `contributing guidelines`__ for more information about pitching in with ImageKit. -__ https://github.com/jdriscoll/django-imagekit/issues?labels=contributor-friendly&state=open -__ https://github.com/jdriscoll/django-imagekit/blob/develop/CONTRIBUTING.rst +__ https://github.com/matthewwithanm/django-imagekit/issues?labels=contributor-friendly&state=open +__ https://github.com/matthewwithanm/django-imagekit/blob/develop/CONTRIBUTING.rst diff --git a/imagekit/models/fields/__init__.py b/imagekit/models/fields/__init__.py index 3f1a2f6..91c6252 100644 --- a/imagekit/models/fields/__init__.py +++ b/imagekit/models/fields/__init__.py @@ -39,7 +39,7 @@ class ImageSpecField(SpecHostField): cachefile_strategy=cachefile_strategy, spec=spec, spec_id=id) - # TODO: Allow callable for source. See https://github.com/jdriscoll/django-imagekit/issues/158#issuecomment-10921664 + # TODO: Allow callable for source. See https://github.com/matthewwithanm/django-imagekit/issues/158#issuecomment-10921664 self.source = source def contribute_to_class(self, cls, name): diff --git a/imagekit/specs/sourcegroups.py b/imagekit/specs/sourcegroups.py index dd804dc..2008f59 100644 --- a/imagekit/specs/sourcegroups.py +++ b/imagekit/specs/sourcegroups.py @@ -47,7 +47,7 @@ class ModelSignalRouter(object): ``ImageFieldSourceGroup``s. This class encapsulates that functionality. Related: - https://github.com/jdriscoll/django-imagekit/issues/126 + https://github.com/matthewwithanm/django-imagekit/issues/126 https://code.djangoproject.com/ticket/9318 """ diff --git a/setup.py b/setup.py index 393c019..da959a0 100644 --- a/setup.py +++ b/setup.py @@ -31,12 +31,12 @@ setup( version=pkgmeta['__version__'], description='Automated image processing for Django models.', long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')), - author='Justin Driscoll', - author_email='justin@driscolldev.com', + author='Matthew Tretter', + author_email='m@tthewwithanm.com', maintainer='Bryan Veloso', maintainer_email='bryan@revyver.com', license='BSD', - url='http://github.com/jdriscoll/django-imagekit/', + url='http://github.com/matthewwithanm/django-imagekit/', packages=find_packages(), zip_safe=False, include_package_data=True, diff --git a/tests/test_sourcegroups.py b/tests/test_sourcegroups.py index 12eed3b..c69b11f 100644 --- a/tests/test_sourcegroups.py +++ b/tests/test_sourcegroups.py @@ -32,7 +32,7 @@ def test_no_source_saved_signal(): Creating a new instance without an image shouldn't cause the source_saved signal to be dispatched. - https://github.com/jdriscoll/django-imagekit/issues/214 + https://github.com/matthewwithanm/django-imagekit/issues/214 """ source_group = ImageFieldSourceGroup(ImageModel, 'image')