Re: GSOC 2015: Improving the less popular database backends

2015-03-14 Thread Yichun Duan
Thank you. When you say "backend-provided tests", do you mean MySQL scripts, Oracle scripts or something else like these? Or just some tests based on django standard, which have marks to tell test runner the backend they suite? 在 2015年3月11日星期三 UTC+8上午7:39:35,Shai Berger写道: > > One point which m

Re: Isomorphic Django?

2015-03-14 Thread Russell Keith-Magee
Hi Benjamin, A few more details to whet your appetite (because this is a thing I've been *thinking* about, but don't have anything to show) The biggest sticking point at the moment is getting Python on the client side. I'm aware of many attempts: * Brython (http://www.brython.info) is an in-bro

Re: csrf middleware token from request body

2015-03-14 Thread Carl Meyer
Hi Rafał, On 03/13/2015 12:42 PM, Rafał Pitoń wrote: > On Friday, March 13, 2015 at 4:14:55 PM UTC+1, Florian Apolloner wrote: > > I am pretty sure you can configure angular to send the token in the > header. Either way, we are not going to try and load json, just we > can't find a to

Fellow Report - March 13, 2015

2015-03-14 Thread Tim Graham
We had the security release to start the week. There hasn't been much work to do for 1.8 release blockers, so mainly I've been going through the backlog of patches needing review and reviewing/merging them for 1.9. Report for week ending March 13, 2015: Triaged --- https://code.djangop

Re: Isomorphic Django?

2015-03-14 Thread Tim Graham
I have not seen any discussion about such a thing. On Saturday, March 14, 2015 at 7:13:54 PM UTC-4, Benjamin Melki wrote: > > Hi are there any plans for isomorphic django version? > That runs python on both server and client (via transpiled js on the > client) like volt framework that appeared o

Isomorphic Django?

2015-03-14 Thread Benjamin Melki
Hi are there any plans for isomorphic django version? That runs python on both server and client (via transpiled js on the client) like volt framework that appeared on ruby world? -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to

Re: Interested in GSoC idea "Replace Form Media Class"

2015-03-14 Thread Tim Graham
Jannis Leidel, who's worked a fair bit on django-compressor, said this: "I’m not convinced that this is feasible in the way the OP proposed it. Porting over pipeline or compressor will just bring all of their downsides into Django’s code. And besides, the frontend tech world is currently in a s

Re: Project Security Enhancements for Gsoc 2015

2015-03-14 Thread Tim Graham
Hi Adhyan, If you don't have a background in security, I'd recommend a different project. I'm not too sure if we have a mentor for it either. Tim On Saturday, March 14, 2015 at 6:27:54 AM UTC-4, Adhyan Srivastava wrote: > > Hi, > I am Adhyan learning django from the past 6 months.During this ti

Re: status of 1.8 release blockers

2015-03-14 Thread Tim Graham
Good news: just one new release blocker this week (#24469) which is awaiting a final review from Aymeric. I'm targeting Wednesday of next week for the release candidate as well as a bug fix release for 1.7 (may be the last one, before 1.7 switches to security updates only). On Saturday, March 7

Re: Password validation in Django revisited

2015-03-14 Thread Erik Romijn
Hi all, Thanks for all the feedback. Good to see this seems to be heading in the right direction. The suggestions make sense to me and I’ll work on those. There were two particular design suggestions: instead of tying the validator to the password field, tying this to the authentication backend

Re: csrf middleware token from request body

2015-03-14 Thread Thomas Rega
Hi, for me the following snippets work: var testRun = angular.module('testRun', ['ui.bootstrap']); testRun.config(function($httpProvider) { $httpProvider.defaults.xsrfCookieName = 'csrftoken'; $httpProvider.defaults.xsrfHeaderName = 'X-CSRFToken'; }); See: https://github.com/thoreg/test_executo

Re: TabularInline

2015-03-14 Thread Daniele Procida
On Fri, Mar 13, 2015, Rodrigo Ancavil wrote: >Can I display model's function fields on a TabularInline? Hi Rodrigo. You'll get answers to questions like this on the django-users email list, - the web interface is . The list you've post

Project Security Enhancements for Gsoc 2015

2015-03-14 Thread adhyan2095
Hi, I am Adhyan learning django from the past 6 months.During this time I learned several concepts but not all of them in depth as I am still a novice.The feature CSRF protection interests me more and I want to learn more about by contributing something to it.I have read it about (CSRF feature)

TabularInline

2015-03-14 Thread Rodrigo Ancavil
Can I display model's function fields on a TabularInline? -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-develope

Re: csrf middleware token from request body

2015-03-14 Thread Richard Jeffries
Hi, Thats pretty much the use case I have (accessing an API with no template). I couldn't get angular to play nice even with the below settings so I'd resorted to POST-ing the token but then I encountered the POST dict being turned into JSON. Appreciate that this short-coming is not django so