wagtail-cjkcms 23.9.2__py2.py3-none-any.whl → 23.10.2__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 +6 -0
- cjkcms/blocks/content/events.py +16 -0
- cjkcms/migrations/0015_eventcalendar.py +49 -0
- cjkcms/migrations/0016_layoutsettings_breadcrumb_icon_and_more.py +32 -0
- cjkcms/models/admin_sidebar.py +12 -1
- cjkcms/models/snippet_models.py +47 -1
- cjkcms/models/wagtailsettings_models.py +22 -2
- cjkcms/static/cjkcms/css/cjkcms-front.css +6 -0
- cjkcms/static/cjkcms/images/icons/calendar-day.svg +1 -0
- cjkcms/static/cjkcms/images/icons/caret-right-fill.svg +3 -0
- cjkcms/static/cjkcms/images/icons/caret-right.svg +3 -0
- cjkcms/static/cjkcms/images/icons/chevron-right.svg +3 -0
- cjkcms/static/cjkcms/images/icons/slash.svg +3 -0
- cjkcms/static/cjkcms/images/icons/world.svg +3 -0
- cjkcms/templates/cjkcms/blocks/event_calendar_block.html +6 -0
- cjkcms/templates/cjkcms/blocks/public_event_block.html +14 -3
- cjkcms/templates/cjkcms/pages/base.html +5 -0
- cjkcms/templates/cjkcms/pages/search.html +2 -2
- cjkcms/templates/cjkcms/pages/web_page_notitle.html +4 -0
- cjkcms/templates/cjkcms/snippets/breadcrumbs.html +27 -0
- cjkcms/templates/cjkcms/snippets/navbar_search.html +2 -5
- cjkcms/templatetags/cjkcms_tags.py +24 -1
- cjkcms/tests/manage.py +10 -0
- cjkcms/tests/settings.py +88 -0
- cjkcms/tests/test_advsettings.py +198 -0
- cjkcms/tests/test_templatetags.py +41 -2
- cjkcms/tests/testapp/__init__.py +0 -0
- cjkcms/tests/testapp/apps.py +6 -0
- cjkcms/tests/testapp/migrations/0001_initial.py +144 -0
- cjkcms/tests/testapp/migrations/0002_create_homepage.py +62 -0
- cjkcms/tests/testapp/migrations/__init__.py +0 -0
- cjkcms/tests/testapp/models.py +19 -0
- cjkcms/tests/urls.py +26 -0
- cjkcms/utils.py +5 -2
- cjkcms/wagtail_hooks.py +2 -1
- {wagtail_cjkcms-23.9.2.dist-info → wagtail_cjkcms-23.10.2.dist-info}/METADATA +3 -2
- {wagtail_cjkcms-23.9.2.dist-info → wagtail_cjkcms-23.10.2.dist-info}/RECORD +44 -25
- cjkcms/draftail/draftail_icons.py +0 -17
- /cjkcms/{media → tests/media}/images/test.original.png +0 -0
- /cjkcms/{media → tests/media}/original_images/test.png +0 -0
- {wagtail_cjkcms-23.9.2.dist-info → wagtail_cjkcms-23.10.2.dist-info}/LICENSE +0 -0
- {wagtail_cjkcms-23.9.2.dist-info → wagtail_cjkcms-23.10.2.dist-info}/WHEEL +0 -0
- {wagtail_cjkcms-23.9.2.dist-info → wagtail_cjkcms-23.10.2.dist-info}/entry_points.txt +0 -0
- {wagtail_cjkcms-23.9.2.dist-info → wagtail_cjkcms-23.10.2.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
cjkcms/__init__.py,sha256=
|
1
|
+
cjkcms/__init__.py,sha256=eOL4IsGkUTHwsLt6km805joXGQcf9wlhnDPVc9LOflM,273
|
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
|
@@ -6,25 +6,24 @@ cjkcms/image_formats.py,sha256=1iTI3h56apM2V-8DED8bmDH8R9k1ODfvpdXZOXgS3Kg,1803
|
|
6
6
|
cjkcms/search_urls.py,sha256=92XkGTJRrQQyA061wWl1l5C0vq6INVJPXOrpcgp3aoU,125
|
7
7
|
cjkcms/settings.py,sha256=QcBhXnKBluYVJ_8p5n8z-Xcx2pN9zXUEBvIv8m0nbSQ,10931
|
8
8
|
cjkcms/urls.py,sha256=kVTUkVHXKx0W-Ns0hDQCZ_r75GsAA7pwyCvQ33x_5Hc,506
|
9
|
-
cjkcms/utils.py,sha256=
|
9
|
+
cjkcms/utils.py,sha256=u4pkPxAwqH3SgyIcmvk7I5L3w-eIcz0Rphmv0Y1DRpA,2006
|
10
10
|
cjkcms/views.py,sha256=h5AdenY0DK0z2s0nRlR-X8Bdvv3mPr0N4xagbBHBfsk,4488
|
11
|
-
cjkcms/wagtail_hooks.py,sha256=
|
11
|
+
cjkcms/wagtail_hooks.py,sha256=utrTXxJzjumhbzHmB_p5xZsIOZHkDQUJKGQ5geKD-mY,6543
|
12
12
|
cjkcms/widgets.py,sha256=2B92WkaktZC1ge4GrAMTB7VVYKnKR8qoZLAtWS2z_00,1745
|
13
13
|
cjkcms/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
14
|
cjkcms/api/mailchimp.py,sha256=pufnnu8n-c6kkWNKy-EsRLW5LLBn8_TmYrnRSQCPFdY,2832
|
15
15
|
cjkcms/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
cjkcms/bin/cjkcms.py,sha256=i11hhB11COQhTk05y7mkeIkUYcFjhI8-QxLkN3tCxgg,5763
|
17
|
-
cjkcms/blocks/__init__.py,sha256=
|
17
|
+
cjkcms/blocks/__init__.py,sha256=2HXyFkGExR6oeL-mzaCz81_fInfpvKn8t3k9-pvzwzQ,3402
|
18
18
|
cjkcms/blocks/base_blocks.py,sha256=uKp6QO3iOPT4P0H0yOumvL7faPvLQK9Dj-D8iqlvqQ4,11616
|
19
19
|
cjkcms/blocks/content_blocks.py,sha256=3T3NikkitfJNq2O6l5iLjmbp5fW4giRIPckKS4lT2jw,8776
|
20
20
|
cjkcms/blocks/html_blocks.py,sha256=rXdR1uxFYDYjOXpxndItxacWstiME8CdqZgB6d5qAYE,9543
|
21
21
|
cjkcms/blocks/layout_blocks.py,sha256=n2oVyL-ZQQaEA00HU6YraR59YF065o-OK7WuAahGuiw,3406
|
22
22
|
cjkcms/blocks/searchable_html_block.py,sha256=i1rWv4vwwvZ9fxkASwPKl87-TqVHkXOFyohH3ve7pYk,171
|
23
23
|
cjkcms/blocks/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
cjkcms/blocks/content/events.py,sha256=
|
24
|
+
cjkcms/blocks/content/events.py,sha256=H3uIl4Gxfsm8yjdfaEMRLcNs5-HkoMZUP1qkxPd5Z9Q,1967
|
25
25
|
cjkcms/draftail/__init__.py,sha256=4-DXyDcnvAacmOzRW5IzmNb28kU71PJ18Q89vkxCv_8,240
|
26
26
|
cjkcms/draftail/draftail_extensions.py,sha256=hwsW9MLofUJRxJ5q25qsjexZIzx9iRh5na3g6bR5m20,3157
|
27
|
-
cjkcms/draftail/draftail_icons.py,sha256=bQVW9h4rSqOrgH6BPjcJyWqtLi0cSyQDzzU9jlmJeT8,5157
|
28
27
|
cjkcms/finders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
28
|
cjkcms/finders/oembed.py,sha256=iQovKZvVipoxUF1BCKBL3WMkaYytyP1WZP0kEAIB72E,2459
|
30
29
|
cjkcms/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -33,8 +32,6 @@ cjkcms/management/commands/import-csv.py,sha256=5IR_GHVhuHdb0UX_TNLe4OuKhwRmKjU3
|
|
33
32
|
cjkcms/management/commands/init-collections.py,sha256=bTDVz3RyXUoCUXv-d2P3JWjySw0INvO_14IfNmPEG9A,951
|
34
33
|
cjkcms/management/commands/init-navbar.py,sha256=rO0O1MjzfvmnQoZllhY3g6KOHT3nFt5UR0WkIsb-4PA,3560
|
35
34
|
cjkcms/management/commands/init-website.py,sha256=DJPREmnv3srarhNWbiowluKAuUoa-PXDlENQQgnWZPY,3820
|
36
|
-
cjkcms/media/images/test.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
37
|
-
cjkcms/media/original_images/test.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
38
35
|
cjkcms/migrations/0001_initial.py,sha256=hiDQKRqmKk65tS8jyXRRfffWLzLMB7P0r3qEqu88jAM,2070677
|
39
36
|
cjkcms/migrations/0002_alter_body_to_cjkcmsstreamfield.py,sha256=QYPXCirKSBBwB4JNcei_OhEx856Cq0_S-7ZXmEtcCAI,924
|
40
37
|
cjkcms/migrations/0003_alter_footer_content_alter_navbar_menu_items.py,sha256=N5vRtKBIlQ99zbBKTFoVAVeMH_K192c2dVVYOvHD4Nc,727
|
@@ -49,14 +46,16 @@ cjkcms/migrations/0011_cjkcmspage_related_classifier_term_and_more.py,sha256=4Wb
|
|
49
46
|
cjkcms/migrations/0012_remove_analyticssettings_ga_tracking_id_and_more.py,sha256=JbXxoZ0MOMekmkaPE1MtcPV6IcHWt3_EPup6hccpw04,1466
|
50
47
|
cjkcms/migrations/0013_socialmediasettings_location.py,sha256=uVOIDxfmKvnWsd7z1T9Fgv3009amrcl7RzyiMMuiN2U,780
|
51
48
|
cjkcms/migrations/0014_navbar_alignment.py,sha256=arSBLVajQBkjLv7r8AbXnkL8ayxkmf_AlISCuZ1-O2U,818
|
49
|
+
cjkcms/migrations/0015_eventcalendar.py,sha256=WQFnU23gHcPMzcHOchNU4LFTPWrgZNyMj_Ma54BPUvs,1467
|
50
|
+
cjkcms/migrations/0016_layoutsettings_breadcrumb_icon_and_more.py,sha256=PnQsKpWBXPJPj5FCNDTemvT1_yaXPy92FPTwm1FmckM,918
|
52
51
|
cjkcms/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
52
|
cjkcms/models/__init__.py,sha256=f99GmxfFxGtQl8JvZFz8rAtklCIesLoSccyhhi2xgPU,232
|
54
|
-
cjkcms/models/admin_sidebar.py,sha256=
|
53
|
+
cjkcms/models/admin_sidebar.py,sha256=R3gtDUfbtdVPLNb-__XZWYk9Ap5k9WkHc-u6XDhesdc,665
|
55
54
|
cjkcms/models/cms_models.py,sha256=9U46xwPidQfUlXnuVUW5IbtphXX_8djJD4CohoP3NbU,2356
|
56
55
|
cjkcms/models/integration_models.py,sha256=L29OBwLH8DfHtDplu218UGbbvL94Erk3J_R7n365zQM,6302
|
57
56
|
cjkcms/models/page_models.py,sha256=I7KiJDC_Jx87Gi14NADbxkO_S_DfKQKBblZqOdRx_Uo,23904
|
58
|
-
cjkcms/models/snippet_models.py,sha256=
|
59
|
-
cjkcms/models/wagtailsettings_models.py,sha256=
|
57
|
+
cjkcms/models/snippet_models.py,sha256=LyA0bpZIG8_bFPQBUOM2STtxN_nA2_UU-xpdCjnPkqo,16823
|
58
|
+
cjkcms/models/wagtailsettings_models.py,sha256=pbnqX6RBX5dB9FxuJwCWh7S3VYrD-xwj9vt8G0yf8xU,19937
|
60
59
|
cjkcms/project_template/basic/.editorconfig,sha256=1wgq7hgAUSHLfuy4Jh9BJ4ysyQL0si5UBbCu_OMz9hg,722
|
61
60
|
cjkcms/project_template/basic/.gitattributes,sha256=TXzwnsENJoG4wiS2LEREDeZ0JI_vRGA6EEijwUCVJvE,364
|
62
61
|
cjkcms/project_template/basic/.gitignore,sha256=EBotJhW2lEZ9u6nXwClkSq9rVawXsCh6h4u38g3lM_I,275
|
@@ -140,10 +139,16 @@ cjkcms/static/cjkcms/bi/fonts/bootstrap-icons.woff,sha256=mZVQ-vv7wOBHSztclF3yh7
|
|
140
139
|
cjkcms/static/cjkcms/bi/fonts/bootstrap-icons.woff2,sha256=z-RbmB0bkbFzNho0z85fYIk9vRrEryw6wR_BdVLFQB8,121340
|
141
140
|
cjkcms/static/cjkcms/css/cjkcms-admin.css,sha256=I_ca37IMgYbh75CrhRenPvu3TzMVFgmDO2246fGijkI,846
|
142
141
|
cjkcms/static/cjkcms/css/cjkcms-editor.css,sha256=rqUeJtq7TNyNpBvSkTOKzpFMUZ-Vh3K075EcmAvG05Q,1104
|
143
|
-
cjkcms/static/cjkcms/css/cjkcms-front.css,sha256=
|
142
|
+
cjkcms/static/cjkcms/css/cjkcms-front.css,sha256=3wiwzl7QpwNKjXC9VdrOC_-TI_X77fK3dtNOnKSwnik,4688
|
144
143
|
cjkcms/static/cjkcms/images/avatars/default.png,sha256=f8QXRtZ1j3s2CItnnL8XbbhgfW2yPHKnijwG3d5qdb0,535
|
145
144
|
cjkcms/static/cjkcms/images/avatars/default.svg,sha256=kVYNxHtkb6nHbTCXyDG3qvS_-IgS9PknIf2I8KI9MrE,384
|
145
|
+
cjkcms/static/cjkcms/images/icons/calendar-day.svg,sha256=S6Wk7QnGUEkSzabH8ob5Vqoum1MBRNuQ4imz-in9n6Y,581
|
146
|
+
cjkcms/static/cjkcms/images/icons/caret-right-fill.svg,sha256=Ue1QavYKOwm-x_dZWyF8lt33ZeKwsAi1cpue3IAqd6c,268
|
147
|
+
cjkcms/static/cjkcms/images/icons/caret-right.svg,sha256=FDqMP1sM10ExP1SB7gciQu2B56oXUT42W6tNbKlMAaM,289
|
148
|
+
cjkcms/static/cjkcms/images/icons/chevron-right.svg,sha256=9q6XIoCI3aalB9WuCshJfY3xytG5F9ioeld03qMPmkI,291
|
146
149
|
cjkcms/static/cjkcms/images/icons/quote.svg,sha256=lfFcHG9T6WPpWn2eJuxYcpfzvdex_cbHLV9YGnT5Cs0,705
|
150
|
+
cjkcms/static/cjkcms/images/icons/slash.svg,sha256=hXuFVJd4K9pZJTzv6LBq7641HcMxVj-GrYyU22gOZEw,252
|
151
|
+
cjkcms/static/cjkcms/images/icons/world.svg,sha256=uAe-G_uRbnpHHMWnQygX1RWOa-LTraAMt2z0M3kB6YY,1374
|
147
152
|
cjkcms/static/cjkcms/images/logos/cms-logo-long.svg,sha256=daTyVUvwJ-hxBkNOSTQExAQL37K5ikQ0m_WStGzvwUs,4166
|
148
153
|
cjkcms/static/cjkcms/images/logos/cms-logo-square.svg,sha256=-KYu_o-r1TXCt45_xqzw02ok5-Gb-6PnpVjqsmd0ST4,4218
|
149
154
|
cjkcms/static/cjkcms/images/patterns/pattern1.jpg,sha256=IeVxtJRaUVYT59dxs8LpAtaW2j1Wdcr2z7da0FScSLo,47935
|
@@ -181,6 +186,7 @@ cjkcms/templates/cjkcms/blocks/column_block.html,sha256=7aiPizV-MrXS2LyV_fP1aCpN
|
|
181
186
|
cjkcms/templates/cjkcms/blocks/document_link_block.html,sha256=cEJERsbEF4sSLyyBRSHtiePwc-Q9S02dF0BZo_CThZ0,137
|
182
187
|
cjkcms/templates/cjkcms/blocks/download_block.html,sha256=0uslQsNRhg0XYhLijfrToAFiMVQ_SsOBTxcKRYXScbc,920
|
183
188
|
cjkcms/templates/cjkcms/blocks/embed_video_block.html,sha256=qHstCQwbgTykxWUqfH81oOF37gfPa57r47_QiQ8ocWQ,103
|
189
|
+
cjkcms/templates/cjkcms/blocks/event_calendar_block.html,sha256=_tz3Kjx5fqePTYTov565mom47TwGtfhEk1SgHJRQe2Q,308
|
184
190
|
cjkcms/templates/cjkcms/blocks/external_link_block.html,sha256=EIqU-_BY0GPUOlIFviTl4wR_dcSyIlHJZz7hIZSNees,95
|
185
191
|
cjkcms/templates/cjkcms/blocks/film_strip_block.html,sha256=3WOGq2A40uO_p9FBppMlzGXKugNuUI5Vu0xowhf3I5g,1484
|
186
192
|
cjkcms/templates/cjkcms/blocks/grid_block.html,sha256=zNN2Zm0agxKGsuW8O4ZSEvvZD65ICJXncbCef2BBecM,424
|
@@ -204,7 +210,7 @@ cjkcms/templates/cjkcms/blocks/pagepreview_block.html,sha256=KGodzh8Pd-Jhg8mmMoL
|
|
204
210
|
cjkcms/templates/cjkcms/blocks/pagepreview_card.html,sha256=SJeuA6lWEQYws53vNCGSOK_JxyUZN-ja2D8dUh2dr4E,793
|
205
211
|
cjkcms/templates/cjkcms/blocks/pricelist_block.html,sha256=kq1M97zQlQjr_8E4Q9pge1hUMzjO_WNFQygN8Y1OUZ8,244
|
206
212
|
cjkcms/templates/cjkcms/blocks/pricelistitem_block.html,sha256=cczFHfpOtHAJZrXNS7S7vKOgBJpQUI1mnJ02Qh_C_4c,513
|
207
|
-
cjkcms/templates/cjkcms/blocks/public_event_block.html,sha256=
|
213
|
+
cjkcms/templates/cjkcms/blocks/public_event_block.html,sha256=77XHVAGABezV2G-bXQyd8GnBHMOQpCQR1wVtR9l8Uqo,1155
|
208
214
|
cjkcms/templates/cjkcms/blocks/quote_block.html,sha256=GZoMDnpg1LUD-zsDw07h5HtCR3toWypz2dpTNuRwVUw,353
|
209
215
|
cjkcms/templates/cjkcms/blocks/quote_block_leftbar.html,sha256=SAIrsh9WkC74sm9oto3QnW0fBqCP4Abi9QZ-mDwviLs,852
|
210
216
|
cjkcms/templates/cjkcms/blocks/quote_block_start_end_quote.html,sha256=hgnKMomSiiNlanYUQ0qk-HiT56xV5Nm6n-kQ6VpcHh8,998
|
@@ -253,22 +259,23 @@ cjkcms/templates/cjkcms/includes/stream_forms/render_field.html,sha256=F3FHztOTG
|
|
253
259
|
cjkcms/templates/cjkcms/pages/article_index_page.html,sha256=K_5xM-d2EPDJ961LLqiOLompzSoJz1cHQbwvRNDZfH4,2002
|
254
260
|
cjkcms/templates/cjkcms/pages/article_page.html,sha256=jXOAOznaiSPULcZQB-A8AYmeTU9-xEWcyAgnrYAJ74Y,2031
|
255
261
|
cjkcms/templates/cjkcms/pages/article_page.search.html,sha256=0L4zGoqu1SP1F2BIIYeD9IMaxpjIsqawpIzEN8e94kY,1018
|
256
|
-
cjkcms/templates/cjkcms/pages/base.html,sha256=
|
262
|
+
cjkcms/templates/cjkcms/pages/base.html,sha256=XcQY9gkoYPrv-qg11dKomTfI3GKw-YDh9uqj9WPntJY,9488
|
257
263
|
cjkcms/templates/cjkcms/pages/form_page_landing.html,sha256=zdySSHOWF10-x2MFLH9XMjeFSeNTMRM-VpvZ1tM8kw0,248
|
258
264
|
cjkcms/templates/cjkcms/pages/home_page.html,sha256=67h2o3EVXsrivMqM26OZV-7-H_9vv1clFJ4MFMknIMU,50
|
259
265
|
cjkcms/templates/cjkcms/pages/page.mini.html,sha256=5E3pXu7fxt1gCimv4MObgOF6BkrYKuRtW3xrK71Z9lA,491
|
260
|
-
cjkcms/templates/cjkcms/pages/search.html,sha256=
|
266
|
+
cjkcms/templates/cjkcms/pages/search.html,sha256=byE6e5rd3q-9OW_4Zsv2-WdhhPfNuP452NRfdJP9TUg,2613
|
261
267
|
cjkcms/templates/cjkcms/pages/search_result.html,sha256=peGL-4UtHGQdYlmdUqGUX3MxZLuw4EcxY00yQFW_7Ag,582
|
262
268
|
cjkcms/templates/cjkcms/pages/web_page.html,sha256=floOVzOyPYvTMKfWd3pY0vyrqG7jt4WS5xJt3j6gZM0,594
|
263
|
-
cjkcms/templates/cjkcms/pages/web_page_notitle.html,sha256=
|
269
|
+
cjkcms/templates/cjkcms/pages/web_page_notitle.html,sha256=HjwzN8NpJBOVjKM6_cLtPfUllotFMkvQPLXL2aoB6A0,378
|
264
270
|
cjkcms/templates/cjkcms/snippets/actionbar.html,sha256=gI_fVpM7InInvEOaqb1Xs5a0NHQVE8MKKeE2PI_eXLs,31
|
265
271
|
cjkcms/templates/cjkcms/snippets/bottom_corner_lang_selector.html,sha256=_gcHmob1tMeT3_KppsozcWw4F1ocyF3YiOunUmBesjs,1943
|
272
|
+
cjkcms/templates/cjkcms/snippets/breadcrumbs.html,sha256=zvugWh1kS2Eobn1T4eq1XEngn49z1ME7IlEwrmXUxyo,1311
|
266
273
|
cjkcms/templates/cjkcms/snippets/footer.html,sha256=_QUtV_LHgGjh-XLzw5Fd_Lxdrx9on5G0luFaa6oirB0,430
|
267
274
|
cjkcms/templates/cjkcms/snippets/frontend_assets.html,sha256=cTotNpBFzrbQMAHEvQGrgq7OPHHY8h2-Ei6qlKqM2LM,2027
|
268
275
|
cjkcms/templates/cjkcms/snippets/frontend_scripts.html,sha256=TlC-588F0NmbTTSGkGvofbz77-JlkAKWOEVwhQy-HWE,1196
|
269
276
|
cjkcms/templates/cjkcms/snippets/navbar.html,sha256=VM2Yx4oxV2OjTBZyQ2PYdraU38hLMMLxN0oyqmC_tpk,2983
|
270
277
|
cjkcms/templates/cjkcms/snippets/navbar_lang_selector.html,sha256=sn7KLDentGOsMZ9CNAxdAGLYO3a_mYfSUhJ6iZzteOE,836
|
271
|
-
cjkcms/templates/cjkcms/snippets/navbar_search.html,sha256=
|
278
|
+
cjkcms/templates/cjkcms/snippets/navbar_search.html,sha256=3g_pJyeGuTsmWY4WzXUvuWk-zdpXHmBKzL5sRJ815WM,238
|
272
279
|
cjkcms/templates/cjkcms/snippets/social_media.html,sha256=63Yd0X5I5WhshRlv23H6Hy8e2rBUnrzXedTP5HqP3lE,330
|
273
280
|
cjkcms/templates/cjkcms/snippets/social_media_icons.html,sha256=pPFNLLYD5EvlQh-IQbciTt-tgKHE6ZufW3i6WSB9N_o,2222
|
274
281
|
cjkcms/templates/cjkcms/snippets/social_media_nav_block.html,sha256=1eavf1UyigPkVgrHMQ3kgfnaEvzXnF22J-YxK5hshn0,173
|
@@ -283,22 +290,34 @@ cjkcms/templates/wagtailadmin/shared/cr_main_nav_2fix.html,sha256=BAhkDE8_8KbhUO
|
|
283
290
|
cjkcms/templates/wagtailadmin/tables/thumbnail_cell.html,sha256=RzMT-tBnnDOgL-zexKanZTTpCEX1bMybFL2p_zvOEV4,578
|
284
291
|
cjkcms/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
292
|
cjkcms/templatetags/auth_extras.py,sha256=IIxQ5n9FaQVZmhW-yW1XM5p2OjIemtqVoX-O-UcCns8,327
|
286
|
-
cjkcms/templatetags/cjkcms_tags.py,sha256=
|
293
|
+
cjkcms/templatetags/cjkcms_tags.py,sha256=Zf6v2YyYKhqxGgBDznz_WKCsbdJN7E5b3q-nL50t73s,7903
|
287
294
|
cjkcms/templatetags/friendly_loader.py,sha256=Zwopb9NNNN6IuDJCMFlwKuhmJC0hi4uTPEZSAxeakYY,4962
|
288
295
|
cjkcms/templatetags/gravatar.py,sha256=JG5MB6HUFso15J8gZ_te5FTMYAuo4km8rzMKKvLLh-E,1127
|
289
296
|
cjkcms/templatetags/txtutils_tags.py,sha256=2-StRGf0-vyNG9Nxoe_AFwxhaNF0byaWS6hYBUZDe7o,1224
|
290
297
|
cjkcms/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
298
|
+
cjkcms/tests/manage.py,sha256=EUgybZlZ7xk2Zf2KCwBbK_z7gf7Ifqs0_bl4Kijhdgo,242
|
299
|
+
cjkcms/tests/settings.py,sha256=WVu7tOcUH1E_DJ6YOEfi5_r5tJobUbX9O0VAmVl4ICg,2556
|
300
|
+
cjkcms/tests/test_advsettings.py,sha256=6EngxFbUtwpaKDrvdLdCR6ONfHR3K1XGpOYKZJTHBUg,6906
|
291
301
|
cjkcms/tests/test_articlepages.py,sha256=7V7tr2kCKiEU1y36PlB9yoP0tmSDb8cchf8VYof3GGM,4226
|
292
302
|
cjkcms/tests/test_bin.py,sha256=z-6vMYYqhv18UO00sUPrNpLLue0mbRr5vzqisu7UKAY,3506
|
293
303
|
cjkcms/tests/test_gravatar.py,sha256=UWu1cVi3Gj96yqeQu795gw6FVPbZ44eCkkH1NGEGgBo,2629
|
294
304
|
cjkcms/tests/test_search_blocks.py,sha256=VDQyGL8UFuN3HNqrkfRpjfKIX1lm_YT2sC_DQvU_H7c,4760
|
295
305
|
cjkcms/tests/test_settings.py,sha256=n2B-qtaSdMJC4KuMGGx6qo5HIU73aaImbMkI_o7tK8A,2665
|
296
|
-
cjkcms/tests/test_templatetags.py,sha256=
|
306
|
+
cjkcms/tests/test_templatetags.py,sha256=deNuZtSlr29hokn7azTyB2FhwnG3x0L13bjdHGA4jrw,5313
|
297
307
|
cjkcms/tests/test_urls.py,sha256=UgPDm8bPXbhe3AWuoWYGWAs3ObzVBHW3AWYR67YOfS4,2673
|
298
308
|
cjkcms/tests/test_webpage.py,sha256=PvXeXbawigObsdi_YpQNuHFx3Lqi6wM3ktVHZsxYbr4,1520
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
309
|
+
cjkcms/tests/urls.py,sha256=_ksKz7HBHJtQK3HxC9cmJMX_dt6n4alx3FXjcL-cu28,850
|
310
|
+
cjkcms/tests/media/images/test.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
311
|
+
cjkcms/tests/media/original_images/test.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
312
|
+
cjkcms/tests/testapp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
313
|
+
cjkcms/tests/testapp/apps.py,sha256=EwyrkWTu-_OoLoERBTlqkqfPIIrEsbHY3kbCxgrv_7I,169
|
314
|
+
cjkcms/tests/testapp/models.py,sha256=Rkn9KHrGbLzrKjP4y_gwtXma1_fJOZNU7ekb689fJEU,488
|
315
|
+
cjkcms/tests/testapp/migrations/0001_initial.py,sha256=hxr-r-42IQEGr_OsZkxXXCW7wbxAHuI_OLOkn-seJUU,4942
|
316
|
+
cjkcms/tests/testapp/migrations/0002_create_homepage.py,sha256=EfsxHh1oyqwahW9RVpTvaRDx_CHtFSJQahKEr7XC5Gg,1999
|
317
|
+
cjkcms/tests/testapp/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
318
|
+
wagtail_cjkcms-23.10.2.dist-info/LICENSE,sha256=KHsCh1fKOZzvcKe1a9h3FlDjTjK_UurO3wHK55TnHHo,1538
|
319
|
+
wagtail_cjkcms-23.10.2.dist-info/METADATA,sha256=0mWmVhuNrgyG2cepB7LBAQSmaqsnyLwvFTyu7NepcuI,5295
|
320
|
+
wagtail_cjkcms-23.10.2.dist-info/WHEEL,sha256=m9WAupmBd2JGDsXWQGJgMGXIWbQY3F5c2xBJbBhq0nY,110
|
321
|
+
wagtail_cjkcms-23.10.2.dist-info/entry_points.txt,sha256=FzoiFENdZ1uebNztyz6GlswkumQspd5VjWbR9MUIH_8,50
|
322
|
+
wagtail_cjkcms-23.10.2.dist-info/top_level.txt,sha256=8wJGOGo1pG5nO5akfcMzA7i3ndj5868I8w35vTT0JJM,7
|
323
|
+
wagtail_cjkcms-23.10.2.dist-info/RECORD,,
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# flake8: noqa: E501
|
2
|
-
class DRAFTAIL_ICONS:
|
3
|
-
increase_font = [
|
4
|
-
"m 480.2209,84.950689 4.06109,6.54669 3.20118,6.93067 331.19841,843.325311 c 12.1572,30.95579 -3.08196,65.90574 -34.03775,78.06294 -28.74458,11.2889 -60.93322,-1.0447 -75.11868,-27.64918 L 706.58049,985.7786 626.83948,782.77723 H 235.96515 l -79.6808,203.00137 c -11.28884,28.7446 -42.23062,43.9377 -71.378178,36.2277 l -6.684746,-2.19 C 49.476807,1008.5275 34.283682,977.58572 41.993644,948.43815 l 2.19004,-6.68479 L 375.38209,98.428049 C 393.4324,52.466792 453.88195,47.974339 480.2209,84.950689 Z M 431.43242,285.07636 283.23619,662.34145 H 579.56843 Z M 773.67972,4.2455454 c 12.10621,-5.6607226 26.13529,-5.6607226 38.24143,0 l 5.87486,3.3021083 135.55096,90.0738253 5.28773,4.101561 c 16.35361,14.74 19.88226,39.62397 7.33249,58.50999 -12.54977,18.88602 -36.85775,25.2725 -56.78192,15.90587 l -5.82963,-3.28588 -110.55565,-73.445424 -110.55475,73.445424 -5.82958,3.28584 c -19.92417,9.36663 -44.23214,2.98015 -56.78191,-15.90587 -12.54983,-18.88602 -9.02113,-43.76999 7.33243,-58.50999 L 632.25391,97.621437 767.8048,7.5476115 Z"
|
5
|
-
]
|
6
|
-
decrease_font = [
|
7
|
-
"m 431.77869,370.57963 4.20832,6.44496 3.52572,7.20318 231.02312,554.45552 c 13.0862,31.40688 -1.76563,67.47571 -33.17258,80.56191 -29.16349,12.1514 -62.34679,0.2156 -77.41597,-26.70007 L 556.80126,986.0726 495.56947,839.16561 H 269.65966 L 208.48948,986.0726 c -12.15148,29.1636 -44.11958,44.0526 -73.77058,35.5533 l -6.79133,-2.3807 C 98.764017,1007.0937 83.874965,975.12562 92.374306,945.47457 l 2.380709,-6.79128 231.023125,-554.45552 c 18.95572,-45.49378 78.85589,-50.04316 106.00055,-13.64814 z m -49.13332,197.51885 -61.60616,147.8548 h 123.21233 z m 546.85804,-447.4609 c 12.83909,19.32142 9.2291,44.77907 -7.50154,59.85889 l -5.40964,4.19612 -138.67597,92.1504 c -13.55668,9.00856 -30.68387,10.13463 -45.13335,3.37819 l -6.01048,-3.37821 -138.67592,-92.1504 C 566.84294,170.56954 561.0625,141.89114 575.18553,120.63758 588.02462,101.31616 612.893,94.782442 633.27651,104.36501 l 5.96409,3.3616 113.10337,75.08691 113.10443,-75.08692 c 21.25357,-14.123023 49.93198,-8.342584 64.05501,12.91098 z"
|
8
|
-
]
|
9
|
-
left_align = [
|
10
|
-
"M 584.19821,168.76226 H 73.024776 C 32.701407,168.76226 0,137.69252 0,99.38113 0,61.069736 32.701407,30 73.024776,30 H 584.19821 c 40.39183,0 73.02477,31.069736 73.02477,69.38113 0,38.31139 -32.63294,69.38113 -73.02477,69.38113 z m 0,555.04902 H 73.024776 C 32.701407,723.81128 0,692.80659 0,654.43015 0,616.05372 32.701407,585.04902 73.024776,585.04902 H 584.19821 c 40.39183,0 73.02477,31.0047 73.02477,69.38113 0,38.37644 -32.63294,69.38113 -73.02477,69.38113 z M 0,376.90564 C 0,338.5292 32.701407,307.52451 73.024776,307.52451 H 949.32209 c 40.39183,0 73.02481,31.00469 73.02481,69.38113 0,38.37644 -32.63298,69.38113 -73.02481,69.38113 H 73.024776 C 32.701407,446.28677 0,415.28208 0,376.90564 Z M 949.32209,1001.3358 H 73.024776 C 32.701407,1001.3358 0,970.3311 0,931.95467 0,893.57823 32.701407,862.57354 73.024776,862.57354 H 949.32209 c 40.39183,0 73.02481,31.00469 73.02481,69.38113 0,38.37643 -32.63298,69.38113 -73.02481,69.38113 z"
|
11
|
-
]
|
12
|
-
centre_align = [
|
13
|
-
"M 729.54876,161.46125 H 293.0195 c -40.24254,0 -72.75487,-31.67405 -72.75487,-70.73062 C 220.26463,51.674059 252.77696,20 293.0195,20 h 436.52926 c 40.24254,0 72.75488,31.674059 72.75488,70.73063 0,39.05657 -32.51234,70.73062 -72.75488,70.73062 z M 947.81339,444.38376 H 74.754876 C 34.580543,444.38376 2,412.77601 2,373.65314 2,334.53026 34.580543,302.92251 74.754876,302.92251 H 947.81339 c 40.24254,0 72.75491,31.60775 72.75491,70.73063 0,39.12287 -32.51237,70.73062 -72.75491,70.73062 z M 2,939.49815 C 2,900.37528 34.580543,868.76753 74.754876,868.76753 H 947.81339 c 40.24254,0 72.75491,31.60775 72.75491,70.73062 0,39.12288 -32.51237,70.73065 -72.75491,70.73065 H 74.754876 C 34.580543,1010.2288 2,978.62103 2,939.49815 Z M 729.54876,727.30627 H 293.0195 c -40.24254,0 -72.75487,-31.60775 -72.75487,-70.73062 0,-39.12288 32.51233,-70.73063 72.75487,-70.73063 h 436.52926 c 40.24254,0 72.75488,31.60775 72.75488,70.73063 0,39.12287 -32.51234,70.73062 -72.75488,70.73062 z"
|
14
|
-
]
|
15
|
-
right_align = [
|
16
|
-
"M 947.56774,163.47496 H 437.33896 c -40.31719,0 -72.88983,-29.43806 -72.88983,-65.73748 C 364.44913,61.438065 397.02177,32 437.33896,32 h 510.22878 c 40.31718,0 72.88986,29.438065 72.88986,65.73748 0,36.29942 -32.57268,65.73748 -72.88986,65.73748 z m 0,525.89984 H 437.33896 c -40.31719,0 -72.88983,-29.37643 -72.88983,-65.73748 0,-36.36104 32.57264,-65.73748 72.88983,-65.73748 h 510.22878 c 40.31718,0 72.88986,29.37644 72.88986,65.73748 0,36.36105 -32.57268,65.73748 -72.88986,65.73748 z M 0,360.6874 C 0,324.32636 32.640975,294.94992 72.889826,294.94992 H 947.56774 c 40.31718,0 72.88986,29.37644 72.88986,65.73748 0,36.36104 -32.57268,65.73748 -72.88986,65.73748 H 72.889826 C 32.640975,426.42488 0,397.04844 0,360.6874 Z M 947.56774,952.32472 H 72.889826 C 32.640975,952.32472 0,922.94829 0,886.58724 0,850.2262 32.640975,820.84976 72.889826,820.84976 H 947.56774 c 40.31718,0 72.88986,29.37644 72.88986,65.73748 0,36.36105 -32.57268,65.73748 -72.88986,65.73748 z"
|
17
|
-
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|