Re: Django's testing infrastructure

2010-02-26 Thread Cramet Matthieu
I don't know i had your message right Chris but i think the purpose is to keep those machines running for a __long__ time. BUT having VMs ready would allow anyone to offer a new machine/slice in the case that someone finally decide to end his participation. About VMs formats, I am not an expert

Re: Django's testing infrastructure

2010-02-26 Thread Chris Hasenpflug
On Feb 26, 10:43 am, Jacob Kaplan-Moss wrote: > If you (or anyone else) would be willing to develop some VMs -- > VMWare, VirtualBox, or EC2 images would probably be best -- I have > space/bandwidth to host 'em for download. I think it's a fantastic > idea. Especially EC2

Re: Inheritance: Create a way to subclass and override attributes of a parent class.

2010-02-26 Thread orokusaki
@Jacob Thanks for all the links. I appreciate your reply. Michael -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-develop...@googlegroups.com. To unsubscribe from this group, send email to

Re: Inheritance: Create a way to subclass and override attributes of a parent class.

2010-02-26 Thread Jacob Kaplan-Moss
On Fri, Feb 26, 2010 at 5:17 PM, Jacob Kaplan-Moss wrote: > There are many, and we've discussed this issue at length any number of > times over the years. Please take the time to read over the history > here; if you've got something new to add to the discussion I'd love to >

Re: Inheritance: Create a way to subclass and override attributes of a parent class.

2010-02-26 Thread Jacob Kaplan-Moss
On Fri, Feb 26, 2010 at 5:11 PM, orokusaki wrote: > Well, I won't even try to argue with that, but there has to be a way > to conquer problems like this in Django without editing the source > code, don't you think? There are many, and we've discussed this issue at

Re: Inheritance: Create a way to subclass and override attributes of a parent class.

2010-02-26 Thread orokusaki
@James Well, I won't even try to argue with that, but there has to be a way to conquer problems like this in Django without editing the source code, don't you think? -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group,

Re: Django's testing infrastructure

2010-02-26 Thread Stephen Wolff
btw - Simon and I work together - so the identical specs were actually one machine... anyhow, we're really pleased to be involved, and to see how this all goes. We've been toying with CI for a while - including trying out the Trac Bitten plugin (http://bitten.edgewall.org/) - which could be

Re: Inheritance: Create a way to subclass and override attributes of a parent class.

2010-02-26 Thread James Bennett
On Fri, Feb 26, 2010 at 3:26 PM, orokusaki wrote: > 1) Allow for subclasses of normal models to override attributes of the > parent model. Then, if any attributes exists that override the parent, > simply use the subclass to create the table and treat the parent as an >

Inheritance: Create a way to subclass and override attributes of a parent class.

