Problem / misunderstanding / limitation in admin interface? (0.95)

2006-09-06 Thread Scott Finnie
Have created model (below) which doesn't report any errors in admin, but unfortunately doesn't work either. Behaviour as follows: 1. Create instance of Server in admin; 2. Populate core server fields; 3. Create a couple of Product Deployments; 4. Save On returning to edit the server, the core

Re: PyISAPIe + 0.91: some backporting help required...

2006-08-17 Thread Scott Finnie
Thanks Jeremy. Time to look for plan B... Jeremy Dunck wrote: > On 8/17/06, Scott Finnie <[EMAIL PROTECTED]> wrote: >> from django.utils import httpwrappers as http >> #from ??? import signals >> #from ??? import dispatcher > > > The m

Re: PyISAPIe + 0.91: some backporting help required...

2006-08-17 Thread Scott Finnie
Two reasons, one (I think) decent: 1. App is currently written to 0.91 and I want to get some feedback (that's the indecent answer) 2. My model makes extensive use of subtyping which isn't supported in 0.95 (hopefully the decent one...) Jeremy Dunck wrote: > On 8/17/06, Scott F

PyISAPIe + 0.91: some backporting help required...

2006-08-17 Thread Scott Finnie
Hello all, Trying to get above sorted to run django with IIS (per http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer). However, the interface module (pyisapie.py) is written to post-MR refactored APIs; would be grateful for a pointer on where they were located in 0.91. Her

Re: OT: dynamically generated files?

2006-06-22 Thread Scott Finnie
Just until they've gone in the response. - Scoot. Jay Parlar wrote: > On 6/22/06, Scott Finnie <[EMAIL PROTECTED]> wrote: >> Realise this isn't django specific, would however appreciate advice. >> >> I have a django app that dynamically generates image fi

OT: dynamically generated files?

2006-06-22 Thread Scott Finnie
Realise this isn't django specific, would however appreciate advice. I have a django app that dynamically generates image files based on user queries. During dev I use the same filename every time (so it gets overwritten for each request) however that won't do for production. My proposed solu

Advice on meta applications

2006-05-30 Thread Scott Finnie
Looking for some advice on how to handle my little problem, all help gratefully appreciated. Apologies it's quite long. Story thus: I need to build an application for holding a simple inventory of components in the IT estate: servers, applications, network switches, etc. They all have a cor

[newbie] foreign key dereference issue

2006-04-11 Thread Scott Finnie
Apologies if this is simple, but... I have a simple 2 object app with which I'm having what appears to be a foreign key lookup problem. --- archie.py class Vendor(meta.Model): class META: admin=meta.Admin() name = meta.CharField("Name", maxlength=100