Posts Tagged ‘ preferred ’

Django tips: Tech Model: Jython Compatable Schema migration

March 23, 2010
By

Django tips : Tech Model. Tuesday, March 23, 2010. Jython Compatable Schema migration. Hi to all. I am using Jython 2.5.1 and Django 1.1 ..plz help which is the compatable schema migration. Thanks in advance ...

Read more »

Django tips: Tech Model: Re: Newbie question: value inequality in …

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Re: Newbie question: value inequality in Manager Method? To expand on DR's answer slightly, the '=' in 'filter(crcWaarde=0)' is not a comparison operator. All arguments to filter need to ...

Read more »

Django tips: Tech Model: Re: Signals in Django

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Re: Signals in Django. > Is it possible to get real signals into Django processes? I have > several processes that collect data for analysis, so they run a long > time normally. ...

Read more »

Django tips: Tech Model: Signals in Django

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Signals in Django. Hi,. Is it possible to get real signals into Django processes? I have several processes that collect data for analysis, so they run a long time normally. ...

Read more »

Django tips: Tech Model: Re: Django and Oracle Cartridges

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Re: Django and Oracle Cartridges. On Fri, Mar 19, 2010 at 11:35 AM, huw_at1 wrote: > I guess what I am asking is - can Django handle BLOBs in its models? ...

Read more »

Django tips: Tech Model: Re: login() and 'unicode' object is not …

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Re: login() and 'unicode' object is not callable error. I think what's happening is you are assigning a string to the 'login' variable: login = request.POST So when you get to: ...

Read more »

Django tips: Tech Model: Re: UnicodeDecodeError Solution?

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Re: UnicodeDecodeError Solution? I had a similar problem and I used two approaches. First I used Django's smart_str: from django.utils.encoding import smart_str text = smart_str(text) ...

Read more »

Django tips: Tech Model: login() and 'unicode' object is not …

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. login() and 'unicode' object is not callable error. Hello,. can somebody help me with this error? I am a Django beginner but I don't see any errors in the code: Environment: ...

Read more »

Django tips: Tech Model: Re: An odd issue with loading /media/ files

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Re: An odd issue with loading /media/ files. Might something be being entity quoted in the template rendering (some string not marked as "safe")? Grab the page with curl -O or comparable ...

Read more »

Django tips: Tech Model: Re: django rendering

March 19, 2010
By

Django tips : Tech Model. Friday, March 19, 2010. Re: django rendering. Look at the way contexts are implemented. There are actually a chain of mappings, and if a variable isn't found in the mapping at the head of the ...

Read more »