picata 0.0.7__py3-none-any.whl → 0.0.9__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -100,7 +100,7 @@ Options:
100
100
  -i --increment [<level>]
101
101
  Increment a version by the specified level. Level can
102
102
  be one of: major, minor, patch, premajor, preminor,
103
- prepatch, or prerelease. Default level is 'patch'.
103
+ prepatch, prerelease, or release. Default level is 'patch'.
104
104
  Only one version may be specified.
105
105
 
106
106
  --preid <identifier>
@@ -141,6 +141,8 @@ A "version" is described by the `v2.0.0` specification found at
141
141
  <https://semver.org/>.
142
142
 
143
143
  A leading `"="` or `"v"` character is stripped off and ignored.
144
+ Support for stripping a leading "v" is kept for compatibility with `v1.0.0` of the SemVer
145
+ specification but should not be used anymore.
144
146
 
145
147
  ## Ranges
146
148
 
@@ -237,6 +239,13 @@ $ semver 1.2.4-beta.0 -i prerelease
237
239
  1.2.4-beta.1
238
240
  ```
239
241
 
242
+ To get out of the prerelease phase, use the `release` option:
243
+
244
+ ```bash
245
+ $ semver 1.2.4-beta.1 -i release
246
+ 1.2.4
247
+ ```
248
+
240
249
  #### Prerelease Identifier Base
241
250
 
242
251
  The method `.inc` takes an optional parameter 'identifierBase' string
@@ -415,10 +424,10 @@ Strict-mode Comparators and Ranges will be strict about the SemVer
415
424
  strings that they parse.
416
425
 
417
426
  * `valid(v)`: Return the parsed version, or null if it's not valid.
418
- * `inc(v, release, options, identifier, identifierBase)`:
427
+ * `inc(v, releaseType, options, identifier, identifierBase)`:
419
428
  Return the version incremented by the release
420
429
  type (`major`, `premajor`, `minor`, `preminor`, `patch`,
421
- `prepatch`, or `prerelease`), or null if it's not valid
430
+ `prepatch`, `prerelease`, or `release`), or null if it's not valid
422
431
  * `premajor` in one call will bump the version up to the next major
423
432
  version and down to a prerelease of that major version.
424
433
  `preminor`, and `prepatch` work the same way.
@@ -426,6 +435,7 @@ strings that they parse.
426
435
  same as `prepatch`. It increments the patch version and then makes a
427
436
  prerelease. If the input version is already a prerelease it simply
428
437
  increments it.
438
+ * `release` will remove any prerelease part of the version.
429
439
  * `identifier` can be used to prefix `premajor`, `preminor`,
430
440
  `prepatch`, or `prerelease` version increments. `identifierBase`
431
441
  is the base to be used for the `prerelease` identifier.
@@ -477,7 +487,7 @@ strings that they parse.
477
487
 
478
488
  ### Ranges
479
489
 
480
- * `validRange(range)`: Return the valid range or null if it's not valid
490
+ * `validRange(range)`: Return the valid range or null if it's not valid.
481
491
  * `satisfies(version, range)`: Return true if the version satisfies the
482
492
  range.
483
493
  * `maxSatisfying(versions, range)`: Return the highest version in the list
@@ -100,7 +100,7 @@ Options:
100
100
  -i --increment [<level>]
101
101
  Increment a version by the specified level. Level can
102
102
  be one of: major, minor, patch, premajor, preminor,
103
- prepatch, or prerelease. Default level is 'patch'.
103
+ prepatch, prerelease, or release. Default level is 'patch'.
104
104
  Only one version may be specified.
105
105
 
106
106
  --preid <identifier>
@@ -141,6 +141,8 @@ A "version" is described by the `v2.0.0` specification found at
141
141
  <https://semver.org/>.
142
142
 
143
143
  A leading `"="` or `"v"` character is stripped off and ignored.
144
+ Support for stripping a leading "v" is kept for compatibility with `v1.0.0` of the SemVer
145
+ specification but should not be used anymore.
144
146
 
145
147
  ## Ranges
146
148
 
@@ -237,6 +239,13 @@ $ semver 1.2.4-beta.0 -i prerelease
237
239
  1.2.4-beta.1
238
240
  ```
