John Paulett
John Paulett
My personal view is that this project has served its stated purpose now that [2443](https://code.djangoproject.com/ticket/2443) is closed. I intend to support it for the time being as Django 1.4 and...
@IshwarChincholkar I don't think you can just `CAST` -- possibly use [make_interval](https://www.postgresql.org/docs/9.4/functions-datetime.html) or use @Semprini's suggestion of multiplying times, similar to `20 * '1 minute'::interval;`
I was unaware of the ISO 8601 Duration specification. A patch that added support for IS0 8601 and related tests would be very welcomed. Probably involves altering [str_to_timedelta](/johnpaulett/django-durationfield/blob/master/durationfield/utils/timestring.py#L17). For backwards...
@codingjoe -- I'm trying to understand your use case. Are you looking for: 1. A means to pass in a IS0 8601 Duration into a DurationField (which the original issue...
To be clear, 1 is not available in `str_to_timedelta` currently, but I would welcome a patch for it. Regarding 2, would have to see code a bit more, not 100%...
@jnelson I would steer away from including a GPL-licensed dependency (aniso8601) for this BSD-licensed library.
I'm not 100% sure why we return a DurationField here (perhaps @poswald might recall). Perhaps South related? Based upon the [get_internal_type documentation](https://docs.djangoproject.com/en/dev/howto/custom-model-fields/#emulating-built-in-field-types), it does seem like we should return an...
Yes, I would be open to localization. It would be interesting to see what this looks like. Do we just need string translations, or do we need alternative formattting and...
I have not tried running under 1.7-alpha yet, so this is not a known issue. Test case / patch more than welcome. We provide an introspection rule for South via...
This appears to not work when loading a saved model via `model_file` as the params are not read in. I'm looking at options. @jameslamb pointed out the params issue is...