Added a new yang checker, 'yanglint', to the existing Yang checker class, in addition to the existing 'pyang' checker. Added modal overlay displays showing the yang check results every place the yin/yang symbol is shown (red or green) to indicate the presencee and result of yang checks. Added a Yang Validation: line in the document meta-information section on the document's page in the datatracker. Added the result of the xym extaction to the yang check results, to make extration failures visible. Added the version of the used xym, pyang, and yanglint commands to the check results. Added an action to move successfully extracted and validated modules to the module library directories immediately on submission. Added the xym and pyang repositories as svn:external components, rather than listing them in requirements.txt, as there has been delays of many months between essential features in the repositories, and an actual release. We may get occasional buildbot failures if broken code is pulled in from the repository, but better that than the functionality failure of severely outdated componets. Added a new management command to re-run yang validation for active drafts for which yang modules were found at submission time, in order to pick up imported models which may have arrived in the model libraries after the draft's submission. Run daily from bin/daily. Added a table to hold version information for external commands. The yang checker output should include the version information of the used checkers, but seems unnecessary to run each command with its --version switch every time we check a module... Added a new management command to collect version information for external commands on demand. To be run daily from bin/daily. Added tests to verify that xym, pyang and yanglint information is available on the submission confirmation page, and updated the yang module contained in the test document to validate under both pyang and yanglint. Updated admin.py and resource.py files as needed. - Legacy-Id: 13634
57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
# -*- conf-mode -*-
|
|
setuptools>=18.5 # Require this first, to prevent later errors
|
|
#
|
|
anora>=0.1.2
|
|
argon2-cffi>=16.1.0 # For the Argon2 password hasher option
|
|
beautifulsoup4>=4.4
|
|
bibtexparser>=0.6.2
|
|
bleach>=1.5.0,<2.0.0
|
|
coverage>=4.0.1,!=4.0.2
|
|
#cssselect>=0.6.1 # for PyQuery
|
|
decorator>=3.4.0
|
|
defusedxml>=0.4.1 # for TastyPie when ussing xml; not a declared dependency
|
|
Django>=1.10,<1.11
|
|
django-bcrypt>=0.9.2 # for the BCrypt password hasher option. Remove when all bcrypt upgraded to argon2
|
|
django-bootstrap3>=7.0
|
|
django-formtools>=1.0 # instead of django.contrib.formtools in 1.8
|
|
django-markup>=1.1
|
|
django-password-strength>=1.2.1
|
|
django-tastypie>=0.13.2
|
|
django-widget-tweaks>=1.3
|
|
docutils>=0.12
|
|
factory-boy>=2.8.1
|
|
google-api-python-client
|
|
# Faker # from factory-boy
|
|
hashids>=1.1.0
|
|
html5lib>=0.90,<0.99999999 # ietf.utils.html needs a rewrite for html5lib 1.x -- major code changes in sanitizer
|
|
httplib2>=0.10.3
|
|
jsonfield>=1.0.3 # for SubmissionCheck. This is https://github.com/bradjasper/django-jsonfield/.
|
|
#lxml>=3.4.0 # from PyQuery;
|
|
mimeparse>=0.1.3 # from TastyPie
|
|
mock>=2.0.0
|
|
MySQL-python>=1.2.5
|
|
pathlib>=1.0
|
|
pathlib2>=2.3.0
|
|
Pillow>=3.0
|
|
pyang>=1.7.2 # Handled as an svn:externals component
|
|
pyflakes>=0.8.1
|
|
pyquery>=1.2.13,!=1.2.14 # Pyqyery 1.2.14 fails on some selectors or stacked selectors
|
|
python-dateutil>=2.2
|
|
python-magic>=0.4.6
|
|
python-memcached>=1.48 # for django.core.cache.backends.memcached
|
|
pytz>=2014.7
|
|
pyzmail>=1.0.3
|
|
requests!=2.12.*
|
|
selenium>=2.42
|
|
six>=1.8.0
|
|
sqlparse>=0.2.2
|
|
tblib>=1.3.0
|
|
tqdm>=3.7.0
|
|
Trac>=1.0.10,<1.2
|
|
Unidecode>=0.4.18
|
|
#wsgiref>=0.1.2
|
|
xml2rfc>=2.5.0,!=2.6.0
|
|
#xym>=0.1.2,!=0.3 # Handled as an svn:externals component
|
|
#zxcvbn-python>=4.4.14 # Not needed until we do back-end password entropy validation
|
|
|