Skip to content

Commit db5153b

Browse files
committed
Merged [6859] from rcross@amsl.com:
fixed calls to reverse() to match new url names since code merge - Legacy-Id: 6954 Note: SVN reference [6859] has been migrated to Git commit 9b06fb9
2 parents 9ef4b57 + 9b06fb9 commit db5153b

2 files changed

Lines changed: 36 additions & 7 deletions

File tree

changelog

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
ietfdb (4.84) ietf; urgency=low
2+
3+
This is a minor bugfix release, in preparation for merging in the latest
4+
shim-removal work.
5+
6+
* Merged [6859] from rcross@amsl.com:
7+
Fixed calls to reverse() to match new url names since code merge
8+
9+
* Merged [6858] from rcross@amsl.com:
10+
Use correct URL in new IPR notification email
11+
12+
* Merged [6857] from rjsparks@nostrum.com:
13+
A script to run from cron to send daily messages to IETF Announce showing
14+
the email header field change. his should be run from Jan 6 to Jan 20,
15+
after which point we need to deploy analagous changes to the code that
16+
constructs last call announcements. This is related to bug #811.
17+
18+
* Merged [6701] from rjsparks@nostrum.com:
19+
Adds pages to show what a given document refers to and what refers to it.
20+
ixes bug #1194 ommit ready for merge
21+
22+
* Merged [6672] from rjsparks@nostrum.com:
23+
Removed requirement to enter a phone number in various places on an IPR
24+
disclosure entry form. Fixes bug #1176
25+
26+
* Fixed a typo. Fixes issue #1216.
27+
28+
-- Henrik Levkowetz <henrik@levkowetz.com> 16 Dec 2013 23:28:56 +0100
29+
130
ietfdb (4.83) ietf; urgency=high
231

332
This release provides the code from the IETF-88 code sprint, and also

ietf/secr/ipradmin/views.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def admin_notify(request, ipr_id):
120120
else:
121121
request.session['send_result'] = 'Messages sent successfully'
122122
return HttpResponseRedirect(reverse(
123-
'ipr_old_submitter_notify',
123+
'ipradmin_old_submitter_notify',
124124
args=[ipr_id]
125125
))
126126

@@ -351,7 +351,7 @@ def admin_delete(request, ipr_id):
351351
ipr_dtl = IprDetail.objects.get(ipr_id=ipr_id)
352352
ipr_dtl.status = 2
353353
ipr_dtl.save()
354-
return HttpResponseRedirect(reverse('ipr_admin_list'))
354+
return HttpResponseRedirect(reverse('ipradmin_admin_list'))
355355

356356
@template('ipradmin/notify.html')
357357
def old_submitter_notify(request, ipr_id):
@@ -364,7 +364,7 @@ def old_submitter_notify(request, ipr_id):
364364
else:
365365
request.session['send_result'] = 'Messages sent successfully'
366366
return HttpResponseRedirect(reverse(
367-
'ipr_old_submitter_notify',
367+
'ipradmin_old_submitter_notify',
368368
args=[ipr_id]
369369
))
370370

@@ -425,9 +425,9 @@ def admin_detail(request, ipr_id):
425425
if command == 'post':
426426
return admin_post(request, ipr_id, 'detail', 'post')
427427
elif command == 'notify':
428-
return HttpResponseRedirect(reverse('ipr_old_submitter_notify', args=[ipr_id]))
428+
return HttpResponseRedirect(reverse('ipradmin_old_submitter_notify', args=[ipr_id]))
429429
elif command == 'delete':
430-
return HttpResponseRedirect(reverse('ipr_admin_delete', args=[ipr_id]))
430+
return HttpResponseRedirect(reverse('ipradmin_admin_delete', args=[ipr_id]))
431431

432432
header_text = possible = temp_name = footer_text = ''
433433
contact_one_data, contact_two_data, document_data, licensing_data,\
@@ -691,7 +691,7 @@ def admin_create(request):
691691
ipr_contact_formset.forms[1].save(ipr_detail)
692692
if ipr_contact_formset.forms[2].is_valid():
693693
ipr_contact_formset.forms[2].save(ipr_detail)
694-
return HttpResponseRedirect(reverse('ipr_admin_list'))
694+
return HttpResponseRedirect(reverse('ipradmin_admin_list'))
695695
else:
696696
ipr_detail_form = IprDetailForm(formtype='create')
697697
ipr_contact_formset = IPRContactFormset(initial=[
@@ -724,7 +724,7 @@ def admin_update(request, ipr_id):
724724
else:
725725
redirect_url = ''
726726
else: # remove
727-
redirect_url = reverse('ipr_admin_list')
727+
redirect_url = reverse('ipradmin_admin_list')
728728
if 'admin_remove_ipr' in request.POST:
729729
ipr_detail.status = 2
730730
elif 'request_remove_ipr' in request.POST:

0 commit comments

Comments
 (0)