DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Pretty Archive URLs In Typo With Routes
Tobi posted this as a new URL scheme for Typo.
# allow neat perma urls
map.connect 'articles/:year/:month/:day', :controller => 'articles',
:action => 'find_by_date',
:year => /\d{4}/, :day => nil, :month => nil
map.connect 'articles/:year/:month/:day/:title', :controller => 'articles',
:action => 'permalink', :year => /\d{4}/




