Re: [ANN] Django 1.4.2 and 1.3.4 remedy security issues

2012-10-17 Thread ptone
Seems to be there: http://pypi.python.org/pypi/Django/1.3.4 and pip installs it fine. pypi will always favor the latest version -Preston On Wednesday, October 17, 2012 4:37:12 PM UTC-7, Ross Poulton wrote: > > Django==1.3.4 doesn't appear to be on Pypi, is it likely to be there soon? > > On Th

Re: Deploying Django tutorial part 4, redirecting problem, apache error

2009-01-18 Thread ptone
In the tutorial, the form action in the poll_detail template is hardcoded to "/polls/..." So the browser is doing what's been explicitly asked of it, despite Django doing its best to deal gracefully with your mounting the app at /mysite. In my own newcomer approach, the way I found to work aroun

Re: ForeignKeys and select_related

2009-01-17 Thread ptone
As another person new to this, let me take a stab at this from a newcomers perspective. The result of the Torrent.objects.filter* statement returns a QuerySet object, which in a way is just a list of Torrent object instances, with a bunch of functions to further work with that list of instances (

Re: Using generic views with app_directories template loader

2008-12-14 Thread ptone
On Dec 13, 6:28 pm, Malcolm Tredinnick wrote: > On Sat, 2008-12-13 at 18:13 -0800, ptone wrote: > > [...] > > > So was modifying tutorial to use the app_directories loader > > > Had to take out the 'polls/' subdir part of the template path - that > >

Using generic views with app_directories template loader

2008-12-13 Thread ptone
OK, I'm new - worked my way through the tutorial, been reading some of the other docs. Really feel the best design principle should be to keep all app related stuff in the app directory (and feel that one day the tutorial docs could reflect this). So was modifying tutorial to use the app_directo