Re: Date based URLconf condition not working

2008-06-30 Thread Karen Tracey
On Mon, Jun 30, 2008 at 2:55 AM, 城市拓荒者 <[EMAIL PROTECTED]> wrote: > Hello! >I encounter same trouble,Please tell me how resolve it,thanks! > The answer for the original poster's problem was provided. If that answer does not fix your problem, then you must have a slightly different problem. P

Re: Date based URLconf condition not working

2008-06-29 Thread 城市拓荒者
Hello! I encounter same trouble,Please tell me how resolve it,thanks! On 6月15日, 上午8时57分, joshuajonah <[EMAIL PROTECTED]> wrote: > On Jun 14, 8:51 pm, Jeff Anderson <[EMAIL PROTECTED]> wrote: > > > > > joshuajonah wrote: > > > Is this not impossible? > > > > 404 error: > > > Using the URLconf

Re: Date based URLconf condition not working

2008-06-14 Thread joshuajonah
On Jun 14, 8:51 pm, Jeff Anderson <[EMAIL PROTECTED]> wrote: > joshuajonah wrote: > > Is this not impossible? > > > 404 error: > > Using the URLconf defined in jj.urls, Django tried these URL patterns, > > in this order: > > >1. ^admin/ > >2. ^blog/$ > >3. ^blog/(?Pd{4})/?$ > > Hello

Re: Date based URLconf condition not working

2008-06-14 Thread Jeff Anderson
joshuajonah wrote: Is this not impossible? 404 error: Using the URLconf defined in jj.urls, Django tried these URL patterns, in this order: 1. ^admin/ 2. ^blog/$ 3. ^blog/(?Pd{4})/?$ Hello! Put a \ in front of the 'd'. Right now, you have a regex that only matches: ^blog// (n

Date based URLconf condition not working

2008-06-14 Thread joshuajonah
Is this not impossible? 404 error: Using the URLconf defined in jj.urls, Django tried these URL patterns, in this order: 1. ^admin/ 2. ^blog/$ 3. ^blog/(?Pd{4})/?$ 4. ^$ 5. ^(?P\w+)/$ The current URL, blog/2008/, didn't match any of these. --~--~-~--~~~--