Re: Authentication using email

2008-08-18 Thread Jesús Del Carpio
Hello Antonio, I am in the exact situation as you mention, I used a snipped in http://www.djangosnippets.org/snippets/142/ But as you mention, it doesn't work with Admin. What we're doing is log in via the application and since we have the session, jump to the Admin url to be logged. I didn't

Re: Authentication using email

2008-08-18 Thread Julien Phalip
On Aug 19, 8:19 am, Antonio Ognio <[EMAIL PROTECTED]> wrote: > In the login form I ask the user to type an e-mail address and then I > wrap the view at django.contrib.auth.views.login with another view > that copies the POST QueryDict of the request in order to make it > mutable and have the

Re: Multiple weblogs or catecorized news

2008-08-18 Thread Tom Tobin
On Mon, Aug 18, 2008 at 7:36 PM, Tom Tobin <[EMAIL PROTECTED]> wrote: > On Mon, Aug 18, 2008 at 7:01 PM, tezro <[EMAIL PROTECTED]> wrote: >> >> Hi all. Got a question unsolved yet. > > Wrong list — you want django-users. django-developers is for > development *of* Django, not *using* Django. ^_^

Re: Multiple weblogs or catecorized news

2008-08-18 Thread Tom Tobin
On Mon, Aug 18, 2008 at 7:01 PM, tezro <[EMAIL PROTECTED]> wrote: > > Hi all. Got a question unsolved yet. Wrong list — you want django-users. django-developers is for development *of* Django, not *using* Django. ^_^ --~--~-~--~~~---~--~~ You received this

Multiple weblogs or catecorized news

2008-08-18 Thread tezro
Hi all. Got a question unsolved yet. I'm making a news site on Django. App has e.x. 2 models: Type and Element. "Type" is simply a definition of some type of news it handles, literally its source info: title, site link, type_name (as slug). "Element" handles the news elements with a foreign key

Re: You've broken Oracle

2008-08-18 Thread Malcolm Tredinnick
On Mon, 2008-08-18 at 17:20 -0300, Ramiro Morales wrote: > Matt, > > On Mon, Aug 18, 2008 at 4:04 PM, Matt Boersma <[EMAIL PROTECTED]> wrote: > > > > > Here is Leo Soto's buildbot, so you can see what I'm talking about: > > http://certenium.ingenium.cl:8080/hudson/job/django-trunk/ > > > >

Re: You've broken Oracle

2008-08-18 Thread Ramiro Morales
Matt, On Mon, Aug 18, 2008 at 4:04 PM, Matt Boersma <[EMAIL PROTECTED]> wrote: > > Here is Leo Soto's buildbot, so you can see what I'm talking about: > http://certenium.ingenium.cl:8080/hudson/job/django-trunk/ > > I'll do my best to fix some of these as time permits, but I'm hoping > others

Re: You've broken Oracle

2008-08-18 Thread Malcolm Tredinnick
On Mon, 2008-08-18 at 12:04 -0700, Matt Boersma wrote: > This is just a heads up since clearly some committers must be unaware: > checkins of the last two days have created 27 (yes, twenty-seven) new > test case failures for Oracle. I had been working on cleaning up the > existing few failures

You've broken Oracle

2008-08-18 Thread Matt Boersma
This is just a heads up since clearly some committers must be unaware: checkins of the last two days have created 27 (yes, twenty-seven) new test case failures for Oracle. I had been working on cleaning up the existing few failures for the Oracle backend, but unless those who actually committed

Re: Localizing digits

2008-08-18 Thread Malcolm Tredinnick
Hi Joost, On Mon, 2008-08-18 at 06:48 -0700, Joost Cassee wrote: [...] > As a starting point I created a template filter that does the > replacing [1] (only for Arabic and Farsi at the moment), and now I'm > looking for the correct place to integrate localized digits into the > Django

Re: Ability to delete contents of FileField and ImageField in admin

2008-08-18 Thread David Reynolds
On 18 Aug 2008, at 2:56 pm, Brian Rosner wrote: > Keep an eye on http://code.djangoproject.com/ticket/7048. Thanks, Brian. -- David Reynolds [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Exposing DeclarativeFieldsMetaclass

2008-08-18 Thread Marco Biasini
OK, thanks. I'm pretty new to python. So I was not completely familiar with the meaning of __all__. Thanks for clarifying. On Aug 18, 2008, at 3:51 PM, Patryk Zawadzki wrote: > > On Mon, Aug 18, 2008 at 2:45 PM, <[EMAIL PROTECTED]> > wrote: >> >> Hi, >> >> I've written a library on top of

Re: Ability to delete contents of FileField and ImageField in admin

2008-08-18 Thread Brian Rosner
On Mon, Aug 18, 2008 at 7:30 AM, David Reynolds <[EMAIL PROTECTED]> wrote: > I notice some discussion about this from a while back but as far as I > can tell it has all gone quiet. This may be because it has been > fixed, or possibly because it has been forgotten about. Can anyone > give me a

Re: Exposing DeclarativeFieldsMetaclass

2008-08-18 Thread Patryk Zawadzki
On Mon, Aug 18, 2008 at 2:45 PM, <[EMAIL PROTECTED]> wrote: > > Hi, > > I've written a library on top of django.form that adds support for > highly dynamic forms, including removing and adding inline forms after > page load-time. To do so, I subclassed forms.BaseForm and added the > needed

Localizing digits

2008-08-18 Thread Joost Cassee
Hi all, A Farsi-localized Django site I'm working on will need Farsi digits, so I'm looking for a solution for replacing digits with their localized counterparts. The GNU gettext has support for localized digits using the 'I' flag on numerical format variables, e.g. "%Id". Unfortunately this

Ability to delete contents of FileField and ImageField in admin

2008-08-18 Thread David Reynolds
Hi, I notice some discussion about this from a while back but as far as I can tell it has all gone quiet. This may be because it has been fixed, or possibly because it has been forgotten about. Can anyone give me a status update of whether or not it is possible to delete the contents of

Exposing DeclarativeFieldsMetaclass

2008-08-18 Thread Marco . Biasini
Hi, I've written a library on top of django.form that adds support for highly dynamic forms, including removing and adding inline forms after page load-time. To do so, I subclassed forms.BaseForm and added the needed functionality to it. My problem is ,that I'd like to support the same