punkweb-bb 0.4.2__py3-none-any.whl → 0.4.3__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.
@@ -3,7 +3,6 @@
3
3
  from django.conf import settings
4
4
  from django.db import migrations, models
5
5
  import django.db.models.deletion
6
- import precise_bbcode.fields
7
6
  import punkweb_bb.models
8
7
  import uuid
9
8
 
@@ -57,15 +56,9 @@ class Migration(migrations.Migration):
57
56
  ("updated_at", models.DateTimeField(auto_now=True)),
58
57
  ("name", models.CharField(max_length=255)),
59
58
  ("slug", models.SlugField(max_length=1024, unique=True)),
60
- (
61
- "_description_rendered",
62
- models.TextField(blank=True, editable=False, null=True),
63
- ),
64
59
  (
65
60
  "description",
66
- precise_bbcode.fields.BBCodeTextField(
67
- blank=True, no_rendered_field=True, null=True
68
- ),
61
+ models.TextField(blank=True, null=True),
69
62
  ),
70
63
  ("order", models.PositiveIntegerField(default=0)),
71
64
  ("staff_post_only", models.BooleanField(default=False)),
@@ -99,13 +92,9 @@ class Migration(migrations.Migration):
99
92
  ("created_at", models.DateTimeField(auto_now_add=True)),
100
93
  ("updated_at", models.DateTimeField(auto_now=True)),
101
94
  ("title", models.CharField(max_length=255)),
102
- (
103
- "_content_rendered",
104
- models.TextField(blank=True, editable=False, null=True),
105
- ),
106
95
  (
107
96
  "content",
108
- precise_bbcode.fields.BBCodeTextField(no_rendered_field=True),
97
+ models.TextField(),
109
98
  ),
110
99
  ("is_pinned", models.BooleanField(default=False)),
111
100
  ("is_closed", models.BooleanField(default=False)),
@@ -173,13 +162,9 @@ class Migration(migrations.Migration):
173
162
  ),
174
163
  ("created_at", models.DateTimeField(auto_now_add=True)),
175
164
  ("updated_at", models.DateTimeField(auto_now=True)),
176
- (
177
- "_content_rendered",
178
- models.TextField(blank=True, editable=False, null=True),
179
- ),
180
165
  (
181
166
  "content",
182
- precise_bbcode.fields.BBCodeTextField(no_rendered_field=True),
167
+ models.TextField(),
183
168
  ),
184
169
  (
185
170
  "thread",
@@ -224,15 +209,9 @@ class Migration(migrations.Migration):
224
209
  upload_to=punkweb_bb.models.profile_image_upload_to,
225
210
  ),
226
211
  ),
227
- (
228
- "_signature_rendered",
229
- models.TextField(blank=True, editable=False, null=True),
230
- ),
231
212
  (
232
213
  "signature",
233
- precise_bbcode.fields.BBCodeTextField(
234
- blank=True, max_length=1024, no_rendered_field=True, null=True
235
- ),
214
+ models.TextField(blank=True, max_length=1024, null=True),
236
215
  ),
237
216
  (
238
217
  "user",
@@ -2,7 +2,6 @@
2
2
 
3
3
  from django.db import migrations, models
4
4
  import django.db.models.deletion
5
- import precise_bbcode.fields
6
5
  import uuid
7
6
 
8
7
 
@@ -34,13 +33,9 @@ class Migration(migrations.Migration):
34
33
  default=0, help_text="Highest priority is displayed"
35
34
  ),
36
35
  ),
37
- (
38
- "_username_style_rendered",
39
- models.TextField(blank=True, editable=False, null=True),
40
- ),
41
36
  (
42
37
  "username_style",
43
- precise_bbcode.fields.BBCodeTextField(no_rendered_field=True),
38
+ models.TextField(),
44
39
  ),
45
40
  (
46
41
  "group",
@@ -10,26 +10,6 @@ class Migration(migrations.Migration):
10
10
  ]
11
11
 
