plone.tiles 3.0.1__tar.gz → 3.0.3__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.
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/CHANGES.rst +18 -0
- plone_tiles-3.0.3/MANIFEST.in +7 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/PKG-INFO +21 -2
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/pyproject.toml +2 -2
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/setup.py +12 -14
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/data.py +4 -3
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone.tiles.egg-info/PKG-INFO +21 -2
- plone_tiles-3.0.3/src/plone.tiles.egg-info/SOURCES.txt +37 -0
- plone_tiles-3.0.1/MANIFEST.in +0 -8
- plone_tiles-3.0.1/plone.tiles.egg-info/SOURCES.txt +0 -38
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/CONTRIBUTING.rst +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/LICENSE.GPL +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/LICENSE.txt +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/README.rst +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3}/setup.cfg +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/__init__.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/__init__.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/absoluteurl.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/configure.zcml +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/data.rst +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/directives.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/directives.rst +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/esi.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/esi.rst +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/fieldtypeconverters.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/interfaces.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/meta.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/meta.zcml +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/test.pt +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/testing.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/tests/__init__.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/tests/test_data.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/tests/test_doctests.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/tile.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/tiles.rst +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone/tiles/type.py +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone.tiles.egg-info/dependency_links.txt +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone.tiles.egg-info/namespace_packages.txt +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone.tiles.egg-info/not-zip-safe +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone.tiles.egg-info/requires.txt +0 -0
- {plone_tiles-3.0.1 → plone_tiles-3.0.3/src}/plone.tiles.egg-info/top_level.txt +0 -0
@@ -8,6 +8,24 @@ Changelog
|
|
8
8
|
|
9
9
|
.. towncrier release notes start
|
10
10
|
|
11
|
+
3.0.3 (2025-09-11)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
Internal:
|
15
|
+
|
16
|
+
|
17
|
+
- Move distribution to src layout [gforcada] (#4217)
|
18
|
+
|
19
|
+
|
20
|
+
3.0.2 (2025-09-10)
|
21
|
+
------------------
|
22
|
+
|
23
|
+
Bug fixes:
|
24
|
+
|
25
|
+
|
26
|
+
- Drop ``pkg_resources`` usage. [maurits] (#4126)
|
27
|
+
|
28
|
+
|
11
29
|
3.0.1 (2025-06-19)
|
12
30
|
------------------
|
13
31
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: plone.tiles
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.3
|
4
4
|
Summary: APIs for managing tiles
|
5
5
|
Home-page: https://github.com/plone/plone.tiles
|
6
6
|
Author: Martin Aspeli
|
@@ -51,6 +51,7 @@ Dynamic: description
|
|
51
51
|
Dynamic: home-page
|
52
52
|
Dynamic: keywords
|
53
53
|
Dynamic: license
|
54
|
+
Dynamic: license-file
|
54
55
|
Dynamic: provides-extra
|
55
56
|
Dynamic: requires-dist
|
56
57
|
Dynamic: requires-python
|
@@ -1666,6 +1667,24 @@ Changelog
|
|
1666
1667
|
|
1667
1668
|
.. towncrier release notes start
|
1668
1669
|
|
1670
|
+
3.0.3 (2025-09-11)
|
1671
|
+
------------------
|
1672
|
+
|
1673
|
+
Internal:
|
1674
|
+
|
1675
|
+
|
1676
|
+
- Move distribution to src layout [gforcada] (#4217)
|
1677
|
+
|
1678
|
+
|
1679
|
+
3.0.2 (2025-09-10)
|
1680
|
+
------------------
|
1681
|
+
|
1682
|
+
Bug fixes:
|
1683
|
+
|
1684
|
+
|
1685
|
+
- Drop ``pkg_resources`` usage. [maurits] (#4126)
|
1686
|
+
|
1687
|
+
|
1669
1688
|
3.0.1 (2025-06-19)
|
1670
1689
|
------------------
|
1671
1690
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# https://github.com/plone/meta/tree/main/src/plone/meta/default
|
3
3
|
# See the inline comments on how to expand/tweak this configuration file
|
4
4
|
[build-system]
|
5
|
-
requires = ["setuptools>=68.2,<
|
5
|
+
requires = ["setuptools>=68.2,<80", "wheel"]
|
6
6
|
|
7
7
|
[tool.towncrier]
|
8
8
|
directory = "news/"
|
@@ -37,7 +37,7 @@ showcontent = true
|
|
37
37
|
|
38
38
|
[[tool.towncrier.type]]
|
39
39
|
directory = "tests"
|
40
|
-
name = "Tests"
|
40
|
+
name = "Tests:"
|
41
41
|
showcontent = true
|
42
42
|
|
43
43
|
##
|
@@ -1,26 +1,23 @@
|
|
1
|
+
from pathlib import Path
|
1
2
|
from setuptools import find_packages
|
2
3
|
from setuptools import setup
|
3
4
|
|
4
|
-
import os
|
5
5
|
|
6
|
+
version = "3.0.3"
|
6
7
|
|
7
|
-
|
8
|
-
filename = os.path.join(*path)
|
9
|
-
with open(filename) as myfile:
|
10
|
-
return myfile.read() + "\n"
|
11
|
-
|
12
|
-
|
13
|
-
version = "3.0.1"
|
8
|
+
tiles_path = Path("src") / "plone" / "tiles"
|
14
9
|
|
15
10
|
setup(
|
16
11
|
name="plone.tiles",
|
17
12
|
version=version,
|
18
13
|
description="APIs for managing tiles",
|
19
|
-
long_description=
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
14
|
+
long_description=(
|
15
|
+
f"{Path('README.rst').read_text()}\n"
|
16
|
+
f"{(tiles_path / 'tiles.rst').read_text()}\n"
|
17
|
+
f"{(tiles_path / 'directives.rst').read_text()}\n"
|
18
|
+
f"{(tiles_path / 'esi.rst').read_text()}\n"
|
19
|
+
f"{Path('CHANGES.rst').read_text()}\n"
|
20
|
+
),
|
24
21
|
classifiers=[
|
25
22
|
"Development Status :: 5 - Production/Stable",
|
26
23
|
"Environment :: Web Environment",
|
@@ -46,8 +43,9 @@ setup(
|
|
46
43
|
author_email="optilude@gmail.com",
|
47
44
|
url="https://github.com/plone/plone.tiles",
|
48
45
|
license="GPL version 2",
|
49
|
-
packages=find_packages(),
|
46
|
+
packages=find_packages("src"),
|
50
47
|
namespace_packages=["plone"],
|
48
|
+
package_dir={"": "src"},
|
51
49
|
include_package_data=True,
|
52
50
|
zip_safe=False,
|
53
51
|
python_requires=">=3.8",
|
@@ -1,3 +1,5 @@
|
|
1
|
+
from importlib.metadata import distribution
|
2
|
+
from importlib.metadata import PackageNotFoundError
|
1
3
|
from persistent.dict import PersistentDict
|
2
4
|
from plone.subrequest import ISubRequest
|
3
5
|
from plone.tiles.directives import IGNORE_QUERYSTRING_KEY
|
@@ -22,12 +24,11 @@ from zope.schema.interfaces import ISequence
|
|
22
24
|
|
23
25
|
import json
|
24
26
|
import logging
|
25
|
-
import pkg_resources
|
26
27
|
|
27
28
|
|
28
29
|
try:
|
29
|
-
|
30
|
-
except
|
30
|
+
distribution("plone.rfc822")
|
31
|
+
except PackageNotFoundError:
|
31
32
|
HAS_RFC822 = False
|
32
33
|
else:
|
33
34
|
from plone.rfc822.interfaces import IPrimaryField
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: plone.tiles
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.3
|
4
4
|
Summary: APIs for managing tiles
|
5
5
|
Home-page: https://github.com/plone/plone.tiles
|
6
6
|
Author: Martin Aspeli
|
@@ -51,6 +51,7 @@ Dynamic: description
|
|
51
51
|
Dynamic: home-page
|
52
52
|
Dynamic: keywords
|
53
53
|
Dynamic: license
|
54
|
+
Dynamic: license-file
|
54
55
|
Dynamic: provides-extra
|
55
56
|
Dynamic: requires-dist
|
56
57
|
Dynamic: requires-python
|
@@ -1666,6 +1667,24 @@ Changelog
|
|
1666
1667
|
|
1667
1668
|
.. towncrier release notes start
|
1668
1669
|
|
1670
|
+
3.0.3 (2025-09-11)
|
1671
|
+
------------------
|
1672
|
+
|
1673
|
+
Internal:
|
1674
|
+
|
1675
|
+
|
1676
|
+
- Move distribution to src layout [gforcada] (#4217)
|
1677
|
+
|
1678
|
+
|
1679
|
+
3.0.2 (2025-09-10)
|
1680
|
+
------------------
|
1681
|
+
|
1682
|
+
Bug fixes:
|
1683
|
+
|
1684
|
+
|
1685
|
+
- Drop ``pkg_resources`` usage. [maurits] (#4126)
|
1686
|
+
|
1687
|
+
|
1669
1688
|
3.0.1 (2025-06-19)
|
1670
1689
|
------------------
|
1671
1690
|
|
@@ -0,0 +1,37 @@
|
|
1
|
+
CHANGES.rst
|
2
|
+
CONTRIBUTING.rst
|
3
|
+
LICENSE.GPL
|
4
|
+
LICENSE.txt
|
5
|
+
MANIFEST.in
|
6
|
+
README.rst
|
7
|
+
pyproject.toml
|
8
|
+
setup.py
|
9
|
+
src/plone/__init__.py
|
10
|
+
src/plone.tiles.egg-info/PKG-INFO
|
11
|
+
src/plone.tiles.egg-info/SOURCES.txt
|
12
|
+
src/plone.tiles.egg-info/dependency_links.txt
|
13
|
+
src/plone.tiles.egg-info/namespace_packages.txt
|
14
|
+
src/plone.tiles.egg-info/not-zip-safe
|
15
|
+
src/plone.tiles.egg-info/requires.txt
|
16
|
+
src/plone.tiles.egg-info/top_level.txt
|
17
|
+
src/plone/tiles/__init__.py
|
18
|
+
src/plone/tiles/absoluteurl.py
|
19
|
+
src/plone/tiles/configure.zcml
|
20
|
+
src/plone/tiles/data.py
|
21
|
+
src/plone/tiles/data.rst
|
22
|
+
src/plone/tiles/directives.py
|
23
|
+
src/plone/tiles/directives.rst
|
24
|
+
src/plone/tiles/esi.py
|
25
|
+
src/plone/tiles/esi.rst
|
26
|
+
src/plone/tiles/fieldtypeconverters.py
|
27
|
+
src/plone/tiles/interfaces.py
|
28
|
+
src/plone/tiles/meta.py
|
29
|
+
src/plone/tiles/meta.zcml
|
30
|
+
src/plone/tiles/test.pt
|
31
|
+
src/plone/tiles/testing.py
|
32
|
+
src/plone/tiles/tile.py
|
33
|
+
src/plone/tiles/tiles.rst
|
34
|
+
src/plone/tiles/type.py
|
35
|
+
src/plone/tiles/tests/__init__.py
|
36
|
+
src/plone/tiles/tests/test_data.py
|
37
|
+
src/plone/tiles/tests/test_doctests.py
|
plone_tiles-3.0.1/MANIFEST.in
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
CHANGES.rst
|
2
|
-
CONTRIBUTING.rst
|
3
|
-
LICENSE.GPL
|
4
|
-
LICENSE.txt
|
5
|
-
MANIFEST.in
|
6
|
-
README.rst
|
7
|
-
pyproject.toml
|
8
|
-
setup.cfg
|
9
|
-
setup.py
|
10
|
-
plone/__init__.py
|
11
|
-
plone.tiles.egg-info/PKG-INFO
|
12
|
-
plone.tiles.egg-info/SOURCES.txt
|
13
|
-
plone.tiles.egg-info/dependency_links.txt
|
14
|
-
plone.tiles.egg-info/namespace_packages.txt
|
15
|
-
plone.tiles.egg-info/not-zip-safe
|
16
|
-
plone.tiles.egg-info/requires.txt
|
17
|
-
plone.tiles.egg-info/top_level.txt
|
18
|
-
plone/tiles/__init__.py
|
19
|
-
plone/tiles/absoluteurl.py
|
20
|
-
plone/tiles/configure.zcml
|
21
|
-
plone/tiles/data.py
|
22
|
-
plone/tiles/data.rst
|
23
|
-
plone/tiles/directives.py
|
24
|
-
plone/tiles/directives.rst
|
25
|
-
plone/tiles/esi.py
|
26
|
-
plone/tiles/esi.rst
|
27
|
-
plone/tiles/fieldtypeconverters.py
|
28
|
-
plone/tiles/interfaces.py
|
29
|
-
plone/tiles/meta.py
|
30
|
-
plone/tiles/meta.zcml
|
31
|
-
plone/tiles/test.pt
|
32
|
-
plone/tiles/testing.py
|
33
|
-
plone/tiles/tile.py
|
34
|
-
plone/tiles/tiles.rst
|
35
|
-
plone/tiles/type.py
|
36
|
-
plone/tiles/tests/__init__.py
|
37
|
-
plone/tiles/tests/test_data.py
|
38
|
-
plone/tiles/tests/test_doctests.py
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|