2010-02-26 Thread orokusaki
Problem that exists: 1) I need to subclass `contrib.auth.User` and strip some of the elements from it, like making `User.username` non-unique for SAAS with multiple accounts (`MyCustomUser.username` would only be `unique_together = ('account', 'username')` (other instances could occur but I

Re: Django's testing infrastructure

2010-02-26 Thread Eric Holscher
Awesome response! Thanks for the offering of support everyone. Luckily, with hudson, it's pretty simple to get this all set up. We basically just need to figure out what the infrastructure looks like. I don't know if it's going to make more sense to try and set up dedicated Database servers, or

Re: Syndication -- plans to add support for CSS stylesheet?

2010-02-26 Thread Andy McKay
> It would be very helpful to be able to add CSS stylesheets to > syndication feeds. Are there plans for adding this feature in the > future? A search in Trac reveals one ticket added by you: http://code.djangoproject.com/ticket/12978 Adding a ticket is the right way to go. Adding in a patch

Syndication -- plans to add support for CSS stylesheet?

2010-02-26 Thread intrepidweb
Hi there, It would be very helpful to be able to add CSS stylesheets to syndication feeds. Are there plans for adding this feature in the future? Thanks! Leif -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send

Re: dbsettings, and user configurable app settings

2010-02-26 Thread Jared Forsyth
If you look at dbsettings (which again, might be dead - i don't know) it solves a lot of those problems; settings are tied into the "sites" module, and are presented to the user in a very friendly way. The problem of db migration is still there, but I can envision an import/export to XML (or

Re: Django's testing infrastructure

2010-02-26 Thread Mikhail Korobov
That's great news, thanks! A very minor issue: web server returns 'Content-Type:text/ html;charset=ISO-8859-1' header for this page: http://hudson.djangoproject.com/monitor/? but the actual page encoding is utf-8 so there are strange symbols instead of translated strings. -- You received this

Re: dbsettings, and user configurable app settings

2010-02-26 Thread Wes Winham
I'd love to see a better way of managing settings in the core of django. It's a real pain point sometimes for writing and using pluggable applications and there's a wide range of ways that application developers try to tackle it. Some have basically no settings, some plan on users reading the

Re: Django's testing infrastructure

2010-02-26 Thread Christopher Petrilli
I can toss in a Core i7 w/12GB for testing as well, if someone can give me the VMs in either VirtualBox or Linux KVM format. I think this is a brilliant idea, and would even be willing to contribute some money to cover EC2/etc, if that's what it takes. Chris On Fri, Feb 26, 2010 at 11:49 AM,

Re: Django's testing infrastructure

2010-02-26 Thread Steven Elliott Jr
I have about 4 apple Xserves with quad cores and 16 GBs or RAM sitting in my server room at work. I will see if I can use them for this purpose. I don't think it will be a problem since I'm the CIO and am pretty much left alone to do what i want with our hardware. I'll post back next week

Re: Django's testing infrastructure

2010-02-26 Thread Jacob Kaplan-Moss
On Fri, Feb 26, 2010 at 10:32 AM, Cramet Matthieu wrote: > Wouldn't it be interesting to build some Virtual Machines that people could > grab and deploy directly in the cloud ? It might interest people willing to > contribute hardware but not having much time to dedicate at

Re: Django's testing infrastructure

2010-02-26 Thread Cramet Matthieu
Wouldn't it be interesting to build some Virtual Machines that people could grab and deploy directly in the cloud ? It might interest people willing to contribute hardware but not having much time to dedicate at maintaining it. I personnaly have a spare Desktop with a Quad Core and 4G of RAM that

Re: IfEqualNode is missing a get_nodes_by_type method

2010-02-26 Thread Russell Keith-Magee
On Thu, Feb 25, 2010 at 10:33 AM, SmileyChris wrote: > My ticket in #6510 [1] deals with this, along with a nice abstraction > of common recursive nodelist gathering patterns. > > Although the ticket description, comments (and even tests in my patch) > mention {% block %},

Re: Django's testing infrastructure

2010-02-26 Thread simonjwoolf
Hi, We would be happy to contribute space on one of our staging dedicated servers. Our stack is: CentOS 5 MySQL 5.0 (using InnoDB as standard, but you are welcome to have a MyISAM database as well) Python 2.6 Lighttpd 1.4.23 Let me know if this is useful, and perhaps contact me privately to

dbsettings, and user configurable app settings

2010-02-26 Thread Jared Forsyth
I have been looking around for a way of managing user-configurable application settings, and the only solution I have found is dbsettings, which looks like it hasn't been touched in 3 years. So, I would like to know: is dbsettings dead? Or is there a different generally accepted method for having

Re: Django's testing infrastructure

2010-02-26 Thread Jirka Vejrazka
Hi Eric, great activity, thanks! During the EuroDjango spring in Prague, I set up a Ubuntu + Oracle 10g test machine (buildbot) under Jacob's supervision. Shortly after, Jacob has set up a mailing list for buildbots. However, there were no followups from either side and my test machine

Re: Django's testing infrastructure

2010-02-26 Thread Stephen Wolff
We'd like to offer a CentOS 5 machine with Python 2.6 / MySQL 5.0 (InnoDB and MyISAM) for testing (with Lighttpd 1.4.23 - if that is used in any tests). We'll try and set it up over the next week. Stephen On 26/02/2010 06:56, Russell Keith-Magee wrote: On Fri, Feb 26, 2010 at 11:54 AM, Eric

Re: Status of #1480: "Don't Set TIME_ZONE [...]"

2010-02-26 Thread Gabriel Hurley
Great! I thought those modifications by "Anonymous" looked funny... Thanks! - Gabriel On Feb 25, 11:25 pm, Russell Keith-Magee wrote: > On Fri, Feb 26, 2010 at 8:55 AM, Gabriel Hurley wrote: > > Having been bitten by issue #1480 personally, I'm