Re: Curious bugs with middleware (but possible with other features).

2008-01-13 Thread Grindizer
On 13 jan, 13:14, Alex Koshelev <[EMAIL PROTECTED]> wrote: > You wrote: > >  P/ >   APP2/ >     middlewares.py -> MyMiddleware > > And then: > 'P.APP2.middlewares.ProfileMiddleware', > > MyMiddleware != ProfileMiddleware > > Is it right? > > On 13 янв, 13:53, Grindizer <[EMAIL PROTECTED]>

Re: Curious bugs with middleware (but possible with other features).

2008-01-13 Thread Alex Koshelev
You wrote: P/ APP2/ middlewares.py -> MyMiddleware And then: 'P.APP2.middlewares.ProfileMiddleware', MyMiddleware != ProfileMiddleware Is it right? On 13 янв, 13:53, Grindizer <[EMAIL PROTECTED]> wrote: > Hello. > > I have one project let say P, > In this project i define several

Curious bugs with middleware (but possible with other features).

2008-01-13 Thread Grindizer
Hello. I have one project let say P, In this project i define several applications, APP1, APP2, APP3 In INSTALLED_APPS of my settings i add those application with full name, ("P.APP1", "P.APP2", etc.) and all was working fine. (Admin interface and front end). After i wrote a middleware class