Fwd: Unpacking in template loops

2007-01-04 Thread Brian Beck
This concerns an addition/patch idea, so I'm forwarding it here... -- Forwarded message -- From: Brian Beck Date: Wed, 03 Jan 2007 22:56:42 - Subject: Unpacking in template loops To: "Django users" Sorry if this has been brought up before, I tried searching... Would it be

Re: newforms: apply_changes

2007-01-04 Thread SmileyChris
Patch created: http://code.djangoproject.com/ticket/3232 On Dec 30 2006, 8:45 am, "SmileyChris" <[EMAIL PROTECTED]> wrote: On Dec 29, 6:57 pm, "Adrian Holovaty" <[EMAIL PROTECTED]> wrote: > This wouldn't work, because self.fields is a dictionary of newforms > Field objects, *not* database Fiel

Re: Oracle indexes and tablespaces

2007-01-04 Thread Matt Boersma
At the Django-Oracle sprint a couple months ago, we discussed having an optional "tablespace" parameter when defining models, but not a separate one for the index tablespace. We didn't get around to implementing it. In Oracle-land, your requirement is actually common, not unique. I think it's

Oracle indexes and tablespaces

2007-01-04 Thread vizcayno
Hi: Oracle DBA administration in my office has the policy to separate data in one tablespace and indexes into another tablespace so, when creating a new index, we must reference to a corresponding tablespace name. Will the new Oracle interface give us the possibility to indicate Django in which t

Re: Oracle indexes and tablespaces

2007-01-04 Thread Michael van der Westhuizen
Hi, On 1/4/07, vizcayno <[EMAIL PROTECTED]> wrote: Oracle DBA administration in my office has the policy to separate data in one tablespace and indexes into another tablespace so, when creating a new index, we must reference to a corresponding tablespace name. Will the new Oracle interface giv

Oracle indexes and tablespaces

2007-01-04 Thread vizcayno
Hi: Oracle DBA administration in my office has the policy to separate data in one tablespace and indexes into another tablespace so, when creating a new index, we must reference to a corresponding tablespace name. Will the new Oracle interface give us the possibility to indicate Django in which t

file uploading problem

2007-01-04 Thread [EMAIL PROTECTED]
hi all, we are newbies to django.trying to write a small file uploading program using django... But we stuck up with the 'upload_to' option in the 'FileField'... In our settings.py file MEDIA_ROOT='' & MEDIA_URL='' and in the FileField(upload_to='/home/')... but after uploading the file

Re: APPEND_SLASH alternative

2007-01-04 Thread Mihai Preda
I submitted a new middleware (tentativelly named SmartSlashMiddleware) which implements the described behavior, in ticket #3228. A couple of minor refactorings which are needed by this class are in ticket #3224. I hope somebody can review these patches, and commit them after eventual fixes. -