equal
deleted
inserted
replaced
|
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 ) |