[04:20] hello, im not sure where i should report bugs with the website but i thought this would be a good place to start. [04:20] when i go here: (i click the download link on the homepage and click "download 12.10 32 bit" on the download page) [04:20] http://www.ubuntu.com/download/desktop/questions?distro=desktop&bits=32&release=latest [04:20] and click the link that says "Not now, take me to the download" [04:20] it points me here: [04:20] http://www.ubuntu.com/download/desktop/thank-you?distro=desktop&bits=32&release=lts [04:20] notice the "lts" as the last parameter. this will download 12.04 i am trying to download 12.10(aka latest as the last parameter) [04:20] please let me know if this is the correct place to handle my problem or if i should go somewhere else [10:20] wfm [10:21] I can see the point, but it does download 12.10 for me [10:22] odd [15:18] hey cjohnston mhall119 nigelb what do you think of this http://i.imgur.com/9VTVv.png http://i.imgur.com/6lLYg.png [15:20] pleia2 and AlanBell too [15:40] daker: looks nice, are those mockups or actual code? [15:40] code :) [15:47] \o/ [15:48] :) [15:52] looks nice [15:53] thanks [16:19] daker: you should design a new schedule display ;-) [16:19] hhh [16:20] will do when i have time :) [16:20] :-P [18:55] daker: mp updated [18:56] cjohnston: thanks :) [18:57] daker: do you know anything about reducing db queries on pages? I'm using .select_related() but need to reduce further [18:57] cjohnston: can you pastebin your code ? [18:58] http://bazaar.launchpad.net/~qa-dashboard/qa-dashboard/dev/view/head:/dashboard/views/smoke.py#L48 [19:07] i see [19:10] cjohnston: how many queries does this code execute ? [19:11] >4k [19:11] cjohnston: how many build you have per release ? [19:15] http://reports.qa.ubuntu.com/smoke/quantal/ [19:19] cjohnston: why not use the cache ? [19:21] http://blueprintforge.com/blog/2012/01/24/measuring-optimising-database-performance-in-django [19:21] daker: I plan on it, but I want to optimize the code too [19:29] cjohnston: why not use pagination ? [19:29] daker: I have to talk them into allowing it. :-) [19:29] they want to be able to view all the results for the release on one page [19:30] cjohnston: pagination while scrolling [19:30] like twitter [19:30] display 100 records if here scrolls down then grab another 100 rec [19:30] thats an interesting idea... [19:31] :) [19:32] cjohnston: http://www.webresourcesdepot.com/load-content-while-scrolling-with-jquery/ [19:32] page = 1; [19:33] catch the scroll [19:33] page = page +1; [19:33] load page [20:30] cjohnston: http://www.mellowmorning.com/2010/03/03/django-query-set-iterator-for-really-large-querysets/ [20:34] cjohnston: http://blog.mozilla.org/webdev/2011/12/15/django-optimization-story-thousand-times-faster/