239
241
 
242
+ To get out of the prerelease phase, use the `release` option:
243
+
244
+ ```bash
245
+ $ semver 1.2.4-beta.1 -i release
246
+ 1.2.4
247
+ ```
248
+
240
249
  #### Prerelease Identifier Base
241
250
 
242
251
  The method `.inc` takes an optional parameter 'identifierBase' string
@@ -415,10 +424,10 @@ Strict-mode Comparators and Ranges will be strict about the SemVer
415
424
  strings that they parse.
416
425
 
417
426
  * `valid(v)`: Return the parsed version, or null if it's not valid.
418
- * `inc(v, release, options, identifier, identifierBase)`:
427
+ * `inc(v, releaseType, options, identifier, identifierBase)`:
419
428
  Return the version incremented by the release
420
429
  type (`major`, `premajor`, `minor`, `preminor`, `patch`,
421
- `prepatch`, or `prerelease`), or null if it's not valid
430
+ `prepatch`, `prerelease`, or `release`), or null if it's not valid
422
431
  * `premajor` in one call will bump the version up to the next major
423
432
  version and down to a prerelease of that major version.
424
433
  `preminor`, and `prepatch` work the same way.
@@ -426,6 +435,7 @@ strings that they parse.
426
435
  same as `prepatch`. It increments the patch version and then makes a
427
436
  prerelease. If the input version is already a prerelease it simply
428
437
  increments it.
438
+ * `release` will remove any prerelease part of the version.
429
439
  * `identifier` can be used to prefix `premajor`, `preminor`,
430
440
  `prepatch`, or `prerelease` version increments. `identifierBase`
431
441
  is the base to be used for the `prerelease` identifier.
@@ -477,7 +487,7 @@ strings that they parse.
477
487
 
478
488
  ### Ranges
479
489
 
480
- * `validRange(range)`: Return the valid range or null if it's not valid
490
+ * `validRange(range)`: Return the valid range or null if it's not valid.
481
491
  * `satisfies(version, range)`: Return true if the version satisfies the
482
492
  range.
483
493
  * `maxSatisfying(versions, range)`: Return the highest version in the list
@@ -233,6 +233,12 @@ each time a task is completed, `err` will be not null if the task has thrown an
233
233
  Property that returns the number of concurrent tasks that could be executed in
234
234
  parallel. It can be altered at runtime.
235
235
 
236
+ -------------------------------------------------------
237
+ <a name="paused"></a>
238
+ ### queue.paused
239
+
240
+ Property (Read-Only) that returns `true` when the queue is in a paused state.
241
+
236
242
  -------------------------------------------------------
237
243
  <a name="drain"></a>
238
244
  ### queue.drain
@@ -100,7 +100,7 @@ Options:
100
100
  -i --increment [<level>]
101
101
  Increment a version by the specified level. Level can
102
102
  be one of: major, minor, patch, premajor, preminor,
103
- prepatch, or prerelease. Default level is 'patch'.
103
+ prepatch, prerelease, or release. Default level is 'patch'.
104
104
  Only one version may be specified.
105
105
 
106
106
  --preid <identifier>
@@ -141,6 +141,8 @@ A "version" is described by the `v2.0.0` specification found at
141
141
  <https://semver.org/>.
142
142
 
143
143
  A leading `"="` or `"v"` character is stripped off and ignored.
144
+ Support for stripping a leading "v" is kept for compatibility with `v1.0.0` of the SemVer
145
+ specification but should not be used anymore.
144
146
 
145
147
  ## Ranges
146
148
 
@@ -237,6 +239,13 @@ $ semver 1.2.4-beta.0 -i prerelease
237
239
  1.2.4-beta.1
