src/cm/urls.py
changeset 150 db7bc2e89156
parent 149 0f2c5744b39b
child 160 0c01050f9717
equal deleted inserted replaced
149:0f2c5744b39b 150:db7bc2e89156
    62      url(r'^text/(?P<key>\w*)/edit/$', text_edit, name="text-edit"),
    62      url(r'^text/(?P<key>\w*)/edit/$', text_edit, name="text-edit"),
    63      url(r'^text/(?P<key>\w*)/pre_edit/$', text_pre_edit, name="text-preedit"),
    63      url(r'^text/(?P<key>\w*)/pre_edit/$', text_pre_edit, name="text-preedit"),
    64      url(r'^text/(?P<key>\w*)/settings/$', text_settings, name="text-settings"),
    64      url(r'^text/(?P<key>\w*)/settings/$', text_settings, name="text-settings"),
    65      url(r'^text/(?P<key>\w*)/history/$', text_history, name="text-history"),
    65      url(r'^text/(?P<key>\w*)/history/$', text_history, name="text-history"),
    66      url(r'^text/(?P<key>\w*)/history-version/(?P<version_key>\w*)/$', text_history_version, name="text-history-version"),
    66      url(r'^text/(?P<key>\w*)/history-version/(?P<version_key>\w*)/$', text_history_version, name="text-history-version"),
    67      url(r'^text/(?P<key>\w*)/history-compare/(?P<v1_version_key>\w*)/(?P<v2_version_key>\w*)/(?P<mode>\d*)$', text_history_compare, name="text-history-compare"),
    67      url(r'^text/(?P<key>\w*)/history-compare/(?P<v1_version_key>\w*)/(?P<v2_version_key>\w*)/$', text_history_compare, name="text-history-compare"),
       
    68      url(r'^text/(?P<key>\w*)/history-compare/(?P<v1_version_key>\w*)/(?P<v2_version_key>\w*)/(?P<mode>\d*)$', text_history_compare, name="text-history-compare2"),
    68      url(r'^text/(?P<key>\w*)/revert/(?P<text_version_key>\w*)/$', text_revert, name="text-revert"),
    69      url(r'^text/(?P<key>\w*)/revert/(?P<text_version_key>\w*)/$', text_revert, name="text-revert"),
    69      url(r'^text/(?P<key>\w*)/attach/(?P<attach_key>\w*)/$', text_attach, name="text-attach"),
    70      url(r'^text/(?P<key>\w*)/attach/(?P<attach_key>\w*)/$', text_attach, name="text-attach"),
    70      url(r'^text/(?P<key>\w*)/delete/$', text_delete, name="text-delete"),
    71      url(r'^text/(?P<key>\w*)/delete/$', text_delete, name="text-delete"),
    71      url(r'^text/(?P<key>\w*)/(?P<text_version_key>\w*)/delete/$', text_version_delete, name="text-version-delete"),        
    72      url(r'^text/(?P<key>\w*)/(?P<text_version_key>\w*)/delete/$', text_version_delete, name="text-version-delete"),        
    72      url(r'^text/(?P<key>\w*)/export/(?P<format>\w*)/(?P<download>\w*)/(?P<whichcomments>\w*)/(?P<withcolor>\w*)/$', text_export, name="text-export"),
    73      url(r'^text/(?P<key>\w*)/export/(?P<format>\w*)/(?P<download>\w*)/(?P<whichcomments>\w*)/(?P<withcolor>\w*)/$', text_export, name="text-export"),