learning-credentials 0.2.2rc2__py3-none-any.whl → 0.3.0rc1__py3-none-any.whl
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/api/__init__.py +1 -0
- learning_credentials/api/urls.py +12 -0
- learning_credentials/api/v1/__init__.py +1 -0
- learning_credentials/api/v1/permissions.py +60 -0
- learning_credentials/api/v1/serializers.py +74 -0
- learning_credentials/api/v1/urls.py +17 -0
- learning_credentials/api/v1/views.py +357 -0
- learning_credentials/apps.py +10 -0
- learning_credentials/compat.py +11 -2
- learning_credentials/core_api.py +77 -0
- learning_credentials/generators.py +3 -1
- learning_credentials/models.py +44 -10
- learning_credentials/processors.py +148 -40
- learning_credentials/public/css/credentials_xblock.css +7 -0
- learning_credentials/public/html/credentials_xblock.html +48 -0
- learning_credentials/public/js/credentials_xblock.js +23 -0
- learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.html +2 -2
- learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.txt +2 -2
- learning_credentials/urls.py +3 -5
- learning_credentials/xblocks.py +85 -0
- {learning_credentials-0.2.2rc2.dist-info → learning_credentials-0.3.0rc1.dist-info}/METADATA +9 -1
- {learning_credentials-0.2.2rc2.dist-info → learning_credentials-0.3.0rc1.dist-info}/RECORD +26 -15
- learning_credentials-0.3.0rc1.dist-info/entry_points.txt +8 -0
- learning_credentials/views.py +0 -1
- learning_credentials-0.2.2rc2.dist-info/entry_points.txt +0 -2
- {learning_credentials-0.2.2rc2.dist-info → learning_credentials-0.3.0rc1.dist-info}/WHEEL +0 -0
- {learning_credentials-0.2.2rc2.dist-info → learning_credentials-0.3.0rc1.dist-info}/licenses/LICENSE.txt +0 -0
- {learning_credentials-0.2.2rc2.dist-info → learning_credentials-0.3.0rc1.dist-info}/top_level.txt +0 -0
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
learning_credentials/__init__.py,sha256=8Q0-3Hdnfmcj41EKu1GSfzEfwWcYNDlItyEEke2r9bs,62
|
|
2
2
|
learning_credentials/admin.py,sha256=ynK3tVJwLsIeV7Jk66t1FAVyVsU1G-KRIAdRkycVTmA,10439
|
|
3
|
-
learning_credentials/apps.py,sha256=
|
|
4
|
-
learning_credentials/compat.py,sha256=
|
|
3
|
+
learning_credentials/apps.py,sha256=F3W0q1BCWOm2MxqLr7GsDGkwqvNq3Icxc9OqgomdD7k,1128
|
|
4
|
+
learning_credentials/compat.py,sha256=g32MLgTnSZLGa6H3Qsq1WIPJXWPlFaNVuyZfbZXsKR8,4832
|
|
5
|
+
learning_credentials/core_api.py,sha256=ZVNPm7SQk54roZ8rmZ0Bc6T6NLvumKWJZjJepAxM6L8,3232
|
|
5
6
|
learning_credentials/exceptions.py,sha256=UaqBVXFMWR2Iob7_LMb3j4NNVmWQFAgLi_MNMRUvGsI,290
|
|
6
|
-
learning_credentials/generators.py,sha256=
|
|
7
|
-
learning_credentials/models.py,sha256=
|
|
8
|
-
learning_credentials/processors.py,sha256=
|
|
7
|
+
learning_credentials/generators.py,sha256=aDo1_r9IE1ad31oHmuIpU0MxqFV8K8ymMVVGfNdeXlg,9098
|
|
8
|
+
learning_credentials/models.py,sha256=GurLaQ2-hY7bflOYKV5vwqTnNwM6puE0tOg4KZ8-bqQ,17694
|
|
9
|
+
learning_credentials/processors.py,sha256=CfHuotWjCsg_Yx-uyZNTKzSREJj3xXD_LnTWUw3g2ms,19806
|
|
9
10
|
learning_credentials/tasks.py,sha256=byoFEUvN_ayVaU5K5SlEiA7vu9BRPaSSmKnB9g5toec,1927
|
|
10
|
-
learning_credentials/urls.py,sha256=
|
|
11
|
-
learning_credentials/
|
|
11
|
+
learning_credentials/urls.py,sha256=9Xc-imliMCIOWqFHfm-CSAgwm2tQGfMR18jCyBpKcho,176
|
|
12
|
+
learning_credentials/xblocks.py,sha256=gb-bfkOlRnBzwUg7CTqBJfg-BOJ1UOtaBQRmbyGuD0w,3568
|
|
13
|
+
learning_credentials/api/__init__.py,sha256=q8sLFfwo5RwQu8FY6BJUL_Jrt3TUojbZK-Zlw9v08EM,40
|
|
14
|
+
learning_credentials/api/urls.py,sha256=JfGSbzvC5d7s9dRq4C0d-AzTDuOVnen3wvFYSJQoEdQ,255
|
|
15
|
+
learning_credentials/api/v1/__init__.py,sha256=A7ZqENtM4QM1A7j_cAfnzw4zn0kuyfXSWtylFIE0_f8,43
|
|
16
|
+
learning_credentials/api/v1/permissions.py,sha256=rXGZ-vPI7LlGraro7rG235SErTlRhRAvOLd6AXxKHL0,2320
|
|
17
|
+
learning_credentials/api/v1/serializers.py,sha256=c4gNva-OzBUfmKHFOgsb1Ti1GiHSnsyIeT3gYBt7fMk,2685
|
|
18
|
+
learning_credentials/api/v1/urls.py,sha256=n8CTXgKyXyCkgNr210Jl5c5HQ2bZ1iEYMNLSnaB39Hc,585
|
|
19
|
+
learning_credentials/api/v1/views.py,sha256=LrlHRzURWi_zEii_zq55CH05tpC2ZqPhZLyebx1Jy8M,13606
|
|
12
20
|
learning_credentials/conf/locale/config.yaml,sha256=jPen2DmckNDKK30axCKEd2Q2ha9oOG3IBxrJ63Pvznk,2280
|
|
13
21
|
learning_credentials/migrations/0001_initial.py,sha256=61EvThCv-0UAnhCE5feyQVfjRodbp-6cDaAr4CY5PMA,8435
|
|
14
22
|
learning_credentials/migrations/0002_migrate_to_learning_credentials.py,sha256=vUhcnQKDdwOsppkXsjz2zZwOGMwIJ-fkQRsaj-K7l1o,1779
|
|
@@ -17,18 +25,21 @@ learning_credentials/migrations/0004_replace_course_keys_with_learning_context_k
|
|
|
17
25
|
learning_credentials/migrations/0005_rename_processors_and_generators.py,sha256=5UCqjq-CBJnRo1qBAoWs91ngyEuSMN8_tQtfzsuR5SI,5271
|
|
18
26
|
learning_credentials/migrations/0006_cleanup_openedx_certificates_tables.py,sha256=aJs_gOP4TmW9J-Dmr21m94jBfLQxzjAu6-ua7x4uYLE,727
|
|
19
27
|
learning_credentials/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
+
learning_credentials/public/css/credentials_xblock.css,sha256=O_16evZyQ6c1vr5IfkKVtwt9JbE1R4w7_mBaiXgfi4k,140
|
|
29
|
+
learning_credentials/public/html/credentials_xblock.html,sha256=U00jJKJfxhfKSJDcj6xyddXqjhCgi6ftCb5-2qb8qUM,2775
|
|
30
|
+
learning_credentials/public/js/credentials_xblock.js,sha256=zx0mXAPY4UOZeWKsm4rmD3yBlSDvFoX8acEoIFqKhG8,1094
|
|
20
31
|
learning_credentials/settings/__init__.py,sha256=tofc5eg3Q2lV13Ff_jjg1ggGgWpKYoeESkP1qxl3H_A,29
|
|
21
32
|
learning_credentials/settings/common.py,sha256=4n9AeQD-GB2MYFVrwXWEsTSrKC9btn8bgyr9OQuXNsY,302
|
|
22
33
|
learning_credentials/settings/production.py,sha256=yEvsCldHOdsIswW7TPLW__b9YNEK-Qy05rX5WSAcEeo,484
|
|
23
34
|
learning_credentials/templates/learning_credentials/base.html,sha256=wtjBYqfHmOnyEY5tN3VGOmzYLsOD24MXdEUhTZ7OmwI,662
|
|
24
|
-
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.html,sha256=
|
|
25
|
-
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.txt,sha256=
|
|
35
|
+
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.html,sha256=t-i1Ra9AC4pX-rPRifDJIvBBZuxCxdrFqg1NKTjHBOk,813
|
|
36
|
+
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.txt,sha256=IF_x8aF_-dORlQB-RCh0IkJDl2ktD489E8qGgLe9M3Y,677
|
|
26
37
|
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/from_name.txt,sha256=-n8tjPSwfwAfeOSZ1WhcCTrpOah4VswzMZ5mh63Pxow,20
|
|
27
38
|
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/head.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
39
|
learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/subject.txt,sha256=S7Hc5T_sZSsSBXm5_H5HBNNv16Ohl0oZn0nVqqeWL0g,132
|
|
29
|
-
learning_credentials-0.
|
|
30
|
-
learning_credentials-0.
|
|
31
|
-
learning_credentials-0.
|
|
32
|
-
learning_credentials-0.
|
|
33
|
-
learning_credentials-0.
|
|
34
|
-
learning_credentials-0.
|
|
40
|
+
learning_credentials-0.3.0rc1.dist-info/licenses/LICENSE.txt,sha256=GDpsPnW_1NKhPvZpZL9imz25P2nIpbwJPEhrlq4vPAU,34523
|
|
41
|
+
learning_credentials-0.3.0rc1.dist-info/METADATA,sha256=pW2uukeXV9BBRrZdx9FauhLR4AFSSj3oTHq70FU6rsw,6864
|
|
42
|
+
learning_credentials-0.3.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
43
|
+
learning_credentials-0.3.0rc1.dist-info/entry_points.txt,sha256=kaYKfkH1k_yFaGqe-MXjBxA5RsjkqOLxz7XLrF5BUC0,258
|
|
44
|
+
learning_credentials-0.3.0rc1.dist-info/top_level.txt,sha256=Ce-4_leZe_nny7CpmkeRiemcDV6jIHpIvLjlcQBuf18,21
|
|
45
|
+
learning_credentials-0.3.0rc1.dist-info/RECORD,,
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
[cms.djangoapp]
|
|
2
|
+
learning_credentials = learning_credentials.apps:LearningCredentialsConfig
|
|
3
|
+
|
|
4
|
+
[lms.djangoapp]
|
|
5
|
+
learning_credentials = learning_credentials.apps:LearningCredentialsConfig
|
|
6
|
+
|
|
7
|
+
[xblock.v1]
|
|
8
|
+
certificates = learning_credentials.xblocks:CredentialsXBlock
|
learning_credentials/views.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"""TODO."""
|
|
File without changes
|
|
File without changes
|
{learning_credentials-0.2.2rc2.dist-info → learning_credentials-0.3.0rc1.dist-info}/top_level.txt
RENAMED
|
File without changes
|