Re: virtual fields and the migration framework

2015-04-21 Thread Markus Holtermann
Hey Federico, I just had a brief look at the code. If I understand the HStoreVirtualMixin.contribute_to_class() correctly and its implications regarding add_field(), I'd try to use cls._meta.add_field(self, virtual=True) instead of a simple cls._meta.add_field(self). That way the virtual field

Re: Pass exception to error handlers

2015-04-21 Thread Claude Paroz
Here is some code to demonstrate a possible implementation: https://github.com/claudep/django/commit/5617d32e8f10861fb84bf26297dfcd4e4e40d6d7 -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe f

Re: Request for help: building a docker/vagrant platform for running Django's test suite

2015-04-21 Thread Tommy Beadle
I have a decent amount of Docker experience. Doing something like this definitely sounds like a reasonable thing to do with Docker. I'd be willing to help out. On Tue, Apr 21, 2015 at 1:25 PM, Tim Graham wrote: > Hi John, > > Kevin and I are going to chat about it tonight. I'll keep this threa

virtual fields and the migration framework

2015-04-21 Thread Federico Capoano
Hi everyone, some time ago I submitted this ticket: https://code.djangoproject.com/ticket/23159 - because we had problems with the migration framework. To sum up, the django-hstore library has a VirtualField implementation which maps hstore keys (

Re: Request for help: building a docker/vagrant platform for running Django's test suite

2015-04-21 Thread Tim Graham
Hi John, Kevin and I are going to chat about it tonight. I'll keep this thread updated with ours plans and progress. Tim On Tuesday, April 21, 2015 at 1:00:46 PM UTC-4, John Giannelos wrote: > > Hey all, > > I would also be interested to contribute to this effort. > Is there a ticket/github iss

Re: Request for help: building a docker/vagrant platform for running Django's test suite

2015-04-21 Thread John Giannelos
Hey all, I would also be interested to contribute to this effort. Is there a ticket/github issue to track it? Best, John On Sun, Apr 19, 2015 at 11:18 AM, Kevin Glavin wrote: > Hi Tim, > > I have been using Docker, Vagrant, and Jenkins for a while now > independently. Would love to help out wi

Feature request: make it possible to "tell" filter that would result a join, to add an additional condition to that join

2015-04-21 Thread Delusional Insanity
Feature request: make it possible to "tell" filter that would result a join, to add an additional condition to that join Consider the following models: Country: name # CharField slug # SlugField Topic: name # CharField slug # SlugField Project: name # CharField slug # SlugFie

Re: django deployment

2015-04-21 Thread Florian Apolloner
Hi, this mailing list is about the development of django itself, please post to django-users instead. Also apache 2.6.4 does not exist, so… Cheers, Florian On Tuesday, April 21, 2015 at 11:00:53 AM UTC+2, Det S. Pillner wrote: > > Hi all, > > I develop a small django app. To service windows st

django deployment

2015-04-21 Thread Det S. Pillner
Hi all, I develop a small django app. To service windows stations I need winexe to send commands. In djangos own web server it works ok. In log file I see all messages from winexe. If I use the same app in apache 2.6.4 I can see the command to windows station. And I see the result on my windows

Pass exception to error handlers

2015-04-21 Thread Claude Paroz
The request to pass the exception to error handlers has been won't-fixed in tickets #20156 / #20803. I'd like to reopen the discussion. While the usefulness for 404 errors are indeed questionable, I think it makes sense to provide some context to most error chains through the exception. Typicall