Re: GSoC: App Loading

2010-04-08 Thread Dagvadorj Galbadrakh
Thanks for the brilliant advice. I will do so and am now. :) On Thu, Apr 8, 2010 at 6:09 PM, burc...@gmail.com wrote: > On Thu, Apr 8, 2010 at 3:27 PM, Dagvadorj Galbadrakh > wrote: >> Thanks for review. >> >> On Thu, Apr 8, 2010 at 3:15 PM, burc...@gmail.com wrote

Re: GSoC: App Loading

2010-04-08 Thread Dagvadorj Galbadrakh
; 3) How will different application names to be referenced from outside? > 3) How will different application names to be loaded from outside? The apps and its modules will be referenced by its namespace (path - virtual). -- Dagvadorj GALBADRAKH -- You received this message because you are su

Re: GSoC: App Loading

2010-04-08 Thread Dagvadorj Galbadrakh
dels db_prefix, so > the check for a custom app would be: > > if "acme.auth" in INSTALLED_APPS: >    # do something > > An app class could look like this: > > from django.contrib import auth > from django.conf.urls.defaults import patterns > from django.

Re: GSoC: App Loading

2010-04-07 Thread Dagvadorj Galbadrakh
the model that > will be used for content. > > Yours, > Russ Magee %-) > So shortly do you imply that the "app loading" problem is indeed the problem of integrating several application via db tables through configuration in deployment? -- Dagvadorj GALBADRAKH -- You rece

Re: GSOC proposal for "App loading"

2010-04-07 Thread Dagvadorj Galbadrakh
On Wed, Apr 7, 2010 at 2:25 PM, Russell Keith-Magee wrote: > On Mon, Apr 5, 2010 at 4:11 PM, Dagvadorj Galbadrakh > wrote: >> Hello group, >> >> >> >> I want to attend to this year's Google Summer of Code program with >> "App loading". The f

Re: GSOC proposal for "App loading"

2010-04-05 Thread Dagvadorj Galbadrakh
I am planning to modify django.utils.importlib.py this way. Is it agreeable? On Apr 5, 11:11 am, Dagvadorj Galbadrakh wrote: > Hello group, > > I want to attend to this year's Google Summer of Code program with > "App loading". The following is a part from my

GSOC proposal for "App loading"

2010-04-05 Thread Dagvadorj Galbadrakh
uot; else:     a = app_name if a in self.handled:     continue ... # in django/db/models/loading.py and some other places def import_module(name, package=None): ...     if not name.split('.')[-1].endswith('_'):      __import__(name)     else:   temp_name