mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
I, for one, welcome our new @matthewwithanm overlords.
This commit is contained in:
parent
af73a93953
commit
02cd1bf7ff
7 changed files with 14 additions and 14 deletions
2
AUTHORS
2
AUTHORS
|
|
@ -6,8 +6,8 @@ HZDG_.
|
|||
Maintainers
|
||||
-----------
|
||||
|
||||
* `Bryan Veloso`_
|
||||
* `Matthew Tretter`_
|
||||
* `Bryan Veloso`_
|
||||
* `Chris Drackett`_
|
||||
* `Greg Newman`_
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
12
README.rst
12
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 <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
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
"""
|
||||
|
|
|
|||
6
setup.py
6
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,
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue