Re: Splitting out admin functionality

2011-10-09 Thread Yo-Yo Ma
To further note; while I second the OP's request, in its abstract, my approach wouldn't be to add another contrib app. It would be to implement a fairly low level API. Reuse of a third party app, or abstracting some of the existing admin code, or any combination thereof would be sufficient, but thi

Re: Splitting out admin functionality

2011-10-09 Thread Yo-Yo Ma
+1 I spent this Saturday morning implementing ad hoc table sorting in a ListView's get_queryset. It felt very wrong, to say the least. An abstracted sorting and filtering framework, along with a few of the admin-ish features that are already in core (inline model formsets, et al) provide some very

Re: ORM refactoring

2011-10-09 Thread Alexander Schepanovski
I use a bunch of hacks and monkey patches to make ORM master. So I consider a proper cleanup very valuable. This one for example for more efficient pickling: https://gist.github.com/974735 On 10 окт, 03:28, Anssi Kääriäinen wrote: > First, if you have time for it, please take a look of #17025 (sq

Splitting out admin functionality

2011-10-09 Thread tWoolie
I'd like to propose a project to split out the table/list functionality and the filtering functionality in the django admin into a seperate contrib app. This is really core functionality which is lacking from django (in terms of being locked to the admin app). I believe this would be beneficial bec

Re: Custom transform in django docs

2011-10-09 Thread Chris Beaven
+1 to removing this non-standard documentation workaround. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/X7cbiXXSXyEJ. To post to this group, se

Re: django-irc-logs.com

2011-10-09 Thread Chris Beaven
Any update on this, Jannis? -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/hA8I02L9m90J. To post to this group, send email to django-developers@g

ORM refactoring

2011-10-09 Thread Anssi Kääriäinen
First, if you have time for it, please take a look of #17025 (sql/ WhereNode refactoring). In summary: test suite is 10% faster, creating a simple objects.filter(pk=1) query is 30% faster, chained .filter() calls can be multiple times faster and so on. The code is IMHO cleaner. And it is much bette