Re: Django Design Czar

2010-02-07 Thread h3
> unless I've missed something whoever gets the position, would definitionally > get it before they've done anything! I strongly suggest you should take a look at grappelli ... some people *are* doing things ;) > In conclusion, there is 0 reason design needs to be treated different from a > pro

Re: Django Design Czar

2010-02-07 Thread h3
> Grappelli has done a great job of skinning the admin interface. It depends which version you check. We are currently in the decision of breaking appart from the Django admin and create a standalone app or stick with it[0].. We have started to be a lot more than a "skin". We are currently in the

Re: Django Design Czar

2010-02-08 Thread h3
Good to see you guys are progressing. I've red lots of interesting and valid input, but from what I can see there is tearing decisions ahead and whoever will take the design lead will be invariably limited by the current state of the admin. If you want to achieve something like we are doing with

Introducing Django Ray

2010-02-15 Thread h3
Hello, I would like to introduce a project I've just released in the wild. For the moment it is still just a working prototype, but hopefully it will grow and stabilize with time. On Google Code: http://code.google.com/p/django-ray/ Introduction blog post: http://haineault.com/blog/125/ Comment

Re: Improving test data experience

2011-11-30 Thread h3
It might just be a crazy idea .. but sometimes I wish something like this existed: https://gist.github.com/1414209 On Nov 30, 10:36 pm, Ned Batchelder wrote: > On 11/30/2011 5:22 PM, Jeremy Dunck wrote: > > > > > > > > > Hi all, > >    I've got a codebase with a fair bit of fixtures and have bee

Add disabled cookies as possible cause of csrf token 403 debug page

2011-12-12 Thread h3
I tried and double checked the given possibilities and ended up finding that cookies were diabled on my phone.. Would be nice if there was a hint about this in the debug page. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this

Re: Revisiting multiline tags

2012-02-18 Thread h3
I would also like to know more about the rational behind ditching the idea of multilinetags. {% trans with varname=myobject.proprety1 someothervar=myobject.some.other_property yetanothervar=myotherobject.with_a_painfully_long_method_name "Even with line-wrap, it's a pain to rea

Request for review for a small fix in the csrf view

2012-02-20 Thread h3
I've submitted a ticket[1] with two patches as a follow-up to this discussion: http://groups.google.com/group/django-developers/browse_thread/thread/ca34924871e3c00b/b29cd0e17c010f54?lnk=gst&q=csrf+cookie+haineault#b29cd0e17c010f54 In short, the first patch add a bullet point in the CSRF error pa

Re: Revisiting multiline tags

2012-02-24 Thread h3
> If you'd like to make an argument as to *why* it's useful, that's useful, but > we don't take polls. I think the argument as to why it's useful as been made quite extensively. On the flip side, beside the ivory tower philosophical stance, I did not see much compelling argument as to *why* this

Just a crazy idea..

2012-03-09 Thread h3
rver to host it. [1] For the curious, the client part is getting quite stable lately. We use it on a couple of projects and the number of saved keystrokes is pretty amazing so far: https://github.com/h3/django-duke-client -- Maxime Haineault -- You received this message because you are

Re: Django Admin Revamp - Any updates?

2012-04-27 Thread h3
anch) Alternatively the branch on my fork works pretty well with 1.4: https://github.com/h3/django-grappelli/tree/grappelli_2_4 Cheers On Apr 26, 7:06 pm, Victor Hooi wrote: > Hi, > > Is there any news on the Django Admin rewrite front? > > I remember around a year ago, there w

Re: Django 1.4 Roadmap

2011-08-06 Thread h3
idk .. but I'll make one anyway. I whish there was something like this for django: http://brainstorm.ubuntu.com/ Good news: the site's engine is Open Source Bad news: it's ROR (http://bbyidx.com/) Pretty decent alternative: http://www.google.com/moderator/ On Aug 6, 3:12 pm, rvanhoepen wrote:

RFC on New filter proposal

2011-08-18 Thread h3
I've submitted a patch[1] which makes the "random" template filter accept QuerySet and adds a "shuffle" filter which also works on both lists and QuerySet. I think it would make sense that the random filter accept QuerySet instances since most of the time when working in templates we are dealing w

Re: Suppressed template errors in admin

2011-08-24 Thread h3
I'm not sure suppressing templates errors for the admin is such a great idea. I work on two projects[1] where I would lose a useful debugging information and it would be the same lost to anyone working on the admin or extending the admin. Of course we could use a settings to toggle on/off the adm

Re: PHP-inspired user-friendly in-browser DJango install

2011-09-12 Thread h3
hink Django should advocate good practices, but also try to make developers' life easier. At the end of the day it would pay off. For those who are interested, my project is hosted there: https://github.com/h3/python-dad/tree/master/dad Most of the docs are still hosted there (moving to docs/

Re: PHP-inspired user-friendly in-browser DJango install

2011-09-13 Thread h3
> Beyond that, what I am wondering is how much users will be able to understand > how Django work if they can't do the installation. Each year I accept foreign students for internship in my company and most of then either never heard of Django or didn't bother to learn how it works just to try it

Type casting template filter proposal

2011-10-03 Thread h3
There's numerous time where I found myself wishing for type casting filters in templates.. For example, the following won't work because one is a string and the other is an integer: {% if request.GET.year == object.date.year %} ... {% endif %} So when I need to compare a string with an int with

Re: Sane defaults for Startapp and Startproject

2011-10-18 Thread h3
I'd like the settings file to be more convenient too, but most of the suggestion are too specific. It's an excellent idea to automate more things, but it's a really bad idea to pretend that we know everybody's needs. Personally here's what I'd like to see in the generated settings.py: import os

Re: The state of per-site/per-view middleware caching in Django

2011-10-21 Thread h3
I think for the moment, the easy fix for anonymous forms it either to put them on a different page or to load them with ajax. This way the forms and thus the tokens gets generated only when needed. If caching and performances are a big concern, I think those alternative are win/win solutions. Yo