datatracker/ietf/doc
2017-02-10 14:49:16 +00:00
..
management Made doc/ pyflakes-clean. 2014-03-15 16:09:47 +00:00
migrations Merged Django-1.8 upgrade work to trunk. Adjusted migration names, and added migrations as necessary. Fixed some instances of broken html. 2016-12-13 05:55:46 +00:00
templatetags Removed dead code which used to work around a now fixed bug (and also used a now removed django function) 2017-02-10 14:43:37 +00:00
__init__.py Move new schema models from redesign/ to ietf/ 2012-01-24 17:17:24 +00:00
admin.py Specified strip=False for another bunch of CharField form fields with Textarea widgets. 2017-01-23 17:38:56 +00:00
expire.py Merge in ^/branch/iola/event-saving-refactor-r10076, fixing a few problems 2015-10-27 10:37:06 +00:00
factories.py Added a pylint rc-file, and fixed or silenced a number of issues found by pylint using the settings .pylintrc (which enable only error checking). 2016-09-08 14:48:59 +00:00
feeds.py Changed the handling of DocEvent 'rev' fields in document history. We should give DocEvent a 'rev' field which is always filled in; the current handling is error prone and much to complicated. 2016-12-01 13:49:36 +00:00
fields.py Manually moved the concepts forward. Reworked some presentation. Working enough to bring testers in at Sprint93 2015-07-13 21:09:39 +00:00
forms.py Refactored counting telechat pages to do it only in one place. Count more accurately and make it possible to report more granularly. Added page counts to agenda.json. Commit ready to merge. 2016-01-07 23:31:05 +00:00
lastcall.py Summary: Be more careful when generating writeups so that we wait with 2015-10-06 16:20:12 +00:00
mails.py Merged in ^/branch/iola/event-saving-refactor-r10291, which refactors document saving to always use doc.save_with_history(events), and requires accompanying events. This branch also provides refactoring of recurring regexes in url patterns into a dictionary. As part of the merge, also refactored new code which didn't use the save_with_history() method. 2016-08-23 10:52:08 +00:00
models.py Added a guard to prevent trying to get a document path for a meeting document when the document is not associated with a meeting session. 2017-02-08 17:00:12 +00:00
redirect_drafts_urls.py Django 1.9: Removed additional instances of deprecated django.conf.urls.patterns() 2016-12-22 18:14:57 +00:00
redirect_idtracker_urls.py Django 1.9: Removed additional instances of deprecated django.conf.urls.patterns() 2016-12-22 18:14:57 +00:00
resources.py Merged in ^/branch/iola/review-tracker-r12128@12397, bringing in the review tool functionality described in RFC7735. This adds the ability to set up review management pages for review teams such as genart, secdir, opsdir, etc.; letting the review team secretaries manage requested and completed reviews; letting the reviewers keep track of and document their reviews, and more. See the RFC for full specification, and the branch commit log for a full commit history. 2016-11-29 14:54:19 +00:00
settings.py Started moving app-specific settings into app settings.py files. 2016-09-09 05:42:41 +00:00
tests.py Rewrote Document.href() to not do database queries when possible, as that has a big performance impact. Fixed a number of tests which relied on href() not doing the right thing for simplified test data. Added caching of canonical_name(), which can be quite heavy. Additional refactoring in a number of places, to use better test data and avoid test failures for good code :-) 2016-10-28 16:59:42 +00:00
tests_ballot.py Merged in ^/branch/iola/event-saving-refactor-r10291, which refactors document saving to always use doc.save_with_history(events), and requires accompanying events. This branch also provides refactoring of recurring regexes in url patterns into a dictionary. As part of the merge, also refactored new code which didn't use the save_with_history() method. 2016-08-23 10:52:08 +00:00
tests_charter.py Merged in ^/branch/iola/event-saving-refactor-r10291, which refactors document saving to always use doc.save_with_history(events), and requires accompanying events. This branch also provides refactoring of recurring regexes in url patterns into a dictionary. As part of the merge, also refactored new code which didn't use the save_with_history() method. 2016-08-23 10:52:08 +00:00
tests_conflict_review.py Merged in ^/branch/iola/event-saving-refactor-r10291, which refactors document saving to always use doc.save_with_history(events), and requires accompanying events. This branch also provides refactoring of recurring regexes in url patterns into a dictionary. As part of the merge, also refactored new code which didn't use the save_with_history() method. 2016-08-23 10:52:08 +00:00
tests_draft.py Merged in ^/branch/iola/event-saving-refactor-r10291, which refactors document saving to always use doc.save_with_history(events), and requires accompanying events. This branch also provides refactoring of recurring regexes in url patterns into a dictionary. As part of the merge, also refactored new code which didn't use the save_with_history() method. 2016-08-23 10:52:08 +00:00
tests_material.py Added a score of setting save/restores to test setup/teardown actions. 2016-06-21 07:51:02 +00:00
tests_review.py Removed some unnecessary randomness in tests introduced in last commit. Commit ready for merge. 2017-01-19 16:37:00 +00:00
tests_status_change.py In Django 1.9, CharField form fields will be whitespace-stripped by default. Added strip=False for the status change review form content. Also removed a superfluous f.close(). 2017-01-19 17:15:28 +00:00
urls.py Django 1.10 does not permit the view argument to url() to be a string any more. Changed all cases view arguments to url() which were strings to instead reference the actual imported function. 2017-02-10 14:49:16 +00:00
urls_charter.py Django 1.10 does not permit the view argument to url() to be a string any more. Changed all cases view arguments to url() which were strings to instead reference the actual imported function. 2017-02-10 14:49:16 +00:00
urls_conflict_review.py Django 1.10 does not permit the view argument to url() to be a string any more. Changed all cases view arguments to url() which were strings to instead reference the actual imported function. 2017-02-10 14:49:16 +00:00
urls_material.py Django 1.10 does not permit the view argument to url() to be a string any more. Changed all cases view arguments to url() which were strings to instead reference the actual imported function. 2017-02-10 14:49:16 +00:00
urls_review.py Django 1.9: Removed deprecated use of django.conf.urls.patterns() from all urls*.py files. 2016-12-22 17:21:57 +00:00
urls_status_change.py Django 1.10 does not permit the view argument to url() to be a string any more. Changed all cases view arguments to url() which were strings to instead reference the actual imported function. 2017-02-10 14:49:16 +00:00
utils.py Change how we display review text to follow the tecnique used with other large blocks of pasted or imported text (shepherds writeups for instance). Fixes #2104. Commit ready for merge. 2016-12-19 20:38:51 +00:00
utils_charter.py Added a link to the group datatracker page to the new group announcement (and review) emails. Fixes issue #2140. 2017-01-17 22:22:46 +00:00
utils_search.py Merged django18 work forward to r12447 2016-12-05 15:03:40 +00:00
views_ballot.py Specified strip=False for another bunch of CharField form fields with Textarea widgets. 2017-01-23 17:38:56 +00:00
views_charter.py Merged django 1.9 work forward to copy of trunk @6.41.0 2017-01-30 23:13:02 +00:00
views_conflict_review.py Pyflakes fixes. 2017-01-23 18:35:58 +00:00
views_doc.py Merged django 1.9 work forward to copy of trunk @6.41.0 2017-01-30 23:13:02 +00:00
views_draft.py Pyflakes fixes. 2017-01-23 18:35:58 +00:00
views_help.py The context_instance parameter to render_to_response() and render_to_string() is now deprecated. Fixed this, and generally changed the idiom render_to_response('template.html', {}, RequestContext(request)) to the newer and simpler render(request, 'template.html', {}). About 200 instances. 2017-01-09 21:26:30 +00:00
views_material.py Specified strip=False for another bunch of CharField form fields with Textarea widgets. 2017-01-23 17:38:56 +00:00
views_review.py Merged django 1.9 work forward to copy of trunk @6.41.0 2017-01-30 23:13:02 +00:00
views_search.py Don't use EmptyQuerySet directly; return Class.objects.none() instead. 2016-09-21 11:23:57 +00:00
views_stats.py Merged in Django 1.9 upgrade work from ^/personal/henrik/6.41.1-django-1.9 2017-01-31 15:13:01 +00:00
views_status_change.py Pyflakes fixes. 2017-01-23 18:35:58 +00:00