Skip to content

Commit 7c46b9b

Browse files
committed
Change the wgchairs.ManageWriteupTestCase to not expect the writeup page to be restricted. This adapts the test to the change made in [4218] to make writeups readable by all.
- Legacy-Id: 4300 Note: SVN reference [4218] has been migrated to Git commit 0e3de35
1 parent dac1163 commit 7c46b9b

2 files changed

Lines changed: 47 additions & 1 deletion

File tree

changelog

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
ietfdb (4.01)
2+
3+
* Merged [4265] from adam@nostrum.com:
4+
Migrated HTML agenda to new data model. This has several improvements,
5+
as well, such as clearer marking of BOFs.
6+
7+
* Merged [4226] from adam@nostrum.com:
8+
Updated agenda.ics to use new data model. Also, tons more efficient.
9+
Additionally, the description field now includes links to relevant meeting
10+
materials.
11+
12+
* Merged [4224] from york@isoc.org:
13+
Related to #816 - Modified base.html so that the logo is clickable as
14+
well as the text.
15+
16+
* Merged [4223] from york@isoc.org:
17+
Related to #817 - added a 401.html page for responding to
18+
authentication failures
19+
20+
* Merged [4212] from rcross@amsl.com:
21+
Ticket #673 Add ability to clear ballot
22+
23+
* Merged [4214] from york@isoc.org:
24+
Fixes #816 - Turns datatracker.ietf.org into a clickable link
25+
26+
* Merged [4213] from suresh.krishnan@ericsson.com:
27+
Making doc writeup available as read-only text to regular users who are
28+
not shepherd/AD/Secretariat etc.
29+
Adding a link for viewing a writeup to the main datatracker page.
30+
31+
* Merged [4205] from shane@time-travellers.org:
32+
Added a link to the datatracker main document page when we announce a
33+
new document
34+
35+
* Merged [4207] from adam@nostrum.com:
36+
Ported week view over to use the new meeting data model
37+
38+
* Merged [4204] from shane@time-travellers.org:
39+
Adds a link to the datatracker main document page in the new-version
40+
notification messages
41+
42+
* Added a fix to catch summer/wintertime changes.
43+
44+
-- Henrik Levkowetz <henrik@levkowetz.com> 18 Apr 2012 15:29:59 +0200
45+
146
ietfdb (4.00)
247

348
* This is the official release of the 4.00 series releases, which expects

ietf/wgchairs/tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ def test_manage_writeup(self):
263263
self.assertTrue(not draft.tags.filter(slug="sheph-u"))
264264

265265
url = urlreverse('doc_managing_writeup', kwargs=dict(acronym=draft.group.acronym, name=draft.name))
266-
login_testing_unauthorized(self, "secretary", url)
266+
r = self.client.get(url)
267+
self.client.login(remote_user="secretary")
267268

268269
# get
269270
r = self.client.get(url)

0 commit comments

Comments
 (0)