Skip to content

Commit

Permalink
Accepts all except slashes...
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Oct 5, 2012
1 parent 95e0e97 commit 58df195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qgis-app/plugins/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
url(r'^experimental/$', 'plugins_list', {'queryset' : Plugin.experimental_objects.all(), 'extra_context' : {'title' : _('Experimental plugins')}}, name='experimental_plugins'),
url(r'^popular/$', 'plugins_list', {'queryset' : Plugin.popular_objects.all(), 'extra_context' : {'title' : _('Popular plugins')}}, name='popular_plugins'),

url(r'^author/(?P<author>[\sa-zA-Z0-9_%.-]+)/$', 'author_plugins', {}, name='author_plugins'),
url(r'^author/(?P<author>[^/]+)/$', 'author_plugins', {}, name='author_plugins'),

)

Expand Down

0 comments on commit 58df195

Please sign in to comment.