LennyLip
LennyLip
may be models must support [xAL format](http://xml.coverpages.org/xnal.html)?
I found only java implementation https://github.com/Geomatys/geotoolkit/tree/master/modules/jaxb-xml-binding/geotk-xml-kml/src/main/java/org/geotoolkit/xal/xml/v20 and https://github.com/citygml4j/citygml4j/tree/master/src/org/citygml4j/model/xal (looks better) also xAL (simple version) using in android http://developer.android.com/reference/android/location/Address.html, source https://github.com/android/platform_frameworks_base/blob/master/location/java/android/location/Address.java
another approach is create sql schema from xal.xsd (for example, using Altova XMLSpy) and run [django inspectdb](https://docs.djangoproject.com/en/1.7/ref/django-admin/#django-admin-inspectdb) to create models from DB. I'm trying to do it now
@codersbrew can you give an example? i think it is ng-repeat issue... thank you!
up. ups, i want img_640_480 not from img. because img already have canvas.. I want to create img_640_480 from uploaded source file.
hmm, ProcessedImageField TypeError: **init**() got an unexpected keyword argument 'source'
Now, i just using several ProcessedImageField (without "source') and copy request.data.get('img') to each of them when saving. It is ugly, but it is work.
first of all, i think ProcessedImageField has no "source" argument. [class ProcessedImageField(ImageField, SpecHost):](https://github.com/matthewwithanm/django-imagekit/blob/db70f810ada07800db3e466d9d7039d7b2e5a510/imagekit/models/fields/__init__.py#L83) It is in ImageSpecField, not in SpecHostField. How it works now: ``` class Photo(models.Model): img = ProcessedImageField(storage=photo_fs,...
i've read this docs. I have two question - 1. how can i create ImageSpecField with storage attribute to store second image for example on other server (not to MEDIA...
@krallin thanks