diff -r 5bb249eefdd1 -r 22ab430e9b64 web/ldt/text/urls.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/ldt/text/urls.py Tue Nov 16 14:15:07 2010 +0100 @@ -0,0 +1,20 @@ +from django.conf.urls.defaults import * +from ldt.management import test_ldt + +# Uncomment the next two lines to enable the admin: +# from django.contrib import admin +# admin.autodiscover() + +urlpatterns = patterns('ldt.text', + url(r'^create/(?P.*)$', 'views.create_annotation'), + url(r'^filter/(?P.*)/(?P.*)/(?P.*)/(?P.*)$', 'views.filter_annotation'), + url(r'^filter/(?P.*)/(?P.*)/(?P.*)$', 'views.filter_annotation'), + url(r'^filter/(?P.*)/(?P.*)/(?P.*)$', 'views.filter_annotation'), + url(r'^filter/(?P.*)/(?P.*)/(?P.*)$', 'views.filter_annotation'), + url(r'^filter/(?P.*)/(?P.*)$', 'views.filter_annotation'), + url(r'^filter/(?P.*)/(?P.*)$', 'views.filter_annotation'), + url(r'^filter/(?P.*)$', 'views.filter_annotation'), + url(r'^get/(?P.*)$', 'views.get_annotation'), + url(r'^delete/(?P.*)$', 'views.delete_annotation'), + url(r'^update/(?P.*)/(?P.*)$', 'views.update_annotation'), +) \ No newline at end of file