.. |
management
|
Merged in [16603] from rjsparks@nostrum.com:
|
2019-08-20 10:35:06 +00:00 |
migrations
|
Adjusted migrations for Python2/3 compatibility.
|
2019-08-08 17:11:14 +00:00 |
templatetags
|
Replaced six.ensure_str with django's force_str
|
2019-07-17 18:43:40 +00:00 |
__init__.py
|
Move new schema models from redesign/ to ietf/
|
2012-01-24 17:17:24 +00:00 |
admin.py
|
Added 'from __future__' imports all over the place, to bring code behaviour into closer alignment between python2 and python3
|
2019-07-15 15:40:51 +00:00 |
expire.py
|
Merged in [16563] from housley@vigilsec.com:
|
2019-08-04 15:44:06 +00:00 |
factories.py
|
Shortened generated document titles a tad, to avoid line wrapping in the IESG agenda package (which breaks the relevant test).
|
2019-07-18 10:17:17 +00:00 |
feeds.py
|
Python2/3 compatibility: replaced six.ensure_text() with either six.text_type or django's force_text(), depending on the case, and fixed a variable scope issue.
|
2019-07-16 13:20:05 +00:00 |
fields.py
|
Python2/3 compatibility: replaced six.ensure_text() with either six.text_type or django's force_text(), depending on the case, and fixed a variable scope issue.
|
2019-07-16 13:20:05 +00:00 |
forms.py
|
Added 'from __future__' imports all over the place, to bring code behaviour into closer alignment between python2 and python3
|
2019-07-15 15:40:51 +00:00 |
lastcall.py
|
Added DocEvent rev= parameter througout the code.
|
2017-03-06 15:08:21 +00:00 |
mails.py
|
Python2/3 compatibility: replaced six.ensure_text() with either six.text_type or django's force_text(), depending on the case, and fixed a variable scope issue.
|
2019-07-16 13:20:05 +00:00 |
models.py
|
The logic for displaying 'Email requested to be sent for earlier discuss' on IESG positions was wrong; it would count later discusses and discusses from other ADs as an 'earlier discuss'. Moved any_email_sent() from ballot to position, and refined the criteria.
|
2019-08-28 20:56:34 +00:00 |
redirect_drafts_urls.py
|
Updated all urlpatterns to use ietf.utils.urls.url() instead of django's,
|
2017-02-11 14:43:01 +00:00 |
redirect_idtracker_urls.py
|
Updated all urlpatterns to use ietf.utils.urls.url() instead of django's,
|
2017-02-11 14:43:01 +00:00 |
resources.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
settings.py
|
Started moving app-specific settings into app settings.py files.
|
2016-09-09 05:42:41 +00:00 |
tests.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
tests_ballot.py
|
Changed instances of email body extaction to use a custom get_payload() function.
|
2019-07-15 17:15:16 +00:00 |
tests_charter.py
|
Added encoding='utf-8' parameter to io.open operations in tests that starting failing since adding unicode_literals. Commit ready to merge
|
2019-07-20 22:54:14 +00:00 |
tests_conflict_review.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
tests_downref.py
|
Added 'from __future__' imports all over the place, to bring code behaviour into closer alignment between python2 and python3
|
2019-07-15 15:40:51 +00:00 |
tests_draft.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
tests_material.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
tests_review.py
|
Merged changes from current trunk to Py3 branch.
|
2019-07-16 15:36:16 +00:00 |
tests_status_change.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
urls.py
|
Added 'from __future__' imports all over the place, to bring code behaviour into closer alignment between python2 and python3
|
2019-07-15 15:40:51 +00:00 |
urls_charter.py
|
Added a new document tab for some documents, showing htmlized drafts and RFCs
|
2017-03-20 14:08:52 +00:00 |
urls_conflict_review.py
|
Added 'from __future__' imports all over the place, to bring code behaviour into closer alignment between python2 and python3
|
2019-07-15 15:40:51 +00:00 |
urls_material.py
|
Cleaned up the remaining explicit url names, using dotted-paths to view
|
2017-02-26 23:21:49 +00:00 |
urls_review.py
|
Merged in a refactoring of document review code from rjsparks@nostrum.com. This introduces ReviewAssignments, letting us do multiple assingments for a given RevieRequest, without conflating the assignments and their results with the request itself.
|
2019-04-30 16:54:06 +00:00 |
urls_status_change.py
|
Cleaned up the remaining explicit url names, using dotted-paths to view
|
2017-02-26 23:21:49 +00:00 |
utils.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
utils_charter.py
|
Python2/3 compatibility: replaced six.ensure_text() with either six.text_type or django's force_text(), depending on the case, and fixed a variable scope issue.
|
2019-07-16 13:20:05 +00:00 |
utils_search.py
|
Merged in [16563] from housley@vigilsec.com:
|
2019-08-04 15:44:06 +00:00 |
views_ballot.py
|
Added 'from __future__' imports all over the place, to bring code behaviour into closer alignment between python2 and python3
|
2019-07-15 15:40:51 +00:00 |
views_charter.py
|
Python2/3 compatibility: replaced six.ensure_text() with either six.text_type or django's force_text(), depending on the case, and fixed a variable scope issue.
|
2019-07-16 13:20:05 +00:00 |
views_conflict_review.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
views_doc.py
|
Merged in [16557] from pusateri@bangj.com:
|
2019-07-22 18:09:53 +00:00 |
views_downref.py
|
Added 'from __future__' imports all over the place, to bring code behaviour into closer alignment between python2 and python3
|
2019-07-15 15:40:51 +00:00 |
views_draft.py
|
Py2/3 compatibility: Added __future__ import.
|
2019-07-15 15:52:18 +00:00 |
views_help.py
|
Added an explicit ID-Exists state for the IESG state machine. Reworked code so that the IESG state machine always has a state. Added the ability to release a document from a working group, research group, or the independent stream. Releasing a document removes all stream state, and sets the document to have no stream.
|
2018-12-11 22:38:05 +00:00 |
views_material.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
views_review.py
|
Python2/3 compatibility: Changed the use of open() and StringIO to io.open() etc.
|
2019-07-15 19:14:04 +00:00 |
views_search.py
|
Py2/3 compatibility: Added __future__ import
|
2019-07-15 15:46:06 +00:00 |
views_stats.py
|
Changed settings so that cache keys used by memcached includes the release version, in order to avoid stale and incorrect cache content on new release deployment. Made it easier to pick out cache key composition by normalizing the variable name. Adjusted cache prefix and the composition of some keys to have a unique and consistent cache key prefix.
|
2018-03-26 21:26:20 +00:00 |
views_status_change.py
|
Python2/3 compatibility: replaced six.ensure_text() with either six.text_type or django's force_text(), depending on the case, and fixed a variable scope issue.
|
2019-07-16 13:20:05 +00:00 |