238
240
  ```
239
241
 
242
+ To get out of the prerelease phase, use the `release` option:
243
+
244
+ ```bash
245
+ $ semver 1.2.4-beta.1 -i release
246
+ 1.2.4
247
+ ```
248
+
240
249
  #### Prerelease Identifier Base
241
250
 
242
251
  The method `.inc` takes an optional parameter 'identifierBase' string
@@ -415,10 +424,10 @@ Strict-mode Comparators and Ranges will be strict about the SemVer
415
424
  strings that they parse.
416
425
 
417
426
  * `valid(v)`: Return the parsed version, or null if it's not valid.
418
- * `inc(v, release, options, identifier, identifierBase)`:
427
+ * `inc(v, releaseType, options, identifier, identifierBase)`:
419
428
  Return the version incremented by the release
420
429
  type (`major`, `premajor`, `minor`, `preminor`, `patch`,
421
- `prepatch`, or `prerelease`), or null if it's not valid
430
+ `prepatch`, `prerelease`, or `release`), or null if it's not valid
422
431
  * `premajor` in one call will bump the version up to the next major
423
432
  version and down to a prerelease of that major version.
424
433
  `preminor`, and `prepatch` work the same way.
@@ -426,6 +435,7 @@ strings that they parse.
426
435
  same as `prepatch`. It increments the patch version and then makes a
427
436
  prerelease. If the input version is already a prerelease it simply
428
437
  increments it.
438
+ * `release` will remove any prerelease part of the version.
429
439
  * `identifier` can be used to prefix `premajor`, `preminor`,
430
440
  `prepatch`, or `prerelease` version increments. `identifierBase`
431
441
  is the base to be used for the `prerelease` identifier.
@@ -477,7 +487,7 @@ strings that they parse.
477
487
 
478
488
  ### Ranges
479
489
 
480
- * `validRange(range)`: Return the valid range or null if it's not valid
490
+ * `validRange(range)`: Return the valid range or null if it's not valid.
481
491
  * `satisfies(version, range)`: Return true if the version satisfies the
482
492
  range.
483
493
  * `maxSatisfying(versions, range)`: Return the highest version in the list
@@ -100,7 +100,7 @@ Options:
100
100
  -i --increment [<level>]
101
101
  Increment a version by the specified level. Level can
102
102
  be one of: major, minor, patch, premajor, preminor,
103
- prepatch, or prerelease. Default level is 'patch'.
103
+ prepatch, prerelease, or release. Default level is 'patch'.
104
104
  Only one version may be specified.
105
105
 
106
106
  --preid <identifier>
@@ -141,6 +141,8 @@ A "version" is described by the `v2.0.0` specification found at
141
141
  <https://semver.org/>.
142
142
 
143
143
  A leading `"="` or `"v"` character is stripped off and ignored.
144
+ Support for stripping a leading "v" is kept for compatibility with `v1.0.0` of the SemVer
145
+ specification but should not be used anymore.
144
146
 
145
147
  ## Ranges
146
148
 
@@ -237,6 +239,13 @@ $ semver 1.2.4-beta.0 -i prerelease
237
239
  1.2.4-beta.1
238
240
  ```
239
241
 
242
+ To get out of the prerelease phase, use the `release` option:
243
+
244
+ ```bash
245
+ $ semver 1.2.4-beta.1 -i release
246
+ 1.2.4
247
+ ```
248
+
240
249
  #### Prerelease Identifier Base
241
250
 
242
251
  The method `.inc` takes an optional parameter 'identifierBase' string
@@ -415,10 +424,10 @@ Strict-mode Comparators and Ranges will be strict about the SemVer
415
424
  strings that they parse.
416
425
 
417
426
  * `valid(v)`: Return the parsed version, or null if it's not valid.
418
- * `inc(v, release, options, identifier, identifierBase)`:
427
+ * `inc(v, releaseType, options, identifier, identifierBase)`:
419
428
  Return the version incremented by the release
