django-cms-qe 4.2.0__py3-none-any.whl → 4.3.0__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.
- cms_qe/settings/base/app.py +1 -0
- cms_qe/settings/base/constants.py +14 -4
- {django_cms_qe-4.2.0.dist-info → django_cms_qe-4.3.0.dist-info}/METADATA +2 -1
- {django_cms_qe-4.2.0.dist-info → django_cms_qe-4.3.0.dist-info}/RECORD +7 -7
- {django_cms_qe-4.2.0.dist-info → django_cms_qe-4.3.0.dist-info}/WHEEL +0 -0
- {django_cms_qe-4.2.0.dist-info → django_cms_qe-4.3.0.dist-info}/licenses/LICENSE +0 -0
- {django_cms_qe-4.2.0.dist-info → django_cms_qe-4.3.0.dist-info}/top_level.txt +0 -0
cms_qe/settings/base/app.py
CHANGED
|
@@ -139,7 +139,7 @@ MAILCHIMP_CONSTANCE_CONFIG = (
|
|
|
139
139
|
)),
|
|
140
140
|
)
|
|
141
141
|
|
|
142
|
-
|
|
142
|
+
REDIRECT_TO_PAGE_CONFIG = (
|
|
143
143
|
('REDIRECT_TO_PAGE', (
|
|
144
144
|
'',
|
|
145
145
|
mark_safe('<div>Redirect to page from path <code>/redirect-to-page/</code>.</div>'
|
|
@@ -164,6 +164,14 @@ SECURITY_TXT_CONFIG = (
|
|
|
164
164
|
]),
|
|
165
165
|
)
|
|
166
166
|
|
|
167
|
+
DELETED_PAGES_CONFIG = (
|
|
168
|
+
('DELETED_PAGES_SLUG', (
|
|
169
|
+
'deleted-pages',
|
|
170
|
+
'The slug of the Trash can page.',
|
|
171
|
+
'short_str'
|
|
172
|
+
)),
|
|
173
|
+
)
|
|
174
|
+
|
|
167
175
|
|
|
168
176
|
CONSTANCE_CONFIG = OrderedDict(
|
|
169
177
|
GOOGLE_ANALYTICS_CONSTANCE_CONFIG + # type: ignore
|
|
@@ -171,8 +179,9 @@ CONSTANCE_CONFIG = OrderedDict(
|
|
|
171
179
|
PIWIK_CONSTANCE_CONFIG + # type: ignore
|
|
172
180
|
DJANGOCMS_GOOGLEMAP_CONSTANCE_CONFIG + # type: ignore
|
|
173
181
|
MAILCHIMP_CONSTANCE_CONFIG + # type: ignore
|
|
174
|
-
|
|
175
|
-
SECURITY_TXT_CONFIG # type: ignore
|
|
182
|
+
REDIRECT_TO_PAGE_CONFIG + # type: ignore
|
|
183
|
+
SECURITY_TXT_CONFIG + # type: ignore
|
|
184
|
+
DELETED_PAGES_CONFIG # type: ignore
|
|
176
185
|
)
|
|
177
186
|
|
|
178
187
|
CONSTANCE_CONFIG_FIELDSETS = {
|
|
@@ -181,8 +190,9 @@ CONSTANCE_CONFIG_FIELDSETS = {
|
|
|
181
190
|
'Google tag manager options': dict(GOOGLE_TAG_MANAGER_CONSTANCE_CONFIG).keys(),
|
|
182
191
|
'Piwik options': dict(PIWIK_CONSTANCE_CONFIG).keys(),
|
|
183
192
|
'Mailchimp options': dict(MAILCHIMP_CONSTANCE_CONFIG).keys(),
|
|
184
|
-
'Redirect to page': dict(
|
|
193
|
+
'Redirect to page': dict(REDIRECT_TO_PAGE_CONFIG).keys(),
|
|
185
194
|
'Security.txt': dict(SECURITY_TXT_CONFIG).keys(),
|
|
195
|
+
'Deleted pages': dict(DELETED_PAGES_CONFIG).keys(),
|
|
186
196
|
}
|
|
187
197
|
|
|
188
198
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: django-cms-qe
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.3.0
|
|
4
4
|
Summary: Django CMS Quick & Easy provides all important modules to run new page withouta lot of coding. Aims to do it very easily and securely.
|
|
5
5
|
Home-page: https://websites.pages.nic.cz/django-cms-qe
|
|
6
6
|
Author: CZ.NIC, z.s.p.o.
|
|
@@ -41,6 +41,7 @@ Requires-Dist: django-csp~=4.0
|
|
|
41
41
|
Requires-Dist: django-import-export~=4.3
|
|
42
42
|
Requires-Dist: django-tablib~=3.2
|
|
43
43
|
Requires-Dist: djangocms-file~=3.0
|
|
44
|
+
Requires-Dist: djangocms-deleted-pages~=1.0
|
|
44
45
|
Requires-Dist: djangocms-googlemap~=2.2
|
|
45
46
|
Requires-Dist: djangocms-icon~=2.1
|
|
46
47
|
Requires-Dist: djangocms-link~=5.1
|
|
@@ -61,11 +61,11 @@ cms_qe/settings/__init__.py,sha256=GJwHXMHwMuGYE-3ZzePJ-26I2WwE8bAIMUDoiTFr0L8,9
|
|
|
61
61
|
cms_qe/settings/dev.py,sha256=dKLpdibotQELoMjU-_HJlcsY30U5xM9KSONdsDW_Dq0,2168
|
|
62
62
|
cms_qe/settings/unittest.py,sha256=folLIMJb1Arh60_Sn0eNQrvIlx0OsAs6v1tDfyRZVuQ,514
|
|
63
63
|
cms_qe/settings/base/__init__.py,sha256=5yHfne9gPD_xuTaG3voZP23yzuCwROmif2mmKs-hG_A,446
|
|
64
|
-
cms_qe/settings/base/app.py,sha256=
|
|
64
|
+
cms_qe/settings/base/app.py,sha256=RnOope8cWN17AvYNE5RMEI8hbJKvbPPqmNdU_XgNo6E,4500
|
|
65
65
|
cms_qe/settings/base/auth.py,sha256=OTr1LJ4RSMZm8STs4Q3pwPXmQoURax8OKLJ8eAj7PW4,395
|
|
66
66
|
cms_qe/settings/base/cache.py,sha256=yBCvIIW25bSBD9nzVbPQvsPfw-pkOmcnLO7OPwzXPWo,337
|
|
67
67
|
cms_qe/settings/base/cms.py,sha256=hzl10CwswfQJkIfn4WoFJUmoumwC2smhSl8IR4VxkLM,1990
|
|
68
|
-
cms_qe/settings/base/constants.py,sha256=
|
|
68
|
+
cms_qe/settings/base/constants.py,sha256=Bq2EwWbolE6Jf7Va89Zan2eEGhxNGhujNKvaU3E7qV0,8521
|
|
69
69
|
cms_qe/settings/base/database.py,sha256=_i3OJMRcrcI17VJeqY66JNOpAOXkhq570lRi0RVpzGw,354
|
|
70
70
|
cms_qe/settings/base/email.py,sha256=WkTj4V4lMZ3BG5AvHGPqulZ8T_cQMrvXiLj_NhLmpZs,576
|
|
71
71
|
cms_qe/settings/base/env.py,sha256=Oe10oSrA7QlD9TBDnEup8mtNTd1pXyaO5OThtUW8UVQ,36
|
|
@@ -3974,8 +3974,8 @@ cms_qe_video/templates/cms_qe/video/video_source_file.html,sha256=QJF5fs88s9Fznp
|
|
|
3974
3974
|
cms_qe_video/templates/cms_qe/video/video_widget.html,sha256=Yumciq6bGlAYI1lYx5j9V6IF8QYrncNYygPTkXEz6Wk,925
|
|
3975
3975
|
cms_qe_video/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3976
3976
|
cms_qe_video/templatetags/cms_qe_video.py,sha256=NR_mGv91J0rEreZrQjCzaaXSrZsKvrSas12wMJ-Dg24,1168
|
|
3977
|
-
django_cms_qe-4.
|
|
3978
|
-
django_cms_qe-4.
|
|
3979
|
-
django_cms_qe-4.
|
|
3980
|
-
django_cms_qe-4.
|
|
3981
|
-
django_cms_qe-4.
|
|
3977
|
+
django_cms_qe-4.3.0.dist-info/licenses/LICENSE,sha256=5wLaeUil0gfU9p8C4zn2Yu_PvZBNieUoYl0z9FcFWdA,1521
|
|
3978
|
+
django_cms_qe-4.3.0.dist-info/METADATA,sha256=83PwtSqFq7-ouc0Zz1HH7dwooBX0D3ymhEfg919vlyE,6354
|
|
3979
|
+
django_cms_qe-4.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
3980
|
+
django_cms_qe-4.3.0.dist-info/top_level.txt,sha256=u9pqfoJfXwh29tMO7lnphA5yn7ChYZquFe7_sNtEiW8,150
|
|
3981
|
+
django_cms_qe-4.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|