Re: Ticket #23242 -- Approximate date_hierarchy

2015-09-18 Thread Gavin Wahl
Is it going to be possible to get this in before the feature freeze? On Thursday, September 10, 2015 at 10:21:29 AM UTC-6, Gavin Wahl wrote: > > The enum seems fine. Where should it be defined? Should the docs mention > the integer values at all, or are you required to use the enum? > > I don't

Re: Django help

2015-09-18 Thread Tim Graham
Hi Ketan, You might like to read the archives of the django-core-mentorship mailing list as similar inquiries have been made there. https://groups.google.com/forum/?fromgroups#!forum/django-core-mentorship Feel free to ping me (timograham) in #django-dev on IRC if you want to chat. Tim On

Django help

2015-09-18 Thread Ketan Mittal
Hi I am a Django newbie and wish to contribute to open source. Please guide me through the initial procedure. -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop

Feature Proposal: per-settings fake migration override

2015-09-18 Thread Flavio Curella
I'm not sure if this warrants a DEP, so I've decided to post it to the list first. If this needs to be a DEP, just let me know and I'll follow the DEP process. Rationale - Assume the following scenario: 1. At some point in history, project A was deployed in production and was

Re: Capturing faked migrations in django_migrations table

2015-09-18 Thread Tim Graham
Maybe we could have BaseCommand remove the 'console' handler from the 'django' logger during the command's execution (at least under normal verbosity conditions)? As mentioned on the pull request, there is also an idea to update management commands to use logging [1]. I think the two ideas

Re: `collectstatic --ignore` pattern matching

2015-09-18 Thread Shimul Taleb
Django use this `get_fiels` function to get all files, folders name list https://github.com/django/django/blob/master/django/contrib/staticfiles/utils.py#L21 So it does not have any knowledge about path. On Monday, January 27, 2014 at 5:54:29 PM UTC-5, Eric Eldredge wrote: > > Hi all, > > I'm

Re: status of 1.9 release blockers

2015-09-18 Thread Marc Tamlyn
Sorry everyone :( On 18 September 2015 at 15:01, Tim Graham wrote: > The major features are officially deferred. Let's try for the feature > freeze by end of day on Monday and the alpha release on Tuesday. > > There aren't any critical blockers at this time. Jani hasn't

Re: status of 1.9 release blockers

2015-09-18 Thread Tim Graham
The major features are officially deferred. Let's try for the feature freeze by end of day on Monday and the alpha release on Tuesday. There aren't any critical blockers at this time. Jani hasn't completed the Oracle GIS work, but this isn't a must-have for alpha. On Saturday, September 12,

Re: Adding a URL tagging feature

2015-09-18 Thread Marc Tamlyn
Some quick thoughts: - I'm unconvinced that selecting urls by a given type is a common use case - can you expand on that? - Implementing the detection and usage of tags as middleware seems not as nice as in decorators to me, especially as the middleware tree can be... unpredictable in its