Skip to content

Commit e7d614d

Browse files
author
Greg Taylor
committed
Add section on to-do in readme, yank debug print statement in fields.py.
1 parent 1fe23ad commit e7d614d

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ it, finish the tag with `as [context_var_name]`:
111111
{% thumbnail image 80x80 as thumb %}
112112
<img src="{{thumb}}" />
113113

114+
## To-Do
115+
116+
* See the issue tracker for a list of outstanding things needing doing.
117+
114118
## Change Log
115119

116120
### 1.0

athumb/fields.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ def save(self, name, content, save=True):
118118
Handles some extra logic to generate the thumbnails when the original
119119
file is uploaded.
120120
"""
121-
print "SUIPAH"
122121
super(ImageWithThumbsFieldFile, self).save(name, content, save)
123122

124123
# see http://code.djangoproject.com/ticket/8222 for details
@@ -225,13 +224,8 @@ class ImageWithThumbsField(ImageField):
225224
226225
With the S3BotoStorage backends, the default is to over-write existing files.
227226
228-
Note: django-thumbs assumes that if filename "any_filename.jpg" is available
227+
Note: django-athumb assumes that if filename "any_filename.jpg" is available
229228
filenames with this format "any_filename.[width]x[height].jpg" will be available, too.
230-
231-
To do:
232-
======
233-
Add method to regenerate thumbnails
234-
235229
"""
236230
def __init__(self, verbose_name=None, name=None, thumbnail_format=None,
237231
width_field=None, height_field=None, sizes=(), **kwargs):

0 commit comments

Comments
 (0)