punkweb-bb 0.1.1__py3-none-any.whl → 0.1.2__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.
- punkweb_bb/__pycache__/apps.cpython-311.pyc +0 -0
- punkweb_bb/__pycache__/bbcode_tags.cpython-311.pyc +0 -0
- punkweb_bb/__pycache__/parsers.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0001_initial.cpython-311.pyc +0 -0
- punkweb_bb/parsers.py +52 -48
- punkweb_bb/templates/punkweb_bb/index.html +2 -0
- punkweb_bb/templatetags/__pycache__/shoutbox_bbcode.cpython-311.pyc +0 -0
- punkweb_bb/templatetags/shoutbox_bbcode.py +2 -2
- {punkweb_bb-0.1.1.dist-info → punkweb_bb-0.1.2.dist-info}/METADATA +1 -1
- {punkweb_bb-0.1.1.dist-info → punkweb_bb-0.1.2.dist-info}/RECORD +13 -31
- punkweb_bb/__pycache__/conf.cpython-311.pyc +0 -0
- punkweb_bb/__pycache__/fields.cpython-311.pyc +0 -0
- punkweb_bb/__pycache__/tests.cpython-311.pyc +0 -0
- punkweb_bb/__pycache__/utils.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0002_category_alter_boardprofile_options_subcategory.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0002_create_board_profiles.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0002_remove_shout__content_rendered_alter_shout_content.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0003_thread_post.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0004_category_slug_subcategory_slug.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0005_alter_category_slug_alter_subcategory_slug.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0006_boardprofile_image.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0007_alter_boardprofile_image.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0008_shout.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0009_remove_category__description_rendered_and_more.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0010_alter_boardprofile_options_alter_category_options_and_more.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0011_alter_thread_options_thread_last_post_created_at.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0011_thread_is_closed.cpython-311.pyc +0 -0
- punkweb_bb/migrations/__pycache__/0012_subcategory_staff_post_only.cpython-311.pyc +0 -0
- {punkweb_bb-0.1.1.dist-info → punkweb_bb-0.1.2.dist-info}/LICENSE +0 -0
- {punkweb_bb-0.1.1.dist-info → punkweb_bb-0.1.2.dist-info}/WHEEL +0 -0
- {punkweb_bb-0.1.1.dist-info → punkweb_bb-0.1.2.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
punkweb_bb/parsers.py
CHANGED
|
@@ -1,66 +1,70 @@
|
|
|
1
1
|
from django.apps import apps
|
|
2
|
-
from precise_bbcode.bbcode.defaults.tag import (
|
|
3
|
-
ColorBBCodeTag,
|
|
4
|
-
ItalicBBCodeTag,
|
|
5
|
-
StrikeBBCodeTag,
|
|
6
|
-
StrongBBCodeTag,
|
|
7
|
-
UnderlineBBCodeTag,
|
|
8
|
-
UrlBBCodeTag,
|
|
9
|
-
)
|
|
10
2
|
from precise_bbcode.bbcode.parser import BBCodeParser
|
|
11
3
|
from precise_bbcode.bbcode.placeholder import BBCodePlaceholder
|
|
12
4
|
from precise_bbcode.core.loading import get_subclasses
|
|
13
5
|
|
|
14
|
-
|
|
15
|
-
FontBBCodeTag,
|
|
16
|
-
ShadowBBCodeTag,
|
|
17
|
-
SubscriptBBCodeTag,
|
|
18
|
-
SuperscriptBBCodeTag,
|
|
19
|
-
)
|
|
6
|
+
_shoutbox_parser = None
|
|
20
7
|
|
|
21
|
-
shoutbox_parser = BBCodeParser()
|
|
22
8
|
|
|
9
|
+
def get_shoutbox_parser():
|
|
10
|
+
if not _shoutbox_parser:
|
|
11
|
+
loader = ShoutboxParserLoader()
|
|
12
|
+
loader.load_parser()
|
|
13
|
+
return _shoutbox_parser
|
|
23
14
|
|
|
24
|
-
def init_default_bbcode_placeholders():
|
|
25
|
-
import precise_bbcode.bbcode.defaults.placeholder
|
|
26
15
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
16
|
+
class ShoutboxParserLoader(object):
|
|
17
|
+
def __init__(self, *args, **kwargs):
|
|
18
|
+
global _shoutbox_parser
|
|
19
|
+
_shoutbox_parser = BBCodeParser()
|
|
20
|
+
self.parser = _shoutbox_parser
|
|
32
21
|
|
|
22
|
+
def load_parser(self):
|
|
23
|
+
self.init_default_bbcode_placeholders()
|
|
24
|
+
self.init_bbcode_placeholders()
|
|
25
|
+
self.init_default_bbcode_tags()
|
|
26
|
+
self.init_bbcode_tags()
|
|
27
|
+
self.init_bbcode_smilies()
|
|
33
28
|
|
|
34
|
-
def
|
|
35
|
-
|
|
29
|
+
def init_default_bbcode_placeholders(self):
|
|
30
|
+
import precise_bbcode.bbcode.defaults.placeholder
|
|
36
31
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
32
|
+
for placeholder_klass in get_subclasses(
|
|
33
|
+
precise_bbcode.bbcode.defaults.placeholder, BBCodePlaceholder
|
|
34
|
+
):
|
|
35
|
+
setattr(placeholder_klass, "default_placeholder", True)
|
|
36
|
+
self.parser.add_placeholder(placeholder_klass)
|
|
40
37
|
|
|
38
|
+
def init_bbcode_placeholders(self):
|
|
39
|
+
from precise_bbcode.placeholder_pool import placeholder_pool
|
|
41
40
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
shoutbox_parser.add_bbcode_tag(UnderlineBBCodeTag)
|
|
46
|
-
shoutbox_parser.add_bbcode_tag(StrikeBBCodeTag)
|
|
47
|
-
shoutbox_parser.add_bbcode_tag(ColorBBCodeTag)
|
|
48
|
-
shoutbox_parser.add_bbcode_tag(UrlBBCodeTag)
|
|
49
|
-
shoutbox_parser.add_bbcode_tag(FontBBCodeTag)
|
|
50
|
-
shoutbox_parser.add_bbcode_tag(ShadowBBCodeTag)
|
|
51
|
-
shoutbox_parser.add_bbcode_tag(SubscriptBBCodeTag)
|
|
52
|
-
shoutbox_parser.add_bbcode_tag(SuperscriptBBCodeTag)
|
|
41
|
+
placeholders = placeholder_pool.get_placeholders()
|
|
42
|
+
for placeholder in placeholders:
|
|
43
|
+
self.parser.add_placeholder(placeholder)
|
|
53
44
|
|
|
45
|
+
def init_default_bbcode_tags(self):
|
|
46
|
+
import precise_bbcode.bbcode.defaults.tag
|
|
54
47
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
48
|
+
self.parser.add_bbcode_tag(precise_bbcode.bbcode.defaults.tag.StrongBBCodeTag)
|
|
49
|
+
self.parser.add_bbcode_tag(precise_bbcode.bbcode.defaults.tag.ItalicBBCodeTag)
|
|
50
|
+
self.parser.add_bbcode_tag(
|
|
51
|
+
precise_bbcode.bbcode.defaults.tag.UnderlineBBCodeTag
|
|
52
|
+
)
|
|
53
|
+
self.parser.add_bbcode_tag(precise_bbcode.bbcode.defaults.tag.StrikeBBCodeTag)
|
|
54
|
+
self.parser.add_bbcode_tag(precise_bbcode.bbcode.defaults.tag.ColorBBCodeTag)
|
|
55
|
+
self.parser.add_bbcode_tag(precise_bbcode.bbcode.defaults.tag.UrlBBCodeTag)
|
|
61
56
|
|
|
57
|
+
def init_bbcode_tags(self):
|
|
58
|
+
import punkweb_bb.bbcode_tags
|
|
62
59
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
self.parser.add_bbcode_tag(punkweb_bb.bbcode_tags.FontBBCodeTag)
|
|
61
|
+
self.parser.add_bbcode_tag(punkweb_bb.bbcode_tags.ShadowBBCodeTag)
|
|
62
|
+
self.parser.add_bbcode_tag(punkweb_bb.bbcode_tags.SubscriptBBCodeTag)
|
|
63
|
+
self.parser.add_bbcode_tag(punkweb_bb.bbcode_tags.SuperscriptBBCodeTag)
|
|
64
|
+
|
|
65
|
+
def init_bbcode_smilies(self):
|
|
66
|
+
SmileyTag = apps.get_model("precise_bbcode", "SmileyTag")
|
|
67
|
+
if SmileyTag:
|
|
68
|
+
custom_smilies = SmileyTag.objects.all()
|
|
69
|
+
for smiley in custom_smilies:
|
|
70
|
+
self.parser.add_smiley(smiley.code, smiley.html_code)
|
|
@@ -160,6 +160,7 @@
|
|
|
160
160
|
<div class="index__statistics__label">Total members:</div>
|
|
161
161
|
<div class="index__statistics__value">{{users|length}}</div>
|
|
162
162
|
</div>
|
|
163
|
+
{% if newest_user %}
|
|
163
164
|
<div class="index__statistics__row">
|
|
164
165
|
<div class="index__statistics__label">Newest member:</div>
|
|
165
166
|
<div class="index__statistics__value">
|
|
@@ -168,6 +169,7 @@
|
|
|
168
169
|
</a>
|
|
169
170
|
</div>
|
|
170
171
|
</div>
|
|
172
|
+
{% endif %}
|
|
171
173
|
<div class="index__statistics__row">
|
|
172
174
|
<div class="index__statistics__label">Members online:</div>
|
|
173
175
|
<div class="index__statistics__value">{{users_online|length}}</div>
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from django import template
|
|
2
2
|
from django.template.defaultfilters import stringfilter
|
|
3
3
|
|
|
4
|
-
from punkweb_bb.parsers import
|
|
4
|
+
from punkweb_bb.parsers import get_shoutbox_parser
|
|
5
5
|
|
|
6
6
|
register = template.Library()
|
|
7
7
|
|
|
@@ -9,6 +9,6 @@ register = template.Library()
|
|
|
9
9
|
@register.filter(is_safe=True)
|
|
10
10
|
@stringfilter
|
|
11
11
|
def shoutbox_bbcode(value):
|
|
12
|
-
parser =
|
|
12
|
+
parser = get_shoutbox_parser()
|
|
13
13
|
|
|
14
14
|
return parser.render(value)
|
|
@@ -9,7 +9,7 @@ punkweb_bb/middleware.py,sha256=lF1w7XM07s1kcrOWodzErHop9zpIE5SEE52YLMAbDKg,456
|
|
|
9
9
|
punkweb_bb/mixins.py,sha256=XfiThPL7rB71IfukS1ikvYQhfg8RwgSVgsm10Ul1ezM,395
|
|
10
10
|
punkweb_bb/models.py,sha256=DZ6DrnRVGbb8Zb5LL9Q2571YDg-0X2_LoBsRhg2J7sg,5314
|
|
11
11
|
punkweb_bb/pagination.py,sha256=OgoZuJsq9MKMvBKYylJVPaNtM9ni3K8OAvOdi-eGr3M,409
|
|
12
|
-
punkweb_bb/parsers.py,sha256=
|
|
12
|
+
punkweb_bb/parsers.py,sha256=VjWSPqpVfypHLHP0NrfLqXB-1b0W6oFuGIzoAiPi71I,2732
|
|
13
13
|
punkweb_bb/response.py,sha256=dETGVC9Xrsq02pQzmIIWbSUt472lJ4fgLwBKrXnP3t4,130
|
|
14
14
|
punkweb_bb/settings.py,sha256=kC0jwMkKNtmpBopSagYUe_lVKu-EEzLORr63aouuXGI,250
|
|
15
15
|
punkweb_bb/signals.py,sha256=bVdfg942Mwq-fYDZ1Z52Q0V2BCk1lgzGz8JVZFPnzJ8,365
|
|
@@ -20,42 +20,24 @@ punkweb_bb/widgets.py,sha256=eF6CB5nnh_6XJadpDzDKgd9incd0VIR63Rnzdr8T2n0,840
|
|
|
20
20
|
punkweb_bb/__pycache__/__init__.cpython-311.pyc,sha256=3PyxCxoznfadaGt0a7re4j0Ky9z9hblufpcwPB85kK8,161
|
|
21
21
|
punkweb_bb/__pycache__/admin.cpython-311.pyc,sha256=rAPYqRy7hAVZn3qST3ypYdulvH9IBhzWEgvbbAMIMIY,3679
|
|
22
22
|
punkweb_bb/__pycache__/admin_forms.cpython-311.pyc,sha256=fQgpcTP-_bouxhHrDVxFzA-1MHyyvieyw92NAWD5JnI,2980
|
|
23
|
-
punkweb_bb/__pycache__/apps.cpython-311.pyc,sha256=
|
|
24
|
-
punkweb_bb/__pycache__/bbcode_tags.cpython-311.pyc,sha256=
|
|
25
|
-
punkweb_bb/__pycache__/conf.cpython-311.pyc,sha256=C8o1eu05KUg_O_Il4nrtgV2JUCWsTMTTnjGTqI9OWYU,580
|
|
23
|
+
punkweb_bb/__pycache__/apps.cpython-311.pyc,sha256=lw328DOwOp1F8FWTFYb3qV1EoBNgRr_Tc4J8DXfIl-I,730
|
|
24
|
+
punkweb_bb/__pycache__/bbcode_tags.cpython-311.pyc,sha256=QI4BJt5plqLMiAvlVAxibuNONi69PJFQpotpS50olro,8534
|
|
26
25
|
punkweb_bb/__pycache__/context_processors.cpython-311.pyc,sha256=P7rEsodXonYexbS5vUaUKVJ9tIx1pOVk6NQWVvWNvS8,392
|
|
27
|
-
punkweb_bb/__pycache__/fields.cpython-311.pyc,sha256=_PeXeK5xWYp_S4q-E1agu1SjSkqxOFX4JZGEo9w6d4s,900
|
|
28
26
|
punkweb_bb/__pycache__/forms.cpython-311.pyc,sha256=JRbtAaXyXgG9eDdBjKBkSn8qeZtdxRc7L2_ceE-MpW8,4680
|
|
29
27
|
punkweb_bb/__pycache__/middleware.cpython-311.pyc,sha256=gZN0oVrPh9nIUUni_DvPrhMOYPR98SXrYxgHIsUXX-0,1249
|
|
30
28
|
punkweb_bb/__pycache__/mixins.cpython-311.pyc,sha256=eP1NjqDNYMYXrC45DNkrTqVAUv1vsGBrqPy5U5CB_aw,1478
|
|
31
29
|
punkweb_bb/__pycache__/models.cpython-311.pyc,sha256=PrebadNmOX3Ra3tRXhxU26E284LAHJhERXvgyTXXtow,12034
|
|
32
30
|
punkweb_bb/__pycache__/pagination.cpython-311.pyc,sha256=r54xmtiRp5dm1n2Xa7oElMFFaYFY0RzmMuF3Er4UqEA,990
|
|
33
|
-
punkweb_bb/__pycache__/parsers.cpython-311.pyc,sha256=
|
|
31
|
+
punkweb_bb/__pycache__/parsers.cpython-311.pyc,sha256=pp8JZt9V3HhquQMGrhglwLc53GxgNFWjjSnK3Bpxf8o,5335
|
|
34
32
|
punkweb_bb/__pycache__/response.cpython-311.pyc,sha256=CEPckYWZkOrdU2Vow-ni0ZrWEUBww0uJzyr_wv---mM,448
|
|
35
33
|
punkweb_bb/__pycache__/settings.cpython-311.pyc,sha256=lGhRUWwPQlXSfwFB5FlMvydr14_IaB7Gd2CXuLLVwrI,563
|
|
36
34
|
punkweb_bb/__pycache__/signals.cpython-311.pyc,sha256=AHChn7hDdrOmCAwKIKKuFOY-4hyBP9uwTkyb5bnFV-Q,864
|
|
37
|
-
punkweb_bb/__pycache__/tests.cpython-311.pyc,sha256=yKvD3TniVBdKkwaERNoCsvDalAq0J51AYG7FGgiz-rQ,17260
|
|
38
35
|
punkweb_bb/__pycache__/urls.cpython-311.pyc,sha256=80TvNUws6ip1FCts6bubO3DGQJ2yOlB-WReK-qaTnGY,2304
|
|
39
|
-
punkweb_bb/__pycache__/utils.cpython-311.pyc,sha256=hyuBOWa1n3pgT9Ub4o1SIcT3X83xivSQEm0v2IF6PCU,776
|
|
40
36
|
punkweb_bb/__pycache__/views.cpython-311.pyc,sha256=7myiqdsURN68OLr94FjW_75Xxt9G85yX80qn52hMDS4,15313
|
|
41
37
|
punkweb_bb/__pycache__/widgets.cpython-311.pyc,sha256=-RcQ3JapLHw8Bbi4FP05kQJJIa7bnliKPaFpkDCOWvQ,1552
|
|
42
38
|
punkweb_bb/migrations/0001_initial.py,sha256=3RGsylygBcWx1kIPhSzOb9v_2yvowsxKfxuSinKKuS0,8950
|
|
43
39
|
punkweb_bb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
punkweb_bb/migrations/__pycache__/0001_initial.cpython-311.pyc,sha256=
|
|
45
|
-
punkweb_bb/migrations/__pycache__/0002_category_alter_boardprofile_options_subcategory.cpython-311.pyc,sha256=NtaB_cApwxH8x2cWXSZtMJo2Z5yW0fYJtx3KjoFxqcY,2865
|
|
46
|
-
punkweb_bb/migrations/__pycache__/0002_create_board_profiles.cpython-311.pyc,sha256=kXyIP6z4u8De9ayiajIUCaLNAW4MCC4wEFr1jGXWTBY,1198
|
|
47
|
-
punkweb_bb/migrations/__pycache__/0002_remove_shout__content_rendered_alter_shout_content.cpython-311.pyc,sha256=d91XNp4zwTXQyUkqgwCIyfdEmcoQ4ejC_nvQkMk77zU,919
|
|
48
|
-
punkweb_bb/migrations/__pycache__/0003_thread_post.cpython-311.pyc,sha256=TwNoWkApXubjKnt_SKKUwfuijb2HykVlq3qmWhSDaag,3000
|
|
49
|
-
punkweb_bb/migrations/__pycache__/0004_category_slug_subcategory_slug.cpython-311.pyc,sha256=mlo3u-PoiFB561Le1DnUWfiN3_AX5nHko_SmMpnoRH8,1001
|
|
50
|
-
punkweb_bb/migrations/__pycache__/0005_alter_category_slug_alter_subcategory_slug.cpython-311.pyc,sha256=HJ-j_q3KLx1cQLyvD7iiurK6oJtdh5nfbFNOnPiJcP4,999
|
|
51
|
-
punkweb_bb/migrations/__pycache__/0006_boardprofile_image.cpython-311.pyc,sha256=8UvusVARBOzkyS92teBn9E7GS5NhRRQ-p3qh5kEF4mk,879
|
|
52
|
-
punkweb_bb/migrations/__pycache__/0007_alter_boardprofile_image.cpython-311.pyc,sha256=ocnZLKSju9Mh2Lah6UipqJa7gSvGMV2DQ0FC1_Y_SCs,945
|
|
53
|
-
punkweb_bb/migrations/__pycache__/0008_shout.cpython-311.pyc,sha256=_6vrIdTZ4cM7Lk3k8pLWhRWbyhgHR-moPoDIeXQXmMY,1914
|
|
54
|
-
punkweb_bb/migrations/__pycache__/0009_remove_category__description_rendered_and_more.cpython-311.pyc,sha256=b-wD9wMcQLEF_NqePgytNHmCB9d5_hXdeVmOSfYY0xc,812
|
|
55
|
-
punkweb_bb/migrations/__pycache__/0010_alter_boardprofile_options_alter_category_options_and_more.cpython-311.pyc,sha256=iXdetObT0eLTwoG6E7Gj-75-mKY7ouYFbXW9I7NXhOU,1756
|
|
56
|
-
punkweb_bb/migrations/__pycache__/0011_alter_thread_options_thread_last_post_created_at.cpython-311.pyc,sha256=xVg0_2gtyzs1PZp921rcI-Mqm9ZF4bkWZrTZ5Jk5IT8,1235
|
|
57
|
-
punkweb_bb/migrations/__pycache__/0011_thread_is_closed.cpython-311.pyc,sha256=OTL0xSimcsrgaNa_deB1jh7QY1P0VdTOlKWUAGtFVx8,852
|
|
58
|
-
punkweb_bb/migrations/__pycache__/0012_subcategory_staff_post_only.cpython-311.pyc,sha256=5Z7ZVXTwznSA2MoyGyODmamah0xZnCV3qPd-M5s72ZI,865
|
|
40
|
+
punkweb_bb/migrations/__pycache__/0001_initial.cpython-311.pyc,sha256=koi_VflndmTKzSXWstWBXuVEZgEeueId5NE4kOAlA4Q,6456
|
|
59
41
|
punkweb_bb/migrations/__pycache__/__init__.cpython-311.pyc,sha256=sTbC1AXnh0V4BJwjcjs1ckdeYjG01I348hZwLE2HI4Y,172
|
|
60
42
|
punkweb_bb/static/punkweb_bb/favicon.ico,sha256=lEfX--R9wEGPkkXgLYCsGmHuAGajigiqBXAoonxq8ZM,318
|
|
61
43
|
punkweb_bb/static/punkweb_bb/css/defaults.css,sha256=EsYORpHIQ8gotAdiGvBBU38i6F0mICj-OKr-JF6yYVg,1455
|
|
@@ -206,7 +188,7 @@ punkweb_bb/static/punkweb_bb/vendor/sceditor-3.2.0/minified/themes/content/defau
|
|
|
206
188
|
punkweb_bb/templates/punkweb_bb/base.html,sha256=Hk1yL0tPRBpNWZ2A3WmItmwh3kxtVjaLM95jrklxizk,4034
|
|
207
189
|
punkweb_bb/templates/punkweb_bb/base_modal.html,sha256=OCbtsMWeNCO0Tl1PmHCcGkwoi1OZjeIK_VhNTzMor7M,460
|
|
208
190
|
punkweb_bb/templates/punkweb_bb/bbcode.html,sha256=1EGBejsOMZOPi6P39oR6E35VdqnfR6wYWeKDl4Xr_js,396
|
|
209
|
-
punkweb_bb/templates/punkweb_bb/index.html,sha256=
|
|
191
|
+
punkweb_bb/templates/punkweb_bb/index.html,sha256=2y8gS6UzoJkVXvmw5PEuuxyYIarlNjGzTmmNMuNWNJ8,8127
|
|
210
192
|
punkweb_bb/templates/punkweb_bb/login.html,sha256=ZUOmbyZREzS7Sw02Lfb9zpRJQQWwJgolnj9lcBKnOtg,1087
|
|
211
193
|
punkweb_bb/templates/punkweb_bb/members.html,sha256=ceRCRX0AN7V8d7paz9495y8aQByMUKDWVWL2GzoGbus,2729
|
|
212
194
|
punkweb_bb/templates/punkweb_bb/profile.html,sha256=MW1JWLs_lLpg62DDcvcZJRwrHquYA5nCwQqL1v9ZGCo,2948
|
|
@@ -222,11 +204,11 @@ punkweb_bb/templates/punkweb_bb/partials/thread_delete.html,sha256=m91u_r8qTvMqR
|
|
|
222
204
|
punkweb_bb/templates/punkweb_bb/shoutbox/shout_list.html,sha256=uAls--UuLgS6NPW2qEsNbutR_aoJ_AuhZ_Fkt-c8ipU,312
|
|
223
205
|
punkweb_bb/templates/punkweb_bb/shoutbox/shoutbox.html,sha256=J_Lp6KKcqSJr-IayyLN-p0JgMfuwbFP77g-UtcM53WI,672
|
|
224
206
|
punkweb_bb/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
-
punkweb_bb/templatetags/shoutbox_bbcode.py,sha256=
|
|
207
|
+
punkweb_bb/templatetags/shoutbox_bbcode.py,sha256=OH-FsRTyPWZldaFypSVzPLlTrSm4XEOqQW9hBI0ROBk,310
|
|
226
208
|
punkweb_bb/templatetags/__pycache__/__init__.cpython-311.pyc,sha256=hieh5xV9m_aA6xLQJ86ABc9pnKF0MnAxwvly-pwYSDo,174
|
|
227
|
-
punkweb_bb/templatetags/__pycache__/shoutbox_bbcode.cpython-311.pyc,sha256=
|
|
228
|
-
punkweb_bb-0.1.
|
|
229
|
-
punkweb_bb-0.1.
|
|
230
|
-
punkweb_bb-0.1.
|
|
231
|
-
punkweb_bb-0.1.
|
|
232
|
-
punkweb_bb-0.1.
|
|
209
|
+
punkweb_bb/templatetags/__pycache__/shoutbox_bbcode.cpython-311.pyc,sha256=Jhg9qW-nQe6IDr45rE0ZgeDYF4E61S7kYAYpbMo5ZQ8,833
|
|
210
|
+
punkweb_bb-0.1.2.dist-info/LICENSE,sha256=YYysF07B-kyXSO7IWFB9f49ZXa6LIFUTVsR1Ogmhp8s,1507
|
|
211
|
+
punkweb_bb-0.1.2.dist-info/METADATA,sha256=ckMonMRB6vfDo-XWU_tetw_v8fiwQTwZxeGrxQ1Uuug,1797
|
|
212
|
+
punkweb_bb-0.1.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
213
|
+
punkweb_bb-0.1.2.dist-info/top_level.txt,sha256=sWuGdGnk0ejOXiFDzlBqrNs2VbPEx0_i8UwWXn4SuHU,11
|
|
214
|
+
punkweb_bb-0.1.2.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
punkweb_bb/migrations/__pycache__/0005_alter_category_slug_alter_subcategory_slug.cpython-311.pyc
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|