Fwd: a problem when PATH_INFO == SCRIPT_NAME

2012-05-28 Thread heng zhao
-- Forwarded message -- From: heng zhao Date: Mon, May 28, 2012 at 3:09 PM Subject: Re: a problem when PATH_INFO == SCRIPT_NAME To: django-us...@googlegroups.com I read the comment in  https://code.djangoproject.com/ticket/8490,  I found someone met the

Re: Customizable Serialization check-in

2012-05-28 Thread Russell Keith-Magee
Hi Piotr; Apologies for the delay in responding to your updated API. On Tue, May 22, 2012 at 6:59 AM, Piotr Grabowski wrote: > I do some changes to my previous API: (https://gist.github.com/2597306 <- > change are included) > >  * which fields of object are default

Re: Python 3 port - now available on GitHub

2012-05-28 Thread Vinay Sajip
> The izip_longest definition was removed from itercompat in revision > b60b45a2a565 (which is fine, since it was only there for Python 2.5 > compatibility), but it means that the places that imported it need to > be changed to import it directly from py3 instead. Right, and I fixed that a

Re: Python 3 port - now available on GitHub

2012-05-28 Thread Vinay Sajip
On May 28, 8:24 pm, Anssi Kääriäinen wrote: > Is there any workaround for this? I need to install psycopg2 and cx- > oracle under python 3 to run the tests, and virtualenv is the only way > I know how to do this. However, this issue is causing a lot of noise > in the

Re: Python 3 port - now available on GitHub

2012-05-28 Thread Ian Kelly
On Sat, May 26, 2012 at 4:31 AM, Vinay Sajip wrote: > Anssi, > > Thanks very much for the feedback. > >> Both Oracle and MySQL fail to run because of this error (on both 2.7 >> and 3.2): >>   File "/home/akaariai/Programming/django/tests/django/db/backends/ >>

Re: RFC: More class based views, take two

2012-05-28 Thread Iván Raskovsky
Hi Andy, On Mon, May 28, 2012 at 7:30 AM, Andrew Ingram wrote: > Hi Iván, > > I'd temporarily given up on getting extra_views into Django because of > a blocking issue with pagination and formsets. > > Assuming a goal is to be able to build a new admin using class-based >

Re: Python 3 port - now available on GitHub

2012-05-28 Thread Anssi Kääriäinen
On May 26, 1:31 pm, Vinay Sajip wrote: > There are problems with some virtualenv versions, see this open > virtualenv issue: > > https://github.com/pypa/virtualenv/issues/194 > > The problem with importing tokenize.py in your traceback implies you > might be running into

Re: supported backends in core

2012-05-28 Thread Anssi Kääriäinen
On May 28, 3:14 pm, Chris Northwood wrote: > I believe PostGIS 2.0 isn't supported > yet:https://code.djangoproject.com/ticket/16455 I added some comments to that ticket. I am going to hijack this thread, and ask what is the status of Oracle and spatialite support?

Re: GeoDjango and requirement's versions

2012-05-28 Thread Chris Northwood
On 28 May 2012 07:50, Volker Froehlich wrote: > Hello! > > https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#requirements > lists GeoDjango's version requirements. > > Fedora ships newer versions of those libraries. I was wondering whether > any incompatibility

GeoDjango and requirement's versions

2012-05-28 Thread Volker Froehlich
Hello! https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#requirements lists GeoDjango's version requirements. Fedora ships newer versions of those libraries. I was wondering whether any incompatibility could exist: Fedora has: Proj 4.8 GDAL 1.9 I was also wondering about PostGIS

Re: RFC: More class based views, take two

2012-05-28 Thread Andrew Ingram
Hi Iván, I'd temporarily given up on getting extra_views into Django because of a blocking issue with pagination and formsets. Assuming a goal is to be able to build a new admin using class-based views, there is a prerequisite of being able to paginate, sort and filter on the querysets used for