12
12
  operations = [
13
- migrations.RemoveField(
14
- model_name="boardprofile",
15
- name="_signature_rendered",
16
- ),
17
- migrations.RemoveField(
18
- model_name="groupstyle",
19
- name="_username_style_rendered",
20
- ),
21
- migrations.RemoveField(
22
- model_name="post",
23
- name="_content_rendered",
24
- ),
25
- migrations.RemoveField(
26
- model_name="subcategory",
27
- name="_description_rendered",
28
- ),
29
- migrations.RemoveField(
30
- model_name="thread",
31
- name="_content_rendered",
32
- ),
33
13
  migrations.AlterField(
34
14
  model_name="boardprofile",
35
15
  name="signature",
@@ -26,6 +26,7 @@
26
26
  .profile__thread__list {
27
27
  list-style: none;
28
28
  padding: 0;
29
+ margin: 0;
29
30
  }
30
31
 
31
32
  .profile__thread {
@@ -1,11 +1,11 @@
1
1
  {% extends 'punkweb_bb/base_modal.html' %}
2
2
 
3
3
  {% block content %}
4
- <p>
4
+ <div>
5
5
  Are you sure you want to delete this {% block object_type %}{% endblock %}?
6
6
  <br />
7
7
  <b>This action cannot be undone!</b>
8
- </p>
8
+ </div>
9
9
  <div class="modal__actions">
10
10
  <button class="modal__cancel pw-button default">Cancel</button>
11
11
  <button class="pw-button raised danger" hx-delete="{% block delete_url %}{% endblock %}">Delete</button>
@@ -65,7 +65,7 @@
65
65
  </div>
66
66
  {% if user.threads.count == 0 %}
67
67
  <div class="pw-card-content">
68
- <p>{{ user.username }} has not created any threads.</p>
68
+ <div>{{ user.username }} has not created any threads.</div>
69
69
  </div>
70
70
  {% else %}
71
71
  <ul class="profile__thread__list">
@@ -75,9 +75,9 @@
75
75
  <div class="profile__thread__title">
76
76
  <a href="{% url 'punkweb_bb:thread' thread.id %}">{{ thread.title }}</a>
77
77
  </div>
78
- <p class="profile__thread__preview">
78
+ <div class="profile__thread__preview">
79
79
  {{ thread.content|render|striptags|truncatechars:120 }}
80
- </p>
80
+ </div>
81
81
  <div class="profile__thread__date">
82
82
  <time datetime="{{thread.created_at|date:'c'}}">
83
83
  {{thread.created_at|date:'M j, Y'}} at
@@ -320,7 +320,7 @@
320
320
  <div class="pw-card fluid margin">
321
321
  <div class="pw-card-header">Thread closed</div>
322
322
  <div class="pw-card-content">
323
- <p>This thread is closed and you cannot reply to it.</p>
323
+ <div>This thread is closed and you cannot reply to it.</div>
324
324
  </div>
325
325
  </div>
326
326
  {% endif %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: punkweb-bb
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: Django application that provides a simple and modern forum board software for your Django website.
5
5
  Home-page: https://github.com/Punkweb/PunkwebBB
6
6
  Author: Punkweb
@@ -22,7 +22,7 @@ punkweb_bb/__pycache__/__init__.cpython-311.pyc,sha256=3PyxCxoznfadaGt0a7re4j0Ky
22
22
  punkweb_bb/__pycache__/admin.cpython-311.pyc,sha256=dNdyvl0j28dlAhcN7nE1KezjP4786itp9rQ3Jq_mooc,3810
23
23
  punkweb_bb/__pycache__/admin_forms.cpython-311.pyc,sha256=ggTP4ngqAlyR1z91zjxh2s5AwzcmRV1EtxTuttZ5aq4,3605
24
24
  punkweb_bb/__pycache__/apps.cpython-311.pyc,sha256=lw328DOwOp1F8FWTFYb3qV1EoBNgRr_Tc4J8DXfIl-I,730
25
- punkweb_bb/__pycache__/bbcode.cpython-311.pyc,sha256=32J8u59U0gHz4ACDuBzVvKyYinh2F-Zmgr8qS-gdmFY,9624
25
+ punkweb_bb/__pycache__/bbcode.cpython-311.pyc,sha256=d3buFSe305P1oQU5WCp6j2KWHW2ecwS8TMFTDN2TZNI,9624
26
26
  punkweb_bb/__pycache__/bbcode_tags.cpython-311.pyc,sha256=QI4BJt5plqLMiAvlVAxibuNONi69PJFQpotpS50olro,8534
27
27
  punkweb_bb/__pycache__/context_processors.cpython-311.pyc,sha256=P7rEsodXonYexbS5vUaUKVJ9tIx1pOVk6NQWVvWNvS8,392
28
28
  punkweb_bb/__pycache__/forms.cpython-311.pyc,sha256=GYifujT3WNioRq9FBFyhNpVpOOYIUJC2u9o4CFidfk8,6735
@@ -42,19 +42,19 @@ punkweb_bb/__pycache__/urls.cpython-311.pyc,sha256=enGd9gcLCxN77wcy6a7v_WCTut0OW
42
42
  punkweb_bb/__pycache__/utils.cpython-311.pyc,sha256=KlAzhCzyXMiVWZplwzIo4VR9O7KETgR-yjobFhrAecU,2899
43
43
  punkweb_bb/__pycache__/views.cpython-311.pyc,sha256=aA95XS49Ab4c8R6ia_JUqELT03QNsRh-ftkMMLpQVv8,26263
44
44
  punkweb_bb/__pycache__/widgets.cpython-311.pyc,sha256=GRDHKCHqMnsUQJez-enP34Dayw0AR0TUPYPrij6QhmM,2640
45
- punkweb_bb/migrations/0001_initial.py,sha256=3RGsylygBcWx1kIPhSzOb9v_2yvowsxKfxuSinKKuS0,8950
45
+ punkweb_bb/migrations/0001_initial.py,sha256=q3NxJpRSnBWtY0ZPVlV957krfs3pF_ec7K2G5llYPZs,8027
46
46
  punkweb_bb/migrations/0002_thread_view_count.py,sha256=JJZT53Mp8Ofht3oIi67s-0wzCdpYyu8wOeCi_B8q8Yo,388
47
47
  punkweb_bb/migrations/0003_alter_thread_options.py,sha256=0xwVfSMWs28akDMhMwOdyyuC7JZ47JekkphT8fUCpcA,589
48
- punkweb_bb/migrations/0004_groupstyle.py,sha256=DKcTMFkAj903MvrSheMKquCVIOzanZoFakZLIE63nLo,1821
48
+ punkweb_bb/migrations/0004_groupstyle.py,sha256=J7k0WVvEJ6kgRUiIVK0gvnzX-GafXGApY2EVfksjICU,1587
49
49
  punkweb_bb/migrations/0005_alter_thread_options.py,sha256=00gO0a45aTqnLfF4i_KZ7xJFk_wbz78FgUBtEzn_9GA,638
50
- punkweb_bb/migrations/0006_remove_boardprofile__signature_rendered_and_more.py,sha256=jof8vd_LPnknWaEky2jqNHQFlJgke76Dy_tfZtafCRE,1699
50
+ punkweb_bb/migrations/0006_remove_boardprofile__signature_rendered_and_more.py,sha256=qY9pTMM00Ornd6tCEUtgo6chbgsiR-yiYCWOqtAQH6w,1103
51
51
  punkweb_bb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
- punkweb_bb/migrations/__pycache__/0001_initial.cpython-311.pyc,sha256=koi_VflndmTKzSXWstWBXuVEZgEeueId5NE4kOAlA4Q,6456
52
+ punkweb_bb/migrations/__pycache__/0001_initial.cpython-311.pyc,sha256=5A89XuMpiV3_UbK7PScNkaLLauzEAMUUYfwPE3GIc0s,5827
53
53
  punkweb_bb/migrations/__pycache__/0002_thread_view_count.cpython-311.pyc,sha256=9HRllkD8LHPXadyurYvp2UcmRFEywalUVQjiOGWizgc,815
54
54
  punkweb_bb/migrations/__pycache__/0003_alter_thread_options.cpython-311.pyc,sha256=zK9keYR8PU92_sP5M78xmFJeLGwSnM5tIo09bU-IpOU,860
55
- punkweb_bb/migrations/__pycache__/0004_groupstyle.cpython-311.pyc,sha256=5wYwjAe30bSea8PswtRkIw8vrxIVk9tUZmUWXanJ2dk,2000
55
+ punkweb_bb/migrations/__pycache__/0004_groupstyle.cpython-311.pyc,sha256=vJ0ybv72N8ZuCJTtPLs51LJTekf7EDBsiJshhX9wTT0,1741
56
56
  punkweb_bb/migrations/__pycache__/0005_alter_thread_options.cpython-311.pyc,sha256=O4FHKUuzw7PXt5SwJXLEtL0Hdfkj2uDkVNSDP25vWHw,885
57
- punkweb_bb/migrations/__pycache__/0006_remove_boardprofile__signature_rendered_and_more.cpython-311.pyc,sha256=mmIZb-1Eq32wS0WQdC7xXvOcbvnjZaHFiPqnB1biXYY,1901
57
+ punkweb_bb/migrations/__pycache__/0006_remove_boardprofile__signature_rendered_and_more.cpython-311.pyc,sha256=GKU0aIqZMZ2hlzle0RnNBDm7DNLTHstXTtd8gsFfqnw,1461
58
58
  punkweb_bb/migrations/__pycache__/__init__.cpython-311.pyc,sha256=sTbC1AXnh0V4BJwjcjs1ckdeYjG01I348hZwLE2HI4Y,172
59
59
  punkweb_bb/static/punkweb_bb/favicon.ico,sha256=lEfX--R9wEGPkkXgLYCsGmHuAGajigiqBXAoonxq8ZM,318
60
60
  punkweb_bb/static/punkweb_bb/css/category-form.css,sha256=lvG7Lh2GGBVplKk46JAIHF1cmFLve2JT32BswmudIF8,359
@@ -63,7 +63,7 @@ punkweb_bb/static/punkweb_bb/css/index.css,sha256=Jr4P0uLQ0lhM1ujycNVYYnu6tFmFXV
63
63
  punkweb_bb/static/punkweb_bb/css/login.css,sha256=pt5ul4ycZsVB-No3c5gsQa1zVS1iAZgteN1CcllS26k,234
64
64
  punkweb_bb/static/punkweb_bb/css/members.css,sha256=1Fz0uVDbs3RnuXNjOtnGnK2jok3LEQBoPhjRYp7gNwE,395
65
65
  punkweb_bb/static/punkweb_bb/css/post-form.css,sha256=rEiYplAobLjjUYAcnjNqIjyIVhe9O5hAlPJ3STW-K14,321
66
- punkweb_bb/static/punkweb_bb/css/profile.css,sha256=yfNJT_D-05deqiBrdIgPeCSO_DFSL8-fGEEHnGrCIYM,916
66
+ punkweb_bb/static/punkweb_bb/css/profile.css,sha256=QdsO8qHxOuCq0jz4tH64Hr9k5_E6T4bRaau5m2QnO5Y,929
67
67
  punkweb_bb/static/punkweb_bb/css/punkweb-modal.css,sha256=5iT8bVOmC2fhgx1YCgD6IOvUiWTT1LXV0bo_FU2MEzE,1331
68
68
  punkweb_bb/static/punkweb_bb/css/punkweb.css,sha256=Rtkz917V0ZjI9vIslBVesyexwi1WYQW92BuoVqbIBJ4,14557
69
69
  punkweb_bb/static/punkweb_bb/css/settings.css,sha256=ulQQFTu8slk2rYOmhvci5v-AVnguUuDhKQDhyQOsQNU,308
@@ -261,7 +261,7 @@ punkweb_bb/static/punkweb_bb/vendor/tiny-markdown-editor/src/svg/strikethrough.s
261
261
  punkweb_bb/static/punkweb_bb/vendor/tiny-markdown-editor/src/svg/svg.js,sha256=obYUuT3e93tEEo55Km8pIxTwTv0QG-iOPFzDIJANSz0,4350
262
262
  punkweb_bb/static/punkweb_bb/vendor/tiny-markdown-editor/src/svg/ul.svg,sha256=3W6IEbK__WiV-VsUQZV4GnBy_6uKkwVEnbzLjksPbbc,495
263
263
  punkweb_bb/templates/punkweb_bb/base.html,sha256=-swjri5cx547vuLVApepf8AchoAVrK2TjwtV7lmxdZc,4426
264
- punkweb_bb/templates/punkweb_bb/base_delete_modal.html,sha256=Od6qBPgnY9-6JvUHAlsXcEbXzo39qc5YC-omfaN7Nnk,422
264
+ punkweb_bb/templates/punkweb_bb/base_delete_modal.html,sha256=S2UkzKETArEUWLgSYtC5cD2l5WLNH0z1SwtRkUkCMoE,426
265
265
  punkweb_bb/templates/punkweb_bb/base_modal.html,sha256=OCbtsMWeNCO0Tl1PmHCcGkwoi1OZjeIK_VhNTzMor7M,460
266
266
  punkweb_bb/templates/punkweb_bb/bbcode.html,sha256=r65rMEAtbB4TXDBD9wIht8w8kqNxetMsNNGR5hY62QQ,390
267
267
  punkweb_bb/templates/punkweb_bb/category_create.html,sha256=773uJzxVvuPmWVrW87EoQTBNoo6cyi3UBp_PZn6JY5A,1369
@@ -269,13 +269,13 @@ punkweb_bb/templates/punkweb_bb/category_update.html,sha256=GUFo19BXY8JVvxP7cWAy
269
269
  punkweb_bb/templates/punkweb_bb/index.html,sha256=p2Lzw8DhjawebN0iGaDvMQPFZupOCebGwvBv5uXltEk,10519
270
270
  punkweb_bb/templates/punkweb_bb/login.html,sha256=Hsmt_Y50nTOEv7hBjACXMSEmIVCl-IqDv15iE-wo2cY,1137
271
271
  punkweb_bb/templates/punkweb_bb/members.html,sha256=QiG7VllECM4iE5-rIIyterepJ-O51o9NtIsjLvKrwGs,2886
272
- punkweb_bb/templates/punkweb_bb/profile.html,sha256=-a0Liyp2vJ8uQedlCIIEdPWog0fnnSYRdtDddbxb_Vg,3203
272
+ punkweb_bb/templates/punkweb_bb/profile.html,sha256=ZW5J88BrHcnFHI9h_1zj7t3k3eVn3vMaRZUerHfc6k8,3211
273
273
  punkweb_bb/templates/punkweb_bb/settings.html,sha256=pxEgQQxK1lk2UKL1W3YL-liAERo2mFgUNAJtshe13xk,2047
274
274
  punkweb_bb/templates/punkweb_bb/signup.html,sha256=LMs_EwdEbBmFt4zXPt_LmtUujmBJVt0zE0LldgfhrY0,1219
275
275
  punkweb_bb/templates/punkweb_bb/subcategory.html,sha256=QDZCLtKZqEgNjHlVeJVwEqUCWYEal3X3JoKlqQY9Zzc,5893
276
276
  punkweb_bb/templates/punkweb_bb/subcategory_create.html,sha256=8FhcWKiaYGIulrOaBzQ6qFMpDvsAnX_q-XJ5mKwBLW8,1521
277
277
  punkweb_bb/templates/punkweb_bb/subcategory_update.html,sha256=kOq6tuhNBSMVQkBSpHpU06JuQ3h008fOKqLcxe9PgCg,1638
278
- punkweb_bb/templates/punkweb_bb/thread.html,sha256=l6C04NiqLHdvJ9MEblfvcyabXo3pbkC5mK_lSCYnN8I,11201
278
+ punkweb_bb/templates/punkweb_bb/thread.html,sha256=lXSnYXI7-jGQaWep1X-jf3Wc5IpAKpsyKdBRDLGzUy0,11205
279
279
  punkweb_bb/templates/punkweb_bb/thread_create.html,sha256=vCwU8GNBwy7pJ2X-jSTgqvAuqgQ_NeSvRDyieBWhP_g,1697
280
280
  punkweb_bb/templates/punkweb_bb/thread_update.html,sha256=SLL_5tceZ8ZiPbWCO9eOe_aeMgV5lQ-p6eun1_XvKwE,1730
281
281
  punkweb_bb/templates/punkweb_bb/partials/category_delete.html,sha256=WmZho6dr9IHww1vL_MvENvnGL63wOgMjZHlip6McYxE,234
@@ -303,14 +303,14 @@ punkweb_bb/templatetags/__pycache__/can_post.cpython-311.pyc,sha256=1IU4-Ar-kwjn
303
303
  punkweb_bb/templatetags/__pycache__/humanize_count.cpython-311.pyc,sha256=UKD6_5RX8YpYpg-LPrgGxBkW56THsbYY51cKTYdKwRY,621
304
304
  punkweb_bb/templatetags/__pycache__/humanize_int.cpython-311.pyc,sha256=csY5ek-bevYVeM91hYFKozuKWXCTXb7M-7Bokwdxhrk,619
305
305
  punkweb_bb/templatetags/__pycache__/markdown.cpython-311.pyc,sha256=gVou8LgnZCf7b5_D52rimaEICsav98nb1YJic10nQyA,1858
306
- punkweb_bb/templatetags/__pycache__/render.cpython-311.pyc,sha256=HSBIb01Aa9FeBDCo6-zimK4o_-jdvlcrGkrEDGWjZVw,2425
306
+ punkweb_bb/templatetags/__pycache__/render.cpython-311.pyc,sha256=sHK8W5o8-aXEmh_fyscHwmDMO0YUGb8gWmWw0-_xSCE,2425
307
307
  punkweb_bb/templatetags/__pycache__/shoutbox_bbcode.cpython-311.pyc,sha256=h5Md024xXjG3N574GjQWR8u4c8UsCsiBWP_usQiJUdE,945
308
308
  punkweb_bb/templatetags/__pycache__/shoutbox_render.cpython-311.pyc,sha256=FT-Y3-st8ZLrLNiWWlR308lMi7bmu57YyBpdmF_JEKQ,810
309
309
  punkweb_bb/templatetags/__pycache__/styled_group_name.cpython-311.pyc,sha256=1rXkWaqTzivl0uvVs-UiPHOfvx7rOO4Kce6Elhoer_I,712
310
310
  punkweb_bb/templatetags/__pycache__/styled_username.cpython-311.pyc,sha256=a91ogyUeLdHS9rEU28FWEYeVqcJopjbvPPdnGkmlHKI,628
311
311
  punkweb_bb/templatetags/__pycache__/username.cpython-311.pyc,sha256=GvZkwtrFvkRr1RbxoejyKMmJXr01ABz3lVEwPNq4wxk,626
312
- punkweb_bb-0.4.2.dist-info/LICENSE,sha256=YYysF07B-kyXSO7IWFB9f49ZXa6LIFUTVsR1Ogmhp8s,1507
313
- punkweb_bb-0.4.2.dist-info/METADATA,sha256=BBOBKMBfiSmIHsZjAQGR3-w7Z_L_8M3GIO2QpM6WeYA,5888
314
- punkweb_bb-0.4.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
315
- punkweb_bb-0.4.2.dist-info/top_level.txt,sha256=sWuGdGnk0ejOXiFDzlBqrNs2VbPEx0_i8UwWXn4SuHU,11
316
- punkweb_bb-0.4.2.dist-info/RECORD,,
312
+ punkweb_bb-0.4.3.dist-info/LICENSE,sha256=YYysF07B-kyXSO7IWFB9f49ZXa6LIFUTVsR1Ogmhp8s,1507
313
+ punkweb_bb-0.4.3.dist-info/METADATA,sha256=xoQNbjkYl1Kuj41sT1O3nESku465DodIQr6HVMet_aQ,5888
314
+ punkweb_bb-0.4.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
315
+ punkweb_bb-0.4.3.dist-info/top_level.txt,sha256=sWuGdGnk0ejOXiFDzlBqrNs2VbPEx0_i8UwWXn4SuHU,11
316
+ punkweb_bb-0.4.3.dist-info/RECORD,,