Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
slapos
Commits
a7e370de
Commit
a7e370de
authored
Oct 12, 2022
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stack/erp5: version up Zope stack ( 4.8.2 + upcoming patches from 4.x )
parent
44f611ce
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
194 additions
and
250 deletions
+194
-250
component/egg-patch/Zope/0001-fix-OFS.Image.File.PUT-Issue-1015.patch
...g-patch/Zope/0001-fix-OFS.Image.File.PUT-Issue-1015.patch
+0
-98
software/erp5/test/test/test_erp5.py
software/erp5/test/test/test_erp5.py
+1
-4
stack/erp5/buildout.cfg
stack/erp5/buildout.cfg
+18
-19
stack/erp5/zope-versions.cfg
stack/erp5/zope-versions.cfg
+93
-59
stack/erp5/ztk-versions.cfg
stack/erp5/ztk-versions.cfg
+80
-69
stack/slapos.cfg
stack/slapos.cfg
+2
-1
No files found.
component/egg-patch/Zope/0001-fix-OFS.Image.File.PUT-Issue-1015.patch
deleted
100644 → 0
View file @
44f611ce
From d3885eadb919abfcc86a82431deb9b9916127602 Mon Sep 17 00:00:00 2001
From: dieter <dieter@handshake.de>
Date: Wed, 2 Mar 2022 08:31:58 +0100
Subject: [PATCH] fix `OFS.Image.File.PUT` -- Issue 1015
work around `cgi` bug
make `flake8` happy
---
src/OFS/Image.py | 47 ++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 44 insertions(+), 3 deletions(-)
diff --git a/src/OFS/Image.py b/src/OFS/Image.py
index c7b012a5e..fde006deb 100644
--- a/src/OFS/Image.py
+++ b/src/OFS/Image.py
@@ -16,6 +16,8 @@
import struct
from email.generator import _make_boundary
from io import BytesIO
+from io import TextIOBase
+from tempfile import TemporaryFile
from warnings import warn
from six import PY2
@@ -568,6 +570,16 @@
class File(
self, REQUEST, manage_tabs_message=msg)
def _get_content_type(self, file, body, id, content_type=None):
+ """return content type or ``None``.
+
+ *file* usually is a ``FileUpload`` (like) instance; if this
+ specifies a content type, it is used. If *file*
+ is not ``FileUpload`` like, it is ignored and the
+ content type is guessed from the other parameters.
+
+ *body* is either a ``bytes`` or a ``Pdata`` instance
+ and assumed to be the *file* data.
+ """
headers = getattr(file, 'headers', None)
if headers and 'content-type' in headers:
content_type = headers['content-type']
@@ -579,6 +591,13 @@
class File(
return content_type
def _read_data(self, file):
+ """return the data and size of *file* as tuple *data*, *size*.
+
+ *file* can be a ``bytes``, ``Pdata``, ``FileUpload`` or
+ (binary) file like instance.
+
+ For large files, *data* is a ``Pdata``, otherwise a ``bytes`` instance.
+ """
import transaction
n = 1 << 16
@@ -656,13 +675,35 @@
class File(
"""Handle HTTP PUT requests"""
self.dav__init(REQUEST, RESPONSE)
self.dav__simpleifhandler(REQUEST, RESPONSE, refresh=1)
- type = REQUEST.get_header('content-type', None)
+ type = REQUEST.get_header('content-type', None)
file = REQUEST['BODYFILE']
+ # Work around ``cgi`` bug
+ # ``cgi`` can turn the request body into a text file using
+ # the default encoding. ``File``, however, insists to work
+ # with bytes and binary files and forbids text.
+ # Convert back.
+ tfile = None
+ if isinstance(file, TextIOBase): # ``cgi`` bug
+ if hasattr(file, "buffer"):
+ file = file.buffer # underlying binary buffer
+ else:
+ from ZPublisher.HTTPRequest import default_encoding
+ tfile = TemporaryFile("wb+")
+ bufsize = 1 << 16
+ while True:
+ data = file.read(bufsize)
+ if not data:
+ break
+ tfile.write(data.encode(default_encoding))
+ file.seek(0, 0)
+ tfile.seek(0, 0)
+ file = tfile
+
data, size = self._read_data(file)
- if isinstance(data, str):
- data = data.encode('UTF-8')
+ if tfile is not None:
+ tfile.close()
content_type = self._get_content_type(file, data, self.__name__,
type or self.content_type)
self.update_data(data, content_type, size)
--
2.35.1
software/erp5/test/test/test_erp5.py
View file @
a7e370de
...
...
@@ -835,10 +835,7 @@ class ZopeTestMixin(ZopeSkinsMixin, CrontabMixin):
class
TestZopeWSGI
(
ZopeTestMixin
,
ERP5InstanceTestCase
):
@
unittest
.
expectedFailure
def
test_basic_authentication_user_in_access_log
(
self
):
super
().
test_basic_authentication_user_in_access_log
()
pass
class
TestZopePublisherTimeout
(
ZopeSkinsMixin
,
ERP5InstanceTestCase
):
...
...
stack/erp5/buildout.cfg
View file @
a7e370de
[buildout]
extends =
# Exact version of Zope
# versions pins from zope, vendored with
# curl https://zopefoundation.github.io/Zope/releases/4.8.2/versions.cfg | sed -e s/versions-prod.cfg/zope-versions.cfg/g > ztk-versions.cfg
# curl https://zopefoundation.github.io/Zope/releases/4.8.2/versions-prod.cfg > zope-versions.cfg
ztk-versions.cfg
zope-versions.cfg
buildout.hash.cfg
...
...
@@ -546,7 +548,6 @@ eggs = ${neoppod:eggs}
${Products.CMFCore:egg}
${Products.DCWorkflow:egg}
${Products.GenericSetup:egg}
five.localsitemanager
# Other products
Products.MimetypesRegistry
...
...
@@ -632,7 +633,9 @@ python-magic-patches = ${:_profile_base_location_}/../../component/egg-patch/pyt
python-magic-patch-options = -p1
# Zope 4 patches
Zope-patches =
${:_profile_base_location_}/../../component/egg-patch/Zope/0001-fix-OFS.Image.File.PUT-Issue-1015.patch#c706e2f572ad8cd37ed033fb5f873cbe
https://github.com/zopefoundation/Zope/commit/ce59c3266cdd19fdb8a7456fd55b3385d50a4ab0.patch#33be66d71933c5d35b5c238e44cef160
https://github.com/zopefoundation/Zope/commit/337bc76e0695f09fca97527514bcf29c104e33b8.patch#d6d55cf47754dcdf8022adcf11d3f1f6
https://github.com/zopefoundation/Zope/commit/68f0c122cf938c3e6184185cd8519e26ff7d0b14.patch#5a2c9c31caaaba75677507ddb3a0becc
Zope-patch-options = -p1
[eggs-all-scripts]
...
...
@@ -679,16 +682,12 @@ pysvn = 1.9.15+SlapOSPatched001
python-ldap = 2.4.32+SlapOSPatched001
python-magic = 0.4.12+SlapOSPatched001
PyPDF2 = 1.26.0+SlapOSPatched001
Zope = 4.
5.3+SlapOSPatched001
Zope = 4.
8.2+SlapOSPatched003
## https://lab.nexedi.com/nexedi/slapos/merge_requests/648
pylint = 1.4.4+SlapOSPatched002
# astroid 1.4.1 breaks testDynamicClassGeneration
astroid = 1.3.8+SlapOSPatched001
# use newer version than specified in ZTK
PasteDeploy = 1.5.2
argparse = 1.4.0
zope.dottedname = 4.1.0
# modified version that works fine for buildout installation
SOAPpy = 0.12.0nxd001
...
...
@@ -722,7 +721,6 @@ StructuredText = 2.11.1
WSGIUtils = 0.7
erp5diff = 0.8.1.8
five.formlib = 1.0.4
five.localsitemanager = 2.0.5
google-api-python-client = 1.6.1
httplib2 = 0.10.3
huBarcode = 1.0.0
...
...
@@ -806,23 +804,24 @@ jsonpointer = 2.2
# WIP Zope 4 ⚠
zope.interface = 5.2.0
ZConfig = 3.5.0
Products.CMFCore = 2.5.4
Products.CMFCore = 2.6.0
Products.StandardCacheManagers = 4.1.0
Products.ExternalMethod = 4.5
Products.GenericSetup = 2.1.5
Products.PythonScripts = 4.13
Products.MailHost = 4.11
Products.Sessions = 4.1
2
Products.SiteErrorLog = 5.
5
Products.Sessions = 4.1
4
Products.SiteErrorLog = 5.
6
Products.ZSQLMethods = 3.14
Products.ZODBMountPoint = 1.2
html5lib = 1.1
mechanize = 0.4.7
zLOG = 3.1
zope.password = 4.
3.1
zope.error = 4.
5.0
zope.password = 4.
4
zope.error = 4.
6
zope.authentication = 4.5.0
zope.session = 4.4.0
zope.minmax = 2.2.0
zope.session = 4.5
zope.minmax = 2.3
# XXX do we need ?
mechanize = 0.4.8
webencodings = 0.5.1
stack/erp5/zope-versions.cfg
View file @
a7e370de
[buildout]
# Version pins for required and commonly used dependencies.
[versions]
#Zope = 4.5.3
Zope = 4.8.2
Zope2 = 4.0
# AccessControl 5+ no longer supports Zope 4.
AccessControl = 4.2
Acquisition = 4.7
AuthEncoding = 4.2
BTrees = 4.7.2
Chameleon = 3.8.1
DateTime = 4.3
# DocumentTemplate 4+ no longer supports Zope 4.
DocumentTemplate = 3.4
ExtensionClass = 4.5.0
AccessControl = 4.3
Acquisition = 4.10
AuthEncoding = 4.3
BTrees = 4.10.0
Chameleon = 3.9.1
DateTime = 4.4
DocumentTemplate = 4
ExtensionClass = 4.6
Missing = 4.1
MultiMapping = 4.1
Paste = 3.5.0
PasteDeploy = 2.1.1
Persistence = 3.
0
Products.BTreeFolder2 = 4.
2
Persistence = 3.
3
Products.BTreeFolder2 = 4.
3
# ZCatalog 6+ no longer supports Zope 4.
Products.ZCatalog = 5.
2
Products.ZCatalog = 5.
4
Record = 3.5
RestrictedPython = 5.1
WSGIProxy2 = 0.4.6
WebOb = 1.8.6
WebTest = 2.0.35
ZConfig = 3.5.0
ZEO = 5.2.2
ZODB = 5.6.0
ZServer = 4.0.2
RestrictedPython = 5.2
WSGIProxy2 = 0.5.1
WebOb = 1.8.7
WebTest = 3.0.0
ZConfig = 3.6.0
ZEO = 5.3.0
ZODB = 5.7.0
five.globalrequest = 99.1
five.localsitemanager = 3.2.2
funcsigs = 1.0.2
future = 0.18.2
ipaddress = 1.0.23
# mock 4.0 and up requires Python
3
m
ock = 3.0.5
pbr = 5.
5
.1
persistent = 4.
6.4
pytz = 202
0.4
mock = 4.0.
3
m
ultipart = 0.2.4
pbr = 5.
8
.1
persistent = 4.
9.0
pytz = 202
2.1
roman = 3.3
shutilwhich = 1.1.0
six = 1.1
5
.0
transaction = 3.0.
0
waitress =
1.4.4
z3c.pt = 3.3.
0
zExceptions = 4.
1
six = 1.1
6
.0
transaction = 3.0.
1
waitress =
2.1.2
z3c.pt = 3.3.
1
zExceptions = 4.
2
zc.lockfile = 2.0
zdaemon = 4.3
zodbpickle = 2.
0
.0
zodbpickle = 2.
2
.0
zope.annotation = 4.7.0
zope.browser = 2.3
zope.browsermenu = 4.4
zope.browserpage = 4.4.0
zope.browserresource = 4.4
zope.cachedescriptors = 4.3.1
zope.component =
4.6.2
zope.componentvocabulary = 2.
2
.0
zope.component =
5.0.1
zope.componentvocabulary = 2.
3
.0
zope.configuration = 4.4.0
zope.container = 4.
4
.0
zope.container = 4.
5
.0
zope.contentprovider = 4.2.1
zope.contenttype = 4.5.0
zope.datetime = 4.
2
.0
zope.deferredimport = 4.
3.1
zope.datetime = 4.
3
.0
zope.deferredimport = 4.
4
zope.deprecation = 4.4.0
zope.dottedname = 4.3
zope.event = 4.5.0
zope.exceptions = 4.
4
zope.exceptions = 4.
5
zope.filerepresentation = 5.0.0
zope.formlib =
4.7
.1
zope.formlib =
5.0
.1
zope.globalrequest = 1.5
zope.hookable = 5.
0.1
zope.i18n = 4.
7
.0
zope.hookable = 5.
1.0
zope.i18n = 4.
9
.0
zope.i18nmessageid = 5.0.1
zope.interface = 5.
2
.0
zope.interface = 5.
4
.0
zope.lifecycleevent = 4.3.0
zope.location = 4.2
zope.pagetemplate = 4.
5
.0
zope.pagetemplate = 4.
6
.0
zope.processlifetime = 2.3.0
zope.proxy = 4.
3.5
zope.ptresource = 4.
2
.0
zope.publisher =
5.2.1
zope.ramcache = 2.
3
zope.schema = 6.
0
.0
zope.security = 5.
1.1
zope.sendmail = 5.
1
zope.sequencesort = 4.
1.
2
zope.site = 4.
4
.0
zope.proxy = 4.
5.0
zope.ptresource = 4.
3
.0
zope.publisher =
6.1.0
zope.ramcache = 2.
4
zope.schema = 6.
2
.0
zope.security = 5.
2
zope.sendmail = 5.
2
zope.sequencesort = 4.2
zope.site = 4.
5
.0
zope.size = 4.3
zope.structuredtext = 4.
3
zope.tal = 4.
4
zope.structuredtext = 4.
4
zope.tal = 4.
5
zope.tales = 5.1
zope.testbrowser = 5.5.1
# Version 4.8+ dropped support for Python 3.5
zope.testing = 4.7
zope.testrunner = 5.2
zope.testbrowser = 5.6.1
zope.testing = 4.10
zope.testrunner = 5.4.0
zope.traversing = 4.4.1
zope.viewlet = 4.2.1
zope.viewlet = 4.3
[versions:python27]
# DocumentTemplate 4+ requires Python 3.5 or higher
DocumentTemplate = 3.4
# WSGIProxy 0.5 and up requires Python 3.7 and up
WSGIProxy2 = 0.4.6
# WebTest 3.0 and up requires Python 3.6 and up
WebTest = 2.0.35
# ZServer is only available for Python 2
ZServer = 4.0.2
# mock 4.0 and up requires Python 3.6 or higher
mock = 3.0.5
# multipart 0.2 and up requires Python 3
multipart = 0.1.1
# waitress 2 requires Python 3.6 or higher
waitress = 1.4.4
[versions:python35]
# DocumentTemplate 4+ cannot be installed on Zope 4 for Python 3.5
DocumentTemplate = 3.4
# WSGIProxy 0.5 and up requires Python 3.7 and up
WSGIProxy2 = 0.4.6
# WebTest 3.0 and up requires Python 3.6 and up
WebTest = 2.0.35
# mock 4.0 and up requires Python 3.6 or higher
mock = 3.0.5
# waitress 2 requires Python 3.6 or higher
waitress = 1.4.4
[versions:python36]
# WSGIProxy 0.5 and up requires Python 3.7 and up
WSGIProxy2 = 0.4.6
# waitress 2.1 requires Python 3.7 or higher
waitress = 2.0.0
stack/erp5/ztk-versions.cfg
View file @
a7e370de
...
...
@@ -5,84 +5,95 @@ versions = versions
[versions]
# Version pins for development and optional dependencies.
Babel = 2.8.1
Jinja2 = 2.11.2
Babel = 2.9.1
Jinja2 = 3.1.1
MarkupSafe = 2.1.1
Pygments = 2.11.2
Sphinx = 4.5.0
alabaster = 0.7.12
backports.functools-lru-cache = 1.6.4
beautifulsoup4 = 4.11.1
certifi = 2021.10.8
cffi = 1.15.0
chardet = 4.0.0
charset-normalizer = 2.0.4
collective.recipe.template = 2.2
# sphinx-rtd-theme requires docutils <18
docutils = 0.17.1
idna = 3.3
imagesize = 1.3.0
mr.developer = 2.0.1
packaging = 21.3
plone.recipe.command = 1.1
pyparsing = 3.0.8
pycparser = 2.21
python-gettext = 4.0
requests = 2.27.1
singledispatch = 3.7.0
snowballstemmer = 2.2.0
soupsieve = 2.3.2
sphinx-rtd-theme = 1.0.0
sphinxcontrib-applehelp = 1.0.2
sphinxcontrib-devhelp = 1.0.2
sphinxcontrib-htmlhelp = 2.0.0
sphinxcontrib-jsmath = 1.0.1
sphinxcontrib-qthelp = 1.0.3
sphinxcontrib-serializinghtml = 1.1.5
sphinxcontrib-websupport = 1.2.4
# tempstorage is only needed because the Sphinx documentation parses
# ZConfig xml configurations, which still contain references to it
tempstorage = 5.2
typing = 3.10.0.0
urllib3 = 1.26.9
z3c.checkversions = 1.2
zc.recipe.egg = 2.0.7
zc.recipe.testrunner = 2.2
zodbupdate = 1.5
[versions:python27]
# Jinja2 3 and up needs Python 3.6 or higher
Jinja2 = 2.11.3
# MarkupSafe 2+ needs Python 3.6 or higher
MarkupSafe = 1.1.1
# Pygments 2.6.0 and up require Python 3
Pygments = 2.5.2
# Version 2.0+ needs Python 3.x
Sphinx = 1.8.5
alabaster = 0.7.12
appdirs = 1.4.4
attrs = 20.3.0
backports.functools-lru-cache = 1.6.1
# beautifulsoup4 4.10 and up requires Python 3
beautifulsoup4 = 4.9.3
bleach = 3.2.1
buildout.wheel = 0.2.0
# Version 2020.4.5.2 and up claim no Python 2 support
certifi = 2020.4.5.1
cffi = 1.14.3
chardet = 3.0.4
cmarkgfm = 0.4.2
collective.recipe.cmd = 0.11
collective.recipe.sphinxbuilder = 1.1
collective.recipe.template = 2.1
colorama = 0.4.4
# configparser 5 and up require Python 3
configparser = 4.0.2
contextlib2 = 0.6.0.post1
coverage = 5.3
distlib = 0.3.1
docutils = 0.16
filelock = 3.0.12
# idna 3 and up require Python 3
idna = 2.10
imagesize = 1.2.0
# tox and pluggy require importlib-metadata <1
importlib-metadata = 0.23
lxml = 4.6.1
manuel = 1.10.1
# Version 6+ needs Python 3.x
more-itertools = 5.0.0
mr.developer = 2.0.1
nose = 1.3.7
packaging = 20.4
pathlib2 = 2.3.5
pip = 20.2.4
pkginfo = 1.6.1
plone.recipe.command = 1.1
pluggy = 0.13.1
py = 1.9.0
pycparser = 2.20
# packaging 21 and up requires Python 3.6
packaging = 20.9
# pip 21 and up require Python 3
pip = 20.3.4
# pyparsing 3 and up require Python 3.6
pyparsing = 2.4.7
python-gettext = 4.0
readme-renderer = 28.0
repoze.sphinx.autointerface = 0.8
requests = 2.25.0
requests-toolbelt = 0.9.1
scandir = 1.10.0
snowballstemmer = 2.0.0
# soupsieve 2 needs Python 3
soupsieve = 1.9.6
sphinx-rtd-theme = 0.5.0
sphinxcontrib-serializinghtml = 1.1.4
sphinxcontrib-websupport = 1.2.4
# tempstorage is only needed because the Sphinx documentation parses
# ZConfig xml configurations, which still contain references to it
tempstorage = 5.1
toml = 0.10.2
tox = 3.20.1
tqdm = 4.51.0
# Version 2+ needs Python 3.x
twine = 1.15.0
typing = 3.7.4.3
urllib3 = 1.26.1
virtualenv = 20.1.0
webencodings = 0.5.1
wheel = 0.35.1
z3c.checkversions = 1.2
zc.recipe.egg = 2.0.7
zc.recipe.testrunner = 2.1
zest.releaser = 6.22.1
# Version 2 requires Python 3
zipp = 1.1.1
zodbupdate = 1.5
[versions:python35]
# Jinja2 3 and up needs Python 3.6 or higher
Jinja2 = 2.11.3
# MarkupSafe 2+ needs Python 3.6 or higher
MarkupSafe = 1.1.1
# Version 4 needs Python 3.6 or higher
Sphinx = 3.5.4
# beautifulsoup4 4.11 and up requires Python 3.6
beautifulsoup4 = 4.10.0
# cffi 1.15 dropped support for Python 3.5
cffi = 1.14.6
# packaging 21 and up requires Python 3.6
packaging = 20.9
# pyparsing 3 and up require Python 3.6
pyparsing = 2.4.7
# soupsieve 2.2 needs Python 3.6
soupsieve = 2.1
[versions:python36]
# Jinja2 3.1 and up needs Python 3.7 or higher
Jinja2 = 3.0.3
# MarkupSafe 2.1 needs Python 3.7 or higher
MarkupSafe = 2.0.1
stack/slapos.cfg
View file @
a7e370de
...
...
@@ -142,7 +142,8 @@ Importing = 1.10
MarkupSafe = 2.0.1
PyYAML = 5.4.1
Werkzeug = 2.0.2
ZConfig = 2.9.3
# XXX Zope4 this ZConfig version seems misplaced (how about having it in ZODB ?)
ZConfig = 3.6.0
asn1crypto = 1.3.0
atomicwrites = 1.4.0
backports.functools-lru-cache = 1.6.1:whl
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment