4
2

If not, are there plans to make it compatible?

Thanks in advance, Greetings.

asked 24 Jan, 18:02

blindOSX's gravatar image

blindOSX
1613714
accept rate: 20%

edited 21 Feb, 07:36

rickross's gravatar image

rickross ♦♦
12.5k2814972

Can't say whether it will work with 1.4, but it does work with 1.3.

(24 Jan, 18:04) HAL9000

Tag the question properly: "django1.4".

(20 Feb, 06:25) tony

It seems to me that OSQA will be good to go with Django 1.4 - the backwards incompatible list doesn't affect the core functionality of the project: https://docs.djangoproject.com/en/dev/releases/1.4/#backwards-incompatible-changes-in-1-4

However I wouldn't encourage you to use the 1.4 version for production - you'd better bet on the stable 1.3 release.

link

answered 24 Jan, 18:13

Jordan's gravatar image

Jordan ♦♦
3.1k618
accept rate: 39%

I've been taking a quick look and I think we should solve these new deprecations of Django 1.4:

  • CsrfResponseMiddleware and CsrfMiddleware will be removed. Use the {% csrf_token %} template tag inside forms to enable CSRF protection. CsrfViewMiddleware remains and is enabled by default.
  • The get_db_prep_save, get_db_prep_value and get_db_prep_lookup methods will have to support multiple databases.
  • The Message model (in django.contrib.auth), its related manager in the User model (user.message_set), and the associated methods (user.message_set.create() and user.get_and_delete_messages()), will be removed. The messages framework should be used instead. The related messages variable returned by the auth context processor will also be removed. Note that this means that the admin application will depend on the messages context processor.
  • django.core.context_processors.auth. This release will remove the old method in favor of the new method in django.contrib.auth.context_processors.auth.

Source: https://docs.djangoproject.com/en/dev/internals/deprecation/

link

answered 24 Jan, 18:26

blindOSX's gravatar image

blindOSX
1613714
accept rate: 20%

edited 24 Jan, 18:26

Nice reference. I filed a Jira issue about it: http://jira.osqa.net/browse/OSQA-805

(24 Jan, 18:33) Jordan ♦♦
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×3

Asked: 24 Jan, 18:02

Seen: 474 times

Last updated: 21 Feb, 07:36

powered by OSQA