just an observation....

i had an issue with route matching, due to my error of not having a
proper regex in the route

    /archive/{yyyy}/{mm}/{dd}/{slug}

was quickly fixed with:

    /archive/{yyyy:\d{4}}/{mm:\d{2}}/{dd:\d{2}}/{slug}

does anyone else think that this syntax is weird?  shouldn't the
grouping brackets have been different than regex brackets, since regex
can be used to better specify routes  ?  ( or even just used a real
regex on the route ? )

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pylons-devel+unsubscr...@googlegroups.com.
To post to this group, send email to pylons-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-devel?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to