420
429
  type (`major`, `premajor`, `minor`, `preminor`, `patch`,
421
- `prepatch`, or `prerelease`), or null if it's not valid
430
+ `prepatch`, `prerelease`, or `release`), or null if it's not valid
422
431
  * `premajor` in one call will bump the version up to the next major
423
432
  version and down to a prerelease of that major version.
424
433
  `preminor`, and `prepatch` work the same way.
@@ -426,6 +435,7 @@ strings that they parse.
426
435
  same as `prepatch`. It increments the patch version and then makes a
427
436
  prerelease. If the input version is already a prerelease it simply
428
437
  increments it.
438
+ * `release` will remove any prerelease part of the version.
429
439
  * `identifier` can be used to prefix `premajor`, `preminor`,
430
440
  `prepatch`, or `prerelease` version increments. `identifierBase`
431
441
  is the base to be used for the `prerelease` identifier.
@@ -477,7 +487,7 @@ strings that they parse.
477
487
 
478
488
  ### Ranges
479
489
 
480
- * `validRange(range)`: Return the valid range or null if it's not valid
490
+ * `validRange(range)`: Return the valid range or null if it's not valid.
481
491
  * `satisfies(version, range)`: Return true if the version satisfies the
482
492
  range.
483
493
  * `maxSatisfying(versions, range)`: Return the highest version in the list
