- Mar 20, 2018
-
-
Samuel GAIST authored
This separates more cleanly the goal of each part. At the same time the prefix path file can be kept in the sources rather than being in /tmp that could be altered during a run.
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
limit_choices_to has no effect on ManyToManyField with a through model.
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
The latest version has a new default set of middleware so update the list to match it and to keep the current functionality as well as improve security.
-
Samuel GAIST authored
The request processor has been moved from django.core to django.template.
-
Samuel GAIST authored
StaticFilesNode was removed so refactored the code to still return the same data as before.
-
Samuel GAIST authored
pattern wasn't used and is not available anymore.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
render_to_response is deprecated in Django 2.0 and render has been available since 1.3. It's shorter to write and avoids the writing of context_instance=RequestContext(request) in each of its call.
-
Samuel GAIST authored
Fix backup restore See merge request !236
-
Samuel GAIST authored
This ensure that whatever the outcome of the tests, the prefix is cleaned up. Currently these are piling up in the /var/tmp folder.
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
-
Samuel GAIST authored
The natural key generate was using a tuple in a tuple (which is good) however the get_by_natural_key method was expecting a flat tuple.
-
Samuel GAIST authored
This allows Django to serialize the database content in the correct order.
-
Samuel GAIST authored
-
Samuel GAIST authored
Database hash doesn't exists anymore and rather than generating natural keys that trigger the creation of get_by_natural_key methods with way too many parameters, use tuples in tuples. This make the code clearer to read as well as easier to maintain if the natural key of a related field changes.
-