Re: Re: Ticket spam

2006-10-24 Thread Matthew Flanagan
Hi Adrian, On 25/10/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 10/24/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > It appears that some little inbred turd has decided that the ticket > > submission page is a great place to drop their little nuggets of > > spammy goodness,

Re: Ticket spam

2006-10-24 Thread Adrian Holovaty
On 10/24/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > It appears that some little inbred turd has decided that the ticket > submission page is a great place to drop their little nuggets of > spammy goodness, and as far as I can make out Askimet isn't blocking > them. > > Is there anything

Ticket spam

2006-10-24 Thread Russell Keith-Magee
Hi all, It appears that some little inbred turd has decided that the ticket submission page is a great place to drop their little nuggets of spammy goodness, and as far as I can make out Askimet isn't blocking them. Is there anything we can do to remove these twits from the gene pool - or at

Re: Re: handlers.modpython.is_secure -- why not use self._req.is_https() ?

2006-10-24 Thread Adrian Holovaty
On 10/24/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > Hmm... this appears to be new in mod_python 3.2.10. I don't see it in > the 3.2.8 docs. > > http://www.modpython.org/live/mod_python-3.2.10/doc-html/pyapi-mprequest-meth.html >

Re: Feature request: filter_interface = model.HORIZONTAL for ManyToOne relationships

2006-10-24 Thread Malcolm Tredinnick
On Wed, 2006-10-25 at 08:57 +0800, Russell Keith-Magee wrote: > On 10/25/06, Aaron Torres <[EMAIL PROTECTED]> wrote: > > > Is there any way we can create a similar setup for foreign keys? > > Not using the existing Django code, no. > > > I have > > a few ideas about how this would work, but

Re: embedding views question

2006-10-24 Thread Malcolm Tredinnick
On Tue, 2006-10-24 at 00:48 -0700, Rob Slotboom wrote: > Imagine a website serving polls and messages. > Is it possible to create a homepage listing both? This is really a question for the django-users list. This list is more for people working on the Django core itself. > If yes: > Can the

Re: asynchronous validation

2006-10-24 Thread Malcolm Tredinnick
On Mon, 2006-10-23 at 17:38 +0200, Michael Radziej wrote: > Hi, > > I grew myself a way to output warnings in a similar way as > validations work, and I also use this to check domain names, > giving an error when the name does not resolve (this is work for > an ISP ...) For the purpose of

Re: Template engine too tightly tied to settings module.. (specifically TEMPLATE_DIRS)

2006-10-24 Thread Malcolm Tredinnick
On Mon, 2006-10-23 at 09:10 +, Le Roux Bodenstein wrote: > I'm trying to do some form of skinning with Django's templating engine. > Without going into too much detail, my project is kindof a service that > powers multiple sites. Each site can have a skin inside a site-specific > folder.

DecimalField

2006-10-24 Thread Jason Davies
Hi, I am working on an application which deals with monetary values and it *really* needs proper support for decimal, fixed-point (as opposed to floating-point) values. See: http://code.djangoproject.com/ticket/2365 Could someone take a look and get this patch approved? I think we should just

Feature request: filter_interface = model.HORIZONTAL for ManyToOne relationships

2006-10-24 Thread Aaron Torres
Hello everyone, I've been watching Django's development for a long time and I'm a huge fan of what you've all done! I've been developing software for school and work over the past 4 years using python. Up until this past month, I've read about Django, but I've never really delved into developing

Re: Re: handlers.modpython.is_secure -- why not use self._req.is_https() ?

2006-10-24 Thread Joseph Kocherhans
On 10/24/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > > On 10/24/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > > In other words, I hope I haven't talked you into breaking trunk. :-/ > > > > Relevant (or so I thought) doc: >

Re: handlers.modpython.is_secure -- why not use self._req.is_https() ?

2006-10-24 Thread Jeremy Dunck
On 10/24/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > In other words, I hope I haven't talked you into breaking trunk. :-/ > Relevant (or so I thought) doc: http://www.modpython.org/live/current/doc-html/pyapi-mprequest-meth.html --~--~-~--~~~---~--~~ You

Re: embedding views question

2006-10-24 Thread Aidas Bendoraitis
Hello Rob!Yes. To implment that you can use either a custom view or a generic view and a custom template tag.But at first you should really read and get used to official Django tutorial and other documentation: http://www.djangoproject.com/documentation/Good luck!Aidas Bendoraitis [aka Archatas]On

embedding views question

2006-10-24 Thread Rob Slotboom
Imagine a website serving polls and messages. Is it possible to create a homepage listing both? If yes: Can the views (def index_on_home()) live in the appfolders? How to call the views on the homepage? Or is there a better approach? Thanks