* Moved RFCs model into idtracker * Switched idtracker querys to use idinternal * Created idinternal.document which returns either an InternetDraft or an Rfc depending on the value of rfc_flag * Create compatability methods in InternetDraft and Rfc models to be able to use certain attributes in the template without worring about where they come from. Ticket #59 has a list of remaining bits. - Legacy-Id: 98
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
from django.conf.urls.defaults import *
|
|
from ietf.idtracker.models import IDInternal, IDState, IDSubState, DocumentComment
|
|
from ietf.idtracker import views
|
|
|
|
id_dict = {
|
|
'queryset': IDInternal.objects.all().filter(rfc_flag=0),
|
|
}
|
|
rfc_dict = {
|
|
'queryset': IDInternal.objects.all().filter(rfc_flag=1),
|
|
}
|
|
comment_dict = {
|
|
'queryset': DocumentComment.objects.all().filter(public_flag=1),
|
|
}
|
|
|
|
urlpatterns = patterns('django.views.generic.simple',
|
|
(r'^states/$', 'direct_to_template', { 'template': 'idtracker/states.html', 'extra_context': { 'states': IDState.objects.all(), 'substates': IDSubState.objects.all() } }),
|
|
)
|
|
urlpatterns += patterns('django.views.generic.list_detail',
|
|
(r'^rfc(?P<object_id>\d+)/$', 'object_detail', rfc_dict),
|
|
(r'^(?P<object_id>\d+)/$', 'object_detail', id_dict),
|
|
(r'^(?P<slug>[^/]+)/$', 'object_detail', dict(id_dict, slug_field='draft__filename')),
|
|
(r'^comment/(?P<object_id>\d+)/$', 'object_detail', comment_dict),
|
|
)
|
|
urlpatterns += patterns('',
|
|
(r'^(?P<slug>[^/]+)/comment/(?P<object_id>\d+)/$', views.comment, comment_dict),
|
|
(r'^states/(?P<state>\d+)/$', views.state_desc),
|
|
(r'^states/substate/(?P<state>\d+)/$', views.state_desc, { 'is_substate': 1 }),
|
|
(r'^(?P<id>\d+)/edit/$', views.edit_idinternal),
|
|
(r'^$', views.search),
|
|
)
|