mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-05-17 17:11:08 +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
|
Maintainers
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
* `Bryan Veloso`_
|
|
||||||
* `Matthew Tretter`_
|
* `Matthew Tretter`_
|
||||||
|
* `Bryan Veloso`_
|
||||||
* `Chris Drackett`_
|
* `Chris Drackett`_
|
||||||
* `Greg Newman`_
|
* `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
|
__ https://groups.google.com/forum/#!forum/django-imagekit
|
||||||
__ irc://irc.freenode.net/imagekit
|
__ irc://irc.freenode.net/imagekit
|
||||||
.. _nose: https://nose.readthedocs.org/en/latest/
|
.. _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|_
|
||||||
|
|
||||||
.. |Build Status| image:: https://travis-ci.org/jdriscoll/django-imagekit.png?branch=develop
|
.. |Build Status| image:: https://travis-ci.org/matthewwithanm/django-imagekit.png?branch=develop
|
||||||
.. _Build Status: https://travis-ci.org/jdriscoll/django-imagekit
|
.. _Build Status: https://travis-ci.org/matthewwithanm/django-imagekit
|
||||||
|
|
||||||
ImageKit is a Django app for processing images. Need a thumbnail? A
|
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
|
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}
|
options = {'quality': 60}
|
||||||
|
|
||||||
Note that when you import a processor from ``imagekit.processors``, imagekit
|
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.
|
available processors, look at PILKit.
|
||||||
|
|
||||||
.. _`PILKit`: https://github.com/matthewwithanm/pilkit
|
.. _`PILKit`: https://github.com/matthewwithanm/pilkit
|
||||||
|
|
@ -414,7 +414,7 @@ of generator ids in order to generate images selectively.
|
||||||
Community
|
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>`_
|
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
|
also exists to discuss the project and ask questions, as well as the official
|
||||||
`#imagekit <irc://irc.freenode.net/imagekit>`_ channel on Freenode.
|
`#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.
|
with ImageKit.
|
||||||
|
|
||||||
|
|
||||||
__ https://github.com/jdriscoll/django-imagekit/issues?labels=contributor-friendly&state=open
|
__ https://github.com/matthewwithanm/django-imagekit/issues?labels=contributor-friendly&state=open
|
||||||
__ https://github.com/jdriscoll/django-imagekit/blob/develop/CONTRIBUTING.rst
|
__ https://github.com/matthewwithanm/django-imagekit/blob/develop/CONTRIBUTING.rst
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ class ImageSpecField(SpecHostField):
|
||||||
cachefile_strategy=cachefile_strategy, spec=spec,
|
cachefile_strategy=cachefile_strategy, spec=spec,
|
||||||
spec_id=id)
|
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
|
self.source = source
|
||||||
|
|
||||||
def contribute_to_class(self, cls, name):
|
def contribute_to_class(self, cls, name):
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ class ModelSignalRouter(object):
|
||||||
``ImageFieldSourceGroup``s. This class encapsulates that functionality.
|
``ImageFieldSourceGroup``s. This class encapsulates that functionality.
|
||||||
|
|
||||||
Related:
|
Related:
|
||||||
https://github.com/jdriscoll/django-imagekit/issues/126
|
https://github.com/matthewwithanm/django-imagekit/issues/126
|
||||||
https://code.djangoproject.com/ticket/9318
|
https://code.djangoproject.com/ticket/9318
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -31,12 +31,12 @@ setup(
|
||||||
version=pkgmeta['__version__'],
|
version=pkgmeta['__version__'],
|
||||||
description='Automated image processing for Django models.',
|
description='Automated image processing for Django models.',
|
||||||
long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')),
|
long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')),
|
||||||
author='Justin Driscoll',
|
author='Matthew Tretter',
|
||||||
author_email='justin@driscolldev.com',
|
author_email='m@tthewwithanm.com',
|
||||||
maintainer='Bryan Veloso',
|
maintainer='Bryan Veloso',
|
||||||
maintainer_email='bryan@revyver.com',
|
maintainer_email='bryan@revyver.com',
|
||||||
license='BSD',
|
license='BSD',
|
||||||
url='http://github.com/jdriscoll/django-imagekit/',
|
url='http://github.com/matthewwithanm/django-imagekit/',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
include_package_data=True,
|
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
|
Creating a new instance without an image shouldn't cause the source_saved
|
||||||
signal to be dispatched.
|
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')
|
source_group = ImageFieldSourceGroup(ImageModel, 'image')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue