src/ldt/ldt/text/urls.py
changeset 22 03d02cf0bea7
child 63 93325a5d61f0
equal deleted inserted replaced
18:2984757e6d98 22:03d02cf0bea7
       
     1 from django.conf.urls.defaults import *
       
     2 from ldt.management import test_ldt
       
     3 
       
     4 # Uncomment the next two lines to enable the admin:
       
     5 # from django.contrib import admin
       
     6 # admin.autodiscover()
       
     7 
       
     8 urlpatterns = patterns('ldt.text',
       
     9     url(r'^create/$', 'views.create_annotation'),
       
    10     url(r'^filter/$', 'views.filter_annotation'),
       
    11     url(r'^get/(?P<id>.*)$', 'views.get_annotation'),
       
    12     url(r'^delete/(?P<id>.*)$', 'views.delete_annotation'),
       
    13     url(r'^update/(?P<id>.*)$', 'views.update_annotation'),
       
    14 )