learning-credentials 0.2.0rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- learning_credentials-0.2.0rc1/CHANGELOG.rst +34 -0
- learning_credentials-0.2.0rc1/LICENSE.txt +664 -0
- learning_credentials-0.2.0rc1/MANIFEST.in +6 -0
- learning_credentials-0.2.0rc1/PKG-INFO +204 -0
- learning_credentials-0.2.0rc1/README.rst +121 -0
- learning_credentials-0.2.0rc1/learning_credentials/__init__.py +3 -0
- learning_credentials-0.2.0rc1/learning_credentials/admin.py +263 -0
- learning_credentials-0.2.0rc1/learning_credentials/apps.py +24 -0
- learning_credentials-0.2.0rc1/learning_credentials/compat.py +117 -0
- learning_credentials-0.2.0rc1/learning_credentials/exceptions.py +9 -0
- learning_credentials-0.2.0rc1/learning_credentials/generators.py +224 -0
- learning_credentials-0.2.0rc1/learning_credentials/migrations/0001_initial.py +205 -0
- learning_credentials-0.2.0rc1/learning_credentials/migrations/0002_migrate_to_learning_credentials.py +32 -0
- learning_credentials-0.2.0rc1/learning_credentials/migrations/0003_rename_certificates_to_credentials.py +128 -0
- learning_credentials-0.2.0rc1/learning_credentials/migrations/0004_replace_course_keys_with_learning_context_keys.py +59 -0
- learning_credentials-0.2.0rc1/learning_credentials/migrations/0005_rename_processors_and_generators.py +106 -0
- learning_credentials-0.2.0rc1/learning_credentials/migrations/__init__.py +0 -0
- learning_credentials-0.2.0rc1/learning_credentials/models.py +381 -0
- learning_credentials-0.2.0rc1/learning_credentials/processors.py +306 -0
- learning_credentials-0.2.0rc1/learning_credentials/settings/__init__.py +1 -0
- learning_credentials-0.2.0rc1/learning_credentials/settings/common.py +12 -0
- learning_credentials-0.2.0rc1/learning_credentials/settings/production.py +13 -0
- learning_credentials-0.2.0rc1/learning_credentials/tasks.py +53 -0
- learning_credentials-0.2.0rc1/learning_credentials/templates/learning_credentials/base.html +22 -0
- learning_credentials-0.2.0rc1/learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.html +22 -0
- learning_credentials-0.2.0rc1/learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/head.html +0 -0
- learning_credentials-0.2.0rc1/learning_credentials/urls.py +9 -0
- learning_credentials-0.2.0rc1/learning_credentials/views.py +1 -0
- learning_credentials-0.2.0rc1/learning_credentials.egg-info/PKG-INFO +204 -0
- learning_credentials-0.2.0rc1/learning_credentials.egg-info/SOURCES.txt +47 -0
- learning_credentials-0.2.0rc1/learning_credentials.egg-info/dependency_links.txt +1 -0
- learning_credentials-0.2.0rc1/learning_credentials.egg-info/entry_points.txt +3 -0
- learning_credentials-0.2.0rc1/learning_credentials.egg-info/not-zip-safe +1 -0
- learning_credentials-0.2.0rc1/learning_credentials.egg-info/requires.txt +13 -0
- learning_credentials-0.2.0rc1/learning_credentials.egg-info/top_level.txt +2 -0
- learning_credentials-0.2.0rc1/openedx_certificates/__init__.py +1 -0
- learning_credentials-0.2.0rc1/openedx_certificates/apps.py +11 -0
- learning_credentials-0.2.0rc1/openedx_certificates/migrations/0001_initial.py +206 -0
- learning_credentials-0.2.0rc1/openedx_certificates/migrations/__init__.py +0 -0
- learning_credentials-0.2.0rc1/openedx_certificates/models.py +38 -0
- learning_credentials-0.2.0rc1/pyproject.toml +130 -0
- learning_credentials-0.2.0rc1/requirements/base.in +18 -0
- learning_credentials-0.2.0rc1/requirements/constraints.txt +12 -0
- learning_credentials-0.2.0rc1/setup.cfg +4 -0
- learning_credentials-0.2.0rc1/setup.py +173 -0
- learning_credentials-0.2.0rc1/tests/test_generators.py +297 -0
- learning_credentials-0.2.0rc1/tests/test_models.py +336 -0
- learning_credentials-0.2.0rc1/tests/test_processors.py +387 -0
- learning_credentials-0.2.0rc1/tests/test_tasks.py +84 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Change Log
|
|
2
|
+
##########
|
|
3
|
+
|
|
4
|
+
..
|
|
5
|
+
All enhancements and patches to learning_credentials will be documented
|
|
6
|
+
in this file. It adheres to the structure of https://keepachangelog.com/ ,
|
|
7
|
+
but in reStructuredText instead of Markdown (for ease of incorporation into
|
|
8
|
+
Sphinx documentation and the PyPI description).
|
|
9
|
+
|
|
10
|
+
This project adheres to Semantic Versioning (https://semver.org/).
|
|
11
|
+
|
|
12
|
+
.. There should always be an "Unreleased" section for changes pending release.
|
|
13
|
+
|
|
14
|
+
Unreleased
|
|
15
|
+
**********
|
|
16
|
+
|
|
17
|
+
*
|
|
18
|
+
|
|
19
|
+
0.2.0 – 2025-03-31
|
|
20
|
+
******************
|
|
21
|
+
|
|
22
|
+
Added
|
|
23
|
+
=====
|
|
24
|
+
|
|
25
|
+
* Initial implementation of the certificates app.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
0.1.0 – 2025-01-29
|
|
29
|
+
******************
|
|
30
|
+
|
|
31
|
+
Added
|
|
32
|
+
=====
|
|
33
|
+
|
|
34
|
+
* Initial implementation of the certificates app.
|