I, for one, welcome our new @matthewwithanm overlords.

This commit is contained in:
Bryan Veloso 2013-06-03 12:50:20 -07:00
parent af73a93953
commit 02cd1bf7ff
7 changed files with 14 additions and 14 deletions

View file

@ -6,8 +6,8 @@ HZDG_.
Maintainers
-----------
* `Bryan Veloso`_
* `Matthew Tretter`_
* `Bryan Veloso`_
* `Chris Drackett`_
* `Greg Newman`_

View file

@ -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

View file

@ -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 <https://github.com/jdriscoll/django-imagekit/issues>`_
Please use `the GitHub issue tracker <https://github.com/matthewwithanm/django-imagekit/issues>`_
to report bugs with django-imagekit. `A mailing list <https://groups.google.com/forum/#!forum/django-imagekit>`_
also exists to discuss the project and ask questions, as well as the official
`#imagekit <irc://irc.freenode.net/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

View file

@ -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):

View file

@ -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
"""

View file

@ -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,

View file

@ -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')