X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/1f74e9a6dc7dd2303f3271ccf4c7a3eb59e3e27e..d92ffa94a1cc8346d105de9687ac3f9f776b315e:/apps/catalogue/urls.py?ds=inline

diff --git a/apps/catalogue/urls.py b/apps/catalogue/urls.py
index 5ebeb52b6..70d5fd8e4 100644
--- a/apps/catalogue/urls.py
+++ b/apps/catalogue/urls.py
@@ -16,8 +16,12 @@ urlpatterns = patterns('catalogue.views',
     url(r'^lektura/(?P<slug>[a-zA-Z0-9-]+)/polki/', 'book_sets', name='book_shelves'),
     url(r'^polki/nowa/$', 'new_set', name='new_set'),
     url(r'^tags/$', 'tags_starting_with', name='hint'),
+    url(r'^jtags/$', 'json_tags_starting_with', name='jhint'),
     url(r'^szukaj/$', 'search', name='search'),
-    
+
+    # tools
+    url(r'^zegar', 'clock', name='clock'),
+
     # Public interface. Do not change this URLs.
     url(r'^lektura/(?P<slug>[a-zA-Z0-9-]+)\.html$', 'book_text', name='book_text'),
     url(r'^lektura/(?P<slug>[a-zA-Z0-9-]+)/$', 'book_detail', name='book_detail'),