platzky 0.2.10__tar.gz → 0.2.12__tar.gz

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.
Files changed (37) hide show
  1. {platzky-0.2.10 → platzky-0.2.12}/PKG-INFO +2 -1
  2. {platzky-0.2.10 → platzky-0.2.12}/platzky/config.py +1 -0
  3. platzky-0.2.12/platzky/locale/en/LC_MESSAGES/messages.po +54 -0
  4. platzky-0.2.12/platzky/locale/pl/LC_MESSAGES/messages.po +55 -0
  5. {platzky-0.2.10 → platzky-0.2.12}/platzky/platzky.py +5 -0
  6. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/base.html +12 -2
  7. {platzky-0.2.10 → platzky-0.2.12}/pyproject.toml +1 -1
  8. {platzky-0.2.10 → platzky-0.2.12}/README.md +0 -0
  9. {platzky-0.2.10 → platzky-0.2.12}/platzky/__init__.py +0 -0
  10. {platzky-0.2.10 → platzky-0.2.12}/platzky/blog/__init__.py +0 -0
  11. {platzky-0.2.10 → platzky-0.2.12}/platzky/blog/blog.py +0 -0
  12. {platzky-0.2.10 → platzky-0.2.12}/platzky/blog/comment_form.py +0 -0
  13. {platzky-0.2.10 → platzky-0.2.12}/platzky/db/__init__.py +0 -0
  14. {platzky-0.2.10 → platzky-0.2.12}/platzky/db/db.py +0 -0
  15. {platzky-0.2.10 → platzky-0.2.12}/platzky/db/db_loader.py +0 -0
  16. {platzky-0.2.10 → platzky-0.2.12}/platzky/db/google_json_db.py +0 -0
  17. {platzky-0.2.10 → platzky-0.2.12}/platzky/db/graph_ql_db.py +0 -0
  18. {platzky-0.2.10 → platzky-0.2.12}/platzky/db/json_db.py +0 -0
  19. {platzky-0.2.10 → platzky-0.2.12}/platzky/db/json_file_db.py +0 -0
  20. {platzky-0.2.10 → platzky-0.2.12}/platzky/models.py +0 -0
  21. {platzky-0.2.10 → platzky-0.2.12}/platzky/plugin_loader.py +0 -0
  22. {platzky-0.2.10 → platzky-0.2.12}/platzky/plugins/google-tag-manager/entrypoint.py +0 -0
  23. {platzky-0.2.10 → platzky-0.2.12}/platzky/plugins/redirections/entrypoint.py +0 -0
  24. {platzky-0.2.10 → platzky-0.2.12}/platzky/plugins/sendmail/entrypoint.py +0 -0
  25. {platzky-0.2.10 → platzky-0.2.12}/platzky/seo/seo.py +0 -0
  26. {platzky-0.2.10 → platzky-0.2.12}/platzky/static/blog.css +0 -0
  27. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/404.html +0 -0
  28. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/blog.html +0 -0
  29. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/body_meta.html +0 -0
  30. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/feed.xml +0 -0
  31. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/head_meta.html +0 -0
  32. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/home.html +0 -0
  33. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/page.html +0 -0
  34. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/post.html +0 -0
  35. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/robots.txt +0 -0
  36. {platzky-0.2.10 → platzky-0.2.12}/platzky/templates/sitemap.xml +0 -0
  37. {platzky-0.2.10 → platzky-0.2.12}/platzky/www_handler.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: platzky
3
- Version: 0.2.10
3
+ Version: 0.2.12
4
4
  Summary: Not only blog engine
5
5
  License: MIT
6
6
  Requires-Python: >=3.10,<4.0
@@ -9,6 +9,7 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.10
10
10
  Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
12
13
  Requires-Dist: Flask (==3.0.3)
13
14
  Requires-Dist: Flask-Babel (>=4.0.0,<5.0.0)
14
15
  Requires-Dist: Flask-Minify (>=0.42,<0.43)
@@ -42,6 +42,7 @@ class Config(StrictBaseModel):
42
42
  )
43
43
  debug: bool = Field(default=False, alias="DEBUG")
44
44
  testing: bool = Field(default=False, alias="TESTING")
45
+ feature_flags: t.Optional[dict[str, bool]] = Field(default_factory=dict, alias="FEATURE_FLAGS")
45
46
 
46
47
  @classmethod
