Wesley Barroso Lopes
Wesley Barroso Lopes
@stevepiercy Even though the username is not visually present in the form, when we try to save it, the username is send in the request made to the backend, causing...
> i am not getting any error when I am trying to save the form but we we are trying to save the form the api sends the username as...
I tried to do a checkout test of the Portal in this class: https://github.com/plone/plone.restapi/blob/f209cf5efa8cc3cf10a3fc50e15d72c8e182364e/src/plone/restapi/tests/test_services_workingcopy.py#L12 The test is as follows: ```python def test_workingcopy_checkout_checkin_portal(self): # We create the working copy response =...
> The oid `0x2a33e463be38bb08` is huge for such a setup. @d-maurer the functionality I'm implementing clones the portal with pickle. See: https://github.com/plone/Products.CMFEditions/blob/c80bc31af46bff45fee2908878b1f01190fda8d8/Products/CMFEditions/ArchivistTool.py#L210-L229 Usually the Portal is a large object. Could...
@d-maurer there is already a treatment to prevent child objects of the Portal from being placed in the clone: https://github.com/plone/Products.CMFEditions/blob/13fe34186f7294113f5c14bac6e8f78170868569/Products/CMFEditions/StandardModifiers.py#L322-L347 The child objects are replaced by an object of the...
> I suggest you replace line 135 of ZODB.DemoStorage (self._next_oid = random.randint(1, 1
@d-maurer I debugged a bit and found out that this error occurs when we have a savepoint and a Plone Site object is involved. It occurs when the code enters...
> I suggest you try the following: in `Products.CMFPlone.Portal.__setattr__` you replace > if self._tree is not None and name in self: >by > if not name.startswith("_p_") and self._tree is not...
@davisagli for the test to work, we first need a Plone release with: https://github.com/plone/Products.CMFPlone/pull/4026 I need to backport this to Plone 6.0.
@davisagli Should the github actions tests pass even if we don't have the package versions with the other PRs? Should we expect a new Plone version with the other PRs?