Error ORA-00918 (column ambiguously defined)

2006-12-26 Thread vizcayno
I am testing Oracle backend, revision 4248 of http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint After giving my user name and password to get into the admin page I get error ORA-00918. I isolated the SQL instruction and the error is in SELECT * : SELECT * FROM (SELECT "DJA

Re: Re: django build slave

2006-12-26 Thread Matthew Flanagan
On 27/12/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: On 10/16/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > I've now got a Solaris 10 sparc buildbot slave up and running at: > > http://www.python.org/dev/buildbot/community/all/ > > It is running the django trunk tests against both python

Re: newforms: feedback

2006-12-26 Thread SmileyChris
On Dec 27, 1:43 pm, limodou <[EMAIL PROTECTED]> wrote: I'd like a dict to hold the default values, so we can get then from a instance or somewhere easily, but not set each field a default value. for example, the new forms __init__.py can has a defaultvalues parameter is a dict. When it will be r

Re: newforms: feedback

2006-12-26 Thread limodou
there could be an initial_value parameter for Fields... I have implemented it as part of the default parameter, I am still waiting for any feedback, one of the solutions to that problem (see the post in this group [0]) would be to split the behaviour between initial_value -- something to display

Re: django build slave

2006-12-26 Thread Adrian Holovaty
On 10/16/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: I've now got a Solaris 10 sparc buildbot slave up and running at: http://www.python.org/dev/buildbot/community/all/ It is running the django trunk tests against both python 2.5 and python trunk using a sqlite3 memory database. Are any o

Re: Newforms: verbose_name

2006-12-26 Thread Adrian Holovaty
On 11/30/06, Karsu <[EMAIL PROTECTED]> wrote: That verbose_name attribute is very important if we think about Internationalization. Something like this: agent_phone = DateField(verbose_name=_("Agent's phone number")) For the record, newforms Field objects have a "label" hook now. Adrian --

Re: newforms: feedback

2006-12-26 Thread Honza Král
On 12/27/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: On 12/26/06, Honza Kr l <[EMAIL PROTECTED]> wrote: > I have > implemented it as part of the default parameter, I am still waiting > for any feedback Giving feedback for that is on my to-do list as I read through several hundred Google Grou

Re: newforms: feedback

2006-12-26 Thread Adrian Holovaty
On 12/26/06, Honza Král <[EMAIL PROTECTED]> wrote: I have implemented it as part of the default parameter, I am still waiting for any feedback Giving feedback for that is on my to-do list as I read through several hundred Google Groups messages...Thanks for your patience so far! Adrian -- Ad

Re: newforms feedback

2006-12-26 Thread Adrian Holovaty
On 12/19/06, Alan Green <[EMAIL PROTECTED]> wrote: 1. It would be nice if EmailField and URLField had max_length attributes. OK, I've added this in changeset [4241]. 2. When I tried to specify an empty label, with label='', I get the automatically generated label. Ah, I didn't anticipate p

Re: newforms error design

2006-12-26 Thread Adrian Holovaty
On 12/22/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: The problem is visual. I do not like to present end users so ugly looking errors. As temp. solution I have patched as_table() output, so it takes optional argument: errors_on_separate_row So, now, when I call it from my application, I c

Re: newforms: feedback

2006-12-26 Thread Honza Král
On 12/27/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: On 12/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > 2. Sometimes its very important for me to show some initial values in > form, on 'Add' screen. Typical > example, is a form, where customer can specify a different First,Last > Nam

Re: newforms: feedback

2006-12-26 Thread Adrian Holovaty
On 12/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: 2. Sometimes its very important for me to show some initial values in form, on 'Add' screen. Typical example, is a form, where customer can specify a different First,Last Name and Email address. If I pass data=xxx to form constructor, it

Re: newforms:

2006-12-26 Thread Adrian Holovaty
On 12/24/06, Thomas Steinacher <[EMAIL PROTECTED]> wrote: In newforms, there should be an easy way to render the radio fields separately in the template, because I'd like to insert other form fields between the radio inputs, e.g.: [o] Use existing one: [] [ ] Add a new one: []

Re: newforms feedback

2006-12-26 Thread RonnyPfannschmidt
Hi, i just took a look at newforms, and the Lack of Function/Method based Validators makes my work harder. I'd like to see an Interface where i could define any Number of Form-methods beginning with "clean_fieldname_" to define multiple custom Validators for some Fields, as well as more than one

<-- Heart Attacks -->

2006-12-26 Thread SONAM
*Heart Attacks* [image: Heart Attack Preventions] http://heart-attacks.50webs.com/ *Heart attack* * Heart Surgery* *Treatment* *Tests* * diagnosis For patients From medical authorities* ** *an Informative Spot* http://heart-attacks.50webs.com/ --~--~---

Re: django.contrib.formtools: High-level abstractions of common form tasks

2006-12-26 Thread Honza Král
Hello all, I got bored during the holiday, so I put together a simple implementation of django.contrib.formtools.wizard... Features: all data are kept in POST, nothing is stored on the server (this is simply not very good for file uploads, but should be OK for the majority) security_hash from