├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── cml ├── __init__.py ├── admin.py ├── auth.py ├── conf.py ├── items.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── cmlpipelines.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── cml │ │ └── cml-pipelines.txt ├── urls.py ├── utils.py └── views.py ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── settings.py ├── test_utils.py ├── tests_fixtures └── import.xml └── urls.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.sqlite3 3 | .idea 4 | tmp 5 | dist 6 | django_cml.egg-info 7 | build 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/README.rst -------------------------------------------------------------------------------- /cml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cml/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/admin.py -------------------------------------------------------------------------------- /cml/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/auth.py -------------------------------------------------------------------------------- /cml/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/conf.py -------------------------------------------------------------------------------- /cml/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/items.py -------------------------------------------------------------------------------- /cml/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cml/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cml/management/commands/cmlpipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/management/commands/cmlpipelines.py -------------------------------------------------------------------------------- /cml/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/migrations/0001_initial.py -------------------------------------------------------------------------------- /cml/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cml/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/models.py -------------------------------------------------------------------------------- /cml/templates/cml/cml-pipelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/templates/cml/cml-pipelines.txt -------------------------------------------------------------------------------- /cml/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/urls.py -------------------------------------------------------------------------------- /cml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/utils.py -------------------------------------------------------------------------------- /cml/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/cml/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/tests_fixtures/import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/tests/tests_fixtures/import.xml -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemiusUA/django-cml/HEAD/tests/urls.py --------------------------------------------------------------------------------