wagtail-cjkcms 25.2.4__py2.py3-none-any.whl → 25.3.1__py2.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.
- cjkcms/__init__.py +1 -1
- cjkcms/blocks/__init__.py +36 -23
- cjkcms/models/page_models.py +1 -1
- cjkcms/templates/cjkcms/blocks/card_landing2.html +2 -2
- cjkcms/templates/cjkcms/pages/base.html +1 -0
- cjkcms/tests/media/images/test_huAlBCK.original.png +0 -0
- cjkcms/tests/media/images/test_sCFpDtv.original.png +0 -0
- cjkcms/tests/media/images/test_w289mH5.original.png +0 -0
- cjkcms/tests/media/original_images/test_huAlBCK.png +0 -0
- cjkcms/tests/media/original_images/test_sCFpDtv.png +0 -0
- cjkcms/tests/media/original_images/test_w289mH5.png +0 -0
- cjkcms/tests/test_utils.py +80 -0
- {wagtail_cjkcms-25.2.4.dist-info → wagtail_cjkcms-25.3.1.dist-info}/METADATA +3 -2
- {wagtail_cjkcms-25.2.4.dist-info → wagtail_cjkcms-25.3.1.dist-info}/RECORD +26 -19
- {wagtail_cjkcms-25.2.4.dist-info → wagtail_cjkcms-25.3.1.dist-info}/WHEEL +1 -1
- /cjkcms/tests/media/images/{test_6mZL9NZ.original.png → test_3NMwZ9L.original.png} +0 -0
- /cjkcms/tests/media/images/{test_OSPIkp8.original.png → test_AGrWgX3.original.png} +0 -0
- /cjkcms/tests/media/images/{test_YBCJmYS.original.png → test_TpkZkXF.original.png} +0 -0
- /cjkcms/tests/media/images/{test_q0QJ4UA.original.png → test_cOs0NW2.original.png} +0 -0
- /cjkcms/tests/media/original_images/{test_6mZL9NZ.png → test_3NMwZ9L.png} +0 -0
- /cjkcms/tests/media/original_images/{test_OSPIkp8.png → test_AGrWgX3.png} +0 -0
- /cjkcms/tests/media/original_images/{test_YBCJmYS.png → test_TpkZkXF.png} +0 -0
- /cjkcms/tests/media/original_images/{test_q0QJ4UA.png → test_cOs0NW2.png} +0 -0
- {wagtail_cjkcms-25.2.4.dist-info → wagtail_cjkcms-25.3.1.dist-info}/entry_points.txt +0 -0
- {wagtail_cjkcms-25.2.4.dist-info → wagtail_cjkcms-25.3.1.dist-info/licenses}/LICENSE +0 -0
- {wagtail_cjkcms-25.2.4.dist-info → wagtail_cjkcms-25.3.1.dist-info}/top_level.txt +0 -0
cjkcms/__init__.py
CHANGED
cjkcms/blocks/__init__.py
CHANGED
@@ -99,29 +99,7 @@ BASIC_LAYOUT_STREAMBLOCKS = [
|
|
99
99
|
),
|
100
100
|
]
|
101
101
|
|
102
|
-
|
103
|
-
(
|
104
|
-
"hero",
|
105
|
-
HeroBlock(
|
106
|
-
[
|
107
|
-
("row", GridBlock(CONTENT_STREAMBLOCKS)),
|
108
|
-
(
|
109
|
-
"cardgrid",
|
110
|
-
CardGridBlock(
|
111
|
-
[
|
112
|
-
("card", CardBlock()),
|
113
|
-
]
|
114
|
-
),
|
115
|
-
),
|
116
|
-
(
|
117
|
-
"html",
|
118
|
-
SearchableHTMLBlock(
|
119
|
-
icon="code", form_classname="monospace", label=_("HTML")
|
120
|
-
),
|
121
|
-
),
|
122
|
-
]
|
123
|
-
),
|
124
|
-
),
|
102
|
+
FLAT_LAYOUT_STREAMBLOCKS = [
|
125
103
|
("row", GridBlock(CONTENT_STREAMBLOCKS)),
|
126
104
|
(
|
127
105
|
"cardgrid",
|
@@ -136,3 +114,38 @@ LAYOUT_STREAMBLOCKS = [
|
|
136
114
|
SearchableHTMLBlock(icon="code", form_classname="monospace", label=_("HTML")),
|
137
115
|
),
|
138
116
|
]
|
117
|
+
|
118
|
+
LAYOUT_STREAMBLOCKS = [
|
119
|
+
("hero", HeroBlock(FLAT_LAYOUT_STREAMBLOCKS)),
|
120
|
+
*FLAT_LAYOUT_STREAMBLOCKS,
|
121
|
+
]
|
122
|
+
|
123
|
+
|
124
|
+
def replace_contentblocks(flat_layout_blocks, full_layout_blocks, new_content_blocks):
|
125
|
+
"""helper function to add new content blocks in projects,
|
126
|
+
replacing the default content blocks in the layout blocks.
|
127
|
+
|
128
|
+
Args:
|
129
|
+
flat_layout_blocks (_type_): CJKCMS layout blocks which contains "row" of content blocks
|
130
|
+
full_layout_blocks (_type_): CJKCMS outer layout with hero and flat layout blocks
|
131
|
+
new_content_blocks (_type_): full set of new content blocks to replace the old ones
|
132
|
+
|
133
|
+
Returns:
|
134
|
+
full_layout_blocks: full layout blocks with new content blocks, readty to include
|
135
|
+
in the project models' body fields
|
136
|
+
"""
|
137
|
+
for i, item in enumerate(flat_layout_blocks):
|
138
|
+
if item[0] == "row":
|
139
|
+
# Replace each 'row' entry with new content blocks
|
140
|
+
flat_layout_blocks[i] = (
|
141
|
+
"row",
|
142
|
+
GridBlock(new_content_blocks),
|
143
|
+
)
|
144
|
+
full_layout_blocks = [
|
145
|
+
(
|
146
|
+
"hero",
|
147
|
+
HeroBlock(flat_layout_blocks),
|
148
|
+
),
|
149
|
+
*flat_layout_blocks,
|
150
|
+
]
|
151
|
+
return full_layout_blocks
|
cjkcms/models/page_models.py
CHANGED
@@ -43,12 +43,12 @@
|
|
43
43
|
</div>
|
44
44
|
<div class="col-8 col-lg-9 col-xl-10 text-center text-md-start">
|
45
45
|
{% if self.title %}
|
46
|
-
<h1 class="fw-bold" style="color:#FFFFFF; position: relative; z-index: 1; text-shadow: 2px 2px 4px rgba(0,0,0,0.5);">
|
46
|
+
<h1 class="fw-bold fs-2 pb-2" style="color:#FFFFFF; position: relative; z-index: 1; text-shadow: 2px 2px 4px rgba(0,0,0,0.5);">
|
47
47
|
{{self.title}}
|
48
48
|
</h1>
|
49
49
|
{% endif %}
|
50
50
|
{% if self.subtitle %}
|
51
|
-
<h2 class="lh-1 ls-tight fw-900 text-primary mb-4">
|
51
|
+
<h2 class="lh-1 ls-tight fw-900 fs-3 text-primary mb-4 mt-4" style="position: relative; z-index: 1;">
|
52
52
|
{{self.subtitle}}
|
53
53
|
</h2>
|
54
54
|
{% endif %}
|
@@ -63,6 +63,7 @@
|
|
63
63
|
{% block tracking %}
|
64
64
|
{% if settings.cjkcms.AnalyticsSettings.matomo_site_id and settings.cjkcms.AnalyticsSettings.matomo_hostname %}
|
65
65
|
{% include "cjkcms/snippets/tracking_matomo.html" %}
|
66
|
+
{% include "cjkcms/snippets/tracking_matomo_noscript.html" %}
|
66
67
|
{% endif %}
|
67
68
|
{% if settings.cjkcms.AnalyticsSettings.g4_tracking_id %}
|
68
69
|
{% include "cjkcms/snippets/tracking_g4.html" %}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,80 @@
|
|
1
|
+
import unittest
|
2
|
+
from cjkcms.blocks import (
|
3
|
+
GridBlock,
|
4
|
+
HeroBlock,
|
5
|
+
AccordionBlock,
|
6
|
+
CardBlock,
|
7
|
+
ButtonBlock,
|
8
|
+
CardGridBlock,
|
9
|
+
# replace_contentblocks,
|
10
|
+
)
|
11
|
+
|
12
|
+
|
13
|
+
class TestReplaceContentBlocks(unittest.TestCase):
|
14
|
+
def setUp(self):
|
15
|
+
self.old_content_blocks = [
|
16
|
+
("accordion", AccordionBlock()),
|
17
|
+
("card", CardBlock()),
|
18
|
+
]
|
19
|
+
self.flat_layout_blocks = [
|
20
|
+
("row", GridBlock(self.old_content_blocks)),
|
21
|
+
(
|
22
|
+
"cardgrid",
|
23
|
+
CardGridBlock(
|
24
|
+
[
|
25
|
+
("card", CardBlock()),
|
26
|
+
]
|
27
|
+
),
|
28
|
+
),
|
29
|
+
]
|
30
|
+
self.full_layout_blocks = [
|
31
|
+
("hero", HeroBlock(self.flat_layout_blocks)),
|
32
|
+
*self.flat_layout_blocks,
|
33
|
+
]
|
34
|
+
self.new_content_blocks = [
|
35
|
+
*self.old_content_blocks,
|
36
|
+
("button", ButtonBlock()),
|
37
|
+
]
|
38
|
+
|
39
|
+
def test_replace_contentblocks(self):
|
40
|
+
pass
|
41
|
+
# updated_full_layout_blocks = replace_contentblocks(
|
42
|
+
# self.flat_layout_blocks, self.full_layout_blocks, self.new_content_blocks
|
43
|
+
# )
|
44
|
+
|
45
|
+
# Check if the top-level "row" block is replaced
|
46
|
+
# self.assertIsInstance(updated_full_layout_blocks[0][1], HeroBlock)
|
47
|
+
# self.assertEqual(
|
48
|
+
# updated_full_layout_blocks[0][1]
|
49
|
+
# .content_streamblocks[0][1]
|
50
|
+
# .contet_streamblocks,
|
51
|
+
# self.new_content_blocks,
|
52
|
+
# )
|
53
|
+
|
54
|
+
# # Check if the "hero" block is updated correctly
|
55
|
+
# self.assertIsInstance(updated_full_layout_blocks[0][1], HeroBlock)
|
56
|
+
# self.assertEqual(
|
57
|
+
# updated_full_layout_blocks[0][1].streamblock[0][1].streamblock,
|
58
|
+
# self.new_content_blocks,
|
59
|
+
# )
|
60
|
+
|
61
|
+
# def test_no_replacement_for_non_matching_blocks(self):
|
62
|
+
# non_matching_structure = [
|
63
|
+
# ("cardgrid", CardGridBlock),
|
64
|
+
# ("button", ButtonBlock),
|
65
|
+
# ]
|
66
|
+
# updated_full_layout_blocks = replace_contentblocks(
|
67
|
+
# non_matching_structure, self.full_layout_blocks, self.new_content_blocks
|
68
|
+
# )
|
69
|
+
|
70
|
+
# # Check if the structure remains unchanged
|
71
|
+
# self.assertEqual(updated_full_layout_blocks[1], non_matching_structure)
|
72
|
+
|
73
|
+
# def test_empty_structure(self):
|
74
|
+
# empty_structure = []
|
75
|
+
# updated_full_layout_blocks = replace_contentblocks(
|
76
|
+
# empty_structure, self.full_layout_blocks, self.new_content_blocks
|
77
|
+
# )
|
78
|
+
|
79
|
+
# # Check if the structure remains unchanged
|
80
|
+
# self.assertEqual(updated_full_layout_blocks[1], empty_structure)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: wagtail-cjkcms
|
3
|
-
Version: 25.
|
3
|
+
Version: 25.3.1
|
4
4
|
Summary: Wagtail Content Management System, installable as a Django app into any Wagtail 4.1.x/5.x/6.x site.
|
5
5
|
Author-email: Grzegorz Krol <gk@cjk.pl>
|
6
6
|
License: BSD-3-Clause
|
@@ -35,6 +35,7 @@ Requires-Dist: wagtail>=6.0
|
|
35
35
|
Requires-Dist: wagtail-seo>=3.0
|
36
36
|
Requires-Dist: wagtail-cache>=2.5.1
|
37
37
|
Requires-Dist: wagtail-color-panel>=1.6.0
|
38
|
+
Dynamic: license-file
|
38
39
|
|
39
40
|

|
40
41
|
[](https://github.com/cjkpl/wagtail-cjkcms/blob/main/LICENSE)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
cjkcms/__init__.py,sha256=
|
1
|
+
cjkcms/__init__.py,sha256=4OA_osGVdK-gBOO3FSVu66cAQ7ApRjKfsoYFsuZ1vr8,272
|
2
2
|
cjkcms/apps.py,sha256=VA5Z1YerImetvN8KsjPTMSn1fSo6O1JkBJdK5y5ubJY,173
|
3
3
|
cjkcms/fields.py,sha256=dE0DuNIjX7jhA-5GjSmR2l66EDH2kq3vuxL9WyRALCY,3191
|
4
4
|
cjkcms/forms.py,sha256=_uu_FR8odz40lD-Rmw0tlK7-xxxa8THHfV2-1ZJYsIM,361
|
@@ -13,7 +13,7 @@ cjkcms/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
cjkcms/api/mailchimp.py,sha256=pufnnu8n-c6kkWNKy-EsRLW5LLBn8_TmYrnRSQCPFdY,2832
|
14
14
|
cjkcms/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
15
|
cjkcms/bin/cjkcms.py,sha256=i11hhB11COQhTk05y7mkeIkUYcFjhI8-QxLkN3tCxgg,5763
|
16
|
-
cjkcms/blocks/__init__.py,sha256=
|
16
|
+
cjkcms/blocks/__init__.py,sha256=kUr403BZfB7tHUfVAbH0LYT3mRRIbSUDISNmmu-N1OE,4170
|
17
17
|
cjkcms/blocks/base_blocks.py,sha256=uKp6QO3iOPT4P0H0yOumvL7faPvLQK9Dj-D8iqlvqQ4,11616
|
18
18
|
cjkcms/blocks/content_blocks.py,sha256=-bIh3BCNYx0N7iK3mpfnLOzIsSMItgpLeC9Cqg-_dTc,9759
|
19
19
|
cjkcms/blocks/html_blocks.py,sha256=bDRDEresn3R87Uux7YztU2WhRnxGhJ429soOpmAd41c,9544
|
@@ -61,7 +61,7 @@ cjkcms/models/__init__.py,sha256=f99GmxfFxGtQl8JvZFz8rAtklCIesLoSccyhhi2xgPU,232
|
|
61
61
|
cjkcms/models/admin_sidebar.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
62
|
cjkcms/models/cms_models.py,sha256=leC-RKrd6GltgWcvM_3KT0guMeBt5r2YhgADFi6glzA,2414
|
63
63
|
cjkcms/models/integration_models.py,sha256=DAAgMtjErjaWKRu6yPQUoWAG-uu4qZxCg1N9FqlswAA,6280
|
64
|
-
cjkcms/models/page_models.py,sha256=
|
64
|
+
cjkcms/models/page_models.py,sha256=SuN0WhPKkJe8SixV3zeivMKDzBN2xvP9JfUpof14k0c,25602
|
65
65
|
cjkcms/models/snippet_models.py,sha256=cV7nFpNfJE_JP-3g77swGgQt3szrwHlAEOXUwwYE2QY,17188
|
66
66
|
cjkcms/models/wagtailsettings_models.py,sha256=ntgbGOquVmgbMehgV36KEiS25olqr_m5Ff7Ce7Pq61Y,23041
|
67
67
|
cjkcms/project_template/basic/.editorconfig,sha256=1wgq7hgAUSHLfuy4Jh9BJ4ysyQL0si5UBbCu_OMz9hg,722
|
@@ -196,7 +196,7 @@ cjkcms/templates/cjkcms/blocks/card_horizontal.html,sha256=CDxYUgzASP514wDgpIgOH
|
|
196
196
|
cjkcms/templates/cjkcms/blocks/card_horizontal2.html,sha256=Yx2St6fbjULu4PFppWSa5Mnq6f7-M2fvxXY_N6jlZ1o,1104
|
197
197
|
cjkcms/templates/cjkcms/blocks/card_img.html,sha256=-67mrEcSEGllm0XZjxEEcEIW03nboi2-a7lAQLjHglk,786
|
198
198
|
cjkcms/templates/cjkcms/blocks/card_landing1.html,sha256=igysNkq07i_ZjU0mfwd83kWPrXEv3yTL9dqRzhIIDlU,2615
|
199
|
-
cjkcms/templates/cjkcms/blocks/card_landing2.html,sha256=
|
199
|
+
cjkcms/templates/cjkcms/blocks/card_landing2.html,sha256=0cdRvsyag6J6yyHmupk6FreemP7pFO_tHsEiIT17mbg,2883
|
200
200
|
cjkcms/templates/cjkcms/blocks/cardgrid_columns.html,sha256=1ls8LWuRcX-WQQhI20YcHn0MCG1nUEdyPuYmJof_9Uk,768
|
201
201
|
cjkcms/templates/cjkcms/blocks/cardgrid_deck.html,sha256=tP3-RrN8BXUkTWn9Y8HRwSftuQNy5SGLCfZ0dT9RbTA,530
|
202
202
|
cjkcms/templates/cjkcms/blocks/cardgrid_group.html,sha256=CBF8Hv-RfhoC6FR9XyBkRAruI4H1US1l4_nwuNrHaM0,359
|
@@ -280,7 +280,7 @@ cjkcms/templates/cjkcms/includes/stream_forms/render_field.html,sha256=F3FHztOTG
|
|
280
280
|
cjkcms/templates/cjkcms/pages/article_index_page.html,sha256=K_5xM-d2EPDJ961LLqiOLompzSoJz1cHQbwvRNDZfH4,2002
|
281
281
|
cjkcms/templates/cjkcms/pages/article_page.html,sha256=jXOAOznaiSPULcZQB-A8AYmeTU9-xEWcyAgnrYAJ74Y,2031
|
282
282
|
cjkcms/templates/cjkcms/pages/article_page.search.html,sha256=0L4zGoqu1SP1F2BIIYeD9IMaxpjIsqawpIzEN8e94kY,1018
|
283
|
-
cjkcms/templates/cjkcms/pages/base.html,sha256=
|
283
|
+
cjkcms/templates/cjkcms/pages/base.html,sha256=ql7HTicKZj_PPZ0HVYm1Si9loYDWL3jsRM_2nFweGv8,9701
|
284
284
|
cjkcms/templates/cjkcms/pages/form_page_landing.html,sha256=zdySSHOWF10-x2MFLH9XMjeFSeNTMRM-VpvZ1tM8kw0,248
|
285
285
|
cjkcms/templates/cjkcms/pages/home_page.html,sha256=67h2o3EVXsrivMqM26OZV-7-H_9vv1clFJ4MFMknIMU,50
|
286
286
|
cjkcms/templates/cjkcms/pages/page.mini.html,sha256=VR3lTCUgHPXTd2HAlNrxQAmNjS_0VGzfQccUV5IeDXc,506
|
@@ -330,18 +330,25 @@ cjkcms/tests/test_search_blocks.py,sha256=K6acussD7to_qttTBl4z-rAF00UJYZpd8OoeBt
|
|
330
330
|
cjkcms/tests/test_settings.py,sha256=I-py7xCNqgx-EMj0ucOZ68dKY11CLgEtJzYkeYD-Mw4,3457
|
331
331
|
cjkcms/tests/test_templatetags.py,sha256=RHaIn93G8Aa2lG3JTHSPhFOTLBa4AWXJnwXa9Us5iqI,5966
|
332
332
|
cjkcms/tests/test_urls.py,sha256=otiKZcs1WLDQM6AOfcdZgsOGDwea1qS3VEc8Yy-FV-Q,2880
|
333
|
+
cjkcms/tests/test_utils.py,sha256=F6YLRMJjcf0cLiB77KnE5_XQW9lsy_yFB4dtZxjpSs8,2636
|
333
334
|
cjkcms/tests/test_webpage.py,sha256=PvXeXbawigObsdi_YpQNuHFx3Lqi6wM3ktVHZsxYbr4,1520
|
334
335
|
cjkcms/tests/urls.py,sha256=_ksKz7HBHJtQK3HxC9cmJMX_dt6n4alx3FXjcL-cu28,850
|
335
336
|
cjkcms/tests/media/images/test.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
336
|
-
cjkcms/tests/media/images/
|
337
|
-
cjkcms/tests/media/images/
|
338
|
-
cjkcms/tests/media/images/
|
339
|
-
cjkcms/tests/media/images/
|
337
|
+
cjkcms/tests/media/images/test_3NMwZ9L.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
338
|
+
cjkcms/tests/media/images/test_AGrWgX3.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
339
|
+
cjkcms/tests/media/images/test_TpkZkXF.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
340
|
+
cjkcms/tests/media/images/test_cOs0NW2.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
341
|
+
cjkcms/tests/media/images/test_huAlBCK.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
342
|
+
cjkcms/tests/media/images/test_sCFpDtv.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
343
|
+
cjkcms/tests/media/images/test_w289mH5.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
340
344
|
cjkcms/tests/media/original_images/test.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
341
|
-
cjkcms/tests/media/original_images/
|
342
|
-
cjkcms/tests/media/original_images/
|
343
|
-
cjkcms/tests/media/original_images/
|
344
|
-
cjkcms/tests/media/original_images/
|
345
|
+
cjkcms/tests/media/original_images/test_3NMwZ9L.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
346
|
+
cjkcms/tests/media/original_images/test_AGrWgX3.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
347
|
+
cjkcms/tests/media/original_images/test_TpkZkXF.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
348
|
+
cjkcms/tests/media/original_images/test_cOs0NW2.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
349
|
+
cjkcms/tests/media/original_images/test_huAlBCK.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
350
|
+
cjkcms/tests/media/original_images/test_sCFpDtv.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
351
|
+
cjkcms/tests/media/original_images/test_w289mH5.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
345
352
|
cjkcms/tests/testapp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
346
353
|
cjkcms/tests/testapp/apps.py,sha256=EwyrkWTu-_OoLoERBTlqkqfPIIrEsbHY3kbCxgrv_7I,169
|
347
354
|
cjkcms/tests/testapp/models.py,sha256=N11rFqkMqQNVagoLjmIX8BVsgfW7wFqYKiDB9gE0PTo,575
|
@@ -351,9 +358,9 @@ cjkcms/tests/testapp/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
351
358
|
cjkcms/utils/__init__.py,sha256=uLr0n5jD1dmdICgpv7WjgAtuyrs50ERyRLVUmoSV1cA,110
|
352
359
|
cjkcms/utils/richtext.py,sha256=dgNVQIAXevXzaVhCtGc7XW4PDwTFiGEL7q-YGgpcEjo,573
|
353
360
|
cjkcms/utils/visibility.py,sha256=sbxIM5g903AydRdBbwwahB8tpoyQrHjmERn9Yg_aJ4g,1433
|
354
|
-
wagtail_cjkcms-25.
|
355
|
-
wagtail_cjkcms-25.
|
356
|
-
wagtail_cjkcms-25.
|
357
|
-
wagtail_cjkcms-25.
|
358
|
-
wagtail_cjkcms-25.
|
359
|
-
wagtail_cjkcms-25.
|
361
|
+
wagtail_cjkcms-25.3.1.dist-info/licenses/LICENSE,sha256=KHsCh1fKOZzvcKe1a9h3FlDjTjK_UurO3wHK55TnHHo,1538
|
362
|
+
wagtail_cjkcms-25.3.1.dist-info/METADATA,sha256=5-GeLuKXpptOZbAt8X3dC6QDHk0xh-e4AwOE5vWv5pc,3148
|
363
|
+
wagtail_cjkcms-25.3.1.dist-info/WHEEL,sha256=aoLN90hLOL0c0qxXMxWYUM3HA3WmFGZQqEJHX1V_OJE,109
|
364
|
+
wagtail_cjkcms-25.3.1.dist-info/entry_points.txt,sha256=FzoiFENdZ1uebNztyz6GlswkumQspd5VjWbR9MUIH_8,50
|
365
|
+
wagtail_cjkcms-25.3.1.dist-info/top_level.txt,sha256=8wJGOGo1pG5nO5akfcMzA7i3ndj5868I8w35vTT0JJM,7
|
366
|
+
wagtail_cjkcms-25.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|