aa-bulletin-board 2.3.3__py3-none-any.whl → 2.3.5__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.
- aa_bulletin_board/__init__.py +1 -1
- aa_bulletin_board/locale/cs_CZ/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/de/LC_MESSAGES/django.mo +0 -0
- aa_bulletin_board/locale/de/LC_MESSAGES/django.po +15 -15
- aa_bulletin_board/locale/django.pot +13 -13
- aa_bulletin_board/locale/es/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/ja/LC_MESSAGES/django.mo +0 -0
- aa_bulletin_board/locale/ja/LC_MESSAGES/django.po +18 -17
- aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
- aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.po +17 -16
- aa_bulletin_board/locale/nl_NL/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/pl_PL/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/ru/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/sk/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/locale/uk/LC_MESSAGES/django.mo +0 -0
- aa_bulletin_board/locale/uk/LC_MESSAGES/django.po +16 -15
- aa_bulletin_board/locale/zh_Hans/LC_MESSAGES/django.po +12 -12
- aa_bulletin_board/models.py +4 -1
- aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.js +7 -10
- aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.min.js +1 -1
- aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.min.js.map +1 -1
- aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.js +7 -14
- aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.min.js +1 -1
- aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.min.js.map +1 -1
- aa_bulletin_board/templates/aa_bulletin_board/partials/common/bulletin-board-management.html +9 -3
- {aa_bulletin_board-2.3.3.dist-info → aa_bulletin_board-2.3.5.dist-info}/METADATA +3 -11
- {aa_bulletin_board-2.3.3.dist-info → aa_bulletin_board-2.3.5.dist-info}/RECORD +31 -31
- {aa_bulletin_board-2.3.3.dist-info → aa_bulletin_board-2.3.5.dist-info}/WHEEL +0 -0
- {aa_bulletin_board-2.3.3.dist-info → aa_bulletin_board-2.3.5.dist-info}/licenses/LICENSE +0 -0
@@ -11,31 +11,24 @@ $(document).ready(() => {
|
|
11
11
|
* @returns {`<div class="oembed-video youtube-oembed-video"><iframe src="${string}" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>`}
|
12
12
|
*/
|
13
13
|
const youtubeOembedToIframe = (url) => {
|
14
|
-
|
15
|
-
const
|
16
|
-
const
|
14
|
+
const videoId = new URLSearchParams(new URL(url).search).get('v'); // jshint ignore:line
|
15
|
+
const videoUrl = `https://www.youtube-nocookie.com/embed/${videoId}`;
|
16
|
+
const divClasses = 'oembed-video youtube-oembed-video';
|
17
|
+
const iframeAllow = 'accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture';
|
17
18
|
|
18
|
-
|
19
|
-
videoId = videoId.substring(0, ampersandPosition);
|
20
|
-
}
|
21
|
-
|
22
|
-
const videoUrl = embedUrl + videoId;
|
23
|
-
|
24
|
-
return `<div class="oembed-video youtube-oembed-video"><iframe src="${videoUrl}" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>`;
|
19
|
+
return `<div class="${divClasses}"><iframe src="${videoUrl}" allow="${iframeAllow}" allowfullscreen></iframe></div>`;
|
25
20
|
};
|
26
21
|
|
27
|
-
|
28
22
|
/**
|
29
23
|
* Look for oembed elements and replace them with iframes
|
30
24
|
*/
|
31
25
|
const checkForOembed = () => {
|
32
26
|
// Find all oembed elements and loop through them
|
33
|
-
$('.ck-content figure.media oembed').
|
27
|
+
$('.ck-content figure.media oembed').filter((_, element) => {
|
28
|
+
// Check if the source is a YouTube video
|
34
29
|
const source = $(element).attr('url');
|
35
30
|
|
36
|
-
// Check if the source is a YouTube video
|
37
31
|
if (source.includes('youtube.com/watch')) {
|
38
|
-
// Replace the oembed element with an iframe
|
39
32
|
$(element).replaceWith(youtubeOembedToIframe(source));
|
40
33
|
}
|
41
34
|
});
|
@@ -1,2 +1,2 @@
|
|
1
|
-
$(document).ready(()=>{
|
1
|
+
$(document).ready(()=>{const t=e=>{const o=new URLSearchParams(new URL(e).search).get("v"),c=`https://www.youtube-nocookie.com/embed/${o}`,t="oembed-video youtube-oembed-video",r="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture";return`<div class="${t}"><iframe src="${c}" allow="${r}" allowfullscreen></iframe></div>`},e=()=>{$(".ck-content figure.media oembed").filter((e,o)=>{const c=$(o).attr("url");c.includes("youtube.com/watch")&&$(o).replaceWith(t(c))})};e()});
|
2
2
|
//# sourceMappingURL=aa-bulletin-board-oembed.min.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["aa-bulletin-board-oembed.js"],"names":["$","document","ready","youtubeOembedToIframe","
|
1
|
+
{"version":3,"sources":["aa-bulletin-board-oembed.js"],"names":["$","document","ready","youtubeOembedToIframe","videoId","URLSearchParams","URL","url","search","get","videoUrl","divClasses","iframeAllow","checkForOembed","filter","_","element","source","attr","includes","replaceWith"],"mappings":"AAAAA,EAAEC,QAAQ,EAAEC,MAAM,KAYd,MAAMC,EAAwB,IAC1B,MAAMC,EAAU,IAAIC,gBAAgB,IAAIC,IAAIC,CAAG,EAAEC,MAAM,EAAEC,IAAI,GAAG,EAC1DC,4CAAqDN,IACrDO,EAAa,oCACbC,EAAc,0EAEpB,qBAAsBD,mBAA4BD,aAAoBE,oCAC1E,EAKMC,EAAiB,KAEnBb,EAAE,iCAAiC,EAAEc,OAAO,CAACC,EAAGC,KAE5C,MAAMC,EAASjB,EAAEgB,CAAO,EAAEE,KAAK,KAAK,EAEhCD,EAAOE,SAAS,mBAAmB,GACnCnB,EAAEgB,CAAO,EAAEI,YAAYjB,EAAsBc,CAAM,CAAC,CAE5D,CAAC,CACL,EAGAJ,EAAe,CACnB,CAAC"}
|
aa_bulletin_board/templates/aa_bulletin_board/partials/common/bulletin-board-management.html
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
{% load i18n %}
|
2
2
|
|
3
3
|
{% if perms.aa_bulletin_board.manage_bulletins %}
|
4
|
+
{% translate "Add bulletin" as button_text %}
|
5
|
+
|
4
6
|
<li class="nav-item">
|
5
|
-
<a class="nav-link py-0" href="{% url 'aa_bulletin_board:create_bulletin' %}">
|
6
|
-
<span class="btn btn-success btn-add-bulletin">
|
7
|
-
{
|
7
|
+
<a class="nav-link py-lg-0" href="{% url 'aa_bulletin_board:create_bulletin' %}">
|
8
|
+
<span class="btn btn-success btn-add-bulletin d-none d-lg-inline-block">
|
9
|
+
{{ button_text|title }}
|
10
|
+
</span>
|
11
|
+
|
12
|
+
<span class="d-inline-block d-lg-none">
|
13
|
+
<i class="fa-solid fa-plus me-2"></i>
|
8
14
|
{{ button_text|title }}
|
9
15
|
</span>
|
10
16
|
</a>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: aa-bulletin-board
|
3
|
-
Version: 2.3.
|
3
|
+
Version: 2.3.5
|
4
4
|
Summary: A simple bulletin board for Alliance Auth
|
5
5
|
Project-URL: Changelog, https://github.com/ppfeufer/aa-bulletin-board/blob/master/CHANGELOG.md
|
6
6
|
Project-URL: Documentation, https://github.com/ppfeufer/aa-bulletin-board/blob/master/README.md
|
@@ -764,17 +764,9 @@ these kinds of changes. For your own sanity, and mine :-)
|
|
764
764
|
|
765
765
|
## Installation<a name="installation"></a>
|
766
766
|
|
767
|
-
> [!
|
767
|
+
> [!IMPORTANT]
|
768
768
|
>
|
769
|
-
>
|
770
|
-
>
|
771
|
-
> Please make sure to update your Alliance Auth instance _before_ you install this
|
772
|
-
> module or update to the latest version, otherwise an update to Alliance Auth will
|
773
|
-
> be pulled in unsupervised.
|
774
|
-
>
|
775
|
-
> The last version compatible with Alliance Auth v3 is `1.13.2`.
|
776
|
-
|
777
|
-
**Important**: Please make sure you meet all preconditions before you proceed:
|
769
|
+
> Please make sure you meet all preconditions before you proceed.
|
778
770
|
|
779
771
|
- AA Bulletin Board is a plugin for Alliance Auth. If you don't have Alliance Auth
|
780
772
|
running already, please install it first before proceeding. (see the official
|
@@ -1,43 +1,43 @@
|
|
1
|
-
aa_bulletin_board/__init__.py,sha256=
|
1
|
+
aa_bulletin_board/__init__.py,sha256=OsiQzeLqqyRYkVU5r8qzEmjolpcUGpq8tCzNQhorJj0,133
|
2
2
|
aa_bulletin_board/app_settings.py,sha256=59zkVfW3JHj4kfovIFZYt3kWdXqDmBSF4kaIN0W6m40,244
|
3
3
|
aa_bulletin_board/apps.py,sha256=RzL8kLrLzWMC3Q2VBAI8snXRTehqZ8TKtNozdrZe20A,513
|
4
4
|
aa_bulletin_board/auth_hooks.py,sha256=F-5_gP7HI5RzwlF9GqI_pJTyOtq-V-ZhZLSpjpyQSe4,1456
|
5
5
|
aa_bulletin_board/constants.py,sha256=FiSn7zyC39ubomxujNXX05_LHykhDRx0Hk-7Ao4LEtQ,446
|
6
6
|
aa_bulletin_board/forms.py,sha256=h5-J7Mr8Xjzi1SaLC4tWz8C7zlP4oXaOphD5-4Z4OL8,3325
|
7
7
|
aa_bulletin_board/managers.py,sha256=BIoUNyLOpJftKs4I05eG2DC6zPGWzCrFhL2nAGUMVos,1066
|
8
|
-
aa_bulletin_board/models.py,sha256=
|
8
|
+
aa_bulletin_board/models.py,sha256=gC3PODFHWfC_2ljGppE5CBNPIrg0xIhp4G4InU8JL-g,3604
|
9
9
|
aa_bulletin_board/urls.py,sha256=giE7z-t8zpC3mPzPYblMLrkSTn5v7ad4NoJsSk-Jsfg,595
|
10
10
|
aa_bulletin_board/views.py,sha256=Eo5UHFMgbt1fuoh02gUKot58SG4d60XEfQWI1uJhlc8,6531
|
11
11
|
aa_bulletin_board/helper/__init__.py,sha256=Xdjx16QiK1MmVpJ2Je074ddMWzhnyRX7omuxPomMaow,51
|
12
12
|
aa_bulletin_board/helper/static_files.py,sha256=TVl9_3HLZ2umDejA79ahxGtk112nWojY4AUa6Mb30Is,1045
|
13
13
|
aa_bulletin_board/helper/string.py,sha256=TzRyxjHH7EPqCbd2-L_vz5L6CyrfS4SKQxUeEm0u2aQ,427
|
14
|
-
aa_bulletin_board/locale/django.pot,sha256=
|
14
|
+
aa_bulletin_board/locale/django.pot,sha256=J9FFJG7LME_jMgg4Fu0TyfcYNKZj4HKUFLU6oyJEdvE,4909
|
15
15
|
aa_bulletin_board/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=ZhKB7486VzGz4lS72jucN0JWc3TPzADIo7UuN2sf5S8,3462
|
16
|
-
aa_bulletin_board/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
17
|
-
aa_bulletin_board/locale/de/LC_MESSAGES/django.mo,sha256=
|
18
|
-
aa_bulletin_board/locale/de/LC_MESSAGES/django.po,sha256=
|
16
|
+
aa_bulletin_board/locale/cs_CZ/LC_MESSAGES/django.po,sha256=v4290H_l3GDzeZ17tsl-8tPdB3RZnDFSAfTQbgHNUhs,6241
|
17
|
+
aa_bulletin_board/locale/de/LC_MESSAGES/django.mo,sha256=jrkJqiZUg4ibJXg3d82TsD-NQ7jhEV8N4lz3o-KSMZ0,3403
|
18
|
+
aa_bulletin_board/locale/de/LC_MESSAGES/django.po,sha256=4JNKKu9Lt_8eoWAJBOgwCk3R2_k4oRr55pl2a3UL1tg,6151
|
19
19
|
aa_bulletin_board/locale/es/LC_MESSAGES/django.mo,sha256=kTDcOFWmMZ6EMuAm0MPLdyj4S57f_DhNPvCeEjCh40s,2665
|
20
|
-
aa_bulletin_board/locale/es/LC_MESSAGES/django.po,sha256=
|
20
|
+
aa_bulletin_board/locale/es/LC_MESSAGES/django.po,sha256=5rUFONLqCFQVCYNf0FHk5QvseAwHRemoqndqfRZLSII,6418
|
21
21
|
aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.mo,sha256=lCwF9Wa3wq6WqSAkrbBpDddAVEh2txGr_bPId74A3p0,1861
|
22
|
-
aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.po,sha256=
|
22
|
+
aa_bulletin_board/locale/fr_FR/LC_MESSAGES/django.po,sha256=iv2Ms-dBN_6dogU_48bgYNMsDuTTofNXa2Uwndmdiag,5961
|
23
23
|
aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.mo,sha256=7eI69SSNv6OgS0bso_Mrw3DtapHmJXEyu_mqd7ke0dg,657
|
24
|
-
aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.po,sha256
|
25
|
-
aa_bulletin_board/locale/ja/LC_MESSAGES/django.mo,sha256=
|
26
|
-
aa_bulletin_board/locale/ja/LC_MESSAGES/django.po,sha256=
|
27
|
-
aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.mo,sha256=
|
28
|
-
aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.po,sha256=
|
24
|
+
aa_bulletin_board/locale/it_IT/LC_MESSAGES/django.po,sha256=uZjOcDRMflbEnY5ax1XmojmdnMBYmYUU3T3Dpbb09TU,5080
|
25
|
+
aa_bulletin_board/locale/ja/LC_MESSAGES/django.mo,sha256=vST88RQBRV30yYDul0KGcy0MyQv1blF8uPpR2ByfUp8,1593
|
26
|
+
aa_bulletin_board/locale/ja/LC_MESSAGES/django.po,sha256=2vBA1fkEiNEaIvIOiR0eclnHILlVLDYn8cNJXTg3Gmw,5471
|
27
|
+
aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.mo,sha256=WZWOtIgYLkkjb4mvjPXyiXagI_w3eWtUwVcvYl3HVLU,2574
|
28
|
+
aa_bulletin_board/locale/ko_KR/LC_MESSAGES/django.po,sha256=BaiDO3OsXQaOWQHY91O6BDIhHho4v5tacPUTmOFOuWw,6565
|
29
29
|
aa_bulletin_board/locale/nl_NL/LC_MESSAGES/django.mo,sha256=tomc7fMl3JZoZ_I1hTgDDigFt3RyaiR-3sTD7xYhg98,483
|
30
|
-
aa_bulletin_board/locale/nl_NL/LC_MESSAGES/django.po,sha256=
|
30
|
+
aa_bulletin_board/locale/nl_NL/LC_MESSAGES/django.po,sha256=D8FKmprAKcMX75ezSJJu_TdM1C8vrarky2wH2Bk9iyA,4971
|
31
31
|
aa_bulletin_board/locale/pl_PL/LC_MESSAGES/django.mo,sha256=W2q9nAX8EDr7lLDhaJW1WChLwF1v7hy1H71g5n38f18,876
|
32
|
-
aa_bulletin_board/locale/pl_PL/LC_MESSAGES/django.po,sha256=
|
32
|
+
aa_bulletin_board/locale/pl_PL/LC_MESSAGES/django.po,sha256=HE11RzWGx0pgb6zoHKeKdYgbJFSarPLWGlHaVnfy84k,5188
|
33
33
|
aa_bulletin_board/locale/ru/LC_MESSAGES/django.mo,sha256=ZUmnbwwBgHs5m0RzyMPZvtpVkaV9Rylwg1gQCa9-dcc,4341
|
34
|
-
aa_bulletin_board/locale/ru/LC_MESSAGES/django.po,sha256=
|
34
|
+
aa_bulletin_board/locale/ru/LC_MESSAGES/django.po,sha256=RSyZf2HOh1CBLa2Os7EtbWbaSrfSkblH9Y9f9CXGtiA,7233
|
35
35
|
aa_bulletin_board/locale/sk/LC_MESSAGES/django.mo,sha256=qbQEKRh_K6GhMhKVY-xR1tC5YIofxLCprGaDq6bltcM,562
|
36
|
-
aa_bulletin_board/locale/sk/LC_MESSAGES/django.po,sha256=
|
37
|
-
aa_bulletin_board/locale/uk/LC_MESSAGES/django.mo,sha256=
|
38
|
-
aa_bulletin_board/locale/uk/LC_MESSAGES/django.po,sha256=
|
36
|
+
aa_bulletin_board/locale/sk/LC_MESSAGES/django.po,sha256=xV0eKRe4AFszQYGD2tDqTjOTrTPRQUN1ZNcjqUMzgJg,5072
|
37
|
+
aa_bulletin_board/locale/uk/LC_MESSAGES/django.mo,sha256=b17x0ckLqjPDAGOFBRg7wKIsfImbUeEBpCQ4PprogVA,4517
|
38
|
+
aa_bulletin_board/locale/uk/LC_MESSAGES/django.po,sha256=d69WlHTNLYren3REKHtt_18mqTuaGcGaTJ404Ti_MEQ,7444
|
39
39
|
aa_bulletin_board/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=eWtNtT-OkgeZTQwCAZmM82eo_0vAvt_zmnPnNLHT5w8,3087
|
40
|
-
aa_bulletin_board/locale/zh_Hans/LC_MESSAGES/django.po,sha256=
|
40
|
+
aa_bulletin_board/locale/zh_Hans/LC_MESSAGES/django.po,sha256=HUKoArew8GlunpvUz-AKjtPSaJIkHSsreMdyDDKTDB8,5943
|
41
41
|
aa_bulletin_board/migrations/0001_initial.py,sha256=bmw6yykfLuujYwQ6uR8rGKqcv94UyEa6ZVH34VR5APQ,2620
|
42
42
|
aa_bulletin_board/migrations/0002_alter_bulletin_slug.py,sha256=j6jgInd8CB7cbRU0cKl87GQaWw6ifZercIs5WCWegKw,427
|
43
43
|
aa_bulletin_board/migrations/0003_group_restrictions.py,sha256=zjWr5H8yfdSsJVLbqUUhgSAfrW6A2CVavrlFxfaFZGg,959
|
@@ -48,12 +48,12 @@ aa_bulletin_board/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
48
48
|
aa_bulletin_board/static/aa_bulletin_board/css/aa-bulletin-board.css,sha256=ZHDsnu5YOkVjNi_wQu8iJejj_bnUh1OLpfX_H4N28S8,2806
|
49
49
|
aa_bulletin_board/static/aa_bulletin_board/css/aa-bulletin-board.min.css,sha256=j_8zLtON_tHZsz2B_wSccWs_lMGnW8YWWxjax6AktG0,1771
|
50
50
|
aa_bulletin_board/static/aa_bulletin_board/css/aa-bulletin-board.min.css.map,sha256=23IhYD-Lo1egvlyio8PzlQP0ITgzf69uoW-oPIhWZA8,3514
|
51
|
-
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.js,sha256=
|
52
|
-
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.min.js,sha256=
|
53
|
-
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.min.js.map,sha256=
|
54
|
-
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.js,sha256=
|
55
|
-
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.min.js,sha256=
|
56
|
-
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.min.js.map,sha256=
|
51
|
+
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.js,sha256=b-sNq53U_DLMsvPfVfdS7DRfZyf8tG0bvwwN00XJYbg,759
|
52
|
+
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.min.js,sha256=BgdMOj31Drk8qabAeLX9HsON79wJ0GdjwkXQDQmzQXg,422
|
53
|
+
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-equal-height.min.js.map,sha256=rIQ53PbQlVFDBGCo8dCeeHMBRHEBYwm4rcC785HqMY4,755
|
54
|
+
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.js,sha256=EeDG9s4ThM0iK-jnRT2ulqM0O_IBFTj8v-SVh6UFy6k,1717
|
55
|
+
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.min.js,sha256=da4C6K1v5kiNoNMMGrwuRFgw2OSc4zLaBa3iSWdsI44,550
|
56
|
+
aa_bulletin_board/static/aa_bulletin_board/javascript/aa-bulletin-board-oembed.min.js.map,sha256=lhJFVtqfxSuOGn3clQB1D1vJSTQ97W7_0XerpeYX80w,708
|
57
57
|
aa_bulletin_board/static/aa_bulletin_board/libs/sumoselect/3.4.9/README.md,sha256=Mq6FtJHYG6mYF3YDZszMVpH89pALLx88tVdmZdwI8uc,8435
|
58
58
|
aa_bulletin_board/static/aa_bulletin_board/libs/sumoselect/3.4.9/jquery.sumoselect.js,sha256=IqooBulVUC9y_-WcuW6du_gsZY4KohFz-o09ZACe3sE,35726
|
59
59
|
aa_bulletin_board/static/aa_bulletin_board/libs/sumoselect/3.4.9/jquery.sumoselect.min.js,sha256=lW1sW167GdI6I2ZyNIA625wlrAm8P6TYjR__5gZlhnY,22504
|
@@ -70,7 +70,7 @@ aa_bulletin_board/templates/aa_bulletin_board/bundles/ckeditor5-css.html,sha256=
|
|
70
70
|
aa_bulletin_board/templates/aa_bulletin_board/bundles/ckeditor5-js.html,sha256=329nC3P57jL0yIR65zNUp30zZs9dgZHSYlNbdpQW_a8,68
|
71
71
|
aa_bulletin_board/templates/aa_bulletin_board/bundles/sumoselect-css.html,sha256=bmerkN-g9N1F83GA81JDukVWvX5OHZmeZhhlQawLrlw,104
|
72
72
|
aa_bulletin_board/templates/aa_bulletin_board/bundles/sumoselect-js.html,sha256=8Cm2j6k7NDREcJvLb_RahZ3yFe_IKAFHPnqEETxMCbw,110
|
73
|
-
aa_bulletin_board/templates/aa_bulletin_board/partials/common/bulletin-board-management.html,sha256=
|
73
|
+
aa_bulletin_board/templates/aa_bulletin_board/partials/common/bulletin-board-management.html,sha256=qXCPB4btoyWvj10b5H-dMpcE13LdnDVwUCPv7ix8Glc,581
|
74
74
|
aa_bulletin_board/templates/aa_bulletin_board/partials/footer/app-translation-footer.html,sha256=nDZPOnsQLBN9meAhxnhd0ynUQIVi3YPzhi47n89zcIg,422
|
75
75
|
aa_bulletin_board/templatetags/__init__.py,sha256=sP2D1ovt2gGAPLcGQkByRgXYhvUJ6C52mZMlLIALQ8s,37
|
76
76
|
aa_bulletin_board/templatetags/aa_bulletin_board.py,sha256=tFdJ81gPKpTsTalmXf0rtDJq7po2gDRNcJ3OdfCP73A,2771
|
@@ -83,7 +83,7 @@ aa_bulletin_board/tests/test_settings.py,sha256=dTQn6dH4tS1vY_q32mkkW6DrzLioB2MH
|
|
83
83
|
aa_bulletin_board/tests/test_templatetags.py,sha256=oQ9kG0DEKFMKp9M60zrmxQaHhUYnPflbgRFPg3KpQ2s,3371
|
84
84
|
aa_bulletin_board/tests/test_user_interface.py,sha256=yM6jRMlY-dF9-tQzYivZhGfoGyySuhl1SetM1KgYPrM,8511
|
85
85
|
aa_bulletin_board/tests/utils.py,sha256=Dh_jVV7s9Z_OOg_08FxwsZtVU3omrcI260-uQ_Bc_90,2202
|
86
|
-
aa_bulletin_board-2.3.
|
87
|
-
aa_bulletin_board-2.3.
|
88
|
-
aa_bulletin_board-2.3.
|
89
|
-
aa_bulletin_board-2.3.
|
86
|
+
aa_bulletin_board-2.3.5.dist-info/METADATA,sha256=TMc6iSJwgzBFc7gSMDky4g6O81ht19U7lAvc6LR-sGU,57718
|
87
|
+
aa_bulletin_board-2.3.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
88
|
+
aa_bulletin_board-2.3.5.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
89
|
+
aa_bulletin_board-2.3.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|