Commit graph

2770 commits

Author SHA1 Message Date
Henrik Levkowetz 2f3476690f In order that document states (which may be used by old documents) should not need to be removed when state machines change and states go out of use, all document states have a 'used' field. The code which accesses the state fields have not been requiring that used=True for the states returned, which is an error. Fixed this by adding 'used=True' to all State.objects.get() and State.objects.filter() call where it's relevant.
- Legacy-Id: 5486
2013-03-05 23:24:41 +00:00
Henrik Levkowetz 9ac6cdc581 Fixed refactoring bug.
- Legacy-Id: 5485
2013-03-05 23:21:51 +00:00
Henrik Levkowetz fc369a6e30 Provide html agendas with local and UTC timezone indications.
- Legacy-Id: 5484
2013-03-05 22:46:16 +00:00
Henrik Levkowetz 69e7373758 Merged in branch/amsl/trunkmerge@5449 from rcross@amsl.com, with some tweaks. This provides the secretariat apps.
- Legacy-Id: 5483
2013-03-05 22:44:03 +00:00
Henrik Levkowetz 7e67b40a87 Merged in branch/amsl/trunkmerge@5449 from rcross@amsl.com, with some tweaks. This provides the secretariat apps.
- Legacy-Id: 5482
2013-03-05 22:43:31 +00:00
Henrik Levkowetz 5f32828caa With RFC6410, there are only two RFC maturity levels, 'Proposed Standard' and 'Internet Standard'. Added a mapping between 'Internet Standard' and slug 'std', to be able to process newer RFC info from the RFC Editor.
- Legacy-Id: 5477
2013-03-02 17:03:15 +00:00
Henrik Levkowetz 2a0b758f08 Changed some tests to work with cssselect 0.7.1 (we've previously had 0.6.1 or possibly other lower versions).
- Legacy-Id: 5475
2013-02-28 21:39:29 +00:00
Henrik Levkowetz fac0d42511 Fixed an import statement that could cause grief.
- Legacy-Id: 5474
2013-02-28 15:06:28 +00:00
Henrik Levkowetz 2ba4f8049d Set version info and settings back to development mode
- Legacy-Id: 5472
2013-02-27 22:24:58 +00:00
Henrik Levkowetz 67a5fd81ac Set version info to release version 4.41 before branching.
- Legacy-Id: 5470
2013-02-27 22:24:55 +00:00
Henrik Levkowetz d0081079e7 Added links from the new IANA states to help pages describing the different states.
- Legacy-Id: 5468
2013-02-27 22:02:11 +00:00
Henrik Levkowetz fa93d26c01 Added a set of help pages for document states (at /help/state/<doctype>/<statetype>/).
- Legacy-Id: 5467
2013-02-27 22:01:18 +00:00
Henrik Levkowetz 73e6f35d9a Added a missing import statement, fixing a bug in the state change logging. Things seemed to be working without this, but the signature of the log_state_changed pulled in from ietf.utils is different that what's expected in the code.
- Legacy-Id: 5466
2013-02-26 15:36:54 +00:00
Henrik Levkowetz 5f51f20409 Added a migration for the new unique_together constraint of [5460].
- Legacy-Id: 5462
Note: SVN reference [5460] has been migrated to Git commit f7d979c83e
2013-02-24 21:22:08 +00:00
Henrik Levkowetz 64c4199877 Unwrap some fairly plain model fields. No code change, just textual.
- Legacy-Id: 5461
2013-02-24 21:20:50 +00:00
Henrik Levkowetz f7d979c83e Merged [5426] from ietf@augustcellars.com:
Make sure that the same rule cannot be entered twice in a community list.

As part of this fix, you need to do the following:
1.  Eliminate duplicates currently in the data base.  This statement can be used to identify them.

SELECT e1.id id1, e2.id id2, e1.community_list_id, e1.rule_type, e1.value FROM ietf_utf8.community_rule e1 JOIN ietf_utf8.community_rule e2 ON (e1.id != e2.id AND e1.community_list_id=e2.community_list_id AND e1.rule_type=e2.rule_type AND e1.value=e2.value);

2.  Delete any current duplicate lines in the text.  This uses the following commands as of the check-in

DELETE FROM TABLE ietf_utf8.community_rule WHERE id=19 OR id=91 OR id=177

3.  Add a constraint to the table so that it will enforce the rule itself

ALTER TABLE ietf_utf8.community_rule ADD CONSTRAINT pc_CommunityRule UNIQUE (community_list_id, rule_type, value)
 - Legacy-Id: 5460
Note: SVN reference [5426] has been migrated to Git commit a18bebe7bd
2013-02-24 21:03:57 +00:00
Henrik Levkowetz 4b4eb2952b Merged [5425] from ietf@augustcellars.com:
Modify atom change feed so that 
1.  It returns the last 14 days of changes rather than the last 20
2.  Change the atom template so that it has correct time offsets rather than saying that PST and UTC are the same
3.  Change the atom template so that it uses content rather than summary and return HTML content with line breaks as needed.
 - Legacy-Id: 5459
Note: SVN reference [5425] has been migrated to Git commit cb1593d6a2
2013-02-24 21:02:44 +00:00
Henrik Levkowetz 420098c725 Merged [5424] from ietf@augustcellars.com:
Close the image tag.  An empty image tag displays on IE although it does not display on Firefox.
 - Legacy-Id: 5458
Note: SVN reference [5424] has been migrated to Git commit 2c810112ab
2013-02-24 21:01:37 +00:00
Henrik Levkowetz c4015a302b Added variations on the recognized date formats during submitted draft parsing, such that comma need not be followed by whitespace in the formats using comma as a separator between some of the fields. Added extraction of drafts referenced by a document, in addition to RFCs referenced.
- Legacy-Id: 5456
2013-02-24 20:17:22 +00:00
Henrik Levkowetz 5345b17eab Added a missing import.
- Legacy-Id: 5455
2013-02-24 20:15:20 +00:00
Henrik Levkowetz e5f7dd8b12 Fixed a typo in a slug.
- Legacy-Id: 5454
2013-02-24 20:14:59 +00:00
Henrik Levkowetz 594ca1f256 Changed the logging target of auxiliary IANA and RFC-Ed sync scripts from LOG_LOCAL0 to LOG_USER, matching what we've already used elsewhere for datatracker logging.
- Legacy-Id: 5453
2013-02-24 20:14:20 +00:00
Henrik Levkowetz 04858d3c2a Added the bof-conc (Concluded BoF) slug to the proxy tranlator for status_id.
- Legacy-Id: 5452
2013-02-24 20:12:31 +00:00
Henrik Levkowetz 274812c5b9 Modified the set of permissible parents for session groups, in order to permit an IAB-sponsored BoF to appear on the agenda.
- Legacy-Id: 5451
2013-02-24 20:11:29 +00:00
Ryan Cross 275f82d224 normalize secr settings variable names
- Legacy-Id: 5449
2013-02-21 23:30:22 +00:00
Ryan Cross b229612c0c move form_utils again
- Legacy-Id: 5447
2013-02-21 22:14:19 +00:00
Ryan Cross 17c3b6486b move form_utils
- Legacy-Id: 5446
2013-02-21 22:12:19 +00:00
Ryan Cross fb8bbc7099 move form_utils
- Legacy-Id: 5445
2013-02-21 22:11:51 +00:00
Ryan Cross a5a7ea17c8 support variable path for static files, SECR_STATIC_URL
- Legacy-Id: 5443
2013-02-21 21:43:37 +00:00
Ryan Cross 39f8e27e7f restore url prefix to secr
- Legacy-Id: 5442
2013-02-21 21:32:00 +00:00
Ryan Cross 2ba9736808 ipr app move fixes
- Legacy-Id: 5441
2013-02-21 19:35:33 +00:00
Ryan Cross 4ca091dba3 changing name of ipr app to ipradmin
- Legacy-Id: 5440
2013-02-21 19:03:04 +00:00
Ryan Cross 185ac9f547 move ipr templates dir to ipradmin
- Legacy-Id: 5439
2013-02-21 18:38:14 +00:00
Ryan Cross 8688eafa61 move ipr app dir to ipradmin
- Legacy-Id: 5438
2013-02-21 18:35:36 +00:00
Ryan Cross c32aee9874 add basic tests
- Legacy-Id: 5437
2013-02-21 00:41:04 +00:00
Ryan Cross a0f548ea6b fix issues with processing converted meeting materials
- Legacy-Id: 5436
2013-02-19 18:21:55 +00:00
Ryan Cross 9613471dff comment unused global variable causing problems with test suite.
- Legacy-Id: 5433
2013-02-15 22:28:20 +00:00
Ryan Cross a0fffcc776 more changes
- Legacy-Id: 5432
2013-02-15 19:02:07 +00:00
Ryan Cross 00dbf38cd9 add templates
- Legacy-Id: 5431
2013-02-15 18:48:30 +00:00
Ryan Cross 1f3ca71362 add apps
- Legacy-Id: 5430
2013-02-15 18:10:38 +00:00
Jim Schaad a18bebe7bd Make sure that the same rule cannot be entered twice in a community list.
As part of this fix, you need to do the following:
1.  Eliminate duplicates currently in the data base.  This statement can be used to identify them.

SELECT e1.id id1, e2.id id2, e1.community_list_id, e1.rule_type, e1.value FROM ietf_utf8.community_rule e1 JOIN ietf_utf8.community_rule e2 ON (e1.id != e2.id AND e1.community_list_id=e2.community_list_id AND e1.rule_type=e2.rule_type AND e1.value=e2.value);

2.  Delete any current duplicate lines in the text.  This uses the following commands as of the check-in

DELETE FROM TABLE ietf_utf8.community_rule WHERE id=19 OR id=91 OR id=177

3.  Add a constraint to the table so that it will enforce the rule itself

ALTER TABLE ietf_utf8.community_rule ADD CONSTRAINT pc_CommunityRule UNIQUE (community_list_id, rule_type, value)
 - Legacy-Id: 5426
2013-02-09 18:09:33 +00:00
Jim Schaad cb1593d6a2 Modify atom change feed so that
1.  It returns the last 14 days of changes rather than the last 20
2.  Change the atom template so that it has correct time offsets rather than saying that PST and UTC are the same
3.  Change the atom template so that it uses content rather than summary and return HTML content with line breaks as needed.
 - Legacy-Id: 5425
2013-02-04 17:45:03 +00:00
Jim Schaad 2c810112ab Close the image tag. An empty image tag displays on IE although it does not display on Firefox.
- Legacy-Id: 5424
2013-02-04 17:43:13 +00:00
Henrik Levkowetz 9fe4ba8225 Added a missing app to the list of apps in settings.py.
- Legacy-Id: 5354
2013-02-02 18:45:21 +00:00
Henrik Levkowetz 2f0ca59a3c Apply patch for iesg/agenda/agenda.json from housely@vigilsec.com, and re-apply previous patch which was lost in the statesync merge.
- Legacy-Id: 5353
2013-02-02 18:44:08 +00:00
Henrik Levkowetz 31a02c097e Set version info and settings back to development mode
- Legacy-Id: 5309
2013-01-20 15:38:27 +00:00
Henrik Levkowetz f5cb0f4ca8 Set version info to release version 4.40 before branching.
- Legacy-Id: 5307
2013-01-20 15:38:24 +00:00
Henrik Levkowetz 37955bf2a6 Added an INSTALL file which holds a record of general and version-specific actions needed to install.
- Legacy-Id: 5304
2013-01-20 15:19:31 +00:00
Ryan Cross 5c5fc3f5d0 add ams_filters
- Legacy-Id: 5179
2013-01-09 00:49:49 +00:00
Ryan Cross f496498e12 fix base html refs, changes to tests.py
- Legacy-Id: 5178
2013-01-09 00:45:13 +00:00