Re: [GSOC] Introduction and task proposal

2014-03-19 Thread Aymeric Augustin
On 19 mars 2014, at 06:27, Zach Borboa wrote: > Curious, how do you get REPL shell access to the server with DEBUG=True with > a vanilla Django deployment? That part of the discussion was about adding the werkzeug interactive debugger to Django's default error page. --

Re: APPEND_SLASH skip per URL or per base_uri

2014-03-19 Thread Shai Berger
On Friday 14 March 2014 17:07:41 Val Neekman wrote: > Hi Aymeric, > > Localized solution is fine, but when I saw the number posts from people who > were trying to find a solution to this, I thought, perhaps it would be a > nice little enhancement to the APPEND_SLASH functionality. >

Re: Saving forms without validation, and formsets

2014-03-19 Thread Chris Wilson
Hi all, As part of our test process we have code that automatically fills in forms with dummy values to make them valid. It fills in all required fields. This works well except for formsets. BaseModelFormSet.add_fields() adds a PK field to the form after it's created. It marks this field as

Re: Saving forms without validation, and formsets

2014-03-19 Thread Carl Meyer
On 03/19/2014 06:58 AM, Chris Wilson wrote: >> This requires overrides of a few methods on the parent form: __init__() >> to create the formsets, is_valid() to ensure the formsets are valid too, >> has_changed() to see if formsets have changed, and save() to save >> formsets too. > > There's a

Re: [GSOC] Introduction and task proposal

2014-03-19 Thread Daniel Pyrathon
Hi! Thanks for all the comments yesterday. They really helped me make the proposal stronger. I have changed to proposal to reflect the changes. Would anyone like to have a look and, possibly, comment more?

[GSOC] A Library For Integrating Neo4j With Django's ORM

2014-03-19 Thread Saurabh Wahile
Hello, I am a third year Computer Engineering B.E student at Mumbai University, India. I have 4 years of experience in C++/Java Programming and 1 year in Python programming. Coming from a C++/Java background, I appreciate the rapid development quality of Python and Django's amazing way of

Re: django.utils.functional.cached_property

2014-03-19 Thread Florian Demmer
On Thursday, August 8, 2013 6:59:14 PM UTC+2, Łukasz Rekucki wrote: > > Hi, > > I have some minor nitpicks: > > 1. Unlike the standard @property, the current implementation of > @cached_property doesn't allow for a docstring. > 2. Calling `del obj.` before accessing the value > or more then

Re: django.utils.functional.cached_property

2014-03-19 Thread Curtis Maloney
On 20 March 2014 08:58, Florian Demmer wrote: > > > On Thursday, August 8, 2013 6:59:14 PM UTC+2, Łukasz Rekucki wrote: >> >> Hi, >> >> I have some minor nitpicks: >> >> 1. Unlike the standard @property, the current implementation of >> @cached_property doesn't allow for a