On Jan 21, 2008 10:22 AM, Bram - Smartelectronix <[EMAIL PROTECTED]> wrote: > 1. huge numbers of users make the admin almost unusable. Almost any > objects is related to a user (or two). Having to load 500K users in a > form makes for ultra big and slow web pages. Is there a fix for this > somewhere in the future?
The fix has been in Django since the day it was publicly released: 'raw_id_admin=True'. You think World Online runs sites with tens of thousands of users and hundreds of thousands of stories without running into that? ;) > 2. file uploads are the most vital part of freesound. While I have used > tramline successfully with splice, it still feels like a relatively ugly > solution to me (especially as you need to patch mod_python in order for > it to work). As far as I know streaming file uploads have been on the > todo for more than a year. This is one of those things that's taking a while because it's a genuinely hard problem. The ticket is there, it's under more or less constant work, so if it's important to you pitch in and help. > 3. finegrained permissions. "I only want my friends to be able to edit > my tags." Again people seem to be working on this, but nothing seems to > be making it into trunk. Does anyone have a good soliution for this > particular problem, or is it still really a matter of "roll your own"? I keep meaning to write a blog entry on how easy it is to do this in newforms-admin; all the ugly hacks people have come up with to try to do this just go away. > 4. profiles and get_profile() in the django User. In splice we noticed > that having to use get_profile() creates a big overhead in queries... > This seemed to fix this problem: > http://www.amitu.com/blog/2007/july/django-extending-user-model/ > but seems quite "hacky" as well. Big overhead how? get_profile() hangs on to its result so it won't need to query again. Also, the "hacky" method is dangerous when you have multiple sites (if Site A and Site B both want to add a field of the same name, whose field "wins"?). -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---