Re: Django 1.7 Final Status?

2014-06-15 Thread Lachlan Musicman
I believe I saw Andrew Godwin mention on Twitter this AM that the release blocking bugs were down to 0, and to expect a RC real soon now. As you can see here, there are actually two: https://code.djangoproject.com/query?status=!closed=Release+blocker=priority I presume they are either brand

Django 1.7 Final Status?

2014-06-15 Thread Kegan Gan
Hi, I realise that Django 1.7 is still in beta as of today. I have not been following very closely on the development. The roadmap indicate it should be final sometime in May 2014. What is the current status? Any updated release date? Thank you. -- You received this message because you are

Re: CSRF Token Help

2014-06-15 Thread Jesse Warden
How does the cookie get set initially? If you just make one login request, is it the first OPTIONS pre-flight that sets the cookie or is it ok to be null until you successfully login? On Sunday, June 15, 2014 3:14:21 PM UTC-4, Andréas Kühne wrote: > > Hi Jesse, > > I can't remember where I saw

Re: Django and PrimeUI (Primefaces JS Library) integration

2014-06-15 Thread Varuna Singh
So, do you have a tutorial on how I should install / use this after I clone it ? On Wednesday, February 19, 2014 4:51:43 AM UTC+4, Livio Leoncio Ribeiro wrote: > > I'm working on an app that integrates PrimeUI with Django. I hosted the > code on bitbucket

Re: How to learn Django?

2014-06-15 Thread Cal Leeming [Simplicity Media Ltd]
One of the most important things you can do when learning anything, including Django, is to learn to use Google as much as possible. The majority of questions have already been answered by a wide audience, and most answers can be found with a simple search. Sometimes you have to be creative with

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread Ezequiel Bertti
What was the solution? On Sun, Jun 15, 2014 at 5:03 PM, sarfaraz ahmed wrote: > Thanks for your help. The issue is resolved ... thanks :) > > > > On Mon, Jun 16, 2014 at 1:10 AM, sarfaraz ahmed > wrote: > >> Yes, I saw and tried the steps

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread sarfaraz ahmed
Thanks for your help. The issue is resolved ... thanks :) On Mon, Jun 16, 2014 at 1:10 AM, sarfaraz ahmed wrote: > Yes, I saw and tried the steps mentioned in that link. I get following > error > > "No module named sqlserver_ado.base". > > This is lines in setting.py

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread sarfaraz ahmed
Yes, I saw and tried the steps mentioned in that link. I get following error "No module named sqlserver_ado.base". This is lines in setting.py Please help DATABASES = { 'default': { 'NAME': 'blogger', 'ENGINE': 'django.db.backends.sqlserver_ado', 'HOST': ' ',

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread Mark Phillips
Did you look here?? http://django-mssql.readthedocs.org/en/latest/ Mark On Sun, Jun 15, 2014 at 11:35 AM, sarfaraz ahmed wrote: > Hello Friends, > > I am trying to moving away from sqlite. Trying to use MS SQl 2012 as > backend. So far I installed django-mssql on my

Re: CSRF Token Help

2014-06-15 Thread Andreas Kuhne
Hi Jesse, I can't remember where I saw it, but I found that the csrf token is added as a cookie to the response, so it is always present on each response. In my code I have an event handler (I'm using jquery to post) that looks like the following: $(document).ajaxSend(function (event, jqxhr,

Re: CSRF Token Help

2014-06-15 Thread Jesse Warden
Yes, I've added the token in the cookie. Yes, I've added the cookie in the form post variable. Yes, I've added as a GET post variable. Yes, I've tried adding as a POST variable. Yes, I've set it to what the server sends back. Yes, I've set it to what the server-side sends back as a Cookie. ...

trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread sarfaraz ahmed
Hello Friends, I am trying to moving away from sqlite. Trying to use MS SQl 2012 as backend. So far I installed django-mssql on my machine. When I type import sqlserver_ado... It works fine. I am new to Django. Please provide me with example to get my MSSQL connected to django. More than one

getting raw_input('something') instantiated from browser

2014-06-15 Thread Eran Ariel
I have developed a python application to which I am interested in allowing users to access it via web browser. I am new to implementation. I need to "call" the raw_input('your calculation') from the browser and return the results to the browser – GET or POST. I have added the python

Re: CSRF Token Help

2014-06-15 Thread Renato Oliveira
Since you've been trying for so long, may be a obvious answer, but have you tried with this? https://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ajax Renato Oliveira @_renatooliveira Labcodes - www.labcodes.com.br On Sun, Jun 15, 2014 at 11:38 AM,

CSRF Token Help

2014-06-15 Thread Jesse Warden
I've read the stack overflow posts, blog articles on how CSRF works, etc, but still failing to get this to work in both JavaScript and Dart. No matter what I try, I keep getting a 403 for my login method. I've attempted various Apache/Virtual Host programs for Mac to run a local domain in hopes

Re: How to read part of many-to-many field in the template

2014-06-15 Thread alghafli
Thank you for the fast reply. I did what you suggested and it worked fine :) على الأحد 15 حزيران 2014 16:39, كتب Elliot Bradbury: Hi Mohammad, Check out slice . It's a builtin template filter that can be used like this:

Re: How to read part of many-to-many field in the template

2014-06-15 Thread Elliot Bradbury
Hi Mohammad, Check out slice . It's a builtin template filter that can be used like this: {% for author in book.authors.all|slice:"3" %} {# HTML up in here #} {% endfor %} Good luck, Elliot On Sun, Jun 15, 2014 at 9:31

How to read part of many-to-many field in the template

2014-06-15 Thread alghafli
Hello django users. I am working on my first django project and I faced a little problem. I have a library database with books. A book element may have several authors. In the view function I query the database for books. I want to show the *first three* authors. I was thinking to do something

Re: How to learn Django?

2014-06-15 Thread Daniele Procida
On Sun, Jun 15, 2014, Aadit Kapoor wrote: >How to learn Django? is the best place to start for information. And then the best way to learn Django, as is the case with any tool, is to have a problem you want

How to learn Django?

2014-06-15 Thread Aadit Kapoor
How to learn Django? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to