-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate requirements.txt
for use with pip
#27
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…lling plone via `pip`
davisagli
added a commit
that referenced
this pull request
Oct 15, 2012
Generate `requirements.txt` for use with `pip`
tisto
added a commit
that referenced
this pull request
Dec 12, 2014
Branch: refs/heads/master Date: 2014-11-15T14:41:51+01:00 Author: Kees Hink (khink) <[email protected]> Commit: plone/plone.app.users@2a1f19d Use email_from_address from registry (Plone 5) in tests. Files changed: M CHANGES.rst M plone/app/users/tests/base.py M setup.py diff --git a/CHANGES.rst b/CHANGES.rst index 495ba04..70bc016 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,11 @@ CHANGES ======= -2.1.1 (unreleased) ------------------- +2.2 (unreleased) +---------------- -- Nothing changed yet. +- Use email_from_address from registry (Plone 5) in tests. + [khink] 2.1.0 (2014-10-23) diff --git a/plone/app/users/tests/base.py b/plone/app/users/tests/base.py index e7b7271..e26b284 100644 --- a/plone/app/users/tests/base.py +++ b/plone/app/users/tests/base.py @@ -8,6 +8,7 @@ from AccessControl.SecurityInfo import ClassSecurityInfo from Acquisition import aq_base from Products.CMFCore.interfaces import ISiteRoot +from Products.CMFPlone.interfaces.controlpanel import IMailSchema from Products.CMFPlone.tests.utils import MockMailHost from Products.MailHost.interfaces import IMailHost from Products.PlonePAS.Extensions.Install import activatePluginInterfaces @@ -16,6 +17,7 @@ from Products.PluggableAuthService.plugins.BasePlugin import BasePlugin from Products.PluggableAuthService.utils import classImplements from OFS.Cache import Cacheable +from plone.registry.interfaces import IRegistry from zope.component import getSiteManager from zope.component import getUtility @@ -82,12 +84,16 @@ def beforeTearDown(self): pas_instance.manage_delObjects('test') def setMailHost(self): - self.portal.MailHost.smtp_host = 'localhost' - setattr(self.portal, 'email_from_address', '[email protected]') + registry = getUtility(IRegistry) + mail_settings = registry.forInterface(IMailSchema, prefix='plone') + mail_settings.smtp_host = u'localhost' + mail_settings.email_from_address = '[email protected]' def unsetMailHost(self): - self.portal.MailHost.smtp_host = '' - setattr(self.portal, 'email_from_address', '') + registry = getUtility(IRegistry) + mail_settings = registry.forInterface(IMailSchema, prefix='plone') + mail_settings.smtp_host = u'' + mail_settings.email_from_address = '' def test_nothing(self): """Add a dummy test here, so the base class 'passes'.""" diff --git a/setup.py b/setup.py index 217564a..554bc04 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages from setuptools import setup -version = '2.1.1.dev0' +version = '2.2.dev0' long_description = '{0}\n{1}'.format(open('README.rst').read(), open('CHANGES.rst').read()) Repository: plone.app.users Branch: refs/heads/master Date: 2014-12-12T13:55:03+01:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.app.users@3aa016c Merge pull request #27 from plone/plip10359-mail-controlpanel Use email_from_address from registry (Plone 5) in tests. Files changed: M CHANGES.rst M plone/app/users/tests/base.py M setup.py diff --git a/CHANGES.rst b/CHANGES.rst index 495ba04..70bc016 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,11 @@ CHANGES ======= -2.1.1 (unreleased) ------------------- +2.2 (unreleased) +---------------- -- Nothing changed yet. +- Use email_from_address from registry (Plone 5) in tests. + [khink] 2.1.0 (2014-10-23) diff --git a/plone/app/users/tests/base.py b/plone/app/users/tests/base.py index e7b7271..e26b284 100644 --- a/plone/app/users/tests/base.py +++ b/plone/app/users/tests/base.py @@ -8,6 +8,7 @@ from AccessControl.SecurityInfo import ClassSecurityInfo from Acquisition import aq_base from Products.CMFCore.interfaces import ISiteRoot +from Products.CMFPlone.interfaces.controlpanel import IMailSchema from Products.CMFPlone.tests.utils import MockMailHost from Products.MailHost.interfaces import IMailHost from Products.PlonePAS.Extensions.Install import activatePluginInterfaces @@ -16,6 +17,7 @@ from Products.PluggableAuthService.plugins.BasePlugin import BasePlugin from Products.PluggableAuthService.utils import classImplements from OFS.Cache import Cacheable +from plone.registry.interfaces import IRegistry from zope.component import getSiteManager from zope.component import getUtility @@ -82,12 +84,16 @@ def beforeTearDown(self): pas_instance.manage_delObjects('test') def setMailHost(self): - self.portal.MailHost.smtp_host = 'localhost' - setattr(self.portal, 'email_from_address', '[email protected]') + registry = getUtility(IRegistry) + mail_settings = registry.forInterface(IMailSchema, prefix='plone') + mail_settings.smtp_host = u'localhost' + mail_settings.email_from_address = '[email protected]' def unsetMailHost(self): - self.portal.MailHost.smtp_host = '' - setattr(self.portal, 'email_from_address', '') + registry = getUtility(IRegistry) + mail_settings = registry.forInterface(IMailSchema, prefix='plone') + mail_settings.smtp_host = u'' + mail_settings.email_from_address = '' def test_nothing(self): """Add a dummy test here, so the base class 'passes'.""" diff --git a/setup.py b/setup.py index 217564a..554bc04 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages from setuptools import setup -version = '2.1.1.dev0' +version = '2.2.dev0' long_description = '{0}\n{1}'.format(open('README.rst').read(), open('CHANGES.rst').read())
gforcada
added a commit
that referenced
this pull request
Feb 27, 2015
Branch: refs/heads/master Date: 2015-02-27T18:10:28+01:00 Author: Jure Cerjak (jcerjak) <[email protected]> Commit: plone/plone.app.upgrade@c19fdbc don't do bare excepts Files changed: M plone/app/upgrade/v30/tests.py diff --git a/plone/app/upgrade/v30/tests.py b/plone/app/upgrade/v30/tests.py index 1bf4207..2a3a2cf 100644 --- a/plone/app/upgrade/v30/tests.py +++ b/plone/app/upgrade/v30/tests.py @@ -13,6 +13,7 @@ from plone.portlets.interfaces import ILocalPortletAssignmentManager from plone.portlets.constants import CONTEXT_CATEGORY as CONTEXT_PORTLETS +from zExceptions import BadRequest from zope.location.interfaces import ISite from zope.component import getGlobalSiteManager from zope.component import getSiteManager @@ -668,12 +669,12 @@ def testUpdateMemberSecurity(self): pprop = getToolByName(self.portal, 'portal_properties') try: self.portal.manage_addProperty('validate_email', False, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass try: pprop.site_properties.manage_addProperty( 'allowAnonymousViewAbout', True, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass updateMemberSecurity(self.portal) Repository: plone.app.upgrade Branch: refs/heads/master Date: 2015-02-27T22:19:32+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.app.upgrade@b759071 Merge pull request #27 from plone/plip10359-security-controlpanel don't do bare excepts Files changed: M plone/app/upgrade/v30/tests.py diff --git a/plone/app/upgrade/v30/tests.py b/plone/app/upgrade/v30/tests.py index 1bf4207..2a3a2cf 100644 --- a/plone/app/upgrade/v30/tests.py +++ b/plone/app/upgrade/v30/tests.py @@ -13,6 +13,7 @@ from plone.portlets.interfaces import ILocalPortletAssignmentManager from plone.portlets.constants import CONTEXT_CATEGORY as CONTEXT_PORTLETS +from zExceptions import BadRequest from zope.location.interfaces import ISite from zope.component import getGlobalSiteManager from zope.component import getSiteManager @@ -668,12 +669,12 @@ def testUpdateMemberSecurity(self): pprop = getToolByName(self.portal, 'portal_properties') try: self.portal.manage_addProperty('validate_email', False, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass try: pprop.site_properties.manage_addProperty( 'allowAnonymousViewAbout', True, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass updateMemberSecurity(self.portal)
gforcada
added a commit
that referenced
this pull request
Feb 27, 2015
Branch: refs/heads/master Date: 2015-02-27T18:10:28+01:00 Author: Jure Cerjak (jcerjak) <[email protected]> Commit: plone/plone.app.upgrade@c19fdbc don't do bare excepts Files changed: M plone/app/upgrade/v30/tests.py diff --git a/plone/app/upgrade/v30/tests.py b/plone/app/upgrade/v30/tests.py index 1bf4207..2a3a2cf 100644 --- a/plone/app/upgrade/v30/tests.py +++ b/plone/app/upgrade/v30/tests.py @@ -13,6 +13,7 @@ from plone.portlets.interfaces import ILocalPortletAssignmentManager from plone.portlets.constants import CONTEXT_CATEGORY as CONTEXT_PORTLETS +from zExceptions import BadRequest from zope.location.interfaces import ISite from zope.component import getGlobalSiteManager from zope.component import getSiteManager @@ -668,12 +669,12 @@ def testUpdateMemberSecurity(self): pprop = getToolByName(self.portal, 'portal_properties') try: self.portal.manage_addProperty('validate_email', False, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass try: pprop.site_properties.manage_addProperty( 'allowAnonymousViewAbout', True, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass updateMemberSecurity(self.portal) Repository: plone.app.upgrade Branch: refs/heads/master Date: 2015-02-27T22:19:32+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.app.upgrade@b759071 Merge pull request #27 from plone/plip10359-security-controlpanel don't do bare excepts Files changed: M plone/app/upgrade/v30/tests.py diff --git a/plone/app/upgrade/v30/tests.py b/plone/app/upgrade/v30/tests.py index 1bf4207..2a3a2cf 100644 --- a/plone/app/upgrade/v30/tests.py +++ b/plone/app/upgrade/v30/tests.py @@ -13,6 +13,7 @@ from plone.portlets.interfaces import ILocalPortletAssignmentManager from plone.portlets.constants import CONTEXT_CATEGORY as CONTEXT_PORTLETS +from zExceptions import BadRequest from zope.location.interfaces import ISite from zope.component import getGlobalSiteManager from zope.component import getSiteManager @@ -668,12 +669,12 @@ def testUpdateMemberSecurity(self): pprop = getToolByName(self.portal, 'portal_properties') try: self.portal.manage_addProperty('validate_email', False, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass try: pprop.site_properties.manage_addProperty( 'allowAnonymousViewAbout', True, 'boolean') - except: # property is already there + except BadRequest: # property is already there pass updateMemberSecurity(self.portal)
gforcada
added a commit
that referenced
this pull request
Mar 18, 2015
Branch: refs/heads/master Date: 2015-03-18T20:06:37+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.app.content@bee0e17 Revert "Revert "Merge pull request #26 from plone/jensens-cleanup"" This reverts commit 054107b565b5cf38c3f7d9aaf901fe495f61c942. Files changed: M CHANGES.rst M plone/__init__.py M plone/app/__init__.py M plone/app/content/__init__.py M plone/app/content/browser/__init__.py M plone/app/content/browser/actions.py M plone/app/content/browser/adding.py M plone/app/content/browser/constraintypes.py M plone/app/content/browser/content_status_history.py M plone/app/content/browser/file.py M plone/app/content/browser/folder.py M plone/app/content/browser/folderfactories.py M plone/app/content/browser/i18n.py M plone/app/content/browser/interfaces.py M plone/app/content/browser/query.py M plone/app/content/browser/reviewlist.py M plone/app/content/browser/selection.py M plone/app/content/browser/tableview.py M plone/app/content/browser/vocabulary.py M plone/app/content/catalog.py M plone/app/content/container.py M plone/app/content/interfaces.py M plone/app/content/item.py M plone/app/content/namechooser.py M plone/app/content/tests/test_adding.py M plone/app/content/tests/test_basecontent.py M plone/app/content/tests/test_folder.py M plone/app/content/tests/test_namechooser.py M plone/app/content/tests/test_namechooser_unit.py M plone/app/content/tests/test_reviewlist.py M plone/app/content/tests/test_table.py M plone/app/content/utils.py M setup.py Repository: plone.app.content Branch: refs/heads/master Date: 2015-03-18T22:15:19+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.app.content@d8e2203 Merge pull request #27 from plone/jensens-cleanup-2 Merge pull request #27 from plone/jensens-cleanup-2"" Files changed: M CHANGES.rst M plone/__init__.py M plone/app/__init__.py M plone/app/content/__init__.py M plone/app/content/browser/__init__.py M plone/app/content/browser/actions.py M plone/app/content/browser/adding.py M plone/app/content/browser/constraintypes.py M plone/app/content/browser/content_status_history.py M plone/app/content/browser/file.py M plone/app/content/browser/folder.py M plone/app/content/browser/folderfactories.py M plone/app/content/browser/i18n.py M plone/app/content/browser/interfaces.py M plone/app/content/browser/query.py M plone/app/content/browser/reviewlist.py M plone/app/content/browser/selection.py M plone/app/content/browser/tableview.py M plone/app/content/browser/vocabulary.py M plone/app/content/catalog.py M plone/app/content/container.py M plone/app/content/interfaces.py M plone/app/content/item.py M plone/app/content/namechooser.py M plone/app/content/tests/test_adding.py M plone/app/content/tests/test_basecontent.py M plone/app/content/tests/test_folder.py M plone/app/content/tests/test_namechooser.py M plone/app/content/tests/test_namechooser_unit.py M plone/app/content/tests/test_reviewlist.py M plone/app/content/tests/test_table.py M plone/app/content/utils.py M setup.py
jensens
added a commit
that referenced
this pull request
May 15, 2015
Branch: refs/heads/master Date: 2015-05-13T18:07:57+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.dexterity@c38970f fixes #27 createContent ignores empty fields Files changed: M CHANGES.rst M plone/dexterity/utils.py Repository: plone.dexterity Branch: refs/heads/master Date: 2015-05-15T11:31:12+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.dexterity@b3d554e Merge pull request #28 from plone/fix-27-createContent_ignores_empty_fields fixes #27 createContent ignores empty fields Files changed: M CHANGES.rst M plone/dexterity/utils.py
jensens
added a commit
that referenced
this pull request
May 15, 2015
Branch: refs/heads/master Date: 2015-05-13T18:07:57+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.dexterity@c38970f fixes #27 createContent ignores empty fields Files changed: M CHANGES.rst M plone/dexterity/utils.py Repository: plone.dexterity Branch: refs/heads/master Date: 2015-05-15T11:31:12+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.dexterity@b3d554e Merge pull request #28 from plone/fix-27-createContent_ignores_empty_fields fixes #27 createContent ignores empty fields Files changed: M CHANGES.rst M plone/dexterity/utils.py
tisto
added a commit
that referenced
this pull request
Jul 2, 2015
Branch: refs/heads/master Date: 2015-06-15T14:25:17+02:00 Author: Eric BREHAULT (ebrehault) <[email protected]> Commit: plone/plone.schemaeditor@a5f1d40 set extra attributes when creating a new field Files changed: M CHANGES.rst M plone/schemaeditor/browser/schema/add_field.py Repository: plone.schemaeditor Branch: refs/heads/master Date: 2015-07-02T05:54:24+02:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.schemaeditor@ecf83ca Merge pull request #27 from plone/ebr-allow-additional-schemata-in-field-addform Supports additionalSchemata in field Add form Files changed: M CHANGES.rst M plone/schemaeditor/browser/schema/add_field.py
bloodbare
added a commit
that referenced
this pull request
Jul 14, 2015
Branch: refs/heads/master Date: 2015-06-21T16:56:49+02:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plonetheme.barceloneta@ba31cc8 Do not uppercase the colophon The text that is shown next to it is not uppercased, so it feels weird. Fixes: plone/Products.CMFPlone#572 Files changed: M plonetheme/barceloneta/theme/less/barceloneta-compiled.css M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map M plonetheme/barceloneta/theme/less/footer.plone.less Repository: plonetheme.barceloneta Branch: refs/heads/master Date: 2015-07-14T10:22:36+02:00 Author: Ramon Navarro Bosch (bloodbare) <[email protected]> Commit: plone/plonetheme.barceloneta@aa22921 Merge pull request #27 from plone/remove-uppercase-colophon Do not uppercase the colophon Files changed: M plonetheme/barceloneta/theme/less/barceloneta-compiled.css M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map M plonetheme/barceloneta/theme/less/footer.plone.less
pbauer
added a commit
that referenced
this pull request
Sep 10, 2015
Branch: refs/heads/master Date: 2015-09-10T15:32:59+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.linkintegrity@562833c Don't show delete_confirmation_info twice in delete_confirmation. Fixes #27 Files changed: M CHANGES.rst M plone/app/linkintegrity/browser/delete_confirmation_info.pt
jensens
added a commit
that referenced
this pull request
Sep 21, 2015
Branch: refs/heads/master Date: 2015-09-18T23:01:28Z Author: T. Kim Nguyen (tkimnguyen) <[email protected]> Commit: plone/archetypes.referencebrowserwidget@95c7dde fix for isNotSelf(), which was throwing KeyError Files changed: M docs/CHANGES.txt M src/archetypes/referencebrowserwidget/browser/view.py Repository: archetypes.referencebrowserwidget Branch: refs/heads/master Date: 2015-09-21T09:21:35+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/archetypes.referencebrowserwidget@27cd4be Merge pull request #27 from tkimnguyen/master fix for isNotSelf(), which was throwing KeyError Files changed: M docs/CHANGES.txt M src/archetypes/referencebrowserwidget/browser/view.py
jensens
added a commit
that referenced
this pull request
Sep 21, 2015
Branch: refs/heads/master Date: 2015-09-18T23:01:28Z Author: T. Kim Nguyen (tkimnguyen) <[email protected]> Commit: plone/archetypes.referencebrowserwidget@95c7dde fix for isNotSelf(), which was throwing KeyError Files changed: M docs/CHANGES.txt M src/archetypes/referencebrowserwidget/browser/view.py Repository: archetypes.referencebrowserwidget Branch: refs/heads/master Date: 2015-09-21T09:21:35+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/archetypes.referencebrowserwidget@27cd4be Merge pull request #27 from tkimnguyen/master fix for isNotSelf(), which was throwing KeyError Files changed: M docs/CHANGES.txt M src/archetypes/referencebrowserwidget/browser/view.py
jensens
added a commit
that referenced
this pull request
Sep 28, 2015
Branch: refs/heads/master Date: 2015-09-28T09:36:40+02:00 Author: Gagaro (Gagaro) <[email protected]> Commit: plone/plone.app.z3cform@7d8a22d fix a test for plone/Products.CMFPlone#1088 Files changed: M plone/app/z3cform/tests/test_widgets.py Repository: plone.app.z3cform Branch: refs/heads/master Date: 2015-09-28T13:58:35+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.z3cform@8b007a3 Merge pull request #27 from plone/fix-test-CMFPlone-PR-1088 fix a test for plone/Products.CMFPlone#1088 Files changed: M plone/app/z3cform/tests/test_widgets.py
vangheem
added a commit
that referenced
this pull request
Oct 13, 2015
Branch: refs/heads/master Date: 2015-10-12T23:52:09+02:00 Author: Lukas Graf (lukasgraf) <[email protected]> Commit: plone/plone.protect@90d385c Make title and description show up on @@confirm-action view. (Use fill-slot instead of define-slot). Files changed: M CHANGES.rst M plone/protect/confirm.pt Repository: plone.protect Branch: refs/heads/master Date: 2015-10-12T23:53:20+02:00 Author: Lukas Graf (lukasgraf) <[email protected]> Commit: plone/plone.protect@a71f2ed Disable editable border for @@confirm-action view. Files changed: M CHANGES.rst M plone/protect/confirm.pt Repository: plone.protect Branch: refs/heads/master Date: 2015-10-13T01:47:56-05:00 Author: Nathan Van Gheem (vangheem) <[email protected]> Commit: plone/plone.protect@e560f73 Merge pull request #27 from plone/lg-prettify-confirm-action Show title and description in @@confirm-action view, disable editable border Files changed: M CHANGES.rst M plone/protect/confirm.pt
gforcada
added a commit
that referenced
this pull request
Nov 25, 2015
Branch: refs/heads/master Date: 2015-11-25T11:38:45+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/Products.ATContentTypes@9e760fb Create standard news/events collections with selection.any. Issue plone/Products.CMFPlone#1040 Files changed: M CHANGES.rst M Products/ATContentTypes/setuphandlers.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2015-11-25T11:41:25+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.ATContentTypes@00b3003 Merge pull request #27 from plone/cmfplone-issue-1040 Create standard news/events collections with selection.any. Files changed: M CHANGES.rst M Products/ATContentTypes/setuphandlers.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 22, 2016
Branch: refs/heads/master Date: 2016-02-18T16:23:37-08:00 Author: Alec Mitchell (alecpm) <[email protected]> Commit: plone/plone.app.vocabularies@911bb20 Restrict catalog vocabulary to context navigation root unless path is specified. Files changed: M CHANGES.rst M plone/app/vocabularies/catalog.py M plone/app/vocabularies/tests/base.py Repository: plone.app.vocabularies Branch: refs/heads/master Date: 2016-02-22T15:59:13+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.vocabularies@d282414 Merge pull request #27 from plone/navroot-fixes Restrict catalog vocabulary to context navigation root unless path is specified. Files changed: M CHANGES.rst M plone/app/vocabularies/catalog.py M plone/app/vocabularies/tests/base.py
mister-roboto
pushed a commit
that referenced
this pull request
May 4, 2016
Branch: refs/heads/master Date: 2016-05-03T22:47:29+02:00 Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.app.iterate@8751690 no checkout via GET Files changed: A bootstrap.py A buildout.cfg M .gitignore M CHANGES.rst M plone/app/iterate/browser/checkout.pt M plone/app/iterate/browser/checkout.py M plone/app/iterate/tests/browser.rst M plone/app/iterate/tests/dexterity.rst M setup.py Repository: plone.app.iterate Branch: refs/heads/master Date: 2016-05-04T10:51:12+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.iterate@8563aa8 Merge pull request #27 from plone/no_checkout_via_GET_5.x no checkout via GET Files changed: A bootstrap.py A buildout.cfg M .gitignore M CHANGES.rst M plone/app/iterate/browser/checkout.pt M plone/app/iterate/browser/checkout.py M plone/app/iterate/tests/browser.rst M plone/app/iterate/tests/dexterity.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
May 4, 2016
Branch: refs/heads/master Date: 2016-05-03T22:47:29+02:00 Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.app.iterate@8751690 no checkout via GET Files changed: A bootstrap.py A buildout.cfg M .gitignore M CHANGES.rst M plone/app/iterate/browser/checkout.pt M plone/app/iterate/browser/checkout.py M plone/app/iterate/tests/browser.rst M plone/app/iterate/tests/dexterity.rst M setup.py Repository: plone.app.iterate Branch: refs/heads/master Date: 2016-05-04T10:51:12+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.iterate@8563aa8 Merge pull request #27 from plone/no_checkout_via_GET_5.x no checkout via GET Files changed: A bootstrap.py A buildout.cfg M .gitignore M CHANGES.rst M plone/app/iterate/browser/checkout.pt M plone/app/iterate/browser/checkout.py M plone/app/iterate/tests/browser.rst M plone/app/iterate/tests/dexterity.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
May 10, 2016
Branch: refs/heads/master Date: 2016-05-10T13:25:26-03:00 Author: Rafael Oliveira (rafaelbco) <[email protected]> Commit: plone/plone.app.versioningbehavior@683668d Improve conversion of download URLs on @@version-view by always using the context URL Files changed: M plone/app/versioningbehavior/browser.py M plone/app/versioningbehavior/tests/test_browser.py Repository: plone.app.versioningbehavior Branch: refs/heads/master Date: 2016-05-10T15:05:40-03:00 Author: Rafael Oliveira (rafaelbco) <[email protected]> Commit: plone/plone.app.versioningbehavior@eee6d86 Merge pull request #27 from plone/improve_download_url_conversion Improve conversion of download URLs on @@version-view Files changed: M plone/app/versioningbehavior/browser.py M plone/app/versioningbehavior/tests/test_browser.py
mister-roboto
pushed a commit
that referenced
this pull request
May 10, 2016
Branch: refs/heads/master Date: 2016-05-10T13:25:26-03:00 Author: Rafael Oliveira (rafaelbco) <[email protected]> Commit: plone/plone.app.versioningbehavior@683668d Improve conversion of download URLs on @@version-view by always using the context URL Files changed: M plone/app/versioningbehavior/browser.py M plone/app/versioningbehavior/tests/test_browser.py Repository: plone.app.versioningbehavior Branch: refs/heads/master Date: 2016-05-10T15:05:40-03:00 Author: Rafael Oliveira (rafaelbco) <[email protected]> Commit: plone/plone.app.versioningbehavior@eee6d86 Merge pull request #27 from plone/improve_download_url_conversion Improve conversion of download URLs on @@version-view Files changed: M plone/app/versioningbehavior/browser.py M plone/app/versioningbehavior/tests/test_browser.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 3, 2016
Branch: refs/heads/master Date: 2016-06-03T11:03:10+02:00 Author: Johannes Raggam (thet) <[email protected]> Commit: plone/plone.namedfile@66f2249 Fix tests to work with latest plone.scale changes, where gif images are no longer converted to jpeg. Files changed: A plone/namedfile/tests/image.png M CHANGES.rst M plone/namedfile/tests/test_scaling.py M plone/namedfile/tests/test_scaling_functional.py Repository: plone.namedfile Branch: refs/heads/master Date: 2016-06-03T12:13:04+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.namedfile@f6c368e Merge pull request #27 from plone/thet-fixtests Fix tests to work with latest plone.scale changes, where gif images a… Files changed: A plone/namedfile/tests/image.png M CHANGES.rst M plone/namedfile/tests/test_scaling.py M plone/namedfile/tests/test_scaling_functional.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 21, 2017
Branch: refs/heads/master Date: 2017-02-21T22:14:58+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.app.blob@e85355f Process indexing operations Part of PLIP: plone/Products.CMFPlone#1343 Files changed: M CHANGES.rst M src/plone/app/blob/tests/test_maintenance.py Repository: plone.app.blob Branch: refs/heads/master Date: 2017-02-21T22:15:55+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.blob@efcbd7b Merge pull request #27 from plone/merge-collective-indexing Merge collective indexing Files changed: M CHANGES.rst M src/plone/app/blob/tests/test_maintenance.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 21, 2017
Branch: refs/heads/master Date: 2017-02-21T22:14:58+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.app.blob@e85355f Process indexing operations Part of PLIP: plone/Products.CMFPlone#1343 Files changed: M CHANGES.rst M src/plone/app/blob/tests/test_maintenance.py Repository: plone.app.blob Branch: refs/heads/master Date: 2017-02-21T22:15:55+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.blob@efcbd7b Merge pull request #27 from plone/merge-collective-indexing Merge collective indexing Files changed: M CHANGES.rst M src/plone/app/blob/tests/test_maintenance.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 31, 2017
Branch: refs/heads/master Date: 2017-03-30T10:39:19+03:00 Author: Asko Soukka (datakurre) <[email protected]> Commit: plone/plone.app.contentrules@1f1ccc0 Fix issue where content rules edit forms were broken because of move of getIcon from @@plone to @@plone_layout Files changed: M plone/app/contentrules/browser/elements.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-03-30T10:39:52+03:00 Author: Asko Soukka (datakurre) <[email protected]> Commit: plone/plone.app.contentrules@ae61ed7 Update changelog Files changed: M CHANGES.rst Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-03-31T11:27:47+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.contentrules@10d56c9 Merge pull request #27 from plone/datakurre-getIcon Fix issue where content rules edit form for a rules with assigned locations was broken because of move of getIcon Files changed: M CHANGES.rst M plone/app/contentrules/browser/elements.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 31, 2017
Branch: refs/heads/master Date: 2017-03-30T10:39:19+03:00 Author: Asko Soukka (datakurre) <[email protected]> Commit: plone/plone.app.contentrules@1f1ccc0 Fix issue where content rules edit forms were broken because of move of getIcon from @@plone to @@plone_layout Files changed: M plone/app/contentrules/browser/elements.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-03-30T10:39:52+03:00 Author: Asko Soukka (datakurre) <[email protected]> Commit: plone/plone.app.contentrules@ae61ed7 Update changelog Files changed: M CHANGES.rst Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-03-31T11:27:47+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.contentrules@10d56c9 Merge pull request #27 from plone/datakurre-getIcon Fix issue where content rules edit form for a rules with assigned locations was broken because of move of getIcon Files changed: M CHANGES.rst M plone/app/contentrules/browser/elements.py
mister-roboto
pushed a commit
that referenced
this pull request
May 17, 2017
Branch: refs/heads/master Date: 2017-05-17T12:07:23+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.autoform@cabd75f Reduce field move failure logging from error to warning Files changed: M CHANGES.rst M plone/autoform/base.py Repository: plone.autoform Branch: refs/heads/master Date: 2017-05-17T12:19:28+02:00 Author: Robert Niederreiter (rnixx) <[email protected]> Commit: plone/plone.autoform@84494fd Merge pull request #27 from plone/jensens-fieldmovelogging Reduce field move failure logging from error to warning Files changed: M CHANGES.rst M plone/autoform/base.py
mister-roboto
pushed a commit
that referenced
this pull request
Jan 22, 2021
Branch: refs/heads/master Date: 2021-01-21T14:52:45-03:00 Author: Franco Pellegrini (frapell) <[email protected]> Commit: plone/plone.app.workflow@af30107 Missed these 2 icons for gh-25 Files changed: M plone/app/workflow/browser/sharing.pt Repository: plone.app.workflow Branch: refs/heads/master Date: 2021-01-22T13:42:21+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.workflow@2eb9942 Merge pull request #27 from plone/frapell-sharing-view-2 Missed these 2 icons for gh-25 Files changed: M plone/app/workflow/browser/sharing.pt
mister-roboto
pushed a commit
that referenced
this pull request
Feb 13, 2021
Branch: refs/heads/master Date: 2021-02-13T09:50:39+01:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.portlet.collection@5e2d8b8 Barceloneta LTS (#27) * update markup for bootstrap * bootstrap b1 changes * update markup in doctest * change item details Co-authored-by: Peter Holzer <[email protected]> Files changed: M plone/portlet/collection/collection.pt M plone/portlet/collection/tests/functional.txt
mister-roboto
pushed a commit
that referenced
this pull request
Feb 13, 2021
Branch: refs/heads/master Date: 2021-02-13T09:51:26+01:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.batching@ce3a27b update markup for bootstrap (#27) Co-authored-by: Peter Holzer <[email protected]> Files changed: M plone/batching/batchnavigation.pt
mister-roboto
pushed a commit
that referenced
this pull request
Aug 26, 2021
Branch: refs/heads/master Date: 2018-07-31T00:36:35+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@87d66da Somehow plone.dexterity makes an InterfaceClass with an <implementedBy ?> with a VerifyingAdapterLookup, which doesn't have a dependents attribute. Not sure why tf this is happening. Files changed: M plone/supermodel/model.py Repository: plone.supermodel Branch: refs/heads/master Date: 2019-02-11T22:11:48+01:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@5e11052 Merge remote-tracking branch 'origin/master' into dx-siteroot Files changed: A news/.gitkeep A pyproject.toml M CHANGES.rst M MANIFEST.in M plone/supermodel/__init__.py M plone/supermodel/configure.zcml M plone/supermodel/converters.py M plone/supermodel/directives.py M plone/supermodel/directives.rst M plone/supermodel/exportimport.py M plone/supermodel/fields.rst M plone/supermodel/model.py M plone/supermodel/parser.py M plone/supermodel/schema.rst M plone/supermodel/schemaclass.rst M plone/supermodel/tests.py M plone/supermodel/utils.py M setup.cfg M setup.py D .gitattributes Repository: plone.supermodel Branch: refs/heads/master Date: 2019-12-10T11:00:36+01:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@4a7e3d3 Merge remote-tracking branch 'origin/master' into dx-siteroot Files changed: M CHANGES.rst M plone/supermodel/exportimport.py M plone/supermodel/tests.py M plone/supermodel/utils.py M setup.py Repository: plone.supermodel Branch: refs/heads/master Date: 2020-02-24T20:57:11+01:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@c922676 Merge remote-tracking branch 'origin/master' into dx-siteroot Files changed: A news/33.feature A news/34.feature M CHANGES.rst M plone/supermodel/directives.py M plone/supermodel/utils.py M setup.py Repository: plone.supermodel Branch: refs/heads/master Date: 2020-03-29T21:11:29+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@8716319 revert back to original implementation to see what was going wrong Files changed: M plone/supermodel/model.py Repository: plone.supermodel Branch: refs/heads/master Date: 2020-03-29T21:58:48+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@1b1e8ce Merge remote-tracking branch 'origin/master' into dx-siteroot Files changed: M CHANGES.rst M setup.py D news/33.feature D news/34.feature Repository: plone.supermodel Branch: refs/heads/master Date: 2020-05-27T20:15:30+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@feab801 Merge remote-tracking branch 'origin/master' into dx-siteroot Files changed: A news/37.bugfix A news/38.bugfix M CHANGES.rst M plone/supermodel/fields.rst M plone/supermodel/utils.py M setup.py Repository: plone.supermodel Branch: refs/heads/master Date: 2020-05-30T17:49:49+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@5ef3cf5 add workaround for 'VerifyingAdapterLookup' object has no attribute 'dependents' Files changed: M plone/supermodel/model.py Repository: plone.supermodel Branch: refs/heads/master Date: 2020-06-01T10:59:30+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@5dd659a hu-weh Files changed: M plone/supermodel/model.py Repository: plone.supermodel Branch: refs/heads/master Date: 2020-06-14T15:33:30+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@9472f87 it's log! from blammo! Files changed: M plone/supermodel/model.py Repository: plone.supermodel Branch: refs/heads/master Date: 2020-07-19T12:26:01+02:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@3042a85 Merge remote-tracking branch 'origin/master' into dx-siteroot Files changed: M CHANGES.rst M setup.py D news/37.bugfix D news/38.bugfix Repository: plone.supermodel Branch: refs/heads/master Date: 2020-12-09T20:10:22+01:00 Author: Roel Bruggink (jaroel) <[email protected]> Commit: plone/plone.supermodel@6b9b95b Merge remote-tracking branch 'origin/master' into dx-siteroot Files changed: M CHANGES.rst M plone/supermodel/parser.py M setup.py Repository: plone.supermodel Branch: refs/heads/master Date: 2021-02-12T11:19:26+01:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.supermodel@1c397bc Changed logging and documentation Files changed: M plone/supermodel/model.py Repository: plone.supermodel Branch: refs/heads/master Date: 2021-02-12T11:25:30+01:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.supermodel@e46da91 Remove the warnings Files changed: M plone/supermodel/model.py Repository: plone.supermodel Branch: refs/heads/master Date: 2021-02-12T11:28:18+01:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.supermodel@d99d51d Added a towncrier entry Files changed: A news/27.breaking Repository: plone.supermodel Branch: refs/heads/master Date: 2021-08-26T18:31:04+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.supermodel@e9bdb78 Merge pull request #27 from plone/dx-siteroot Dx siteroot Files changed: A news/27.breaking M plone/supermodel/model.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 14, 2021
Branch: refs/heads/master Date: 2021-09-02T12:23:41-03:00 Author: Franco Pellegrini (frapell) <[email protected]> Commit: plone/plone.formwidget.recurrence@5c9320a Fix batch numbers computation. fixes gh-25 Files changed: A news/25.bugfix M plone/formwidget/recurrence/browser/json_recurrence.py Repository: plone.formwidget.recurrence Branch: refs/heads/master Date: 2021-10-14T12:42:39+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.formwidget.recurrence@2761300 Merge pull request #27 from plone/frapell-batch-compute-master Fix batch numbers computation (Master) Files changed: A news/25.bugfix M plone/formwidget/recurrence/browser/json_recurrence.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 14, 2021
Branch: refs/heads/master Date: 2021-09-02T12:23:41-03:00 Author: Franco Pellegrini (frapell) <[email protected]> Commit: plone/plone.formwidget.recurrence@5c9320a Fix batch numbers computation. fixes gh-25 Files changed: A news/25.bugfix M plone/formwidget/recurrence/browser/json_recurrence.py Repository: plone.formwidget.recurrence Branch: refs/heads/master Date: 2021-10-14T12:42:39+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.formwidget.recurrence@2761300 Merge pull request #27 from plone/frapell-batch-compute-master Fix batch numbers computation (Master) Files changed: A news/25.bugfix M plone/formwidget/recurrence/browser/json_recurrence.py
mister-roboto
pushed a commit
that referenced
this pull request
Dec 20, 2021
Branch: refs/heads/master Date: 2021-12-19T16:51:18+01:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.debugtoolbar@c1a66f4 Fix a compatibility issue with Python 3.8 Fixes #27 Files changed: A news/27.bugfix M src/plone/app/debugtoolbar/browser/interactive.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2021-12-20T11:46:18+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.debugtoolbar@57a8b1e Merge pull request #28 from plone/27.bugfix Fix a compatibility issue with Python 3.8 Files changed: A news/27.bugfix M src/plone/app/debugtoolbar/browser/interactive.py
mister-roboto
pushed a commit
that referenced
this pull request
Dec 20, 2021
Branch: refs/heads/master Date: 2021-12-19T16:51:18+01:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.debugtoolbar@c1a66f4 Fix a compatibility issue with Python 3.8 Fixes #27 Files changed: A news/27.bugfix M src/plone/app/debugtoolbar/browser/interactive.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2021-12-20T11:46:18+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.debugtoolbar@57a8b1e Merge pull request #28 from plone/27.bugfix Fix a compatibility issue with Python 3.8 Files changed: A news/27.bugfix M src/plone/app/debugtoolbar/browser/interactive.py
mister-roboto
pushed a commit
that referenced
this pull request
May 6, 2022
Branch: refs/heads/master Date: 2022-05-05T08:00:21+02:00 Author: Markus Hilbert (iham) <[email protected]> Commit: plone/plone.app.contentmenu@a4a41d4 check for permission on browser:menuItem Files changed: A news/26.bugfix M plone/app/contentmenu/displayviewsmenu.py Repository: plone.app.contentmenu Branch: refs/heads/master Date: 2022-05-05T18:15:40+02:00 Author: petschki (petschki) <[email protected]> Commit: plone/plone.app.contentmenu@bdcf545 use AccessControl.security.checkPermission Files changed: M plone/app/contentmenu/displayviewsmenu.py Repository: plone.app.contentmenu Branch: refs/heads/master Date: 2022-05-06T07:29:32+02:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.app.contentmenu@2b7454b Merge pull request #27 from plone/issue_26 Fixed permission handling on browser:menuItem Files changed: A news/26.bugfix M plone/app/contentmenu/displayviewsmenu.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 22, 2022
Branch: refs/heads/master Date: 2022-07-21T21:44:07-07:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.session@788fe83 Update bundle depends; fixes #27 Files changed: A news/27.bugfix M plone/session/profiles.zcml M plone/session/profiles/default/metadata.xml M plone/session/profiles/default/registry.xml Repository: plone.session Branch: refs/heads/master Date: 2022-07-22T12:33:40+02:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.session@74d792e Merge pull request #28 from plone/fix-bundle Update bundle depends to remove broken jquery dependency Files changed: A news/27.bugfix M plone/session/profiles.zcml M plone/session/profiles/default/metadata.xml M plone/session/profiles/default/registry.xml
mister-roboto
pushed a commit
that referenced
this pull request
Dec 12, 2022
Branch: refs/heads/master Date: 2022-12-08T15:11:04-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@2aea108 Fix documentation link Files changed: M setup.cfg Repository: Plone Branch: refs/heads/master Date: 2022-12-08T15:30:17-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@28394cc Update README file Files changed: A CHANGES.md A CONTRIBUTING.md A README.md M MANIFEST.in M setup.cfg D CHANGES.rst D CONTRIBUTING.rst D README.rst Repository: Plone Branch: refs/heads/master Date: 2022-12-09T17:34:02-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@7252c6c Apply suggestions from code review by stevepiercy Co-authored-by: Steve Piercy <[email protected]> Co-authored-by: Katja Süss <[email protected]> Files changed: M CONTRIBUTING.md M README.md Repository: Plone Branch: refs/heads/master Date: 2022-12-09T17:49:58-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@b39a8c2 Update README with suggestions by @fredvd, @davisagli, @ksuess, and @stevepiercy Files changed: M README.md Repository: Plone Branch: refs/heads/master Date: 2022-12-09T18:04:56-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@bf93226 Update Changelog with new header settings Files changed: M CHANGES.md Repository: Plone Branch: refs/heads/master Date: 2022-12-09T18:42:13-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@6e42f1e Add a newline at the end of README.md Files changed: M README.md Repository: Plone Branch: refs/heads/master Date: 2022-12-10T14:53:44+01:00 Author: Paul Roeland (polyester) <[email protected]> Commit: plone/Plone@b5920ca Update README.md Files changed: M README.md Repository: Plone Branch: refs/heads/master Date: 2022-12-11T09:29:27-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@eb02e3a Apply suggestions from code review by stevepiercy Co-authored-by: Steve Piercy <[email protected]> Files changed: M README.md M setup.cfg Repository: Plone Branch: refs/heads/master Date: 2022-12-11T23:57:14-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@bb42720 Remove PyPI badges Files changed: M README.md Repository: Plone Branch: refs/heads/master Date: 2022-12-11T23:57:37-03:00 Author: Érico Andrei (ericof) <[email protected]> Commit: plone/Plone@3ac3797 Merge pull request #27 from plone/update-readme Update readme Files changed: A CHANGES.md A CONTRIBUTING.md A README.md M MANIFEST.in M setup.cfg D CHANGES.rst D CONTRIBUTING.rst D README.rst
mister-roboto
pushed a commit
that referenced
this pull request
Jan 26, 2023
Branch: refs/heads/master Date: 2023-01-26T22:32:15+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.subrequest@9d66c5d Configuring with plone/meta 2023-01-26. Files changed: A news/1.internal M .meta.toml M lint-requirements.txt M pyproject.toml M setup.cfg M setup.py M tox.ini D news/1.bugfix Repository: plone.subrequest Branch: refs/heads/master Date: 2023-01-26T23:56:49+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.subrequest@dedf832 Merge pull request #27 from plone/config-with-default-template-d5f888e2 Configuring with plone/meta 2023-01-26. Files changed: A news/1.internal M .meta.toml M lint-requirements.txt M pyproject.toml M setup.cfg M setup.py M tox.ini D news/1.bugfix
mister-roboto
pushed a commit
that referenced
this pull request
Feb 4, 2023
Branch: refs/heads/main Date: 2023-02-02T10:34:43+01:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.base@508549e add modal property to IActionSchema Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2023-02-02T10:34:43+01:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.base@6a4659b changenote Files changed: A news/27.bugfix Repository: plone.base Branch: refs/heads/main Date: 2023-02-04T14:41:49+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.base@9dffa6f Merge pull request #27 from plone/action-edit-modal-property Add `modal` property to `IActionSchema` Files changed: A news/27.bugfix M src/plone/base/interfaces/controlpanel.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 10, 2023
Branch: refs/heads/master Date: 2023-04-01T19:42:37+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@aae2516 Configuring with plone/meta Files changed: A .editorconfig A .meta.toml A .pre-commit-config.yaml A news/93e1ab65.internal A tox.ini M pyproject.toml M setup.cfg Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-01T19:45:36+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@d612f81 chore: black Files changed: M plone/app/redirector/testing.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-01T19:45:51+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@8628da4 chore: zpretty Files changed: M plone/app/redirector/configure.zcml Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-01T19:46:43+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@a25c6eb feat: flake8 Files changed: M plone/app/redirector/tests/test_view.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-01T19:47:15+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@b37a6cc feat: codespell Files changed: M CHANGES.rst Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-01T19:50:23+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@9ab9d19 feat: configure z3c.dependencychecker Files changed: M pyproject.toml Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-01T19:52:02+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@e1f1552 feat: drop CMFPlone dependency Files changed: M plone/app/redirector/tests/test_view.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-01T19:53:39+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@4364d16 feat: declare dependencies Files changed: M setup.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2023-04-10T03:02:48+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.redirector@3623415 Merge pull request #27 from plone/config-with-default-template-15bbcc40 Config with default template Files changed: A .editorconfig A .meta.toml A .pre-commit-config.yaml A news/93e1ab65.internal A tox.ini M CHANGES.rst M plone/app/redirector/configure.zcml M plone/app/redirector/testing.py M plone/app/redirector/tests/test_view.py M pyproject.toml M setup.cfg M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
May 2, 2023
Branch: refs/heads/master Date: 2023-05-01T22:51:56Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.registry@9893a85 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.3.1 → v3.3.2](asottile/pyupgrade@v3.3.1...v3.3.2) - [github.com/collective/zpretty: 3.0.3 → 3.0.4](collective/zpretty@3.0.3...3.0.4) Files changed: M .pre-commit-config.yaml Repository: plone.registry Branch: refs/heads/master Date: 2023-05-02T16:27:34+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.registry@d050099 Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
May 2, 2023
Branch: refs/heads/master Date: 2023-05-01T22:51:36Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.portlet.static@6947f19 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.3.1 → v3.3.2](asottile/pyupgrade@v3.3.1...v3.3.2) - [github.com/collective/zpretty: 3.0.3 → 3.0.4](collective/zpretty@3.0.3...3.0.4) Files changed: M .pre-commit-config.yaml Repository: plone.portlet.static Branch: refs/heads/master Date: 2023-05-02T16:28:59+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.portlet.static@7c9dfed Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Oct 4, 2023
Branch: refs/heads/master Date: 2023-06-27T09:10:16+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@42d8a4c Configuring with plone/meta Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:10:53+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@39b5f17 cleanup: remove unused file Files changed: D setup.cfg Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:11:40+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@f214510 fix: adjust setup.py Files changed: M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:16:45+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@0550690 fix: mark strings for translation Files changed: M Products/CMFDynamicViewFTI/browser/addWithPresettings.pt Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:16:59+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@69d36eb fix: declare dependencies Files changed: M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-10-04T17:44:56+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@4ae9269 Merge pull request #27 from plone/config-with-default-template-18f43c1c Config with default template Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M Products/CMFDynamicViewFTI/browser/addWithPresettings.pt M pyproject.toml M setup.py M tox.ini D setup.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Oct 4, 2023
Branch: refs/heads/master Date: 2023-06-27T09:10:16+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@42d8a4c Configuring with plone/meta Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:10:53+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@39b5f17 cleanup: remove unused file Files changed: D setup.cfg Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:11:40+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@f214510 fix: adjust setup.py Files changed: M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:16:45+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@0550690 fix: mark strings for translation Files changed: M Products/CMFDynamicViewFTI/browser/addWithPresettings.pt Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-06-27T09:16:59+03:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@69d36eb fix: declare dependencies Files changed: M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2023-10-04T17:44:56+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@4ae9269 Merge pull request #27 from plone/config-with-default-template-18f43c1c Config with default template Files changed: A .flake8 A .github/workflows/meta.yml A news/cfffba8c.internal M .editorconfig M .gitignore M .meta.toml M .pre-commit-config.yaml M Products/CMFDynamicViewFTI/browser/addWithPresettings.pt M pyproject.toml M setup.py M tox.ini D setup.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Dec 7, 2023
Branch: refs/heads/master Date: 2023-11-10T23:28:42+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@de5fe65 Replace deprecated cgi.FieldStorage class with a simple one. The ``cgi`` module is deprecated and will be removed in Python 3.13. Instead we now use a simple class that implements only what is needed for the converter. It is only used for converting a ``ZPublisher`` ``FileUpload`` to a ``zope.publisher`` one. Files changed: A news/1.bugfix M src/plone/z3cform/converter.py Repository: plone.z3cform Branch: refs/heads/master Date: 2023-11-10T23:32:51+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@9f57faf dependencychecker: ignore five.pt. We only include its zcml conditionally. Files changed: M .meta.toml Repository: plone.z3cform Branch: refs/heads/master Date: 2023-11-10T23:32:58+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@529e512 Configuring with plone/meta Files changed: M .editorconfig M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: plone.z3cform Branch: refs/heads/master Date: 2023-11-10T23:34:36+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@4cb94be codespell: re-use -> reuse Files changed: M README.rst Repository: plone.z3cform Branch: refs/heads/master Date: 2023-12-08T00:26:03+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@683649e Merge pull request #27 from plone/maurits-replace-cgi-fieldstorage Replace deprecated cgi.FieldStorage class with a simple one. Files changed: A news/1.bugfix M .editorconfig M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M README.rst M pyproject.toml M src/plone/z3cform/converter.py M tox.ini
mister-roboto
pushed a commit
that referenced
this pull request
Dec 7, 2023
Branch: refs/heads/master Date: 2023-11-10T23:28:42+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@de5fe65 Replace deprecated cgi.FieldStorage class with a simple one. The ``cgi`` module is deprecated and will be removed in Python 3.13. Instead we now use a simple class that implements only what is needed for the converter. It is only used for converting a ``ZPublisher`` ``FileUpload`` to a ``zope.publisher`` one. Files changed: A news/1.bugfix M src/plone/z3cform/converter.py Repository: plone.z3cform Branch: refs/heads/master Date: 2023-11-10T23:32:51+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@9f57faf dependencychecker: ignore five.pt. We only include its zcml conditionally. Files changed: M .meta.toml Repository: plone.z3cform Branch: refs/heads/master Date: 2023-11-10T23:32:58+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@529e512 Configuring with plone/meta Files changed: M .editorconfig M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: plone.z3cform Branch: refs/heads/master Date: 2023-11-10T23:34:36+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@4cb94be codespell: re-use -> reuse Files changed: M README.rst Repository: plone.z3cform Branch: refs/heads/master Date: 2023-12-08T00:26:03+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.z3cform@683649e Merge pull request #27 from plone/maurits-replace-cgi-fieldstorage Replace deprecated cgi.FieldStorage class with a simple one. Files changed: A news/1.bugfix M .editorconfig M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M README.rst M pyproject.toml M src/plone/z3cform/converter.py M tox.ini
mister-roboto
pushed a commit
that referenced
this pull request
Jan 3, 2024
Branch: refs/heads/master Date: 2024-01-01T18:30:07Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.event@e786525 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pycqa/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2) - [github.com/psf/black: 23.11.0 → 23.12.1](psf/black@23.11.0...23.12.1) Files changed: M .pre-commit-config.yaml Repository: plone.event Branch: refs/heads/master Date: 2024-01-03T09:31:20+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.event@a97a81e Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate [city-skip] Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Jan 3, 2024
Branch: refs/heads/master Date: 2024-01-01T18:30:07Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.event@e786525 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pycqa/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2) - [github.com/psf/black: 23.11.0 → 23.12.1](psf/black@23.11.0...23.12.1) Files changed: M .pre-commit-config.yaml Repository: plone.event Branch: refs/heads/master Date: 2024-01-03T09:31:20+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.event@a97a81e Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate [city-skip] Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Jan 22, 2024
Branch: refs/heads/master Date: 2024-01-21T11:51:52+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.stringinterp@98f7fff Configuring with plone/meta Files changed: A news/6e36bcc4.internal M .editorconfig M .flake8 M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: plone.stringinterp Branch: refs/heads/master Date: 2024-01-21T11:53:01+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.stringinterp@4f7aa55 chore: adjust dependencies Files changed: M setup.py Repository: plone.stringinterp Branch: refs/heads/master Date: 2024-01-22T14:51:49+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.stringinterp@b714a84 Merge pull request #27 from plone/config-with-default-template-6e36bcc4 Configuring with plone/meta Files changed: A news/6e36bcc4.internal M .editorconfig M .flake8 M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M setup.py M tox.ini
mister-roboto
pushed a commit
that referenced
this pull request
Jan 22, 2024
Branch: refs/heads/master Date: 2024-01-21T11:51:52+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.stringinterp@98f7fff Configuring with plone/meta Files changed: A news/6e36bcc4.internal M .editorconfig M .flake8 M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M tox.ini Repository: plone.stringinterp Branch: refs/heads/master Date: 2024-01-21T11:53:01+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.stringinterp@4f7aa55 chore: adjust dependencies Files changed: M setup.py Repository: plone.stringinterp Branch: refs/heads/master Date: 2024-01-22T14:51:49+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.stringinterp@b714a84 Merge pull request #27 from plone/config-with-default-template-6e36bcc4 Configuring with plone/meta Files changed: A news/6e36bcc4.internal M .editorconfig M .flake8 M .github/workflows/meta.yml M .gitignore M .meta.toml M .pre-commit-config.yaml M pyproject.toml M setup.py M tox.ini
mister-roboto
pushed a commit
that referenced
this pull request
May 7, 2024
Branch: refs/heads/master Date: 2024-05-06T19:54:20Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.keyring@93d1b04 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 24.3.0 → 24.4.2](psf/black@24.3.0...24.4.2) - [github.com/collective/i18ndude: 6.1.0 → 6.2.0](collective/i18ndude@6.1.0...6.2.0) Files changed: M .pre-commit-config.yaml Repository: plone.keyring Branch: refs/heads/master Date: 2024-05-07T21:25:42+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.keyring@8a083b3 Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
May 7, 2024
Branch: refs/heads/master Date: 2024-05-06T19:54:20Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.keyring@93d1b04 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 24.3.0 → 24.4.2](psf/black@24.3.0...24.4.2) - [github.com/collective/i18ndude: 6.1.0 → 6.2.0](collective/i18ndude@6.1.0...6.2.0) Files changed: M .pre-commit-config.yaml Repository: plone.keyring Branch: refs/heads/master Date: 2024-05-07T21:25:42+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.keyring@8a083b3 Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Jun 4, 2024
Branch: refs/heads/master Date: 2024-06-03T20:00:31Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.contentrules@7a91989 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) Files changed: M .pre-commit-config.yaml Repository: plone.contentrules Branch: refs/heads/master Date: 2024-06-04T03:28:22-04:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.contentrules@c598636 Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Jun 4, 2024
Branch: refs/heads/master Date: 2024-06-03T20:00:31Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.contentrules@7a91989 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) Files changed: M .pre-commit-config.yaml Repository: plone.contentrules Branch: refs/heads/master Date: 2024-06-04T03:28:22-04:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.contentrules@c598636 Merge pull request #27 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Nov 28, 2024
Branch: refs/heads/master Date: 2024-11-27T15:56:37-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.theme@40138ab Fix removed `unittest.makeSuite` in python 3.13 Files changed: M plone/theme/tests/testBrowserLayerPrecedence.py Repository: plone.theme Branch: refs/heads/master Date: 2024-11-27T15:57:40-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.theme@ca9d80f changenote Files changed: A news/27.bugfix Repository: plone.theme Branch: refs/heads/master Date: 2024-11-28T10:29:39-03:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.theme@6c98c57 black Files changed: M plone/theme/tests/testBrowserLayerPrecedence.py Repository: plone.theme Branch: refs/heads/master Date: 2024-11-28T11:39:26-03:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.theme@81406c9 Merge pull request #27 from plone/py-3.13-unittest Fix removed `unittest.makeSuite` in python 3.13 Files changed: A news/27.bugfix M plone/theme/tests/testBrowserLayerPrecedence.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 28, 2024
Branch: refs/heads/master Date: 2024-11-27T15:56:37-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.theme@40138ab Fix removed `unittest.makeSuite` in python 3.13 Files changed: M plone/theme/tests/testBrowserLayerPrecedence.py Repository: plone.theme Branch: refs/heads/master Date: 2024-11-27T15:57:40-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/plone.theme@ca9d80f changenote Files changed: A news/27.bugfix Repository: plone.theme Branch: refs/heads/master Date: 2024-11-28T10:29:39-03:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.theme@6c98c57 black Files changed: M plone/theme/tests/testBrowserLayerPrecedence.py Repository: plone.theme Branch: refs/heads/master Date: 2024-11-28T11:39:26-03:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.theme@81406c9 Merge pull request #27 from plone/py-3.13-unittest Fix removed `unittest.makeSuite` in python 3.13 Files changed: A news/27.bugfix M plone/theme/tests/testBrowserLayerPrecedence.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds a buildout part generating a
requirements.txt
file suitable for installing Plone using pip:$ virtualenv-2.7 --no-site-packages . $ bin/pip install -r .../requirements.txt
Not sure it actually makes a lot of sense to try to generate the list of requirements automatically and/or to try to install Plone via pip, but since we were working on a related issue… :)