Re: Upcoming changes to the Django admin

2007-02-24 Thread Kenneth Gonsalves
On 25-Feb-07, at 12:21 PM, Jacob Kaplan-Moss wrote: > Finally, on a somewhat related note, this refactoring will including > the moving of the admin docs to a seperate contrib app. cool - cant wait -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-~

Upcoming changes to the Django admin

2007-02-24 Thread Jacob Kaplan-Moss
Howdy folks -- After a wonderful Django meetup here at PyCon (Django: the framework that buys you pizza), a bunch of us spun off into a little ad-hoc sprint to talk about improvements to the Django admin. This email summarizes our plan. It's quite long, mostly because it's an attempt to distill

Forex Trading Tips and Tricks

2007-02-24 Thread Sheela Thaper
Forex Trading - Masters Just Learn the Trading Tricks from the masters and jacks of market trading. *Forex Trading Introduction* * Trading Market Conventions * * Forex Trading Orders and

Re: Database template loader

2007-02-24 Thread Jacob Kaplan-Moss
On 2/24/07, Jannis Leidel <[EMAIL PROTECTED]> wrote: > * Moved the models.py to a new contrib app > "django.contrib.dbtemplates". "dbtemplates" to prevent confusion with > "templates" directories. > > * Moved the "load_template_source" function to the new file django/ > template/loaders/database.p

Re: Database template loader

2007-02-24 Thread Jannis Leidel
Am 24.02.2007 um 19:32 schrieb Michael Radziej: > Jacob Kaplan-Moss: >> * I don't much like the model living in >> django.template.loaders.database; that seems like the wrong place for >> it. I'd love to see you move the code into django.contrib. > > Only the code for the model, or also the tem

Re: Database template loader

2007-02-24 Thread Michael Radziej
Hi Jacob, Jacob Kaplan-Moss: > * I don't much like the model living in > django.template.loaders.database; that seems like the wrong place for > it. I'd love to see you move the code into django.contrib. Only the code for the model, or also the template loader (i.e., everything)? Michael --

Re: app completion in django_bash_completion - testing please

2007-02-24 Thread Rob Hudson
This morning I'm working on a few things with this... > I'd like to change the "grep -v django" line with "grep -v > django.contrib" so that applications containing "django" as a part of > their name (ex. djangotestproject.appname) are not discarded. Good point, I'll add it in to the next patch.

Re: Database template loader

2007-02-24 Thread Jacob Kaplan-Moss
Hey Jannis -- Thanks for the patch, it looks pretty good. I've got a few bits of feedback before it can be checked in, however: * I don't much like the model living in django.template.loaders.database; that seems like the wrong place for it. I'd love to see you move the code into django.contrib

Re: Database template loader

2007-02-24 Thread Jannis Leidel
Hi Michael, Thanks for the hint, I attached a diff [1] to the ticket with the code and a documentation but have no idea how to write a test for this. Can someone help? Best, Jannis 1: http://code.djangoproject.com/attachment/ticket/632/database-loader.diff On Feb 24, 11:47 am, Michael Radziej <

Re: app completion in django_bash_completion - testing please

2007-02-24 Thread paolo
Hi Rob, your patch works pretty well, thanks! Finally the script supports full completion of names ;-) Just a couple of things. I'd like to change the "grep -v django" line with "grep -v django.contrib" so that applications containing "django" as a part of their name (ex. djangotestproject.appna

Re: Generic view for serialized queryset

2007-02-24 Thread Simon G.
Hi dchandek, This looks like an interesting idea - could you create a new ticket for it at djangoproject.com, so it doesn't get lost? Thanks, Simon G. On Feb 24, 9:44 am, "dchandek" <[EMAIL PROTECTED]> wrote: > FWIW, I didn't see anything like this in the distribution, and it > might be useful

Re: app completion in django_bash_completion - testing please

2007-02-24 Thread Simon G.
Hi Rob, This looks good, thanks. I've triage'd that ticket on to "Ready to checkin" and we'll let one of the core developers check it out and see if it meets their approval :-) -Simon G. On Feb 24, 6:04 am, "Rob Hudson" <[EMAIL PROTECTED]> wrote: > I re-opened bug 1240 and added my patch > th

Re: Database template loader

2007-02-24 Thread Michael Radziej
Hi Jannis, Jannis Leidel schrieb: > Hi list, > > Concerning Ticket #632 [1] I created a template loader for Django > which fetches the templates from a database. It integrates well with > the Site app if you want to provide the same template across multiple > sites and works with Flatpages. > >