pombreda / django-hotclub

Automatically exported from code.google.com/p/django-hotclub
MIT License
0 stars 0 forks source link

Switch from photologue to imagekit #172

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Background:
Photologue2 functionality has been split in two projects:
Photologue3: Gallery management application and
Imagekit: Image manipulation library

Justin Driscoll(photologue author) suggested Pinax switched to imagekit
instead of photologue.

I have updated the photo app to use imagekit based on this discussion with
Justin, Brian and Greg:
http://groups.google.com/group/pinax-core-dev/browse_thread/thread/2465bb46a225e
28

Since ImageKit repo does not have a setup.py file I created a temporal fork at:
http://bitbucket.org/ingenieroariel/django-imagekit-setuptools/
Which should dissapear as soon as the main repo is setuptools enabled:
http://bitbucket.org/jdriscoll/django-imagekit/

Original issue reported on code.google.com by ingenier...@gmail.com on 2 Feb 2009 at 9:17

Attachments:

GoogleCodeExporter commented 9 years ago
Fixed a small error in original diff (-e flag)

Original comment by ingenier...@gmail.com on 2 Feb 2009 at 9:21

Attachments:

GoogleCodeExporter commented 9 years ago
Justin Driscoll just updated his repo with my changes, so here is the new patch
pointing to the official repo.

http://bitbucket.org/jdriscoll/django-imagekit/

Original comment by ingenier...@gmail.com on 2 Feb 2009 at 10:48

Attachments:

GoogleCodeExporter commented 9 years ago
#egg=django-imagekit missing in previous patch :(

Original comment by ingenier...@gmail.com on 3 Feb 2009 at 10:53

Attachments:

GoogleCodeExporter commented 9 years ago
Last patch was missing some files, this one also uses the released version of
django-imagekit instead of the development version.

Original comment by ingenier...@gmail.com on 4 Feb 2009 at 3:08

Attachments:

GoogleCodeExporter commented 9 years ago
SQL upgrade snippet:
{{{
INSERT INTO photos_photo(
id, image, view_count, crop_horz, crop_vert, title, title_slug,
caption, date_added, is_public, member_id, safetylevel, tags )
SELECT
id, image, view_count, 1 , 1 , title, title_slug,
caption, date_added, is_public, member_id, safetylevel, tags
FROM photos_image;
}}}

Original comment by ingenier...@gmail.com on 4 Feb 2009 at 10:26

GoogleCodeExporter commented 9 years ago

Original comment by pyDanny on 13 Mar 2009 at 4:30

GoogleCodeExporter commented 9 years ago

Original comment by leidel on 13 Mar 2009 at 9:06