Re: #4460 - Running individual tests in a test suite

2007-07-24 Thread Chris Heisel
Can't wait to see it! On 7/24/07, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote: > > On 7/24/07, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > I've just uploaded a patch to #4460 which adds the ability to start > > individual tests or test cases from a test suite. > > Woo! > > > Are there any

Re: Best Practices to Make your Apps Portable

2007-07-24 Thread Simon G.
There is a wiki page on this sort of thing: http://code.djangoproject.com/wiki/DosAndDontsForApplicationWriters ...but it hasn't been updated in a while. If anyone comes up with useful things, could you (or them) update that page? Thanks, Simon On Jul 25, 11:41 am, Sebastian Macias <[EMAIL

Re: wiki coordinator position

2007-07-24 Thread Simon G.
I can help too - I generally keep a close eye on the timeline to monitor any changes (i.e. spam) but it'd be great if there was more activity in the wiki and a few people who'd keep things in check. Is it easy to give out permission to delete attachments (often the spam consists of attaching

Best Practices to Make your Apps Portable

2007-07-24 Thread Sebastian Macias
I posted this on django-users so I won't post the same here but I thought the actual framework developers might have excellent feedback on this. This is just an invitation to participate in django-users thread. I'm sure this will be very useful to many people moving to django from ruby on rails

Re: wiki coordinator position

2007-07-24 Thread Adrian Holovaty
On 7/24/07, Scott Paul Robertson <[EMAIL PROTECTED]> wrote: > Since I'm throwing out the idea, I'm willing to do this. Is any one else > interested? This would be fantastic. It gets a big +1 from me. Adrian -- Adrian Holovaty holovaty.com | djangoproject.com

Re: wiki coordinator position

2007-07-24 Thread Luke Plant
On Tuesday 24 July 2007 21:26:10 Scott Paul Robertson wrote: > So I've been tossing this idea around in my head for a while now, and > wanted to see what everyone thought of the idea. > > Basically I think the wiki could use someone to work on it as > something akin to an editor. Jacob put it

wiki coordinator position

2007-07-24 Thread Scott Paul Robertson
So I've been tossing this idea around in my head for a while now, and wanted to see what everyone thought of the idea. Basically I think the wiki could use someone to work on it as something akin to an editor. Jacob put it well when I mentioned this to him yesterday, that the wiki could use a

Re: #4460 - Running individual tests in a test suite

2007-07-24 Thread Jacob Kaplan-Moss
On 7/24/07, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > I've just uploaded a patch to #4460 which adds the ability to start > individual tests or test cases from a test suite. Woo! > Are there any objections to making this change? None whatsoever -- I can't wait to use this. Jacob

Re: #3297 (newforms FileField/ImageField) - Feedback requested

2007-07-24 Thread [EMAIL PROTECTED]
That is the exact purpose for the changes I made to this patch. It will allow you to subclass and override parts of FileField to store using other values in the model. On Jul 24, 7:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm not using new forms... but wanted to ask about this

Re: #3297 (newforms FileField/ImageField) - Feedback requested

2007-07-24 Thread [EMAIL PROTECTED]
I'm not using new forms... but wanted to ask about this since it was one of the main reasons I didn't use FileField in my current code base... and thought others might have a similar need going forward. When I upload files, I'm required to rename them and then move them to different directories.

Re: #4460 - Running individual tests in a test suite

2007-07-24 Thread Ivan Sagalaev
Russell Keith-Magee wrote: > Hi all, > > I've just uploaded a patch to #4460 which adds the ability to start > individual tests or test cases from a test suite. Wow, this is handy! Looking forward for commit! --~--~-~--~~~---~--~~ You received this message

#4460 - Running individual tests in a test suite

2007-07-24 Thread Russell Keith-Magee
Hi all, I've just uploaded a patch to #4460 which adds the ability to start individual tests or test cases from a test suite. Using this patch, ./manage.py test and ./runtests.py gain the ability to do the following: # run all tests in the project ./manage.py test # run all tests in myapp