Re: Question about URLs

2009-08-15 Thread Léon Dignòn
At this point I always love to refer to http://rubular.com, which is a very good regular expression editor and tester. leon On Aug 11, 1:42 am, Tim Chase wrote: > > If i have a URL such as: > > >  (r'^(?P\w+)/blog/', include('foo.urls.blog')), > > > what are the whats the purpose of the w and t

Re: Question about URLs

2009-08-10 Thread Tim Chase
> If i have a URL such as: > > (r'^(?P\w+)/blog/', include('foo.urls.blog')), > > what are the whats the purpose of the w and the +? i'm having some > problems with 2 of my urls and i think it may have something to do > with this. You'll want to read up on regular expressions. There are a nu

Question about URLs

2009-08-10 Thread When ideas fail
If i have a URL such as: (r'^(?P\w+)/blog/', include('foo.urls.blog')), what are the whats the purpose of the w and the +? i'm having some problems with 2 of my urls and i think it may have something to do with this. Thanks --~--~-~--~~~---~--~~ You received th