Re: Default representation of a Form

2006-12-06 Thread Adrian Holovaty
On 11/30/06, Ivan Sagalaev <[EMAIL PROTECTED]> wrote: > A new Form class' default representation (that is goes out of `print f`) > is an HTML table. For those who cares about that proverbial 'semantics' > thing this looks wrong. From the practical point of view it's also not > very convenient sinc

Re: Re: Default representation of a Form

2006-12-06 Thread Adrian Holovaty
On 12/1/06, James Bennett <[EMAIL PROTECTED]> wrote: > So maybe an as_dl() method needs to go in? With as_dl(), how would error messages be displayed? Adrian -- Adrian Holovaty holovaty.com | djangoproject.com --~--~-~--~~~---~--~~ You received this message be

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

2006-12-06 Thread Adrian Holovaty
On 12/6/06, Brantley Harris <[EMAIL PROTECTED]> wrote: > Next on the list should be a Login form. What would you envision for that? Adrian -- Adrian Holovaty holovaty.com | djangoproject.com --~--~-~--~~~---~--~~ You received this message because you are subsc

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

2006-12-06 Thread Brantley Harris
Next on the list should be a Login form. Should be very simple. On 12/5/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 12/5/06, Ivan Sagalaev <[EMAIL PROTECTED]> wrote: > > Adrian Holovaty wrote: > > > What other sorts of things can we make abstractions for, > > > given a Form? > > > > Fi

Re: active tickets with patches

2006-12-06 Thread limodou
On 12/7/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > On 12/7/06, limodou <[EMAIL PROTECTED]> wrote: > > > > On 12/7/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > > > > > On 12/6/06, limodou <[EMAIL PROTECTED]> wrote: > > > > > > > > > [1] Note that 'non-trivial' doesn't just mea

Re: active tickets with patches

2006-12-06 Thread Russell Keith-Magee
On 12/7/06, limodou <[EMAIL PROTECTED]> wrote: > > On 12/7/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > > > On 12/6/06, limodou <[EMAIL PROTECTED]> wrote: > > > > > > > [1] Note that 'non-trivial' doesn't just mean 'only affects 1-2 lines > > > > of code' - it also includes the fact that

Re: active tickets with patches

2006-12-06 Thread limodou
On 12/7/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > On 12/6/06, limodou <[EMAIL PROTECTED]> wrote: > > > > > [1] Note that 'non-trivial' doesn't just mean 'only affects 1-2 lines > > > of code' - it also includes the fact that the lines that are being > > > modified don't have a signifi

Re: active tickets with patches

2006-12-06 Thread Lakin Wecker
Awesome. Thanks for the feedback Russell. I've been involved in bug-triage with Ubuntu and Gnome ... and what you're saying is right in line with what I would have done for them. I just wanted to be certain that I wasn't stepping on toes. Lakin On 12/6/06, Russell Keith-Magee <[EMAIL PROTECTED]

Re: Multipart email support

2006-12-06 Thread Russell Keith-Magee
On 12/6/06, Sergey Kirillov <[EMAIL PROTECTED]> wrote: > > URL: http://code.djangoproject.com/ticket/1541 > > Can someone integrate it into trunk? Read the thread on the ticket - Jacob has stated what is standing between the ticket and acceptance - documentation of the feature. Write some docume

Re: active tickets with patches

2006-12-06 Thread Russell Keith-Magee
On 12/6/06, limodou <[EMAIL PROTECTED]> wrote: > > > [1] Note that 'non-trivial' doesn't just mean 'only affects 1-2 lines > > of code' - it also includes the fact that the lines that are being > > modified don't have a significant follow-on effect on the overall > > design of Django. > > > All ab

Re: active tickets with patches