47
48
  def model_validate(
@@ -0,0 +1,54 @@
1
+ # English translations for platzky.
2
+ # Copyright (C) 2024 ORGANIZATION
3
+ # This file is distributed under the same license as the platzky project.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: platzky VERSION\n"
9
+ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
+ "POT-Creation-Date: 2024-10-29 19:00+0100\n"
11
+ "PO-Revision-Date: 2024-10-29 19:07+0100\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language: en\n"
14
+ "Language-Team: en <LL@li.org>\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=utf-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Generated-By: Babel 2.16.0\n"
20
+
21
+ #: platzky/templates/base.html:119
22
+ msgid "Link to home page"
23
+ msgstr ""
24
+
25
+ #: platzky/templates/base.html:136
26
+ msgid "Language switch icon, used to change the language of the website"
27
+ msgstr ""
28
+
29
+ #: platzky/templates/blog.html:5
30
+ msgid ""
31
+ "Find out our tips and tricks about email marketing. We prepared some soft"
32
+ " and some hard skills here. Ready to dive in?"
33
+ msgstr ""
34
+
35
+ #: platzky/templates/blog.html:7
36
+ msgid "You're interested in"
37
+ msgstr ""
38
+
39
+ #: platzky/templates/blog.html:7
40
+ msgid "We're here to serve you:"
41
+ msgstr ""
42
+
43
+ #: platzky/templates/post.html:36
44
+ msgid "Leave your comment here:"
45
+ msgstr ""
46
+
47
+ #: platzky/templates/post.html:53
48
+ msgid "Your comment has been sent for moderation"
49
+ msgstr ""
50
+
51
+ #: platzky/templates/post.html:63
52
+ msgid "said"
53
+ msgstr ""
54
+
@@ -0,0 +1,55 @@
1
+ # Polish translations for platzky.
2
+ # Copyright (C) 2024 ORGANIZATION
3
+ # This file is distributed under the same license as the platzky project.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: platzky VERSION\n"
9
+ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
+ "POT-Creation-Date: 2024-10-29 19:00+0100\n"
11
+ "PO-Revision-Date: 2024-10-29 19:00+0100\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language: pl\n"
14
+ "Language-Team: pl <LL@li.org>\n"
15
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && "
16
+ "(n%100<10 || n%100>=20) ? 1 : 2);\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=utf-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Generated-By: Babel 2.16.0\n"
21
+
22
+ #: platzky/templates/base.html:119
23
+ msgid "Link to home page"
24
+ msgstr "Link do strony głównej"
25
+
26
+ #: platzky/templates/base.html:136
27
+ msgid "Language switch icon, used to change the language of the website"
28
+ msgstr "Ikona zmiany języka, używana do zmiany języka strony"
29
+
30
+ #: platzky/templates/blog.html:5
31
+ msgid ""
32
+ "Find out our tips and tricks about email marketing. We prepared some soft"
33
+ " and some hard skills here. Ready to dive in?"
34
+ msgstr ""
35
+
36
+ #: platzky/templates/blog.html:7
37
+ msgid "You're interested in"
38
+ msgstr ""
39
+
40
+ #: platzky/templates/blog.html:7
41
+ msgid "We're here to serve you:"
42
+ msgstr ""
43
+
44
+ #: platzky/templates/post.html:36
45
+ msgid "Leave your comment here:"
46
+ msgstr "Zostaw swój komentarz tutaj:"
47
+
48
+ #: platzky/templates/post.html:53
49
+ msgid "Your comment has been sent for moderation"
50
+ msgstr "Twój komentarz został wysłany do moderacji"
51
+
52
+ #: platzky/templates/post.html:63
53
+ msgid "said"
54
+ msgstr "powiedział"
55
+
@@ -1,3 +1,4 @@
1
+ import os
1
2
  import typing as t
2
3
  import urllib.parse
3
4
 
@@ -24,6 +25,10 @@ class Engine(Flask):
24
25
  self.notifiers = []
25
26
  self.dynamic_body = ""
26
27
  self.dynamic_head = ""
28
+ directory = os.path.dirname(os.path.realpath(__file__))
29
+ locale_dir = os.path.join(directory, "locale")
30
+ config.translation_directories.append(locale_dir)
31
+
27
32
  babel_translation_directories = ";".join(config.translation_directories)
28
33
  self.babel = Babel(
29
34
  self,
@@ -5,6 +5,8 @@
5
5
  {% block head_meta %}{% endblock %}
6
6
  {{ dynamic_head | safe }}
7
7
 
8
+
9
+
8
10
  <title>{% block title %}{{app_name}}{% endblock %}</title>
9
11
  <meta name="description" content=" {% block description %} {% endblock %} ">
10
12
  <style>
@@ -49,9 +51,16 @@
49
51
  max-width: 80vw;
50
52
  overflow-y: auto;
51
53
  color: white;
54
+ inline-size: 80vw;
55
+ overflow-wrap: break-word;
52
56
  z-index: 999999999;
53
57
  }
54
58
 
59
+ @media only screen and (min-width: 768px) {
60
+ #left-panel {
61
+ inline-size: calc(100vw * 0.1666666667);
62
+ }
63
+
55
64
  .language-indicator-text {
56
65
  color: white;
57
66
  font-weight: normal;
@@ -106,7 +115,8 @@
106
115
  <i class="fas fa-sliders-h"></i>
107
116
  </button>
108
117
  {% endif %}
109
- <a class="navbar-brand" href="/">{% if logo_url %}<img src="{{ logo_url }}" alt="{{ app_name }} logo" class="logo">{% else %}{{_(app_name)}}{% endif %}</a>
118
+
119
+ <a class="navbar-brand" href="/" aria-label="{{_("Link to home page")}}">{% if logo_url %}<img src="{{ logo_url }}" alt="{{ app_name }} logo" class="logo">{% else %}{{_(app_name)}}{% endif %}</a>
110
120
  <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
111
121
  aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
112
122
  <i class="fas fa-bars"></i>
@@ -123,7 +133,7 @@
123
133
  <li class="nav-item dropdown">
124
134
  <div id="language-dropdown" class="btn-group">
125
135
  <button type="button" class="nav-link dropdown-toggle btn btn-link" id="languages-menu" role="button"
126
- data-bs-toggle="dropdown" aria-expanded="false">
136
+ data-bs-toggle="dropdown" aria-expanded="false" aria-label="{{ _("Language switch icon, used to change the language of the website")}}">
127
137
  <span class="language-indicator-text">{{ current_language }}</i>
128
138
  <i class="fi fi-{{ current_flag }}"></i>
129
139
  </button>
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "platzky"
3
- version = "0.2.10"
3
+ version = "0.2.12"
4
4
  description = "Not only blog engine"
5
5
  authors = []
6
6
  license = "MIT"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes