I want to make a wiki, and i must assign for each url a view. Each url can contain letters (A-Z, a-z), digits and punctuation ('.', ',', '/', '-', '_'). How can i make the expression ?
I want something like this :
(r'^(?P<wiki_page>\w+)/$', 'www.wiki.views.page')
but this works only for letters, digits and '_'.