..
api
Added an API for draft submission, at /api/submit. Added an urls.py file under api/ to hold api urls, and moved those from ietf/urls.py. Refactored out many parts of the regular submission forms and functions in submit/forms.py and submit/views.py in order to re-use the appropriate parts for the submission API. Moved support functions to submit/utils.py. Added a new validation errors for missing docName in xml-based submissions. Updated the submission test document templates to use insert additional values. Added failure and success test cases for automated API submissions, and refactored some test utility functions.
2017-09-16 09:35:42 +00:00
bin
Merged in [14106] from rcross@amsl.com:
2017-09-08 14:29:32 +00:00
community
Added a test to check for missing admin models, and added the admin models that were currently missing.
2017-08-01 14:00:29 +00:00
cookies
Fix various "RemovedInDjango20Warning" warnings. Commit ready for merge.
2017-03-25 19:16:45 +00:00
database-notes
dbtemplate
Merged in [13492] from rcross@amsl.com:
2017-06-04 13:09:16 +00:00
doc
Added migrations for document url model changes. Updated the name fixtures. Added ability for individual draft authors to edit document urls.
2017-09-27 16:37:13 +00:00
externals /static
Updated bower-managed static web assets
2017-09-28 09:12:04 +00:00
group
An improved handling of the 'no active roles' message.
2017-10-13 12:05:44 +00:00
help
Merged in [13112] from lars@netapp.com:
2017-03-26 22:06:47 +00:00
idindex
Merged in ^/branch/iola/author-stats-r13145 from olau@iola.dk, and fixed some tests in code which moved after the latest merge with trunk. The test suite passes, but the migrations are _not_ ready to run, because of numbering conflicts (again due to code changes on trunk since the latest sync).
2017-05-31 20:59:26 +00:00
iesg
Changed the telechat date admin to use the 'initial-date' field value instead of the now nonfunctional form.initial dictionary. This may need revisiting under Django 1.11, which has an official api to grab a form's initial values. This fixes a server 500 error on trying to save a non-default telechat date.
2017-10-14 12:08:22 +00:00
ietfauth
Added migrations for document url model changes. Updated the name fixtures. Added ability for individual draft authors to edit document urls.
2017-09-27 16:37:13 +00:00
ipr
Merged in [14062] from housley@vigilsec.com:
2017-08-24 09:41:37 +00:00
liaisons
Added a test to check for missing admin models, and added the admin models that were currently missing.
2017-08-01 14:00:29 +00:00
mailinglists
Treat Area Groups similar to Working Groups and Research Groups where it makes sense to do so. Commit ready for merge.
2017-07-11 19:12:21 +00:00
mailtrigger
Modified the mailtrigger clean_duplicates to reduce email address list entries with the same address but different names to one instance, and use consistent unicode names for authors if known.
2017-09-16 09:19:20 +00:00
meeting
Added bluesheet upload permission for RG Chairs; reformatted some role_required() decorators.
2017-10-05 10:41:55 +00:00
message
Update secretariat admin permissions. Change AnnouncementFrom.address to CharField because full emails, with real name, fail EmailField validation. Includes migration. Commit ready for merge.
2017-09-06 22:42:15 +00:00
name
Migration to add 'confirmed' to DraftSubmissionStateName table.
2017-10-10 15:00:21 +00:00
nomcom
Added tests for correct nomcom email from-address to the nomcom tests, and did some refactoring to improve test failure messages.
2017-09-28 09:09:51 +00:00
person
Moved unidecode_name from utils.text to person.name.
2017-09-20 15:36:30 +00:00
redirects
Updated all urlpatterns to use ietf.utils.urls.url() instead of django's,
2017-02-11 14:43:01 +00:00
release
Made a test more stable.
2017-08-10 10:53:38 +00:00
review
Moved unidecode_name from utils.text to person.name.
2017-09-20 15:36:30 +00:00
secr
Changed to not check timeslot type on delete because other types now have this option. Commit ready for merge
2017-10-16 20:37:15 +00:00
static
Added a link to ietf software contractor instructions to the release info page bottom.
2017-10-09 13:37:41 +00:00
stats
Moved unidecode_name from utils.text to person.name.
2017-09-20 15:36:30 +00:00
submit
Added a guard against feeding int() a non-numeric string during submission confirmation and a log assertion to report same.
2017-10-10 15:02:00 +00:00
sync
Unit test fix. Fixes issue #1545 .
2017-07-15 16:48:14 +00:00
templates
An improved handling of the 'no active roles' message.
2017-10-13 12:05:44 +00:00
utils
Tweaked the test-runner random state handling to display the correct random state filename and make sure to set the same random state.
2017-10-14 12:05:01 +00:00
.gitignore
__init__.py
Set version info and settings back to development mode
2017-10-09 13:57:26 +00:00
bower.json
Changes to bower.json to correctly pick up assets for some new versions of
2017-03-25 17:08:44 +00:00
checks.py
Added checks for the presence of yang module directories to the check framework. Tweaked some text strings.
2017-06-27 14:41:36 +00:00
context_processors.py
Replaced old unworkable email addesss in the 404 page with the current bugreport address, now configured in settings.py.
2017-04-15 12:34:50 +00:00
feed_urls.py
Django 1.9: Removed additional instances of deprecated django.conf.urls.patterns()
2016-12-22 18:14:57 +00:00
LICENSE
manage.py
Moved warnings settings from manage.py and test_runner.py to one single place, settings.py. Decreased the verbosity level when invoking 'loaddata' from the test runner.
2016-12-15 13:25:20 +00:00
middleware.py
Changed name and signature for a log helper.
2017-06-09 19:38:48 +00:00
README-BOWER.rst
settings.py
Set version info and settings back to development mode
2017-10-09 13:57:26 +00:00
settings_releasetest.py
settings_sqlitetest.py
Revert a change to settings_sqlitetest.py
2017-04-12 21:53:15 +00:00
settings_testcrawl.py
Added an ALLOWED_HOSTS setting to settings_testcrawl.
2017-03-23 10:43:39 +00:00
urls.py
Added an API for draft submission, at /api/submit. Added an urls.py file under api/ to hold api urls, and moved those from ietf/urls.py. Refactored out many parts of the regular submission forms and functions in submit/forms.py and submit/views.py in order to re-use the appropriate parts for the submission API. Moved support functions to submit/utils.py. Added a new validation errors for missing docName in xml-based submissions. Updated the submission test document templates to use insert additional values. Added failure and success test cases for automated API submissions, and refactored some test utility functions.
2017-09-16 09:35:42 +00:00
virtualenv-manage.py
Changed executable mode
2017-01-20 20:59:48 +00:00
wsgi.py
Added some logging to wsgi.py, to show the virtualenv settings being used.
2016-10-29 11:44:00 +00:00