src/ldt/ldt/api/urls.py
author hamidouk
Mon, 06 Feb 2012 11:51:56 +0100
changeset 528 8802151cc370
parent 13 97ab7b3191cf
child 1193 cd67b17d257d
permissions -rw-r--r--
new player version. fixes annotation creation bug.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13
97ab7b3191cf add api to update project, uses psiton
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
from django.conf.urls.defaults import patterns, include
97ab7b3191cf add api to update project, uses psiton
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
97ab7b3191cf add api to update project, uses psiton
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
urlpatterns = patterns('',
97ab7b3191cf add api to update project, uses psiton
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
   # all my other url mappings
97ab7b3191cf add api to update project, uses psiton
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
   (r'^ldt/', include('ldt.api.ldt.urls')),
97ab7b3191cf add api to update project, uses psiton
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
)