URL templatetag with URL naming not working

2008-07-07 Thread Kimus Linuxus
hi, My named URLs using the URL templatetag are not working when I try it in the apache with mod_python. If I try manage.py runserver it works fine. tough in the home page even with apache also works fine the templatetag. using reverse() from shell works fine also. My testing site is here: htt

Re: URL templatetag with URL naming not working

2008-07-06 Thread Kimus Linuxus
nd I think is working... wtf! > > > > I'll put this in my dev site to see if works... strange. > > > > > > kimus > > > > On Fri, 2008-06-20 at 01:09 -0700, Daniel Roseman wrote: > > > > > On Jun 20, 1:42 am, kimus <[EMAIL PROTECTED]>

Re: URL templatetag with URL naming not working

2008-06-20 Thread Kimus Linuxus
; > I'll put this in my dev site to see if works... strange. > > > kimus > > On Fri, 2008-06-20 at 01:09 -0700, Daniel Roseman wrote: > > > On Jun 20, 1:42 am, kimus <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > > > URL templatetag w

Re: URL templatetag with URL naming not working

2008-06-20 Thread Kimus Linuxus
urls. With some refreshes it did work. I enabled cache again and I think is working... wtf! I'll put this in my dev site to see if works... strange. kimus On Fri, 2008-06-20 at 01:09 -0700, Daniel Roseman wrote: > On Jun 20, 1:42 am, kimus <[EMAIL PROTECTED]> wrote: > > Hi

Re: URL templatetag with URL naming not working

2008-06-20 Thread Daniel Roseman
On Jun 20, 1:42 am, kimus <[EMAIL PROTECTED]> wrote: > Hi, > > URL templatetag with URL naming not working for me. > > application urls.py > > urlpatterns = patterns('', > (r'^feeds/', include('blocks.apps.aggregator.urls')), > ) >

URL templatetag with URL naming not working

2008-06-19 Thread kimus
Hi, URL templatetag with URL naming not working for me. application urls.py urlpatterns = patterns('', (r'^feeds/', include('blocks.apps.aggregator.urls')), ) aggregator urls.py urlpatterns = patterns('', url(r'^(?P\d+)/$', 'blo