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
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
Ole Laursen
3dccf596b2
Fix ordering bug in test code that shows up in MySQL but not in SQLite
...
- Legacy-Id: 5151
2012-12-21 12:44:55 +00:00
Ole Laursen
f22b14a8a4
Fix really weird encoding issue with Python 2.6
...
- Legacy-Id: 5150
2012-12-21 11:46:42 +00:00
Henrik Levkowetz
1fbcd783f3
Merged branch/iola/statesync up to @5118 to trunk.
...
- Legacy-Id: 5147
2012-12-20 20:32:03 +00:00
Henrik Levkowetz
5b8a56affd
Set version info and settings back to development mode
...
- Legacy-Id: 5138
2012-12-16 18:30:34 +00:00
Henrik Levkowetz
8bb48d0369
Set version info to release version 4.37 before branching.
...
- Legacy-Id: 5136
2012-12-16 18:30:32 +00:00
Henrik Levkowetz
9d9e2851e0
Test the argument list, not the tuple of argument tuple.
...
- Legacy-Id: 5134
2012-12-16 18:30:25 +00:00
Henrik Levkowetz
505e715fe2
Merged in a patch from housley@vigilsec.com to handle different documents better in the agenda JSON output.
...
- Legacy-Id: 5132
2012-12-15 22:49:11 +00:00
Henrik Levkowetz
97a7ab30db
Added simple logging of test runs, to make it easier to be sure that tests has been run successfully on the latest code.
...
- Legacy-Id: 5131
2012-12-15 22:47:11 +00:00
Henrik Levkowetz
83f7b4ca5a
Got rid of some debug traces.
...
- Legacy-Id: 5130
2012-12-15 22:45:47 +00:00
Henrik Levkowetz
bda0cf3163
Added a new field, #16 : draft AD (name and email) to all_id2.txt
...
- Legacy-Id: 5129
2012-12-15 22:44:16 +00:00
Henrik Levkowetz
6f5ae2edcd
Added a new field, #16 : draft AD (name and email) to all_id2.txt
...
- Legacy-Id: 5128
2012-12-15 22:43:10 +00:00
Ole Laursen
819e80f033
Fix quoting bug in AUTH48 links
...
- Legacy-Id: 5118
2012-12-11 15:16:31 +00:00
Ole Laursen
9c571e65ef
Undo actual state when doing an RFC Editor undo, this is only relevant
...
if the removed entry is the latest entry
- Legacy-Id: 5116
2012-12-11 15:10:51 +00:00
Henrik Levkowetz
af9a442ca2
Made the IPR country field wider to accomodate IPR disclosures referencing many patent instances in many countries.
...
- Legacy-Id: 5089
2012-12-03 13:19:02 +00:00
Henrik Levkowetz
4946a3f694
Updated draft submission author extraction module to handle dash-separated double given names.
...
- Legacy-Id: 5088
2012-12-03 13:17:33 +00:00
Henrik Levkowetz
158f501653
More tweaks and fixes to the IESG scribe template templates.
...
- Legacy-Id: 5087
2012-12-03 13:16:10 +00:00
Henrik Levkowetz
e38f738851
Fixed some s!<br/>!<br>! and s!</li>!<li>! in the scribe template templates, and also where html escaping is and isn't applied.
...
- Legacy-Id: 5086
2012-12-03 13:07:16 +00:00
Ole Laursen
8eeef2def4
Send out expires as "null" in JSON rather than crashing if there's no
...
expiry on a document
- Legacy-Id: 5079
2012-11-27 12:08:56 +00:00
Ole Laursen
8165048f11
Add word wrap to charters for charters that aren't preformatted
...
- Legacy-Id: 5078
2012-11-27 12:06:32 +00:00
Henrik Levkowetz
dde89d19f4
Added a filter for use in displaying document comments and discusses which unfortunately sometimes use html <br> markup, which should give line breaks, and sometimes contain <email@domain> which should *not* be interpreted as html, but rendered as <...
...
- Legacy-Id: 5075
2012-11-25 15:56:29 +00:00
Henrik Levkowetz
9a302b63dc
Limit the 1wg-summary list and friends to WGs, (excluding the 'iesg' area which lists the areas as subgroups, for instance).
...
- Legacy-Id: 5063
2012-11-14 11:32:33 +00:00
Henrik Levkowetz
7e226be6fb
Removed debug statements.
...
- Legacy-Id: 5062
2012-11-13 14:52:55 +00:00