Re: Buildbot?

2007-04-18 Thread Matthew Flanagan
On 4/19/07, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote: > > On 4/18/07, Jonathan Daugherty <[EMAIL PROTECTED]> wrote: > > Do you have a resident buildbot? That could be used to run the > > regression tests on (all pythons) x (all databases). It would still > > take time, of course, but it could

Re: Google Summer of Code 2007

2007-02-26 Thread Matthew Flanagan
On 2/27/07, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > > On 2/26/07, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > > > Specifically, I was referring to the has_*_permission() stuff in the > > new ModelAdmin class. Which is new functionality aside fr

Re: Google Summer of Code 2007

2007-02-26 Thread Matthew Flanagan
On 2/27/07, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > On 2/27/07, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > > > On 2/27/07, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > > > > > I might have missed something in the discu

Re: Google Summer of Code 2007

2007-02-26 Thread Matthew Flanagan
On 2/27/07, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > On 2/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > On Feb 26, 3:15 pm, "Matthew Flanagan" <[EMAIL PROTECTED]> wrote: > > > Add to that > > > > > >

Re: Google Summer of Code 2007

2007-02-26 Thread Matthew Flanagan
On 2/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I be evil about proposals... > > 1. finish this http://code.djangoproject.com/wiki/TextIndexingAbstractionLayer > and get i merged to trunk > 2. finish http://code.djangoproject.com/wiki/FullHistory and get it > merged to trunk ;) > Add

Re: Django Builbot (was: dbsync for mysql lacks...)

2007-01-31 Thread Matthew Flanagan
On 1/31/07, Marc Fargas Esteve <[EMAIL PROTECTED]> wrote: > > Hi, > inline > > On 1/31/07, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > The Django buildbot slave is currently running inside a Solaris 10 > > zone so it is virtualized...kind of. > > &

Re: Django Builbot (was: dbsync for mysql lacks...)

2007-01-30 Thread Matthew Flanagan
On 31/01/07, Marc Fargas Esteve <[EMAIL PROTECTED]> wrote: > > Hi Matthew > > On 1/30/07, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > I run the django pybot. It wouldn't be difficult to add other backends > > to the tests and is something I've b

Re: Django Builbot (was: dbsync for mysql lacks...)

2007-01-30 Thread Matthew Flanagan
On 31/01/07, Marc Fargas Esteve <[EMAIL PROTECTED]> wrote: > > On 1/30/07, Michael Radziej <[EMAIL PROTECTED]> wrote: > > Marc Fargas Esteve: > > That sounds interesting. (Did I mention that it should run python > > versions 2.3, 2.4 and 2.5? ;-) > > As Matthew said this could be done with separat

Re: Django Builbot (was: dbsync for mysql lacks...)

2007-01-30 Thread Matthew Flanagan
On 30/01/07, Marc Fargas Esteve <[EMAIL PROTECTED]> wrote: > > Hi, > inline > > On 1/30/07, Michael Radziej <[EMAIL PROTECTED]> wrote: > [..] > > I'm now dreaming of a test service that would automatically run the > > testsuite for a given patch (or multiple patches) with all supported > > databas

Re: Critical ticket: can cause data loss

2007-01-29 Thread Matthew Flanagan
On 30/01/07, James Bennett <[EMAIL PROTECTED]> wrote: > > On 1/29/07, Ned Batchelder <[EMAIL PROTECTED]> wrote: > > I don't know that you need to make a release for this fix, but I think you > > should alert people to it. There is a mailing list for announcing releases > > and security issues, r

Re: specifying newforms-admin options

