Hi,
Swallowed or reraised exception without a pointer to the real exception
are bad.
One point where I discovered this is here:
http://code.djangoproject.com/ticket/6623
Writing to stdout out is not a good solution. I would prefere to use the
python logging
module.
Thomas Güttler
J Meier
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 k
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 usern
Argh, thanks )
On Aug 19, 4:36 am, "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.
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. ^_^
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 messag
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
"
Hello everyone,
For my current project I'm replacing the username with the e-mail
address wherever the end-user sees it. I haven't had to implement a
different authentication backend since I'm saving the email address
with the @'s and dots replaced with underscores as the username field
for the d
Ignore me sorry i just read Jacobs comment.
What a shame, i really didn't want to be stuck with newforms
validation in 1.0
Never mind, keep up the good work :)
On Aug 18, 11:11 pm, tobydeh <[EMAIL PROTECTED]> wrote:
> Hi Honza,
>
> What's the story with this? Are you aiming for the 1.0 rele
Hi Honza,
What's the story with this? Are you aiming for the 1.0 release?
On Aug 12, 8:14 pm, "Honza Král" <[EMAIL PROTECTED]> wrote:
> Hey all,
> thanks for the feedback, I am still on vacation (haven't opened my
> notebook for days, what a feeling ;) ). I will be back in a couple of
> days
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/
> >
> > I'll
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 wi
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 f
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 t
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 translation
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
"Dj
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 d
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 stat
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 functi
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 wor
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 a
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 de
22 matches
Mail list logo