Update code to 4.5 official version 29/58729/1
authorThomas Duval <thomas.duval@orange.com>
Tue, 19 Jun 2018 14:13:31 +0000 (16:13 +0200)
committerThomas Duval <thomas.duval@orange.com>
Tue, 19 Jun 2018 14:30:55 +0000 (16:30 +0200)
commit2dbe655587ca98b67c1a3e3798c63fd47229adc0
treedf374b5378225c9946ec0c97968bfa591fb9f9b6
parentd28f8e68ac176a15dbbd7873f757f5a9f221d118
Update code to 4.5 official version

Change-Id: I5075da0e2a3247ae1564f21b358748f482b75aa4
134 files changed:
moon_authz/Dockerfile
moon_dashboard/.gitignore [new file with mode: 0644]
moon_dashboard/.gitlab-ci.yml [new file with mode: 0644]
moon_dashboard/Dockerfile [new file with mode: 0644]
moon_dashboard/LICENSE [new file with mode: 0644]
moon_dashboard/MANIFEST.in [new file with mode: 0644]
moon_dashboard/README.md [new file with mode: 0644]
moon_dashboard/README.rst [new file with mode: 0644]
moon_dashboard/babel-django.cfg [new file with mode: 0644]
moon_dashboard/babel-djangojs.cfg [new file with mode: 0644]
moon_dashboard/moon/__init__.py [new file with mode: 0644]
moon_dashboard/moon/dashboard.py [new file with mode: 0644]
moon_dashboard/moon/enabled/_32000_moon.py [new file with mode: 0644]
moon_dashboard/moon/model/__init__.py [new file with mode: 0644]
moon_dashboard/moon/model/panel.py [new file with mode: 0644]
moon_dashboard/moon/model/templates/model/index.html [new file with mode: 0644]
moon_dashboard/moon/model/tests.py [new file with mode: 0644]
moon_dashboard/moon/model/urls.py [new file with mode: 0644]
moon_dashboard/moon/model/views.py [new file with mode: 0644]
moon_dashboard/moon/pdp/__init__.py [new file with mode: 0644]
moon_dashboard/moon/pdp/panel.py [new file with mode: 0644]
moon_dashboard/moon/pdp/templates/pdp/index.html [new file with mode: 0644]
moon_dashboard/moon/pdp/tests.py [new file with mode: 0644]
moon_dashboard/moon/pdp/urls.py [new file with mode: 0644]
moon_dashboard/moon/pdp/views.py [new file with mode: 0644]
moon_dashboard/moon/policy/__init__.py [new file with mode: 0644]
moon_dashboard/moon/policy/panel.py [new file with mode: 0644]
moon_dashboard/moon/policy/templates/policy/index.html [new file with mode: 0644]
moon_dashboard/moon/policy/tests.py [new file with mode: 0644]
moon_dashboard/moon/policy/urls.py [new file with mode: 0644]
moon_dashboard/moon/policy/views.py [new file with mode: 0644]
moon_dashboard/moon/static/moon/js/angular-resource.js [new file with mode: 0644]
moon_dashboard/moon/static/moon/js/import.service.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/js/moon.module.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/js/util.service.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/js/util.service.spec.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/model/model.controller.js [new file with mode: 0644]
moon_dashboard/moon/static/moon/model/model.html [new file with mode: 0644]
moon_dashboard/moon/static/moon/model/model.service.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/model/model.service.spec.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/pdp/pdp.controller.js [new file with mode: 0644]
moon_dashboard/moon/static/moon/pdp/pdp.html [new file with mode: 0644]
moon_dashboard/moon/static/moon/pdp/pdp.service.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/pdp/pdp.service.spec.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/policy/policy.controller.js [new file with mode: 0644]
moon_dashboard/moon/static/moon/policy/policy.html [new file with mode: 0644]
moon_dashboard/moon/static/moon/policy/policy.service.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/policy/policy.service.spec.js [new file with mode: 0755]
moon_dashboard/moon/static/moon/scss/moon.scss [new file with mode: 0644]
moon_dashboard/moon/templates/moon/base.html [new file with mode: 0644]
moon_dashboard/run.sh [new file with mode: 0644]
moon_dashboard/setup.cfg [new file with mode: 0644]
moon_dashboard/setup.py [new file with mode: 0644]
moon_forming/Changelog [new file with mode: 0644]
moon_forming/Dockerfile
moon_forming/conf2consul.py
moon_interface/Changelog
moon_interface/Dockerfile
moon_interface/moon_interface/__init__.py
moon_interface/moon_interface/authz_requests.py
moon_interface/tests/unit_python/api/test_authz.py
moon_manager/Changelog
moon_manager/Dockerfile
moon_manager/moon_manager/__init__.py
moon_manager/moon_manager/api/assignments.py
moon_manager/moon_manager/api/data.py
moon_manager/moon_manager/api/json_import.py
moon_manager/moon_manager/api/meta_data.py
moon_manager/moon_manager/api/meta_rules.py
moon_manager/moon_manager/api/models.py
moon_manager/moon_manager/api/pdp.py
moon_manager/moon_manager/api/perimeter.py
moon_manager/moon_manager/api/policies.py
moon_manager/moon_manager/api/rules.py
moon_manager/moon_manager/api/slaves.py
moon_manager/moon_manager/http_server.py
moon_manager/tests/unit_python/api/import_export_utilities.py
moon_manager/tests/unit_python/api/test_assignemnt.py
moon_manager/tests/unit_python/api/test_data.py
moon_manager/tests/unit_python/api/test_export.py
moon_manager/tests/unit_python/api/test_import.py
moon_manager/tests/unit_python/api/test_meta_data.py [new file with mode: 0644]
moon_manager/tests/unit_python/api/test_meta_rules.py [new file with mode: 0644]
moon_manager/tests/unit_python/api/test_pdp.py
moon_manager/tests/unit_python/api/test_perimeter.py
moon_manager/tests/unit_python/api/test_policies.py
moon_manager/tests/unit_python/api/test_rules.py
moon_manager/tests/unit_python/api/test_unit_models.py
moon_manager/tests/unit_python/api/utilities.py
moon_manager/tests/unit_python/conftest.py
moon_manager/tests/unit_python/helpers/__init__.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/assignment_helper.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/category_helper.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/data_builder.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/data_helper.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/meta_rule_helper.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/model_helper.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/pdp_helper.py [new file with mode: 0644]
moon_manager/tests/unit_python/helpers/policy_helper.py [new file with mode: 0644]
moon_manager/tests/unit_python/requirements.txt
moon_orchestrator/Dockerfile
moon_wrapper/Dockerfile
python_moonclient/Changelog
python_moonclient/python_moonclient/__init__.py
python_moonclient/python_moonclient/core/config.py
python_moondb/Changelog
python_moondb/python_moondb/__init__.py
python_moondb/python_moondb/api/model.py
python_moondb/python_moondb/api/pdp.py
python_moondb/python_moondb/api/policy.py
python_moondb/python_moondb/backends/sql.py
python_moondb/python_moondb/migrate_repo/versions/001_moon.py
python_moondb/tests/unit_python/helpers/__init__.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/assignment_helper.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/category_helper.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/data_helper.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/meta_rule_helper.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/mock_data.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/model_helper.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/pdp_helper.py [new file with mode: 0644]
python_moondb/tests/unit_python/helpers/policy_helper.py [new file with mode: 0644]
python_moondb/tests/unit_python/models/test_categories.py
python_moondb/tests/unit_python/models/test_meta_rules.py
python_moondb/tests/unit_python/models/test_models.py
python_moondb/tests/unit_python/policies/mock_data.py
python_moondb/tests/unit_python/policies/test_assignments.py
python_moondb/tests/unit_python/policies/test_data.py
python_moondb/tests/unit_python/policies/test_policies.py
python_moondb/tests/unit_python/requirements.txt
python_moondb/tests/unit_python/test_pdp.py
python_moonutilities/Changelog
python_moonutilities/python_moonutilities/__init__.py
python_moonutilities/python_moonutilities/exceptions.py
python_moonutilities/python_moonutilities/security_functions.py