2007-01-21 Thread Matthew Flanagan
On 22/01/07, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 1/20/07, Honza Král <[EMAIL PROTECTED]> wrote: > > why not create a function to do that for you.. > > urls.py is after all a python module, so you could just introduce a function > > > > urlpatterns = admin_urls_for_model( > > MyMode

django pybot filtered rss feed

2007-01-15 Thread Matthew Flanagan
Hi, I've just updated the RSS feed code to allow you to filter which buildbot builders you want in the feed. To only see the django build failures you can now point your favorite RSS reader at: http://www.python.org/dev/buildbot/community/all/rss?show=sparc%20Solaris%2010%20trunk&show=sparc%20S

Re: Re: optional arg. 'description' for widget?

2006-12-30 Thread Matthew Flanagan
On 31/12/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: On 12/30/06, Alex Koval <[EMAIL PROTECTED]> wrote: > I found that pretty often I need a "description" being passed to field to > display. I already subclassed > a few widgets to get 'description' argument, and display it where needed. > Fo

Re: Re: django build slave

2006-12-26 Thread Matthew Flanagan
On 27/12/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: On 10/16/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > I've now got a Solaris 10 sparc buildbot slave up and running at: > > http://www.python.org/dev/buildbot/community/all/ > > It is running the

Re: Re: #2333 Pt 3 - Test system fixture data

2006-12-19 Thread Matthew Flanagan
On 20/12/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: On 12/20/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > Hi Russell, > > I've been using Hugo/Georg's stuff.testing [1] framework for quite a > while and some of the things I like about it ar

Re: #2333 Pt 3 - Test system fixture data

2006-12-19 Thread Matthew Flanagan
Hi Russell, I've been using Hugo/Georg's stuff.testing [1] framework for quite a while and some of the things I like about it are: a. I can have fixtures located anywhere in my python path and load them. I have project wide fixtures that I use for testing some of my apps without having to dupli

Re: Branch Merges?

2006-11-06 Thread Matthew Flanagan
On 07/11/06, Gábor Farkas <[EMAIL PROTECTED]> wrote: > > Jay Parlar wrote: > > On 11/6/06, David Blewett <[EMAIL PROTECTED]> wrote: > >> I would like to suggest that the branches that are felt to be complete > >> sans testing be merged into a single branch. I am anxiously awaiting > >> several dif

changeset 3960 broke something with DateTimeField's

2006-11-05 Thread Matthew Flanagan
Hi, I'm using postgres DB with the following model: class Contact(models.Model): """ Contact details for a person, role, organization or org unit. """ name = models.CharField(maxlength=128, db_index=True) organisation = models.CharField(maxlength=128, blank=True) departme

Re: schema-evolution: postgres introspection bug

2006-11-01 Thread Matthew Flanagan
On 01/11/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > Hi, > > I've been testing out the schema-evolution branch again and hit the > same issue I was having before where it was trying to evolve a model > that hadn't changed. Here are my minimal test case mo

schema-evolution: postgres introspection bug

2006-10-31 Thread Matthew Flanagan
Hi, I've been testing out the schema-evolution branch again and hit the same issue I was having before where it was trying to evolve a model that hadn't changed. Here are my minimal test case models for this issue: from django.db import models class FooType(models.Model): name = models.Char

Re: Re: schema-evolution: status?

2006-10-26 Thread Matthew Flanagan
Hi Derek, To do the merge you need to look at the last revision that you merged from trunk or in your case when your branch was created. In this case it is revision 3332. So to merge the latest trunk you need to: cd django_tmp_src svn merge -r 3332:HEAD http://code.djangoproject.com/svn/django/t

Re: schema-evolution: status?

2006-10-25 Thread Matthew Flanagan
gresql_psycopg2 backend. > > vic > > On 9/14/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > > > postgresql > > > > On 14/09/06, Derek Anderson <[EMAIL PROTECTED]> wrote: > > > > > > which backend are you using? > > > >

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, and

django build slave

2006-10-16 Thread Matthew Flanagan
Hi, I've now got a Solaris 10 sparc buildbot slave up and running at: http://www.python.org/dev/buildbot/community/all/ It is running the django trunk tests against both python 2.5 and python trunk using a sqlite3 memory database. Are any of the core developers interested in receiving test fai

Re: Call for testing: New setup.py

2006-10-16 Thread Matthew Flanagan
Hi Adrian, On 17/10/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > Hi all, > > I've refactored Django's setup.py so that it uses the plain Python > distutils installation method rather than ez_setup/setuptools. This > means it no longer requires an Internet connection to install Django. > Hoo

Re: attribute__isnull=True vs attribute__exact=None (Ticket 2737)

2006-10-11 Thread Matthew Flanagan
Hi Russ, Is http://code.djangoproject.com/ticket/2400 is related to this as well? On 12/10/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > Hi All, > > I've hit upon an interesting bug, which is related to ticket 2737 > (currently listed as a feature request, but I think there is an > argu

Re: pybots.org

2006-09-20 Thread Matthew Flanagan
Bad form to reply to myself but... On 20/09/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > Hi, > > I've noticed a couple of tickets with patches coming in for python > 2.5. As I mentioned in this thread [1], it might be useful for the > django project to get a buildb

pybots.org

2006-09-19 Thread Matthew Flanagan
Hi, I've noticed a couple of tickets with patches coming in for python 2.5. As I mentioned in this thread [1], it might be useful for the django project to get a buildbot builder or two going on a few of the slaves at http://pybots.org. These can be used to test django against python 2.5 and 2.6

Re: schema-evolution: status?

2006-09-13 Thread Matthew Flanagan
postgresql On 14/09/06, Derek Anderson <[EMAIL PROTECTED]> wrote: > > which backend are you using? > > Matthew Flanagan wrote: > > Derek, > > > > I have manually merged the trunk into my local working copy of the > > schema-evolution branch and started

Re: schema-evolution: status?

2006-09-13 Thread Matthew Flanagan
Derek, I have manually merged the trunk into my local working copy of the schema-evolution branch and started playing with it. I wanted to question the SQL "sqlevolve" is outputting. I have this model in an application called "asset": class Interface(models.Model): name = models.CharField(ma

Re: Proposal: Forms and BoundForms

2006-09-13 Thread Matthew Flanagan
On 14/09/06, Brantley Harris <[EMAIL PROTECTED]> wrote: > > On 9/12/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > > > Hence, with this new API, the above view code would be written like this: > > > > form = ContactForm() > > if request.method == 'POST' and form.is_valid(**request.POST

Re: Re: name of test database

2006-09-03 Thread Matthew Flanagan
On 04/09/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > > On 9/4/06, Ned Batchelder <[EMAIL PROTECTED]> wrote: > > > > > > Partly on this topic: I would very much like to use sqlite in-memory > databases for testing, even though I use MySQL for deployment. The speed > difference is 10x.

Re: schema-evolution: status?

2006-08-31 Thread Matthew Flanagan
l just say that I haven't actually try to "evolve" any schema yet, I'm just trying to get my project up and running on your branch. regards matthew > > Matthew Flanagan wrote: > > Derek, > > > > On 31/08/06, Derek Anderson <[EMAIL PROTECTED]>

Re: schema-evolution: status?

2006-08-30 Thread Matthew Flanagan
king at your branch it seems it may benefit from a merge from a more recent revision of the trunk or atleast with the 0.95 release (See my message below re: the User.is_authenticated() missing from your branch) Alternatively I'm on #django if we can manage to hook up there. matthew > >

schema-evolution: status?

2006-08-29 Thread Matthew Flanagan
I had some to make some changes to some models today that would result in schema changes so I decided to give the schema-evolution branch a go. I didn't get far as the script I use to load sample data into my applications failed [1] and trying to manually add data via my public CRUD views failed

Bump #708: search on IPAddressField with postgres backend is broken

2006-08-29 Thread Matthew Flanagan
Hi, I hit this bug 10 months ago when I first started using Django and it still hasn't been addressed. As per my comments in the ticket I feel that the use of the inet type in the postgresql backend is a special case that is the root of the issue. Using a char(15) like every other backend would f

Re: django and LDAP support

2006-08-09 Thread Matthew Flanagan
On 10/08/06, Scott Paul Robertson <[EMAIL PROTECTED]> wrote: > On Wed, Aug 09, 2006 at 08:00:31PM -0700, Gary Wilson wrote: > > > Scathing comments are encouraged. > > > > line 68 of patch: > > if not username and password is not Null: # we need a user/pass > > Should be None

ticket #1891 review? distinct=True no longer works in limit_choices_to

2006-07-17 Thread Matthew Flanagan
Hi, This ticket #1891 [1] has been outstanding for quite a while. I'm in the process of rolling out a large application that would really benefit from this being fixed. Is anyone able to look at it? Malcolm, did you ever get around to proving your idea in your last comment in the ticket? [1] h

Re: multi-auth branch... time to merge?

2006-05-30 Thread Matthew Flanagan
On 5/31/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > > Has anyone tested out the multi-auth branch yet? I haven't heard > anything, so either people aren't using it, or it's working well and > the docs are good enough. Personally, I've been using it with both > external SQL and LDAP backends

Re: Request of Ajax Status

2006-05-09 Thread Matthew Flanagan
On 5/10/06, Bryan <[EMAIL PROTECTED]> wrote: > > I understand that this is not a priority for Django, but I would like > to know if anyone is working on Ajax support in Django. I read through > the proposals and was wondering if I could do anything to help with one > of the layers (preferably wit

Re: magic-removal merge status

2006-04-29 Thread Matthew Flanagan
Are you going to tag the pre-merge revision of the trunk? On 4/30/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 4/28/06, Ken Kennedy <[EMAIL PROTECTED]> wrote: > > WRT migrating my older app, though...ick. Do you expect more db-schema > > changes of this magnitude before 1.0? > > No, I do

Re: Distributed Applications and Database Data

2006-04-28 Thread Matthew Flanagan
I sure MR has hooks for this. Have a look in django/contrib/sites/management.py at how it uses the new event system to create the example.com Site object. On 4/28/06, Brantley Harris <[EMAIL PROTECTED]> wrote: > > I've started to impliment my proposal for schema implementation and > realized that

Re: proposal: endif, endfor etc assume whatever follows in tag is comment

2006-03-16 Thread Matthew Flanagan
On 3/16/06, hugo <[EMAIL PROTECTED]> wrote: > > >It's not clear to me that inline comments were outright rejected here. > >Perhaps I missed some other discussion but to my biased eye the > >general concensus was favourable. > > I remember several situations where Adrian and Jacob rejected an inlin

Re: Any other Australian Django heads?

2006-01-31 Thread Matthew Flanagan
On 1/31/06, Ian Holsman <[EMAIL PROTECTED]> wrote: > > I'm looking to see how many other australians are interested in > Django, and also to get a list of people interested in some casual > django work (if I get any) on the side. > > -- > [EMAIL PROTECTED] -- blog: http://feh.holsman.net/ -- PH: +

Re: Proposal: Allow custom redirects in the admin system

2006-01-11 Thread Matthew Flanagan
On 1/12/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > > On 1/11/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > > > I've been looking at the same thing in the last day and I found the > > 'post_url' keyword arg to the add_stage() v

Re: Proposal: Allow custom redirects in the admin system

2006-01-11 Thread Matthew Flanagan
On 1/12/06, oggie rob <[EMAIL PROTECTED]> wrote: > > > Another option would be to have the callable return a (url, message) > tuple, and let the view handle HttpResponseRedirect and > request.user.add_message. > > I think you should use a dictionary. For example, you could pass in the > following

editable=False and manipulator.save(data) not working together

2006-01-09 Thread Matthew Flanagan
Hi, In my model I have the field: created_by = meta.ForeignKey( User, verbose_name='created by', editable=False, blank=True, null=True ) and the module method below to create a "validated" object: def _module_create(address, prefix, descrip