# HG changeset patch # User raph # Date 1265382233 -3600 # Node ID db7bc2e89156fd72029aeb9c8f5bb9a1a9353110 # Parent 0f2c5744b39b7244f6279316c41e3e4d035ddf0f fix compare reverse url break diff -r 0f2c5744b39b -r db7bc2e89156 src/cm/urls.py --- a/src/cm/urls.py Fri Feb 05 16:01:32 2010 +0100 +++ b/src/cm/urls.py Fri Feb 05 16:03:53 2010 +0100 @@ -64,7 +64,8 @@ url(r'^text/(?P\w*)/settings/$', text_settings, name="text-settings"), url(r'^text/(?P\w*)/history/$', text_history, name="text-history"), url(r'^text/(?P\w*)/history-version/(?P\w*)/$', text_history_version, name="text-history-version"), - url(r'^text/(?P\w*)/history-compare/(?P\w*)/(?P\w*)/(?P\d*)$', text_history_compare, name="text-history-compare"), + url(r'^text/(?P\w*)/history-compare/(?P\w*)/(?P\w*)/$', text_history_compare, name="text-history-compare"), + url(r'^text/(?P\w*)/history-compare/(?P\w*)/(?P\w*)/(?P\d*)$', text_history_compare, name="text-history-compare2"), url(r'^text/(?P\w*)/revert/(?P\w*)/$', text_revert, name="text-revert"), url(r'^text/(?P\w*)/attach/(?P\w*)/$', text_attach, name="text-attach"), url(r'^text/(?P\w*)/delete/$', text_delete, name="text-delete"),