Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
Switching to django-betty-cropper
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Sinchok committed May 15, 2014
1 parent df0c29f commit e96ee2b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bulbs/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.7"
__version__ = "0.1.8"
4 changes: 2 additions & 2 deletions bulbs/content/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def forwards(self, orm):
('title', self.gf('django.db.models.fields.CharField')(max_length=512)),
('slug', self.gf('django.db.models.fields.SlugField')(default='', max_length=50, blank=True)),
('description', self.gf('django.db.models.fields.TextField')(default='', max_length=1024, blank=True)),
('image', self.gf('betty.cropped.fields.ImageField')(default=None, null=True, blank=True)),
('image', self.gf('djbetty.fields.ImageField')(default=None, null=True, blank=True)),
('feature_type', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True)),
('subhead', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True)),
('indexed', self.gf('django.db.models.fields.BooleanField')(default=True)),
Expand Down Expand Up @@ -105,7 +105,7 @@ def backwards(self, orm):
'description': ('django.db.models.fields.TextField', [], {'default': "''", 'max_length': '1024', 'blank': 'True'}),
'feature_type': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'image': ('betty.cropped.fields.ImageField', [], {'default': 'None', 'null': 'True', 'blank': 'True'}),
'image': ('djbetty.fields.ImageField', [], {'default': 'None', 'null': 'True', 'blank': 'True'}),
'indexed': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
'last_modified': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now', 'auto_now': 'True', 'blank': 'True'}),
'polymorphic_ctype': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "u'polymorphic_content.content_set'", 'null': 'True', 'to': u"orm['contenttypes.ContentType']"}),
Expand Down
2 changes: 1 addition & 1 deletion bulbs/content/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from .shallow import ShallowContentS, ShallowContentResult

from betty.cropped.fields import ImageField
from djbetty import ImageField

try:
from bulbs.content.tasks import index as index_task # noqa
Expand Down
2 changes: 1 addition & 1 deletion bulbs/promotion/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def backwards(self, orm):
'description': ('django.db.models.fields.TextField', [], {'default': "''", 'max_length': '1024', 'blank': 'True'}),
'feature_type': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'image': ('betty.cropped.fields.ImageField', [], {'default': 'None', 'null': 'True', 'blank': 'True'}),
'image': ('djbetty.fields.ImageField', [], {'default': 'None', 'null': 'True', 'blank': 'True'}),
'indexed': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
'last_modified': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now', 'auto_now': 'True', 'blank': 'True'}),
'polymorphic_ctype': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "u'polymorphic_content.content_set'", 'null': 'True', 'to': u"orm['contenttypes.ContentType']"}),
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Django>=1.4
South==0.8.1
betty-cropper==0.1.21
django-betty-cropper==0.1.1
djangorestframework==2.3.13
django-elastimorphic==0.0.2
django_polymorphic==0.5.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
requires = [
"Django>=1.4",
"South==0.8.1",
"betty-cropper==0.1.21",
"django-betty-cropper==0.1.1",
"django-elastimorphic==0.0.2",
"django-json-field==0.5.5",
"django_polymorphic==0.5.1",
Expand Down

0 comments on commit e96ee2b

Please sign in to comment.