picata/helpers/wagtail.py CHANGED
@@ -53,7 +53,7 @@ def filter_pages_by_type(pages: list[Page], page_type_slugs: set[str]) -> list[P
53
53
  return filtered_pages
54
54
 
55
55
 
56
- def page_preview_data(request: HttpRequest, page: Page) -> dict[str, str]:
56
+ def page_preview_data(page: Page, request: HttpRequest | None) -> dict[str, str]:
57
57
  """Return a dictionary of available publication and preview data for a page."""
58
58
  page_data = getattr(page, "preview_data", {}).copy()
59
59
  if hasattr(page, "get_publication_data"):
picata/models.py CHANGED
@@ -110,7 +110,7 @@ class BasePage(Page):
110
110
  from picata.helpers.wagtail import page_preview_data
111
111
 
112
112
  context = super().get_context(request, *args, **kwargs)
113
- context.update(page_preview_data(request, self))
113
+ context.update(page_preview_data(self, request))
114
114
  return cast(BasePageContext, {**context})
115
115
 
116
116
  class Meta:
@@ -472,7 +472,7 @@ class HomePage(BasePage):
472
472
  from picata.helpers.wagtail import page_preview_data
473
473
 
474
474
  recent_posts = Article.objects.live_for_user(request.user).by_date()
475
- recent_posts = [page_preview_data(request, post) for post in recent_posts]
475
+ recent_posts = [page_preview_data(post, request) for post in recent_posts]
476
476
 
477
477
  return cast(
478
478
  HomePageContext,
picata/urls.py CHANGED
@@ -10,7 +10,7 @@ from wagtail.contrib.sitemaps.views import sitemap
10
10
  from wagtail.documents import urls as wagtaildocs_urls
11
11
  from wagtail.images.views.serve import ServeView
12
12
 
13
- from picata.views import search
13
+ from picata.views import AtomArticleFeed, RSSArticleFeed, search
14
14
 
15
15
  urlpatterns = [
16
16
  path("django-admin/", admin.site.urls), # Django Admin
@@ -20,6 +20,8 @@ urlpatterns = [
20
20
  r"^images/([^/]*)/(\d*)/([^/]*)/[^/]*$", ServeView.as_view(), name="wagtailimages_serve"
21
21
  ),
22
22
  path("sitemap.xml", sitemap),
23
+ path("feeds/rss/", RSSArticleFeed(), name="rss_feed"),
24
+ path("feeds/atom/", AtomArticleFeed(), name="atom_feed"),
23
25
  path("search/", search, name="search"),
24
26
  ]
25
27
 
picata/views.py CHANGED
@@ -4,10 +4,13 @@
4
4
  # pyright: reportAttributeAccessIssue=false, reportArgumentType=false
5
5
 
6
6
  import logging
7
+ from datetime import datetime
7
8
  from typing import TYPE_CHECKING, NoReturn
8
9
 
10
+ from django.contrib.syndication.views import Feed
9
11
  from django.http import HttpRequest, HttpResponse
10
12
  from django.shortcuts import render
13
+ from django.utils.feedgenerator import Atom1Feed, Rss201rev2Feed
11
14
 
12
15
  from picata.helpers.wagtail import (
13
16
  filter_pages_by_tags,
@@ -15,7 +18,7 @@ from picata.helpers.wagtail import (
15
18
  page_preview_data,
16
19
  visible_pages_qs,
17
20
  )
18
- from picata.models import ArticleType
21
+ from picata.models import Article, ArticleType
19
22
 
20
23
  if TYPE_CHECKING:
21
24
  from wagtail.query import PageQuerySet
@@ -23,6 +26,46 @@ if TYPE_CHECKING:
23
26
  logger = logging.getLogger(__name__)
24
27
 
25
28
 
29
+ class PostsFeed(Feed):
30
+ """Base class for RSS and Atom article feeds."""
31
+
32
+ title = "hpk.io Articles"
33
+ link = "https://hpk.io/blog/"
34
+ description = "Latest posts on hpk.io"
35
+
36
+ def items(self) -> list[Article]:
37
+ """Return the latest 10 published articles."""
38
+ return list(Article.objects.live().order_by("-first_published_at"))
39
+
40
+ def item_title(self, item: Article) -> str:
41
+ """Return the article title."""
42
+ return item.title
43
+
44
+ def item_link(self, item: Article) -> str:
45
+ """Return the absolute URL for the article."""
46
+ return item.full_url
47
+
48
+ def item_description(self, item: Article) -> str:
49
+ """Return the article body as HTML with absolute URLs."""
50
+ return item.content
51
+
52
+ def item_pubdate(self, item: Article) -> datetime:
53
+ """Return the article creation date."""
54
+ return item.first_published_at
55
+
56
+
57
+ class RSSArticleFeed(PostsFeed):
58
+ """RSS feed for articles."""
59
+
60
+ feed_type = Rss201rev2Feed
61
+
62
+
63
+ class AtomArticleFeed(PostsFeed):
64
+ """Atom feed for articles."""
65
+
66
+ feed_type = Atom1Feed
67
+
68
+
26
69
  def debug_shell(request: HttpRequest) -> NoReturn:
27
70
  """Just `assert False`, to force an exception and get to the Werkzeug debug console."""
28
71
  logger.info(
@@ -76,6 +119,6 @@ def search(request: HttpRequest) -> HttpResponse:
76
119
  specific_pages = []
77
120
 
78
121
  # Enhance pages with preview and publication data
79
- page_previews = [page_preview_data(request, page) for page in specific_pages]
122
+ page_previews = [page_preview_data(page, request) for page in specific_pages]
80
123
 
81
124
  return render(request, "picata/search_results.html", {**results, "pages": page_previews})
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: picata
3
- Version: 0.0.7
3
+ Version: 0.0.9
4
4
  Summary: Ada's Wagtail-based CMS & blog
5
5
  Project-URL: Documentation, https://github.com/hipikat/picata#readme
6
6
  Project-URL: Issues, https://github.com/hipikat/picata/issues
@@ -238,7 +238,7 @@ node_modules/@typescript-eslint/types/README.md,sha256=bF7TVK7ibvRQhZf_ryVYuGPH5
238
238
  node_modules/@typescript-eslint/typescript-estree/README.md,sha256=7xIGBoSzeciQC2SCWEnqqsYNkXMJiCA6enrJKPzJt-Q,789
239
239
  node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md,sha256=xkOeKZsj4u9rlyVGvvHPagWU4qy3pTNoFQ6zQFsDdSs,4252
240
240
  node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md,sha256=rPrFAAANzMEvvPV_vY0EevTi1kL35nBf5QNBkU0Thps,16942
241
- node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md,sha256=YEUkb58fBMkyaM0g4gTsKMmE2MDgqGdbMAoiqhrhF4I,24425
241
+ node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md,sha256=erXIQarCUwBmsOQLgrowSWnO7F03Njf4SZ0j0TiCYUA,24763
242
242
  node_modules/@typescript-eslint/utils/README.md,sha256=u_mHiuf53_7bECgOFjkcejoXvj9Kv338zNwPQWhUXPM,700
243
243
  node_modules/@typescript-eslint/visitor-keys/README.md,sha256=W__EbBHxDxuV0Yn3v4rwQesN3kWfHDlQ9bYA3VVRuJ8,366
244
244
  node_modules/@webassemblyjs/ast/README.md,sha256=9NQfRh3obdKabzHFpuoGoW5bZ28INNndiQqqCZkOGoY,4788
@@ -328,7 +328,7 @@ node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity/LICENSE.
328
328
  node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity/README.md,sha256=E2iivn2bzGmw_jUtHnumZsYH1uBYnIwNF7KfWAxe0Vo,2102
329
329
  node_modules/css-has-pseudo/node_modules/postcss-selector-parser/README.md,sha256=NSoZaJ_Jtgx24Zk-LItZ3orqHFfEEuUUJiclLi8pngM,1184
330
330
  node_modules/css-loader/README.md,sha256=ubTilp5t7gdznmC45uGl3dt2_gDdCCStRaJPfwLJwME,55001
331
- node_modules/css-loader/node_modules/semver/README.md,sha256=YEUkb58fBMkyaM0g4gTsKMmE2MDgqGdbMAoiqhrhF4I,24425
331
+ node_modules/css-loader/node_modules/semver/README.md,sha256=erXIQarCUwBmsOQLgrowSWnO7F03Njf4SZ0j0TiCYUA,24763
332
332
  node_modules/css-minimizer-webpack-plugin/README.md,sha256=k4dcRJkMF4MNsqdj5Zi2lbFPk4PCxfkYkWGSZxxvJnI,16327
333
333
  node_modules/css-prefers-color-scheme/LICENSE.md,sha256=lH4yBHoWbNBfBORZONFytBLAfL7guXNa_RS64w4CwvY,930
334
334
  node_modules/css-prefers-color-scheme/README.md,sha256=6gahTRGvpcizABDvxHBPGWcswfp4FAqHpM-oR8V39L0,9524
@@ -397,7 +397,7 @@ node_modules/fast-uri/README.md,sha256=pNB15SjCZrNJVKP3yAMHvp8Ud4yUY_relznb7oZZV
397
397
  node_modules/fastest-levenshtein/LICENSE.md,sha256=uLr5G-MTZD8-h6Adp3cEto4SeVGEpi5R5TelpDwpMvM,1072
398
398
  node_modules/fastest-levenshtein/README.md,sha256=1DKmaGPk0kGNfc-e48eB_Xf0OHQp-aafUSa8Xc0Dz5w,2746
399
399
  node_modules/fastparse/README.md,sha256=HtCaBclG3HuN1-M93FiKGvwLyFMGHck_5VPzuOIHEkg,3147
400
- node_modules/fastq/README.md,sha256=L1L8_WZPNzxIdv48EYOEHOuXx4utP8zXKcY6eudMpRo,8168
400
+ node_modules/fastq/README.md,sha256=togmAfhEcPZvUhyla2VK4sjwd_cGyrPbI2mEUVA4ZFA,8343
401
401
  node_modules/file-entry-cache/README.md,sha256=Xs_MwfUBLuZyypBOFntCUuGBAxv8gicxA2J2HyLbuYY,5495
402
402
  node_modules/fill-range/README.md,sha256=543bpK44Opjfa0pkRXHB_ooPjh0lsN2zieSzVgIZTGA,7486
403
403
  node_modules/flat/README.md,sha256=SfmTFnTetHXtWYm0hKmLEnSrE4QP8UPLOH8t-bTGW_M,4187
@@ -598,7 +598,7 @@ node_modules/postcss-lab-function/LICENSE.md,sha256=lH4yBHoWbNBfBORZONFytBLAfL7g
598
598
  node_modules/postcss-lab-function/README.md,sha256=SPp0Nnl51OVxkMdjJqyK0BPTgJR9Hwvi_0Nd_A0StSk,4333
599
599
  node_modules/postcss-load-config/README.md,sha256=S2bQY1vDvQjFv8Ntus9Mu5bSXfi8vIfL1uy8O4N3YMw,9762
600
600
  node_modules/postcss-loader/README.md,sha256=zJygeI4pMAbKU5DQL-5UNZAoE-WzATf6LimzRYQSvG8,24738
601
- node_modules/postcss-loader/node_modules/semver/README.md,sha256=YEUkb58fBMkyaM0g4gTsKMmE2MDgqGdbMAoiqhrhF4I,24425
601
+ node_modules/postcss-loader/node_modules/semver/README.md,sha256=erXIQarCUwBmsOQLgrowSWnO7F03Njf4SZ0j0TiCYUA,24763
602
602
  node_modules/postcss-logical/LICENSE.md,sha256=lH4yBHoWbNBfBORZONFytBLAfL7guXNa_RS64w4CwvY,930
603
603
  node_modules/postcss-logical/README.md,sha256=mr-w1zxR-2i0d1fxgx35w_sVCkiUZ5iF456O4oJxKQA,3046
604
604
  node_modules/postcss-merge-longhand/README.md,sha256=OGrPYpVBZpTj31bVCZj_a1eXSc-xX1NcKeW_qM2d-rg,882
@@ -758,7 +758,7 @@ node_modules/ts-api-utils/LICENSE.md,sha256=dsnV9eqUIFRxXAJvM_hxfJ4kYDGWo3N7iJmv
758
758
  node_modules/ts-api-utils/README.md,sha256=v7I09nard23tFb9rAOMoc7G2r4wTQUtCiN-FpKABlwc,7623
759
759
  node_modules/ts-interface-checker/README.md,sha256=N9piaw2BG8Athrz0h1DzQvMK-qCbNt_CwXgJLVMXp9g,5698
760
760
  node_modules/ts-loader/README.md,sha256=aZPM4N_OgDb2TcbY-a1TX5g57x0t5iFSiSqbFaJWvok,30633
761
- node_modules/ts-loader/node_modules/semver/README.md,sha256=YEUkb58fBMkyaM0g4gTsKMmE2MDgqGdbMAoiqhrhF4I,24425
761
+ node_modules/ts-loader/node_modules/semver/README.md,sha256=erXIQarCUwBmsOQLgrowSWnO7F03Njf4SZ0j0TiCYUA,24763
762
762
  node_modules/ts-loader/node_modules/source-map/README.md,sha256=lpDSbKbaBMlgCJhQ8Dw4c75pqHAWp_XeIXhebC78KeQ,26782
763
763
  node_modules/tslib/README.md,sha256=0uGZqn6v2Ae6bDwx7a8GzAZxLzDvllaH4i0xW56PBUM,4033
764
764
  node_modules/type-check/README.md,sha256=Xl7-KCq-kzDOY8BUzijTxnEf2r4Z2LWVsogwCha0XuI,10220
@@ -811,15 +811,15 @@ picata/apps.py,sha256=kr6OBcYbBw9HCGG-PkoMTHR4QeyzJO8_KIWTljCTHRo,1255
811
811
  picata/blocks.py,sha256=xfFpyCL5djWmZBBrBPO1dTTAUjk3l0XLfu8qSPixejg,5303
812
812
  picata/log_utils.py,sha256=BRdB3PqpFx1XAhIyAzIOyQKiqrjbT3PBmkhH6-wAWJg,1555
813
813
  picata/middleware.py,sha256=BbAifo--C4VYg1VhU8_qbdDcJUD9zYdbxU_9nqGpMa8,2067
814
- picata/models.py,sha256=0gEhUrdSKIkv76UqMej5VHE5VPJuNFPkA5fPCrEoCxM,15931
814
+ picata/models.py,sha256=Lv7BjW-RrsdV85Uvw_eo1DyiOAaqId1ew0o1wg4jYp0,15931
815
815
  picata/transformers.py,sha256=CBnbIX3dnFV_gfp4TDTMPA_jGD8V_E4onodxWqbsjyY,2212
816
- picata/urls.py,sha256=SAbmFKAgrM80LREULczs64hExbwmLOlsflXlo7qjzsc,1834
816
+ picata/urls.py,sha256=DlAOlkAeAHTCl4txY9rxtgc6vp822Ei2niiaiej29Sk,1988
817
817
  picata/validators.py,sha256=X4wdIxbCdmuU-gJv45ptTFB7kHR166jkSQBJiTzP3ZU,1517
818
- picata/views.py,sha256=N6RYLDOTHAGBv0cYxese3T0gOvI6C99_q_Lv-3zbjrc,2881
818
+ picata/views.py,sha256=6dVGCpCDhWJ8cwaxvAqI-o1GgZRPB4JQTIf5FLeBirc,4127
819
819
  picata/wagtail_hooks.py,sha256=R1YgJwp_ZvYm65b_xvLS8HiBWxflXFXSB4SksbJxW3k,1500
820
820
  picata/wsgi.py,sha256=5vKFvebtHzxKb3BRVqps6SEKjWmOecBIkTwf4LqWJ0Q,398
821
821
  picata/helpers/__init__.py,sha256=acN445qKCuRVfInCEyCtx5W1BggloOSrawzdQ-c9m7s,2427
822
- picata/helpers/wagtail.py,sha256=ZJUqA31PBIu2lFtwfeEax3xu2UON0Yoa4cca79xdCc0,2111
822
+ picata/helpers/wagtail.py,sha256=89efaXwd7V63ds3c7w0ct6IDp63RrXCf4pGNW9dvhCI,2118
823
823
  picata/migrations/0001_initial.py,sha256=GnAiniyc1E9JsR-dYrEoVimvuIftazhfxEFCGJElKko,11943
824
824
  picata/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
825
825
  picata/settings/__init__.py,sha256=5qI40E9aCWsFanUxAnruZi1wXrad3oAwnusglycfPsk,47
@@ -870,7 +870,7 @@ picata/templatetags/tags/absolute_static.py,sha256=JNqNCMGIgiQDYdz44T5AB2l0yJTd_
870
870
  picata/templatetags/tags/menu_tags.py,sha256=PHuXl4QmIqycWilAyz1fjD_0uJxOSrCW7RnZxmR3Oh0,1860
871
871
  picata/typing/__init__.py,sha256=7qXco9cqvbveKX0Xprrc8DmgXa3MpkIQXtFsHDe77os,405
872
872
  picata/typing/wagtail.py,sha256=V0n9GYYb_CM5ic54lcRtpN6lhN37-QdRzz2mGKm3Cwc,664
873
- picata-0.0.7.dist-info/METADATA,sha256=dF5DTTG-fr0aXvynhdWykkneI_f6UQZRRRI5A1ojKJA,5092
874
- picata-0.0.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
875
- picata-0.0.7.dist-info/licenses/LICENSE.md,sha256=Bv8sMyZI5NI6DMrfiAvCwIFRLSfJkimLF2KVcUMteKU,1103
876
- picata-0.0.7.dist-info/RECORD,,
873
+ picata-0.0.9.dist-info/METADATA,sha256=LlJs2zmKInc-A_ukRTYxWSsyPNChxbZ1Lwp4KLTo3As,5092
874
+ picata-0.0.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
875
+ picata-0.0.9.dist-info/licenses/LICENSE.md,sha256=Bv8sMyZI5NI6DMrfiAvCwIFRLSfJkimLF2KVcUMteKU,1103
876
+ picata-0.0.9.dist-info/RECORD,,
File without changes