+++spam+++

2007-05-22 Thread simonbun
Maybe it's a good idea to human-filter these things out? Feel free to pitch in :-) On May 20, 9:30 pm, "Moona Naeem" <[EMAIL PROTECTED]> wrote: > "Legitimate" Online Paid Survey Scams Revealed Part 1 > > Are you looking for scam-free and legitimate online paid surveys, free > membership online pa

+++spam+++

2007-05-22 Thread simonbun
Maybe it's a good idea to human-filter these things out? Feel free to pitch in :-) On May 21, 11:03 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Meet Singles In Your Area > Arabs, American, Russian, Asian, Filipino, French, German, Indian, > Italian, Lesbians Singles From All Over The Wor

+++spam+++

2007-05-22 Thread simonbun
Maybe it's a good idea to human-filter these things out? Feel free to pitch in :-) On May 21, 9:10 pm, "Moona Naeem" <[EMAIL PROTECTED]> wrote: > Is Mark Warren's Ultimate Wealth Package Worth the Money? > > You could go take a college course in marketing or entrepreneurship at > your local unive

Re: Patch for read-only models

2007-05-22 Thread Ian Holsman
Hi Björn, if you want a fully read only database, you will need to modify the session handling app so you write your session data to somewhere else. I have a old patch somewhere which put the stuff into memcached which I can try to find if you are interested regards Ian Björn Patrick Swift wr

Re: ticket feedback process

2007-05-22 Thread elaatifi
Thank you for your answer, I understands the fact that the amount of work is simply immense. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-dev

Re: ticket feedback process

2007-05-22 Thread Jacob Kaplan-Moss
On 5/22/07, elaatifi <[EMAIL PROTECTED]> wrote: > And what can we do if the bug or the feature needs a design decision ? Same thing; as long as you're respectful of the fact that we're all volunteers, a request for one of the core devs to look at a ticket isn't in any way out of line. However, *

Re: ticket feedback process

2007-05-22 Thread elaatifi
And what can we do if the bug or the feature needs a design decision ? On May 22, 4:21 am, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > On 5/21/07, Casey T. Deccio <[EMAIL PROTECTED]> wrote: > > > I was wondering what is the most appropriate way to get feedback on > > tickets that have been s

Breaking CAPTCHAs Without Using OCR

2007-05-22 Thread Moona Naeem
Breaking CAPTCHAs Without Using OCR This article details a method I have discovered to bypass CAPTCHA security, without having to use Optical Character Recognition software. http://2site.com/ibfaem Is Mark Warren's Ultimate Wealth Package Worth the Money? You could go take a college course in

Re: newforms issues

2007-05-22 Thread Malcolm Tredinnick
On Tue, 2007-05-22 at 21:52 +, SmileyChris wrote: > > #3896 - pass value to field specific clean function [2] > > How expensive is a try/except? > > Call clean_foo passing the value as a parameter and if that fails, use > the old method (setting the value in cleaned_data, then calling > clea

Re: Progress, status, and opinions of #2070

2007-05-22 Thread Malcolm Tredinnick
On Tue, 2007-05-22 at 14:58 -0500, Jacob Kaplan-Moss wrote: > Hey Mike -- > > This looks really, really nice. I want to check this in but I can't > personally look at it ATM. Can a few people on this list with a lot of > experience audit the patch and bang on it as much as possible? If I > can ge

Re: newforms issues

2007-05-22 Thread SmileyChris
> #3896 - pass value to field specific clean function [2] How expensive is a try/except? Call clean_foo passing the value as a parameter and if that fails, use the old method (setting the value in cleaned_data, then calling clean_foo with no parameters) Seems backwards compatible to me. --~--

Re: Progress, status, and opinions of #2070

2007-05-22 Thread Jacob Kaplan-Moss
Hey Mike -- This looks really, really nice. I want to check this in but I can't personally look at it ATM. Can a few people on this list with a lot of experience audit the patch and bang on it as much as possible? If I can get some +1s from the community on this I'll be able to test it much more

Progress, status, and opinions of #2070

2007-05-22 Thread Mike Axiak
Hey Everyone, I've just posted what I believe is the cleanest version of ticket #2070 (that's file streaming uploads) yet. I wanted to break down what it does and ask the developers their opinions of each component. #2070 does everything in the core of django (no middleware, etc). There are a fe

Patch for read-only models

2007-05-22 Thread Björn Patrick Swift
I have recently started playing with django and am very intrigued. Our usage is to have django serve as a frontend for our database cluster. To do this I am using django.contrib.admin and extending it when necessary. One of the first additions was adding a read_only option to Model's Meta class. H

Re: problems serving PDF file from view

2007-05-22 Thread Mike Axiak
I've created #4148 a while ago. There are two distinct IE bugs it solves: 1) Vary headers set for files that get opened in embedded applications (MS Help, Acrobat, etc). 2) Any sort of no-caching headers for anything with content- disposition. IE's stance on this is that if you specify that some

Re: problems serving PDF file from view

2007-05-22 Thread Mike Axiak
On May 21, 2:55 am, Curtis <[EMAIL PROTECTED]> wrote: > An alternate solution: > > response = HttpResponse(pdf, "application/pdf") > response['Content-Disposition'] = 'attachment; filename=%s.pdf' % > filename > return response > > which works for me. I'd be interested to know if it

Re: newforms issues

2007-05-22 Thread David Danier
>> #3718 - newforms.Form.clean should have access to field errors [1] Would like to see this one, too. Some validation I do currently is based on the not-in-cleaned_data-trick, but this is IMHO not very clean. And may be due to other reasons. For example if the field-clean-method you want to vali

Re: newforms issues

2007-05-22 Thread Russell Keith-Magee
On 5/22/07, Gary Wilson <[EMAIL PROTECTED]> wrote: > > I would like to request comments/suggestions about a few patches I have > submitted recently for the newforms library that solve some issues that > I encountered during the development of some newforms. > > #3718 - newforms.Form.clean should h