2006-12-06 Thread Russell Keith-Magee
On 12/6/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > A well triaged patch has the following characteristics: > One more thing that I forgot - if the patch adds a new feature, or a new option, there needs to be documentation of that feature (or at the very least, a decent first draft that

Re: New faster SelectBox.js

2006-12-06 Thread Jeremy Dunck
On 12/6/06, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > > nice gui widget, runs too slowly, and the browser will complain. > > if I had to use a multi-selection box with thousands of entries in it, > I'd probably run around and complain too. > The filter_interface makes it much less painful. :)

Re: New faster SelectBox.js

2006-12-06 Thread Fredrik Lundh
Graham King wrote: > If you have thousands of entries in a multiple select box in the > Django admin interface, the Javascript in SelectBox.js which makes the > nice gui widget, runs too slowly, and the browser will complain. if I had to use a multi-selection box with thousands of entries in

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

2006-12-06 Thread Rob Hudson
This looks pretty cool. I'm excited by the new forms development and hope to play with some of it soon. It seems a little out of place to me to instantiate an object in urls.py: (r'^post/$', MyFormPreview(MyForm)), (There was some thread talking about urls.py becoming more of a "controller

Re: New faster SelectBox.js

2006-12-06 Thread Jeremy Dunck
On 12/6/06, Graham King <[EMAIL PROTECTED]> wrote: > PS: > If you have lots of elements in your select box, and your object has a > FileField (meaning multipart encoding on your form), you might run into > an intermittent bug Saving, whereby in http.__init__ on this line: > > name_dict = parse_hea

Re: Help to translate

2006-12-06 Thread Ivan Aleman
> > Perhaps you want to use Django I18N mailing list for this kind of affairs. > > > > Wow, I didn't know, I'm sorry. But, not should be l10n? in any case, > where are they? > Look for the list on google groups. -- Iván Alemán --~--~-~--~~~---~--~~ You recei

Re: New faster SelectBox.js

2006-12-06 Thread graham_king
Now with a ticket: http://code.djangoproject.com/ticket/3099 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To uns

Does anyone has seen toscawidgets

2006-12-06 Thread limodou
http://www.toscawidgets.org/ I think toscawidgets does not only aim for widgets, but also aims for plugable components. Anyone has any ideas? -- I like python! UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad My Blog: http://www.donews.net/limodou --~--~-~--~~~-

New faster SelectBox.js

2006-12-06 Thread Graham King
Dear django-devs, If you have thousands of entries in a multiple select box in the Django admin interface, the Javascript in SelectBox.js which makes the nice gui widget, runs too slowly, and the browser will complain. We have re-written SelectBox.js (attached or at http://django.p

Re: Help to translate

2006-12-06 Thread mario__
> > Well, we could have the 'es' translation in 100% completed first and > > then start to think in another countries. The 'es' file is about 80% > > translated so if you let me I'll do my best to translate all the file. > > > > Where is this 'es' file perhaps you mean es_CL ? > In django sou

Re: Help to translate

2006-12-06 Thread mario__
> 2006/12/5, mario__ <[EMAIL PROTECTED]>: > > This is my little help > > http://media.forestal.udec.cl/django/ > > > > Perhaps you want to use Django I18N mailing list for this kind of affairs. > Wow, I didn't know, I'm sorry. But, not should be l10n? in any case, where are they? > --~--~--

Re: Session renewal: want a patch?

2006-12-06 Thread Ian Holsman
I like the idea. this way you can have a 'anonymous' user with the same session id for active users, and still have infrequent users removed from the session table. --Ian On 06/12/2006, at 5:15 PM, Adrian Holovaty wrote: > > On 11/8/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: >> Currently, ses

Re: another ticket: related-object window is missing query ...

2006-12-06 Thread patrick k.
thanks adrian, I´ll use the trac-system next time ... Am 06.12.2006 um 07:24 schrieb Adrian Holovaty: > > On 10/26/06, patrickk <[EMAIL PROTECTED]> wrote: >> when doing a search in the related-object window in the admin- >> interface and using the link "xxx total" after that search, the query >>