picata 0.0.8__py3-none-any.whl → 0.0.9__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.
- node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md +14 -4
- node_modules/css-loader/node_modules/semver/README.md +14 -4
- node_modules/fastq/README.md +6 -0
- node_modules/postcss-loader/node_modules/semver/README.md +14 -4
- node_modules/ts-loader/node_modules/semver/README.md +14 -4
- picata/blocks.py +5 -6
- picata/views.py +0 -8
- {picata-0.0.8.dist-info → picata-0.0.9.dist-info}/METADATA +1 -1
- {picata-0.0.8.dist-info → picata-0.0.9.dist-info}/RECORD +11 -11
- {picata-0.0.8.dist-info → picata-0.0.9.dist-info}/WHEEL +0 -0
- {picata-0.0.8.dist-info → picata-0.0.9.dist-info}/licenses/LICENSE.md +0 -0
@@ -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
|
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,
|
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 `
|
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
|
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,
|
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 `
|
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
|
node_modules/fastq/README.md
CHANGED
@@ -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
|
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,
|
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 `
|
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
|
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,
|
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 `
|
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/blocks.py
CHANGED
@@ -110,13 +110,12 @@ class CodeBlock(StructBlock):
|
|
110
110
|
language = ChoiceBlock(
|
111
111
|
required=False,
|
112
112
|
choices=[
|
113
|
-
("plaintext", "Plain Text"),
|
114
|
-
("bash", "Bash"),
|
115
|
-
("css", "CSS"),
|
116
|
-
("html", "HTML"),
|
117
|
-
("javascript", "JavaScript"),
|
118
113
|
("python", "Python"),
|
119
|
-
("
|
114
|
+
("javascript", "JavaScript"),
|
115
|
+
("html", "HTML"),
|
116
|
+
("css", "CSS"),
|
117
|
+
("bash", "Bash"),
|
118
|
+
("plaintext", "Plain Text"),
|
120
119
|
],
|
121
120
|
help_text=None,
|
122
121
|
)
|
picata/views.py
CHANGED
@@ -53,14 +53,6 @@ class PostsFeed(Feed):
|
|
53
53
|
"""Return the article creation date."""
|
54
54
|
return item.first_published_at
|
55
55
|
|
56
|
-
def item_updateddate(self, item: Article) -> datetime:
|
57
|
-
"""Return the article creation date."""
|
58
|
-
return item.last_published_at
|
59
|
-
|
60
|
-
def item_author_name(self, item: Article) -> str:
|
61
|
-
"""Return the name of the author."""
|
62
|
-
return "Ada Wright"
|
63
|
-
|
64
56
|
|
65
57
|
class RSSArticleFeed(PostsFeed):
|
66
58
|
"""RSS feed for articles."""
|
@@ -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=
|
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=
|
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=
|
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=
|
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=
|
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
|
@@ -808,14 +808,14 @@ styles.sass,sha256=SCG5WCr0jIGzdM_Vp_j_gKxFfcTsTwLWOmaEc6uMpvU,8501
|
|
808
808
|
components/HelloWorld.tsx,sha256=Kp7gvhGehfrX1mw0jgr2_D6AueFgqgfMYGkyQgvWekg,180
|
809
809
|
picata/__init__.py,sha256=ZCIoFQ_z3ias_sP4C77EU2IUJnyv4qR0xUdJ3PIdLLM,48
|
810
810
|
picata/apps.py,sha256=kr6OBcYbBw9HCGG-PkoMTHR4QeyzJO8_KIWTljCTHRo,1255
|
811
|
-
picata/blocks.py,sha256=
|
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
814
|
picata/models.py,sha256=Lv7BjW-RrsdV85Uvw_eo1DyiOAaqId1ew0o1wg4jYp0,15931
|
815
815
|
picata/transformers.py,sha256=CBnbIX3dnFV_gfp4TDTMPA_jGD8V_E4onodxWqbsjyY,2212
|
816
816
|
picata/urls.py,sha256=DlAOlkAeAHTCl4txY9rxtgc6vp822Ei2niiaiej29Sk,1988
|
817
817
|
picata/validators.py,sha256=X4wdIxbCdmuU-gJv45ptTFB7kHR166jkSQBJiTzP3ZU,1517
|
818
|
-
picata/views.py,sha256=
|
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
|
@@ -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.
|
874
|
-
picata-0.0.
|
875
|
-
picata-0.0.
|
876
|
-
picata-0.0.
|
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
|
File without changes
|