trey / chiplog

A personal journal application written in Django. You need this.

This URL has Read+Write access

kogakure (author)
Sun Mar 15 02:12:08 -0700 2009
commit  93a075642d68858fe563e88c199a14890071be0c
tree    10e216ee4377b77f236e32230159ad0a22f96916
parent  2c28476942ea330aeec2d0bf3ce5e50146d9d051
chiplog / urls.py
fa0e99f9 » trey 2008-06-30 First commit. 1 from django.conf.urls.defaults import *
3fab0604 » trey 2008-09-16 Changed to a standalone app. 2 from chiplog import views
fa0e99f9 » trey 2008-06-30 First commit. 3
c78fd866 » kogakure 2009-03-05 Added translation for JavaS... 4 js_info_dict = {
5 'packages': ('chiplog',),
6 }
7
fa0e99f9 » trey 2008-06-30 First commit. 8 urlpatterns = patterns('',
c78fd866 » kogakure 2009-03-05 Added translation for JavaS... 9 url(r'jsi18n/$',
10 view='django.views.i18n.javascript_catalog',
11 kwargs=js_info_dict,
12 name="jsi18n_link"),
93a07564 » kogakure 2009-03-15 Added a line 13
3fab0604 » trey 2008-09-16 Changed to a standalone app. 14 url(r'^$',
15 view=views.entry_list,
16 name='chiplog_index'),
fa0e99f9 » trey 2008-06-30 First commit. 17
3fab0604 » trey 2008-09-16 Changed to a standalone app. 18 url(r'^(?P<object_id>\d+)/$',
19 view=views.entry_detail,
20 name='chiplog_detail'),
21
22 url(r'^page/(?P<page>\d+)/$',
23 view=views.entry_list,
24 name='chiplog_index_paginated'),
25
26 url(r'^new/$',
27 view=views.entry_create,
28 name='chiplog_create'),
5dda8ff7 » trey 2008-07-13 Starting to customize admin... 29
3fab0604 » trey 2008-09-16 Changed to a standalone app. 30 url(r'^edit/(?P<object_id>\d+)/$',
31 view=views.entry_update,
32 name='chiplog_update'),
33
34 url(r'^delete/(?P<object_id>\d+)/$',
35 view=views.entry_delete,
36 name='chiplog_delete'),
37
c72c77e7 » trey 2008-11-24 Starting to add support for... 38 url(r'^search/$',
3fab0604 » trey 2008-09-16 Changed to a standalone app. 39 view=views.search,
40 name='entry_search'),
c72c77e7 » trey 2008-11-24 Starting to add support for... 41
b06e0457 » trey 2008-11-26 Learning to use the url tem... 42 url(r'^tagged/(?P<tag>\w+)/$',
c72c77e7 » trey 2008-11-24 Starting to add support for... 43 view=views.tagged_list,
44 name='chiplog_tagged_list'),
3fab0604 » trey 2008-09-16 Changed to a standalone app. 45 )