Test Django with error tracebacks

2015-11-16 Thread Andrei
t there because the jenkins test runner isn't compatible [15:06] I find it pretty useful for local development Andrei -- 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 s

Updates to gCBV docs and small changes to gCBV code

2015-04-17 Thread Andrei Kulakov
looking for feedback on general approach, on my implementations of the custom views, on the two pull requests, and on the draft in the wiki. I can package up a project with these views and all related modules / templates if needed. Thanks! - Andrei -- You received this message because you

Re: Django should load custom SQL when testing

2012-07-29 Thread Andrei Antoukh
als for this. Andrey. > -- > You received this message because you are subscribed to the Google Groups > "Django developers" group. > To post to this group, send email to django-developers@googlegroups.com. > To unsubscribe from this group, send email to > django-d

Re: Django should load custom SQL when testing

2012-07-26 Thread Andrei Antoukh
c" initial SQL file names. Document that > these files should not contain data, just schema definition. Once we > get the migrations framework in, then deprecate the whole "initial SQL > in a directory" concept. > Having the hooks as a method or function, I find it much

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

2012-07-26 Thread Andrei Antoukh
2012/7/24 Anssi Kääriäinen <anssi.kaariai...@thl.fi> > On 22 heinä, 23:01, Andrei Antoukh <n...@niwi.be> wrote: > > Hello! > Hello! > > > > I started working on what had been proposed. In the commithttps:// > github.com/niwibe/django/commit/af

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

2012-07-22 Thread Andrei Antoukh
Thank you very much! Andrey Antukh 2012/7/9 Andrei Antoukh <n...@niwi.be> > 2012/7/9 Anssi Kääriäinen <anssi.kaariai...@thl.fi> > >> On 7 heinä, 22:25, Andrei Antoukh <n...@niwi.be> wrote: >> > Hello! >> > >> > I am writing about the issu

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

2012-07-09 Thread Andrei Antoukh
2012/7/9 Anssi Kääriäinen <anssi.kaariai...@thl.fi> > On 7 heinä, 22:25, Andrei Antoukh <n...@niwi.be> wrote: > > Hello! > > > > I am writing about the issues: > https://code.djangoproject.com/ticket/13867https://code.djangoproject.com/ticket/18468 > &g

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

2012-07-07 Thread Andrei Antoukh
of magic by django, a simple attribute "comment" on object "Meta". My initial proposal for postgresql implementation: https://github.com/niwibe/django/tree/issue_18468 Andrei Antoukh PD: sorry for my poor inglish -- Andrei Antoukh - <n...@niwi.be> http://www.niwi.be/page/abou

Re: Django git guidelines

2012-05-18 Thread Andrei Antoukh
the above > mentioned and/or other Git workflows feedback is appreciated. Looks excellent. Great work! -- Andrei Antoukh - <n...@niwi.be> http://www.niwi.be/page/about/ http://www.kaleidos.net/A5694F/ "Linux is for people who hate Windows, BSD is for people who love UN

Re: Test suite for session backend

2012-05-02 Thread Andrei Antoukh
ionStorage ) > and I would like to see if it passes the tests. > > JG > Hi! What you're programming, already implemented in mongoengine: https://github.com/MongoEngine/mongoengine/tree/master/mongoengine/django Andrei. -- http://twitter.com/niwibe http://www.freebsd.org/ http:

Re: Django UnicodeEncodeError in errorlist

2012-04-27 Thread Andrei
Hi Thomas, You seem read my email too quickly. I do use u'å'. In force_unicode() and lazy() Django runs str(u'å') which results in the exception(s). If it would use smart_str instead, the exception would not happen. Am I missing something? Andrei On Friday, April 27, 2012 9:11:19 AM UTC+2

Django UnicodeEncodeError in errorlist

2012-04-26 Thread Andrei
traceback: https://raw.github.com/gist/2499077/ba60cb752acdb429dd6c2814ffb24272037a367a/UnicodeEncodeError.txt Thanks, Andrei -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.

Re: Automatically add project path to sys.path for all handlers

2008-05-10 Thread Andrei
Dumpleton <[EMAIL PROTECTED]> > wrote: > > > > > On May 8, 10:07 pm, Andrei <[EMAIL PROTECTED]> wrote: > > > > I think it would be useful to add the path to the project > > > automatically to sys.path. I can't think of a situation in which I >

Automatically add project path to sys.path for all handlers

2008-05-08 Thread Andrei
I think it would be useful to add the path to the project automatically to sys.path. I can't think of a situation in which I wouldn't need to change the pythonpath and my project still would work. You need to have the applications in the path in order for the import to work and why shouldn't