Re: GSoC Check-in: Security Enhancements

2012-07-24 Thread Rohan Jain
On 19:46 +0100 / 23 Jul, Luke Plant wrote: > On 23/07/12 14:24, Rohan Jain wrote: > > With this, attacker won't be able to directly set arbitrary tokens on > > other sub domains through cookies, they will need a signature of the > > token with the form which is to be verified against the cookie. >

Re: Python 3 port status

2012-07-24 Thread Vinay Sajip
On Jul 24, 7:37 pm, Aymeric Augustin wrote: > Since Django's test suite isn't exhaustive, we focus on code review rather > than passing tests to validate the > changes. That's why we're doing them step by step rather than in a huge > merge. We're

Re: Python 3 port status

2012-07-24 Thread Aymeric Augustin
On 24 juil. 2012, at 19:43, Vinay Sajip wrote: > Since the update of Django to use Benjamin Peterson's six package for > single code-base compatibility, I've updated my port [1] to do > likewise. > [1] https://github.com/vsajip/django Hi Vinay, Since Django's test suite isn't exhaustive, we

Re: Python 3 port status

2012-07-24 Thread Vinay Sajip
Since the update of Django to use Benjamin Peterson's six package for single code-base compatibility, I've updated my port [1] to do likewise. All tests pass [2] with the SQLite backend on Ubuntu Linux (64-bit). I added to the small section at the end of six.py [3] of additional customisations for

Re: The Django packages rss is broken

2012-07-24 Thread J . Pablo Martín Cobos
I think that also the "Community blog posts" [1] is broken. We have publicated a post [2], and this does not appear in the community [1]. And We have added our feed from January, and we have publicated some post about django :-) REF's 1. https://www.djangoproject.com/community/blogs/ 2.

Re: About: Feature request: Comments in Django models saved to database schema

2012-07-24 Thread Anssi Kääriäinen
On 22 heinä, 23:01, Andrei Antoukh wrote: > Hello! > > I started working on what had been proposed. In the > commithttps://github.com/niwibe/django/commit/af887029integeintege614ca53d8... > is > the initial

Re: how a field and its value can be found in a queryset object

2012-07-24 Thread Karen Tracey
Please ask questions about using Django on django-users. The topic of this list is the development of Django itself. Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to

how a field and its value can be found in a queryset object

2012-07-24 Thread wuuuuu
Hi, first, I have such an example: 1. users = Some.objects.filter(user="someone") 2. users.update(price=100) based on different user (I have a table to save it), users go to the different databases, and due to Master/Slave seperated, update and filter should be in different