-
-
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
Added plone.app.portlets to checkouts.cfg. #20
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
My fix for ticket#11189 patches plone.app.portlets, so we need to check that out, too.
garbas
added a commit
that referenced
this pull request
Nov 21, 2011
Added plone.app.portlets to checkouts.cfg.
as well cherry picked into 4.1 branch |
tisto
added a commit
that referenced
this pull request
Dec 12, 2014
Branch: refs/heads/master Date: 2014-11-15T18:16:13+01:00 Author: Kees Hink (khink) <keeshink@gmail.com> Commit: plone/plone.app.upgrade@c5f8e50 Add upgrade step for mail control panel. Refs PLIP 10359. Files changed: M CHANGES.rst M plone/app/upgrade/v50/betas.py M plone/app/upgrade/v50/configure.zcml M plone/app/upgrade/v50/profiles/to_alpha3/registry.xml diff --git a/CHANGES.rst b/CHANGES.rst index 66d69fd..eeb195f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,8 @@ Changelog 1.3.9 (unreleased) ------------------ +- Add upgrade step for mail control panel. Refs PLIP 10359. + [jcerjak, khink] - Add upgrade steps for markup control panel. [thet] diff --git a/plone/app/upgrade/v50/betas.py b/plone/app/upgrade/v50/betas.py index 0b8ae9f..a6d9225 100644 --- a/plone/app/upgrade/v50/betas.py +++ b/plone/app/upgrade/v50/betas.py @@ -1,8 +1,43 @@ # -*- coding: utf-8 -*- from Products.CMFCore.utils import getToolByName +from Products.CMFPlone.interfaces import IMailSchema from Products.CMFPlone.interfaces import IMarkupSchema from plone.registry.interfaces import IRegistry from zope.component import getUtility +from zope.component.hooks import getSite + + +def upgrade_mail_controlpanel_settings(context): + registry = getUtility(IRegistry) + # XXX: Somehow this code is excecuted for old migration steps as well + # ( < Plone 4 ) and breaks because there is no registry. Looking up the + # registry interfaces with 'check=False' will not work, because it will + # return a settings object and then fail when we try to access the + # attributes. + try: + mail_settings = registry.forInterface(IMailSchema, prefix='plone') + except KeyError: + return + portal = getSite() + portal_properties = getToolByName(context, "portal_properties") + + smtp_host = getattr(portal.MailHost, 'smtp_host', '') + mail_settings.smtp_host = unicode(smtp_host) + + smtp_port = getattr(portal.MailHost, 'smtp_port', 25) + mail_settings.smtp_port = smtp_port + + smtp_user_id = portal.MailHost.get('smtp_user_id') + mail_settings.smtp_user_id = smtp_user_id + + smtp_pass = portal.MailHost.get('smtp_pass') + mail_settings.smtp_pass = smtp_pass + + email_from_address = portal_properties.get('email_from_address') + mail_settings.email_from_address = email_from_address + + email_from_name = portal_properties.get('email_from_name') + mail_settings.email_from_name = email_from_name def upgrade_markup_controlpanel_settings(context): diff --git a/plone/app/upgrade/v50/configure.zcml b/plone/app/upgrade/v50/configure.zcml index b53fe05..cb79fd8 100644 --- a/plone/app/upgrade/v50/configure.zcml +++ b/plone/app/upgrade/v50/configure.zcml @@ -93,6 +93,12 @@ handler=".betas.upgrade_markup_controlpanel_settings" /> + <gs:upgradeStep + title="Upgrade mail control panel settings" + description="Take portal properties and put them in IMailSettings registry" + handler=".betas.upgrade_mail_controlpanel_settings" + /> + </gs:upgradeSteps> </configure> diff --git a/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml b/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml index ae456b6..94c1214 100644 --- a/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml +++ b/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml @@ -4,6 +4,8 @@ prefix="plone" /> <records interface="Products.CMFPlone.interfaces.IMaintenanceSchema" prefix="plone" /> + <records interface="Products.CMFPlone.interfaces.IMailSchema" + prefix="plone" /> <records interface="Products.CMFPlone.interfaces.INavigationSchema" prefix="plone" /> <records interface="Products.CMFPlone.interfaces.ISearchSchema" @@ -813,12 +815,12 @@ <records prefix="plone.resources/rjs" interface='Products.CMFPlone.interfaces.IResourceRegistry'> - <value key="js">++plone++static/components/r.js/dist/r.js</value> + <value key="js">++plone++static/components/r.js/dist/r.js</value> </records> <!-- legacy js --> - + <records prefix="plone.resources/plone_javascript_variables" interface='Products.CMFPlone.interfaces.IResourceRegistry'> <value key="js">plone_javascript_variables.js</value> Repository: plone.app.upgrade Branch: refs/heads/master Date: 2014-12-12T16:53:00+01:00 Author: Timo Stollenwerk (tisto) <tisto@plone.org> Commit: plone/plone.app.upgrade@9c799e2 Merge pull request #20 from plone/plip10359-mail-controlpanel Add upgrade step for mail control panel. Refs PLIP 10359. Files changed: M CHANGES.rst M plone/app/upgrade/v50/betas.py M plone/app/upgrade/v50/configure.zcml M plone/app/upgrade/v50/profiles/to_alpha3/registry.xml diff --git a/CHANGES.rst b/CHANGES.rst index 66d69fd..eeb195f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,8 @@ Changelog 1.3.9 (unreleased) ------------------ +- Add upgrade step for mail control panel. Refs PLIP 10359. + [jcerjak, khink] - Add upgrade steps for markup control panel. [thet] diff --git a/plone/app/upgrade/v50/betas.py b/plone/app/upgrade/v50/betas.py index 0b8ae9f..a6d9225 100644 --- a/plone/app/upgrade/v50/betas.py +++ b/plone/app/upgrade/v50/betas.py @@ -1,8 +1,43 @@ # -*- coding: utf-8 -*- from Products.CMFCore.utils import getToolByName +from Products.CMFPlone.interfaces import IMailSchema from Products.CMFPlone.interfaces import IMarkupSchema from plone.registry.interfaces import IRegistry from zope.component import getUtility +from zope.component.hooks import getSite + + +def upgrade_mail_controlpanel_settings(context): + registry = getUtility(IRegistry) + # XXX: Somehow this code is excecuted for old migration steps as well + # ( < Plone 4 ) and breaks because there is no registry. Looking up the + # registry interfaces with 'check=False' will not work, because it will + # return a settings object and then fail when we try to access the + # attributes. + try: + mail_settings = registry.forInterface(IMailSchema, prefix='plone') + except KeyError: + return + portal = getSite() + portal_properties = getToolByName(context, "portal_properties") + + smtp_host = getattr(portal.MailHost, 'smtp_host', '') + mail_settings.smtp_host = unicode(smtp_host) + + smtp_port = getattr(portal.MailHost, 'smtp_port', 25) + mail_settings.smtp_port = smtp_port + + smtp_user_id = portal.MailHost.get('smtp_user_id') + mail_settings.smtp_user_id = smtp_user_id + + smtp_pass = portal.MailHost.get('smtp_pass') + mail_settings.smtp_pass = smtp_pass + + email_from_address = portal_properties.get('email_from_address') + mail_settings.email_from_address = email_from_address + + email_from_name = portal_properties.get('email_from_name') + mail_settings.email_from_name = email_from_name def upgrade_markup_controlpanel_settings(context): diff --git a/plone/app/upgrade/v50/configure.zcml b/plone/app/upgrade/v50/configure.zcml index b53fe05..cb79fd8 100644 --- a/plone/app/upgrade/v50/configure.zcml +++ b/plone/app/upgrade/v50/configure.zcml @@ -93,6 +93,12 @@ handler=".betas.upgrade_markup_controlpanel_settings" /> + <gs:upgradeStep + title="Upgrade mail control panel settings" + description="Take portal properties and put them in IMailSettings registry" + handler=".betas.upgrade_mail_controlpanel_settings" + /> + </gs:upgradeSteps> </configure> diff --git a/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml b/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml index ae456b6..94c1214 100644 --- a/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml +++ b/plone/app/upgrade/v50/profiles/to_alpha3/registry.xml @@ -4,6 +4,8 @@ prefix="plone" /> <records interface="Products.CMFPlone.interfaces.IMaintenanceSchema" prefix="plone" /> + <records interface="Products.CMFPlone.interfaces.IMailSchema" + prefix="plone" /> <records interface="Products.CMFPlone.interfaces.INavigationSchema" prefix="plone" /> <records interface="Products.CMFPlone.interfaces.ISearchSchema" @@ -813,12 +815,12 @@ <records prefix="plone.resources/rjs" interface='Products.CMFPlone.interfaces.IResourceRegistry'> - <value key="js">++plone++static/components/r.js/dist/r.js</value> + <value key="js">++plone++static/components/r.js/dist/r.js</value> </records> <!-- legacy js --> - + <records prefix="plone.resources/plone_javascript_variables" interface='Products.CMFPlone.interfaces.IResourceRegistry'> <value key="js">plone_javascript_variables.js</value>
davisagli
added a commit
that referenced
this pull request
Mar 7, 2015
Branch: refs/heads/master Date: 2015-03-06T14:32:56+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.blob@bf981a6 fix indent et al Files changed: M setup.py Repository: plone.app.blob Branch: refs/heads/master Date: 2015-03-06T14:33:43+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.blob@7d27b69 fixes #19: Products.MimetypesRegistry used in p.a.blob.utils but no dependency Files changed: M setup.py Repository: plone.app.blob Branch: refs/heads/master Date: 2015-03-06T15:36:08+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.blob@1d1a7fc document change Files changed: M CHANGES.rst Repository: plone.app.blob Branch: refs/heads/master Date: 2015-03-07T11:39:26-08:00 Author: David Glick (davisagli) <david.glick@plone.org> Commit: plone/plone.app.blob@dd60e7e Merge pull request #20 from plone/fix-19 Fix #19: Fix: Products.MimetypesRegistry used in p.a.blob.utils but no dependency Files changed: M CHANGES.rst M setup.py
davisagli
added a commit
that referenced
this pull request
Mar 7, 2015
Branch: refs/heads/master Date: 2015-03-06T14:32:56+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.blob@bf981a6 fix indent et al Files changed: M setup.py Repository: plone.app.blob Branch: refs/heads/master Date: 2015-03-06T14:33:43+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.blob@7d27b69 fixes #19: Products.MimetypesRegistry used in p.a.blob.utils but no dependency Files changed: M setup.py Repository: plone.app.blob Branch: refs/heads/master Date: 2015-03-06T15:36:08+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.blob@1d1a7fc document change Files changed: M CHANGES.rst Repository: plone.app.blob Branch: refs/heads/master Date: 2015-03-07T11:39:26-08:00 Author: David Glick (davisagli) <david.glick@plone.org> Commit: plone/plone.app.blob@dd60e7e Merge pull request #20 from plone/fix-19 Fix #19: Fix: Products.MimetypesRegistry used in p.a.blob.utils but no dependency Files changed: M CHANGES.rst M setup.py
gforcada
added a commit
that referenced
this pull request
Sep 13, 2015
Branch: refs/heads/master Date: 2015-09-12T16:28:35+02:00 Author: Gil Forcada Codinachs (gforcada) <gforcada@gnome.org> Commit: plone/plone.formwidget.contenttree@329fb2c Remove egg_info See plone/plone.registry#4 Files changed: D setup.cfg Repository: plone.formwidget.contenttree Branch: refs/heads/master Date: 2015-09-13T22:28:43+02:00 Author: Gil Forcada Codinachs (gforcada) <gforcada@gnome.org> Commit: plone/plone.formwidget.contenttree@c4cebc6 Merge pull request #20 from plone/gforcada-patch-1 Remove egg_info Files changed: D setup.cfg
gforcada
added a commit
that referenced
this pull request
Sep 13, 2015
Branch: refs/heads/master Date: 2015-09-12T16:28:35+02:00 Author: Gil Forcada Codinachs (gforcada) <gforcada@gnome.org> Commit: plone/plone.formwidget.contenttree@329fb2c Remove egg_info See plone/plone.registry#4 Files changed: D setup.cfg Repository: plone.formwidget.contenttree Branch: refs/heads/master Date: 2015-09-13T22:28:43+02:00 Author: Gil Forcada Codinachs (gforcada) <gforcada@gnome.org> Commit: plone/plone.formwidget.contenttree@c4cebc6 Merge pull request #20 from plone/gforcada-patch-1 Remove egg_info Files changed: D setup.cfg
vangheem
added a commit
that referenced
this pull request
Sep 27, 2015
Branch: refs/heads/master Date: 2015-09-26T05:58:02-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.protect@3ffaf6b patch pluggable auth csrf with marmoset Files changed: A plone/protect/tests/testPatches.py M CHANGES.rst M README.rst M plone/protect/configure.zcml M plone/protect/monkey.py Repository: plone.protect Branch: refs/heads/master Date: 2015-09-26T20:41:26-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.protect@eb6d744 Merge pull request #20 from plone/repatch-pluggableauth2 patch pluggable auth with marmoset patch Files changed: A plone/protect/tests/testPatches.py M CHANGES.rst M README.rst M plone/protect/configure.zcml M plone/protect/monkey.py
gforcada
added a commit
that referenced
this pull request
Nov 25, 2015
Branch: refs/heads/master Date: 2015-11-22T01:53:18+01:00 Author: Rafael Oliveira (rafaelbco) <rafaelbco@gmail.com> Commit: plone/plone.app.versioningbehavior@fb583a6 Fixes #10: Views for Image and File versions don't work. Files changed: M CHANGES.rst M plone/app/versioningbehavior/browser.py M plone/app/versioningbehavior/configure.zcml Repository: plone.app.versioningbehavior Branch: refs/heads/master Date: 2015-11-22T01:53:18+01:00 Author: Rafael Oliveira (rafaelbco) <rafaelbco@gmail.com> Commit: plone/plone.app.versioningbehavior@40927fe @@version-view: Handle file fields defined in behaviors when converting download URLs. Files changed: M plone/app/versioningbehavior/browser.py Repository: plone.app.versioningbehavior Branch: refs/heads/master Date: 2015-11-25T12:17:45+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.forcada@freitag.de> Commit: plone/plone.app.versioningbehavior@1bb4988 Merge pull request #20 from syslabcom/master Refs #18 - Fix for Views for Image and File versions don't work. Files changed: M CHANGES.rst M plone/app/versioningbehavior/browser.py M plone/app/versioningbehavior/configure.zcml
mister-roboto
pushed a commit
that referenced
this pull request
Jan 29, 2016
Branch: refs/heads/master Date: 2016-01-26T16:58:45+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.testing@47069c7 Depend on zope.testrunner and fix deprecated usage of zope.testing.testrunner. Files changed: M CHANGES.rst M plone/app/testing/helpers.rst M plone/app/testing/layers.rst M plone/app/testing/selenium.rst M setup.py Repository: plone.app.testing Branch: refs/heads/master Date: 2016-01-26T17:12:00+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.testing@307a10e teardown order is different with zope.testrunner Files changed: M plone/app/testing/layers.rst Repository: plone.app.testing Branch: refs/heads/master Date: 2016-01-29T15:00:27+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.testing@85d8f5c Fix layers.rst doctest to be compatible with older and newer zope.testrunner layer ordering. Files changed: M CHANGES.rst M plone/app/testing/layers.rst Repository: plone.app.testing Branch: refs/heads/master Date: 2016-01-29T16:37:10+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.testing@bc0589f Merge pull request #20 from plone/thet-zope4 Zope4 Files changed: M CHANGES.rst M plone/app/testing/helpers.rst M plone/app/testing/layers.rst M plone/app/testing/selenium.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 4, 2016
Branch: refs/heads/master Date: 2016-02-02T21:20:09+01:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.recipe.zope2instance@d4f24b3 Fix tests Files changed: M src/plone/recipe/zope2instance/tests/zope2instance.txt Repository: plone.recipe.zope2instance Branch: refs/heads/master Date: 2016-02-04T10:40:11+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.recipe.zope2instance@6288eac Merge pull request #20 from plone/fix_tests Fix doctests Files changed: M src/plone/recipe/zope2instance/tests/zope2instance.txt
mister-roboto
pushed a commit
that referenced
this pull request
Feb 4, 2016
Branch: refs/heads/master Date: 2016-02-02T21:20:09+01:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.recipe.zope2instance@d4f24b3 Fix tests Files changed: M src/plone/recipe/zope2instance/tests/zope2instance.txt Repository: plone.recipe.zope2instance Branch: refs/heads/master Date: 2016-02-04T10:40:11+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.recipe.zope2instance@6288eac Merge pull request #20 from plone/fix_tests Fix doctests Files changed: M src/plone/recipe/zope2instance/tests/zope2instance.txt
mister-roboto
pushed a commit
that referenced
this pull request
Feb 18, 2016
Branch: refs/heads/master Date: 2016-02-18T07:47:32+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.forcada@freitag.de> Commit: plone/archetypes.multilingual@19e4544 Remove transaction commit Its use on an integration test is forbidden, due to test isolation breakage. @bloodbare these last lines are actually not testing anything, are they needed? Fixes: plone/archetypes.multilingual#12 Files changed: M archetypes/multilingual/tests/languageindependentfields.txt Repository: archetypes.multilingual Branch: refs/heads/master Date: 2016-02-18T22:51:50+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.forcada@freitag.de> Commit: plone/archetypes.multilingual@b27959a Merge pull request #20 from plone/gforcada-patch-1 Remove transaction commit Files changed: M archetypes/multilingual/tests/languageindependentfields.txt
mister-roboto
pushed a commit
that referenced
this pull request
Feb 26, 2016
Branch: refs/heads/master Date: 2016-02-26T14:57:59+01:00 Author: Markus Hilbert (iham) <hilbert.markus@gmail.com> Commit: plone/plone.app.iterate@9b79455 Added profile id "default" and deprecated id "plone.app.iterate". Files changed: A plone/app/iterate/setuphandlers.py M CHANGES.rst M plone/app/iterate/configure.zcml M plone/app/iterate/testing.py M setup.py Repository: plone.app.iterate Branch: refs/heads/master Date: 2016-02-26T18:15:11+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.iterate@74ed979 Merge pull request #20 from iham/master Cleanup + Added profile id "default" and deprecated id "plone.app.iterate". Files changed: A plone/app/iterate/setuphandlers.py M CHANGES.rst M plone/app/iterate/configure.zcml M plone/app/iterate/testing.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 9, 2016
Branch: refs/heads/master Date: 2016-03-08T15:45:51+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.formwidget.namedfile@40f95a9 Fix Custom Site-Logo will be deleted on re-edit Fix issue, where NamedFileWidget and NamedImageWidget on ``zope.schema.ASCII`` fields cleared the field values on resubmit with action ``nochange``. Fixes: plone/Products.CMFPlone#1144 Introduces horrible doctest :/ z3c.form must die! Files changed: M CHANGES.rst M plone/formwidget/namedfile/tests.py M plone/formwidget/namedfile/widget.py M plone/formwidget/namedfile/widget.rst M setup.py Repository: plone.formwidget.namedfile Branch: refs/heads/master Date: 2016-03-09T12:35:37+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.formwidget.namedfile@ab41c20 Merge pull request #20 from plone/thet-fix-cmfplone1144 Fix Custom Site-Logo will be deleted on re-edit Files changed: M CHANGES.rst M plone/formwidget/namedfile/tests.py M plone/formwidget/namedfile/widget.py M plone/formwidget/namedfile/widget.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 9, 2016
Branch: refs/heads/master Date: 2016-03-08T15:45:51+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.formwidget.namedfile@40f95a9 Fix Custom Site-Logo will be deleted on re-edit Fix issue, where NamedFileWidget and NamedImageWidget on ``zope.schema.ASCII`` fields cleared the field values on resubmit with action ``nochange``. Fixes: plone/Products.CMFPlone#1144 Introduces horrible doctest :/ z3c.form must die! Files changed: M CHANGES.rst M plone/formwidget/namedfile/tests.py M plone/formwidget/namedfile/widget.py M plone/formwidget/namedfile/widget.rst M setup.py Repository: plone.formwidget.namedfile Branch: refs/heads/master Date: 2016-03-09T12:35:37+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.formwidget.namedfile@ab41c20 Merge pull request #20 from plone/thet-fix-cmfplone1144 Fix Custom Site-Logo will be deleted on re-edit Files changed: M CHANGES.rst M plone/formwidget/namedfile/tests.py M plone/formwidget/namedfile/widget.py M plone/formwidget/namedfile/widget.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 9, 2016
Branch: refs/heads/master Date: 2016-03-08T15:45:51+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.formwidget.namedfile@40f95a9 Fix Custom Site-Logo will be deleted on re-edit Fix issue, where NamedFileWidget and NamedImageWidget on ``zope.schema.ASCII`` fields cleared the field values on resubmit with action ``nochange``. Fixes: plone/Products.CMFPlone#1144 Introduces horrible doctest :/ z3c.form must die! Files changed: M CHANGES.rst M plone/formwidget/namedfile/tests.py M plone/formwidget/namedfile/widget.py M plone/formwidget/namedfile/widget.rst M setup.py Repository: plone.formwidget.namedfile Branch: refs/heads/master Date: 2016-03-09T12:35:37+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.formwidget.namedfile@ab41c20 Merge pull request #20 from plone/thet-fix-cmfplone1144 Fix Custom Site-Logo will be deleted on re-edit Files changed: M CHANGES.rst M plone/formwidget/namedfile/tests.py M plone/formwidget/namedfile/widget.py M plone/formwidget/namedfile/widget.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 14, 2016
Branch: refs/heads/2.2.x Date: 2016-06-13T19:39:55-03:00 Author: hvelarde (hvelarde) <hector.velarde@gmail.com> Commit: plone/Products.ResourceRegistries@e94b0bb Fix validation of an external resource id Files changed: M CHANGES.rst M Products/ResourceRegistries/tests/testJSRegistry.py M Products/ResourceRegistries/tools/BaseRegistry.py Repository: Products.ResourceRegistries Branch: refs/heads/2.2.x Date: 2016-06-14T09:49:24+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.ResourceRegistries@421f4f7 Merge pull request #20 from plone/hvelarde-rename Fix validation of an external resource id Files changed: M CHANGES.rst M Products/ResourceRegistries/tests/testJSRegistry.py M Products/ResourceRegistries/tools/BaseRegistry.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 6, 2016
Branch: refs/heads/master Date: 2016-07-05T23:16:29+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.formwidget.recurrence@b589278 Use zope.interface decorator This not only makes code more pleasent to read, but also makes the code python 3 compatible (while maintaining python 2 compatibility). Files changed: M CHANGES.rst M plone/formwidget/recurrence/at/widget.py M plone/formwidget/recurrence/tests/test_z3cwidget.py M plone/formwidget/recurrence/z3cform/field.py M plone/formwidget/recurrence/z3cform/widget.py Repository: plone.formwidget.recurrence Branch: refs/heads/master Date: 2016-07-07T00:58:17+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.formwidget.recurrence@93a5f1c Merge pull request #20 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/formwidget/recurrence/at/widget.py M plone/formwidget/recurrence/tests/test_z3cwidget.py M plone/formwidget/recurrence/z3cform/field.py M plone/formwidget/recurrence/z3cform/widget.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 6, 2016
Branch: refs/heads/master Date: 2016-07-05T23:16:29+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.formwidget.recurrence@b589278 Use zope.interface decorator This not only makes code more pleasent to read, but also makes the code python 3 compatible (while maintaining python 2 compatibility). Files changed: M CHANGES.rst M plone/formwidget/recurrence/at/widget.py M plone/formwidget/recurrence/tests/test_z3cwidget.py M plone/formwidget/recurrence/z3cform/field.py M plone/formwidget/recurrence/z3cform/widget.py Repository: plone.formwidget.recurrence Branch: refs/heads/master Date: 2016-07-07T00:58:17+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.formwidget.recurrence@93a5f1c Merge pull request #20 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/formwidget/recurrence/at/widget.py M plone/formwidget/recurrence/tests/test_z3cwidget.py M plone/formwidget/recurrence/z3cform/field.py M plone/formwidget/recurrence/z3cform/widget.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 9, 2016
Branch: refs/heads/master Date: 2016-07-05T23:11:31+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.app.contentrules@d63bc98 Use zope.interface decorator This not only makes code more pleasent to read, but also makes the code python 3 compatible (while maintaining python 2 compatibility). Files changed: M CHANGES.rst M plone/app/contentrules/actions/copy.py M plone/app/contentrules/actions/delete.py M plone/app/contentrules/actions/logger.py M plone/app/contentrules/actions/mail.py M plone/app/contentrules/actions/move.py M plone/app/contentrules/actions/notify.py M plone/app/contentrules/actions/workflow.py M plone/app/contentrules/browser/adding.py M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/traversal.py M plone/app/contentrules/conditions/fileextension.py M plone/app/contentrules/conditions/group.py M plone/app/contentrules/conditions/portaltype.py M plone/app/contentrules/conditions/role.py M plone/app/contentrules/conditions/talesexpression.py M plone/app/contentrules/conditions/wfstate.py M plone/app/contentrules/conditions/wftransition.py M plone/app/contentrules/exportimport/rules.py M plone/app/contentrules/namechooser.py M plone/app/contentrules/tests/dummy.py M plone/app/contentrules/tests/test_action_copy.py M plone/app/contentrules/tests/test_action_delete.py M plone/app/contentrules/tests/test_action_logger.py M plone/app/contentrules/tests/test_action_mail.py M plone/app/contentrules/tests/test_action_move.py M plone/app/contentrules/tests/test_action_notify.py M plone/app/contentrules/tests/test_action_workflow.py M plone/app/contentrules/tests/test_condition_group.py M plone/app/contentrules/tests/test_condition_portal_type.py M plone/app/contentrules/tests/test_condition_role.py M plone/app/contentrules/tests/test_condition_tales_expression.py M plone/app/contentrules/tests/test_condition_wfstate.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2016-07-09T08:51:04+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.app.contentrules@866e17f Merge pull request #20 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/app/contentrules/actions/copy.py M plone/app/contentrules/actions/delete.py M plone/app/contentrules/actions/logger.py M plone/app/contentrules/actions/mail.py M plone/app/contentrules/actions/move.py M plone/app/contentrules/actions/notify.py M plone/app/contentrules/actions/workflow.py M plone/app/contentrules/browser/adding.py M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/traversal.py M plone/app/contentrules/conditions/fileextension.py M plone/app/contentrules/conditions/group.py M plone/app/contentrules/conditions/portaltype.py M plone/app/contentrules/conditions/role.py M plone/app/contentrules/conditions/talesexpression.py M plone/app/contentrules/conditions/wfstate.py M plone/app/contentrules/conditions/wftransition.py M plone/app/contentrules/exportimport/rules.py M plone/app/contentrules/namechooser.py M plone/app/contentrules/tests/dummy.py M plone/app/contentrules/tests/test_action_copy.py M plone/app/contentrules/tests/test_action_delete.py M plone/app/contentrules/tests/test_action_logger.py M plone/app/contentrules/tests/test_action_mail.py M plone/app/contentrules/tests/test_action_move.py M plone/app/contentrules/tests/test_action_notify.py M plone/app/contentrules/tests/test_action_workflow.py M plone/app/contentrules/tests/test_condition_group.py M plone/app/contentrules/tests/test_condition_portal_type.py M plone/app/contentrules/tests/test_condition_role.py M plone/app/contentrules/tests/test_condition_tales_expression.py M plone/app/contentrules/tests/test_condition_wfstate.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 9, 2016
Branch: refs/heads/master Date: 2016-07-05T23:11:31+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.app.contentrules@d63bc98 Use zope.interface decorator This not only makes code more pleasent to read, but also makes the code python 3 compatible (while maintaining python 2 compatibility). Files changed: M CHANGES.rst M plone/app/contentrules/actions/copy.py M plone/app/contentrules/actions/delete.py M plone/app/contentrules/actions/logger.py M plone/app/contentrules/actions/mail.py M plone/app/contentrules/actions/move.py M plone/app/contentrules/actions/notify.py M plone/app/contentrules/actions/workflow.py M plone/app/contentrules/browser/adding.py M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/traversal.py M plone/app/contentrules/conditions/fileextension.py M plone/app/contentrules/conditions/group.py M plone/app/contentrules/conditions/portaltype.py M plone/app/contentrules/conditions/role.py M plone/app/contentrules/conditions/talesexpression.py M plone/app/contentrules/conditions/wfstate.py M plone/app/contentrules/conditions/wftransition.py M plone/app/contentrules/exportimport/rules.py M plone/app/contentrules/namechooser.py M plone/app/contentrules/tests/dummy.py M plone/app/contentrules/tests/test_action_copy.py M plone/app/contentrules/tests/test_action_delete.py M plone/app/contentrules/tests/test_action_logger.py M plone/app/contentrules/tests/test_action_mail.py M plone/app/contentrules/tests/test_action_move.py M plone/app/contentrules/tests/test_action_notify.py M plone/app/contentrules/tests/test_action_workflow.py M plone/app/contentrules/tests/test_condition_group.py M plone/app/contentrules/tests/test_condition_portal_type.py M plone/app/contentrules/tests/test_condition_role.py M plone/app/contentrules/tests/test_condition_tales_expression.py M plone/app/contentrules/tests/test_condition_wfstate.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2016-07-09T08:51:04+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.app.contentrules@866e17f Merge pull request #20 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/app/contentrules/actions/copy.py M plone/app/contentrules/actions/delete.py M plone/app/contentrules/actions/logger.py M plone/app/contentrules/actions/mail.py M plone/app/contentrules/actions/move.py M plone/app/contentrules/actions/notify.py M plone/app/contentrules/actions/workflow.py M plone/app/contentrules/browser/adding.py M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/traversal.py M plone/app/contentrules/conditions/fileextension.py M plone/app/contentrules/conditions/group.py M plone/app/contentrules/conditions/portaltype.py M plone/app/contentrules/conditions/role.py M plone/app/contentrules/conditions/talesexpression.py M plone/app/contentrules/conditions/wfstate.py M plone/app/contentrules/conditions/wftransition.py M plone/app/contentrules/exportimport/rules.py M plone/app/contentrules/namechooser.py M plone/app/contentrules/tests/dummy.py M plone/app/contentrules/tests/test_action_copy.py M plone/app/contentrules/tests/test_action_delete.py M plone/app/contentrules/tests/test_action_logger.py M plone/app/contentrules/tests/test_action_mail.py M plone/app/contentrules/tests/test_action_move.py M plone/app/contentrules/tests/test_action_notify.py M plone/app/contentrules/tests/test_action_workflow.py M plone/app/contentrules/tests/test_condition_group.py M plone/app/contentrules/tests/test_condition_portal_type.py M plone/app/contentrules/tests/test_condition_role.py M plone/app/contentrules/tests/test_condition_tales_expression.py M plone/app/contentrules/tests/test_condition_wfstate.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 1, 2016
Branch: refs/heads/2.2.x Date: 2016-09-01T14:42:08-07:00 Author: deankarlen (deankarlen) <karlen@uvic.ca> Commit: plone/Products.CMFDiffTool@fbcdbf8 Fix error when there are changes in objects of type "set" Dexterity types that use selectable elements (zope.schema.Set) have objects of type "set". When using CMFDiff tool to examine changes between versions having differences between these set objects, FieldDiff.inline_diff() fails as it assumes the objects a and b can be indexed. This is solved by passing a list of the object, if the object is of type "set". Files changed: M CHANGES.rst M Products/CMFDiffTool/ListDiff.py Repository: Products.CMFDiffTool Branch: refs/heads/2.2.x Date: 2016-09-01T15:24:05-07:00 Author: Dean Karlen (deankarlen) <karlen@uvic.ca> Commit: plone/Products.CMFDiffTool@10570cd Merge pull request #20 from plone/2.2.x-karlen20160901 Fix error when there are changes in objects of type "set" Files changed: M CHANGES.rst M Products/CMFDiffTool/ListDiff.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 7, 2016
Branch: refs/heads/master Date: 2016-10-05T15:11:49+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.scale@c710301 Catch KeyError when deleting non existing scale. This can happen in corner cases. Fixes plone/plone.scale#15 Files changed: M CHANGES.rst M plone/scale/storage.py M plone/scale/tests/test_storage.py Repository: plone.scale Branch: refs/heads/master Date: 2016-10-07T07:35:56+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.scale@f22b598 Merge pull request #20 from plone/origin/catch-keyerror-on-broken-scalesdict-master Catch KeyError when deleting non existing scale. [master] Files changed: M CHANGES.rst M plone/scale/storage.py M plone/scale/tests/test_storage.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 24, 2016
Branch: refs/heads/master Date: 2016-10-23T12:23:06-04:00 Author: Matthew Wilkes (MatthewWilkes) <git@matthewwilkes.name> Commit: plone/Products.PlonePAS@6b95b3c Fix plone/Products.CMFPlone#1725 - getMemberInfo no longer fails on sites that have the location memberdata property removed. Files changed: M CHANGES.rst M src/Products/PlonePAS/tests/test_membershiptool.py M src/Products/PlonePAS/tools/membership.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2016-10-23T23:21:24-04:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.PlonePAS@b31fca6 Merge pull request #20 from plone/missing_property_fix Fix login on sites without a location property Files changed: M CHANGES.rst M src/Products/PlonePAS/tests/test_membershiptool.py M src/Products/PlonePAS/tools/membership.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 24, 2016
Branch: refs/heads/master Date: 2016-10-23T12:23:06-04:00 Author: Matthew Wilkes (MatthewWilkes) <git@matthewwilkes.name> Commit: plone/Products.PlonePAS@6b95b3c Fix plone/Products.CMFPlone#1725 - getMemberInfo no longer fails on sites that have the location memberdata property removed. Files changed: M CHANGES.rst M src/Products/PlonePAS/tests/test_membershiptool.py M src/Products/PlonePAS/tools/membership.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2016-10-23T23:21:24-04:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.PlonePAS@b31fca6 Merge pull request #20 from plone/missing_property_fix Fix login on sites without a location property Files changed: M CHANGES.rst M src/Products/PlonePAS/tests/test_membershiptool.py M src/Products/PlonePAS/tools/membership.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 24, 2016
Branch: refs/heads/master Date: 2016-10-23T12:23:06-04:00 Author: Matthew Wilkes (MatthewWilkes) <git@matthewwilkes.name> Commit: plone/Products.PlonePAS@6b95b3c Fix plone/Products.CMFPlone#1725 - getMemberInfo no longer fails on sites that have the location memberdata property removed. Files changed: M CHANGES.rst M src/Products/PlonePAS/tests/test_membershiptool.py M src/Products/PlonePAS/tools/membership.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2016-10-23T23:21:24-04:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.PlonePAS@b31fca6 Merge pull request #20 from plone/missing_property_fix Fix login on sites without a location property Files changed: M CHANGES.rst M src/Products/PlonePAS/tests/test_membershiptool.py M src/Products/PlonePAS/tools/membership.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 7, 2016
Branch: refs/heads/master Date: 2016-10-22T13:20:00-04:00 Author: Ivan Teoh (ivanteoh) <ivan.teoh@gmail.com> Commit: plone/plone.app.contentlisting@cc4ef62 Remove ZopeTestCase. Files changed: M CHANGES.rst M plone/app/contentlisting/tests/base.py M plone/app/contentlisting/tests/integration.rst M plone/app/contentlisting/tests/test_integration_doctest.py M plone/app/contentlisting/tests/test_integration_unit.py Repository: plone.app.contentlisting Branch: refs/heads/master Date: 2016-11-05T11:58:48+11:00 Author: Ivan Teoh (ivanteoh) <ivan.teoh@gmail.com> Commit: plone/plone.app.contentlisting@010cee1 Replace "hasattr" Files changed: M plone/app/contentlisting/catalog.py M plone/app/contentlisting/contentlisting.py M plone/app/contentlisting/realobject.py Repository: plone.app.contentlisting Branch: refs/heads/master Date: 2016-11-07T09:43:40+11:00 Author: Ivan Teoh (ivanteoh) <ivan.teoh@gmail.com> Commit: plone/plone.app.contentlisting@774d429 Revert catalog getattr changes. Files changed: M plone/app/contentlisting/catalog.py Repository: plone.app.contentlisting Branch: refs/heads/master Date: 2016-11-07T09:57:19+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.app.contentlisting@a67ede3 Merge pull request #20 from plone/remove-zopetestcase Remove ZopeTestCase. Files changed: M CHANGES.rst M plone/app/contentlisting/catalog.py M plone/app/contentlisting/contentlisting.py M plone/app/contentlisting/realobject.py M plone/app/contentlisting/tests/base.py M plone/app/contentlisting/tests/integration.rst M plone/app/contentlisting/tests/test_integration_doctest.py M plone/app/contentlisting/tests/test_integration_unit.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 13, 2018
Branch: refs/heads/master Date: 2018-09-29T22:44:13-04:00 Author: David Glick (davisagli) <david@glicksoftware.com> Commit: plone/plone.portlet.collection@b7b9626 fix tests in Python 3 Files changed: M plone/portlet/collection/tests/functional.txt Repository: plone.portlet.collection Branch: refs/heads/master Date: 2018-10-05T10:33:56+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.portlet.collection@9af9544 add changelog and classifiers Files changed: M CHANGES.rst M setup.py Repository: plone.portlet.collection Branch: refs/heads/master Date: 2018-10-13T15:22:37-04:00 Author: David Glick (davisagli) <dglick@salesforce.com> Commit: plone/plone.portlet.collection@3392077 Merge pull request #20 from plone/python3 fix tests in Python 3 Files changed: M CHANGES.rst M plone/portlet/collection/tests/functional.txt M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 23, 2018
Branch: refs/heads/master Date: 2018-10-03T16:23:32+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@1d9cf00 compatibility with zope2 and zope4 Files changed: M src/plone/app/debugtoolbar/browser/global.pt M src/plone/app/debugtoolbar/browser/global.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-03T16:46:51+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@da0c830 run sixer Files changed: M src/plone/app/debugtoolbar/browser/context.py M src/plone/app/debugtoolbar/browser/interactive.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-03T17:10:34+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@0c648b1 run modernizer Files changed: M bootstrap.py M src/plone/app/debugtoolbar/browser/context.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-04T14:31:18+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@670e942 update for python3 Files changed: M src/plone/app/debugtoolbar/browser/global.py M src/plone/app/debugtoolbar/browser/resources/debugtoolbar.js Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T10:59:05+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@288aef4 do not show server listing if servers not available Files changed: M src/plone/app/debugtoolbar/browser/global.pt Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T11:21:10+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@b3b411b comment on database lock error Files changed: M src/plone/app/debugtoolbar/browser/global.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T12:34:35+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@49e79a3 unhide debugtoolbar viewlets on reinstall Files changed: M src/plone/app/debugtoolbar/profiles/default/viewlets.xml Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T12:42:34+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@dd2e59f Prepare for Python 2 / 3 compatibility Files changed: M CHANGES.rst M setup.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T15:25:03+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.app.debugtoolbar@c7ad474 Fix test setup Files changed: M src/plone/app/debugtoolbar/testing.py M src/plone/app/debugtoolbar/tests/test_setup.py D src/plone/app/debugtoolbar/tests/test_example.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-23T11:25:30+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.debugtoolbar@264dbef Merge pull request #20 from plone/python3 Python3 Files changed: M CHANGES.rst M bootstrap.py M setup.py M src/plone/app/debugtoolbar/browser/context.py M src/plone/app/debugtoolbar/browser/global.pt M src/plone/app/debugtoolbar/browser/global.py M src/plone/app/debugtoolbar/browser/interactive.py M src/plone/app/debugtoolbar/browser/resources/debugtoolbar.js M src/plone/app/debugtoolbar/profiles/default/viewlets.xml M src/plone/app/debugtoolbar/testing.py M src/plone/app/debugtoolbar/tests/test_setup.py D src/plone/app/debugtoolbar/tests/test_example.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 23, 2018
Branch: refs/heads/master Date: 2018-10-03T16:23:32+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@1d9cf00 compatibility with zope2 and zope4 Files changed: M src/plone/app/debugtoolbar/browser/global.pt M src/plone/app/debugtoolbar/browser/global.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-03T16:46:51+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@da0c830 run sixer Files changed: M src/plone/app/debugtoolbar/browser/context.py M src/plone/app/debugtoolbar/browser/interactive.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-03T17:10:34+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@0c648b1 run modernizer Files changed: M bootstrap.py M src/plone/app/debugtoolbar/browser/context.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-04T14:31:18+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@670e942 update for python3 Files changed: M src/plone/app/debugtoolbar/browser/global.py M src/plone/app/debugtoolbar/browser/resources/debugtoolbar.js Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T10:59:05+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@288aef4 do not show server listing if servers not available Files changed: M src/plone/app/debugtoolbar/browser/global.pt Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T11:21:10+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@b3b411b comment on database lock error Files changed: M src/plone/app/debugtoolbar/browser/global.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T12:34:35+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@49e79a3 unhide debugtoolbar viewlets on reinstall Files changed: M src/plone/app/debugtoolbar/profiles/default/viewlets.xml Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T12:42:34+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@dd2e59f Prepare for Python 2 / 3 compatibility Files changed: M CHANGES.rst M setup.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T15:25:03+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.app.debugtoolbar@c7ad474 Fix test setup Files changed: M src/plone/app/debugtoolbar/testing.py M src/plone/app/debugtoolbar/tests/test_setup.py D src/plone/app/debugtoolbar/tests/test_example.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-23T11:25:30+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.debugtoolbar@264dbef Merge pull request #20 from plone/python3 Python3 Files changed: M CHANGES.rst M bootstrap.py M setup.py M src/plone/app/debugtoolbar/browser/context.py M src/plone/app/debugtoolbar/browser/global.pt M src/plone/app/debugtoolbar/browser/global.py M src/plone/app/debugtoolbar/browser/interactive.py M src/plone/app/debugtoolbar/browser/resources/debugtoolbar.js M src/plone/app/debugtoolbar/profiles/default/viewlets.xml M src/plone/app/debugtoolbar/testing.py M src/plone/app/debugtoolbar/tests/test_setup.py D src/plone/app/debugtoolbar/tests/test_example.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 23, 2018
Branch: refs/heads/master Date: 2018-10-03T16:23:32+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@1d9cf00 compatibility with zope2 and zope4 Files changed: M src/plone/app/debugtoolbar/browser/global.pt M src/plone/app/debugtoolbar/browser/global.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-03T16:46:51+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@da0c830 run sixer Files changed: M src/plone/app/debugtoolbar/browser/context.py M src/plone/app/debugtoolbar/browser/interactive.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-03T17:10:34+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@0c648b1 run modernizer Files changed: M bootstrap.py M src/plone/app/debugtoolbar/browser/context.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-04T14:31:18+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@670e942 update for python3 Files changed: M src/plone/app/debugtoolbar/browser/global.py M src/plone/app/debugtoolbar/browser/resources/debugtoolbar.js Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T10:59:05+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@288aef4 do not show server listing if servers not available Files changed: M src/plone/app/debugtoolbar/browser/global.pt Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T11:21:10+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@b3b411b comment on database lock error Files changed: M src/plone/app/debugtoolbar/browser/global.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T12:34:35+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@49e79a3 unhide debugtoolbar viewlets on reinstall Files changed: M src/plone/app/debugtoolbar/profiles/default/viewlets.xml Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T12:42:34+02:00 Author: Jan Mevissen (jmevissen) <mevissen@interaktiv.de> Commit: plone/plone.app.debugtoolbar@dd2e59f Prepare for Python 2 / 3 compatibility Files changed: M CHANGES.rst M setup.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-05T15:25:03+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.app.debugtoolbar@c7ad474 Fix test setup Files changed: M src/plone/app/debugtoolbar/testing.py M src/plone/app/debugtoolbar/tests/test_setup.py D src/plone/app/debugtoolbar/tests/test_example.py Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2018-10-23T11:25:30+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.debugtoolbar@264dbef Merge pull request #20 from plone/python3 Python3 Files changed: M CHANGES.rst M bootstrap.py M setup.py M src/plone/app/debugtoolbar/browser/context.py M src/plone/app/debugtoolbar/browser/global.pt M src/plone/app/debugtoolbar/browser/global.py M src/plone/app/debugtoolbar/browser/interactive.py M src/plone/app/debugtoolbar/browser/resources/debugtoolbar.js M src/plone/app/debugtoolbar/profiles/default/viewlets.xml M src/plone/app/debugtoolbar/testing.py M src/plone/app/debugtoolbar/tests/test_setup.py D src/plone/app/debugtoolbar/tests/test_example.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 14, 2018
Branch: refs/heads/master Date: 2018-11-12T00:30:18+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.subrequest@1f2c30a Remove five.globalrequest dependency On Zope 4 is already merge into Zope itself. Files changed: M CHANGES.rst M plone/subrequest/configure.zcml M setup.py Repository: plone.subrequest Branch: refs/heads/master Date: 2018-11-13T22:03:26+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.subrequest@827618a Remove Plone 4.3..5.1 trove classifiers Versions from 1.8.x branch are compatible with those Plone versions. master is now only compatible with Plone 5.2 only. Files changed: M setup.py Repository: plone.subrequest Branch: refs/heads/master Date: 2018-11-14T10:21:03+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.subrequest@7390f25 Merge pull request #20 from plone/remove-five-globalrequest Remove five.globalrequest dependency Files changed: M CHANGES.rst M plone/subrequest/configure.zcml M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 14, 2018
Branch: refs/heads/master Date: 2018-11-12T00:38:35+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.registry@707c481 Avoid a deprecation warning Files changed: M CHANGES.rst M plone/registry/recordsproxy.py Repository: plone.registry Branch: refs/heads/master Date: 2018-11-14T11:26:04+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.registry@abb05ff Merge pull request #20 from plone/deprecation-warning Avoid a deprecation warning Files changed: M CHANGES.rst M plone/registry/recordsproxy.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 14, 2018
Branch: refs/heads/master Date: 2018-11-12T00:38:35+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.registry@707c481 Avoid a deprecation warning Files changed: M CHANGES.rst M plone/registry/recordsproxy.py Repository: plone.registry Branch: refs/heads/master Date: 2018-11-14T11:26:04+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.registry@abb05ff Merge pull request #20 from plone/deprecation-warning Avoid a deprecation warning Files changed: M CHANGES.rst M plone/registry/recordsproxy.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 2, 2019
Branch: refs/heads/master Date: 2019-03-02T00:43:33+01:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.app.workflow@9793bec The sharing search form remembers the search term Fixes #19 Files changed: A news/19.bugfix M plone/app/workflow/browser/sharing.pt Repository: plone.app.workflow Branch: refs/heads/master Date: 2019-03-02T11:37:52+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.workflow@99c3592 Merge pull request #20 from plone/19-remember-search The sharing search form remembers the search term Files changed: A news/19.bugfix M plone/app/workflow/browser/sharing.pt
mister-roboto
pushed a commit
that referenced
this pull request
May 21, 2019
Branch: refs/heads/master Date: 2019-05-09T11:50:27+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.app.viewletmanager@8a87941 Fix deprecation warning importing ZPublisher.Retry The import is deprecated since 3 years: - zopefoundation/Zope@2f44423#diff-3f8ad2e4a0738b415cb2c41ff71d59b9R38 Fixes #19 Files changed: A news/19.bugfix M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2019-05-21T09:15:08+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.viewletmanager@0841995 Merge pull request #20 from plone/19-fix-deprecation Fix deprecation warning importing ZPublisher.Retry Files changed: A news/19.bugfix M plone/app/viewletmanager/manager.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 22, 2019
Branch: refs/heads/master Date: 2019-06-21T10:12:22+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/Products.CMFFormController@d4fdab8 Add support for Python 3.8 Files changed: M Products/CMFFormController/Actions/BaseFormAction.py Repository: Products.CMFFormController Branch: refs/heads/master Date: 2019-06-21T10:14:07+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/Products.CMFFormController@6a14d7e add changenote Files changed: A news/20.feature Repository: Products.CMFFormController Branch: refs/heads/master Date: 2019-06-22T09:25:48+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/Products.CMFFormController@ae3b860 Merge pull request #20 from plone/python38 Add support for Python 3.8 Files changed: A news/20.feature M Products/CMFFormController/Actions/BaseFormAction.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 27, 2019
Branch: refs/heads/master Date: 2019-06-26T20:33:55+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.CMFDynamicViewFTI@f8c839f missing migrated security decorator Files changed: M Products/CMFDynamicViewFTI/fti.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2019-06-26T20:40:45+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.CMFDynamicViewFTI@97e27a8 fixes crashing interpreter with Fatal Python error: Cannot recover from stack overflow. see plone/Products.CMFPlone#2874 Files changed: A news/20.bugfix M Products/CMFDynamicViewFTI/browserdefault.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2019-06-27T19:52:52+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/Products.CMFDynamicViewFTI@96aa515 Merge pull request #20 from plone/fix_cmfplone_2874 Fix cmfplone 2874 Files changed: A news/20.bugfix M Products/CMFDynamicViewFTI/browserdefault.py M Products/CMFDynamicViewFTI/fti.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 11, 2020
Branch: refs/heads/master Date: 2020-04-10T17:22:58+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.memoize@3e19b3f Improve speed when getting resources from the cache Fixes #19 Files changed: A news/19.bugfix M plone/memoize/view.py Repository: plone.memoize Branch: refs/heads/master Date: 2020-04-11T10:54:24+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.memoize@de09635 Merge pull request #20 from plone/19-speedup Improve speed when getting resources from the cache Files changed: A news/19.bugfix M plone/memoize/view.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 11, 2020
Branch: refs/heads/master Date: 2020-04-10T17:22:58+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.memoize@3e19b3f Improve speed when getting resources from the cache Fixes #19 Files changed: A news/19.bugfix M plone/memoize/view.py Repository: plone.memoize Branch: refs/heads/master Date: 2020-04-11T10:54:24+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.memoize@de09635 Merge pull request #20 from plone/19-speedup Improve speed when getting resources from the cache Files changed: A news/19.bugfix M plone/memoize/view.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 17, 2020
Branch: refs/heads/master Date: 2020-04-17T10:04:51+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@bee903f fix dependency indirection to CMFPlone Files changed: A news/20.bugfix M plone/session/tktauth.py Repository: plone.session Branch: refs/heads/master Date: 2020-06-17T15:12:44+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.session@2c05684 Merge pull request #20 from plone/fix-depepndency-indirection fix dependency indirection to CMFPlone Files changed: A news/20.bugfix M plone/session/tktauth.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 17, 2020
Branch: refs/heads/master Date: 2020-04-17T10:04:51+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@bee903f fix dependency indirection to CMFPlone Files changed: A news/20.bugfix M plone/session/tktauth.py Repository: plone.session Branch: refs/heads/master Date: 2020-06-17T15:12:44+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.session@2c05684 Merge pull request #20 from plone/fix-depepndency-indirection fix dependency indirection to CMFPlone Files changed: A news/20.bugfix M plone/session/tktauth.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 7, 2021
Branch: refs/heads/main Date: 2021-11-07T16:26:43+01:00 Author: Víctor Fernández de Alba (sneridagh) <sneridagh@gmail.com> Commit: plone/plone.volto@dcea0f4 Use new metadata utility for adding the image_field to the default se… (#20) * Use new metadata utility for adding the image_field to the default serialization * Fix naming * Constrain the minimum p.restapi version that works with the new metadata utility * Zpretty happy * Update CHANGES.rst Co-authored-by: Timo Stollenwerk <tisto@users.noreply.github.com> Files changed: A src/plone/volto/summary.py M CHANGES.rst M setup.py M src/plone/volto/configure.zcml
mister-roboto
pushed a commit
that referenced
this pull request
Feb 24, 2022
Branch: refs/heads/master Date: 2022-02-23T20:33:33+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Plone@50a1ef7 Depend on plone.volto. Files changed: M CHANGES.rst M setup.cfg Repository: Plone Branch: refs/heads/master Date: 2022-02-24T17:50:55+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Plone@89f0596 Merge pull request #20 from plone/depend-plone-volto Depend on plone.volto in Plone 6 Files changed: M CHANGES.rst M setup.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Mar 16, 2022
Branch: refs/heads/master Date: 2022-03-08T20:59:56+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.customerize@dd92054 Fixed tests when run with zope.component 5+. See plone/plone.app.users#107 Files changed: A news/500.bugfix M plone/app/customerize/tests/testBrowserLayers.txt Repository: plone.app.customerize Branch: refs/heads/master Date: 2022-03-16T09:25:59+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.customerize@71f66fb Merge pull request #20 from plone/maurits-zope-component-5 Fixed tests when run with zope.component 5+. Files changed: A news/500.bugfix M plone/app/customerize/tests/testBrowserLayers.txt
mister-roboto
pushed a commit
that referenced
this pull request
Mar 16, 2022
Branch: refs/heads/master Date: 2022-03-08T20:59:56+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.customerize@dd92054 Fixed tests when run with zope.component 5+. See plone/plone.app.users#107 Files changed: A news/500.bugfix M plone/app/customerize/tests/testBrowserLayers.txt Repository: plone.app.customerize Branch: refs/heads/master Date: 2022-03-16T09:25:59+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.customerize@71f66fb Merge pull request #20 from plone/maurits-zope-component-5 Fixed tests when run with zope.component 5+. Files changed: A news/500.bugfix M plone/app/customerize/tests/testBrowserLayers.txt
mister-roboto
pushed a commit
that referenced
this pull request
Mar 22, 2022
Branch: refs/heads/master Date: 2022-03-17T17:10:19+01:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.z3cform@26a913a fixes for z3c.form >= 4 Files changed: M setup.py M src/plone/z3cform/fieldsets/README.rst M src/plone/z3cform/fieldsets/utils.py M src/plone/z3cform/tests.py M src/plone/z3cform/traversal.txt Repository: plone.z3cform Branch: refs/heads/master Date: 2022-03-18T12:20:17+01:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.z3cform@36aad58 fix iterating over widgets Files changed: M src/plone/z3cform/pagetemplates/macros.pt Repository: plone.z3cform Branch: refs/heads/master Date: 2022-03-21T12:09:21+01:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.z3cform@47886bd add changelog Files changed: A news/20.feature Repository: plone.z3cform Branch: refs/heads/master Date: 2022-03-22T09:49:47+01:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.z3cform@0cbef33 backport ObjectSubForm and SubformAdapter from z3c.form 3.6.x Files changed: A src/plone/z3cform/subform.py M src/plone/z3cform/configure.zcml M src/plone/z3cform/interfaces.py Repository: plone.z3cform Branch: refs/heads/master Date: 2022-03-22T13:38:47+01:00 Author: Peter Mathis (petschki) <petschki@users.noreply.github.com> Commit: plone/plone.z3cform@32e1ebf Merge pull request #20 from plone/z3c-form-latest use latest z3c.form Files changed: A news/20.feature A src/plone/z3cform/subform.py M setup.py M src/plone/z3cform/configure.zcml M src/plone/z3cform/fieldsets/README.rst M src/plone/z3cform/fieldsets/utils.py M src/plone/z3cform/interfaces.py M src/plone/z3cform/pagetemplates/macros.pt M src/plone/z3cform/tests.py M src/plone/z3cform/traversal.txt
mister-roboto
pushed a commit
that referenced
this pull request
May 13, 2022
Branch: refs/heads/main Date: 2022-05-06T19:55:00+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@936ff40 Raise an exception when a module cannot be imported. When environment variable `AUTOINCLUDE_ALLOW_MODULE_NOT_FOUND_ERROR=1` is set, we log an error and continue. Fixes plone/plone.autoinclude#19 Work in progress: the tests fail with this. Files changed: A news/19.feature M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2022-05-09T13:09:49+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@0756119 Allow ModuleNotFoundErrors in tests. Files changed: M src/plone/autoinclude/tests/test_loader.py M test-packages/example.basetestpackage/src/example/basetestpackage/package_base.py M test-packages/example.basetestpackage/src/example/basetestpackage/utils.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2022-05-09T16:50:13+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@68c6c78 AUTOINCLUDE_ALLOW_MODULE_NOT_FOUND_ERROR: allow comma-separated list. Fix tests. Add documentation. Files changed: M README.rst M news/19.feature M src/plone/autoinclude/loader.py M src/plone/autoinclude/tests/test_loader.py M test-packages/example.basetestpackage/src/example/basetestpackage/package_base.py M test-packages/example.basetestpackage/src/example/basetestpackage/utils.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2022-05-13T15:52:18+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.autoinclude@e01ebaa Merge pull request #20 from plone/maurits-env-allow-module-not-found Raise an exception when a module cannot be imported. Files changed: A news/19.feature M README.rst M src/plone/autoinclude/loader.py M src/plone/autoinclude/tests/test_loader.py M test-packages/example.basetestpackage/src/example/basetestpackage/package_base.py M test-packages/example.basetestpackage/src/example/basetestpackage/utils.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 11, 2022
Branch: refs/heads/main Date: 2022-09-11T17:48:08Z Author: Manuel Amador (Rudd-O) (Rudd-O) <rudd-o@rudd-o.com> Commit: plone/plone.base@65bb66f Fix plone.base test by adding an unrestrictedTraverse method to the mock. Files changed: M src/plone/base/tests/test_utils.py Repository: plone.base Branch: refs/heads/main Date: 2022-09-11T18:02:45Z Author: Manuel Amador (Rudd-O) (Rudd-O) <rudd-o@rudd-o.com> Commit: plone/plone.base@26e67a0 Protect the unrestricted traverse with an exception guard, for if the object cannot be found (a legitimate case), then it should not be considered as an object to return as ISite. Files changed: M src/plone/base/utils.py Repository: plone.base Branch: refs/heads/main Date: 2022-09-11T18:08:48Z Author: Manuel Amador (Rudd-O) (Rudd-O) <rudd-o@rudd-o.com> Commit: plone/plone.base@665297b Add towncrier. Files changed: A news/20.bugfix Repository: plone.base Branch: refs/heads/main Date: 2022-09-11T23:10:54Z Author: Rudd-O (Rudd-O) <rudd-o@rudd-o.com> Commit: plone/plone.base@f02bd67 Merge pull request #20 from plone/myfix Fix uses of unrestrictedTraverse in get_top_site_from_url() Files changed: A news/20.bugfix M src/plone/base/tests/test_utils.py M src/plone/base/utils.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 13, 2023
Branch: refs/heads/master Date: 2023-04-11T11:14:47-04:00 Author: Eric Wohnlich (ewohnlich) <eric.wohnlich@gmail.com> Commit: plone/plone.locking@bb6462f add bootstrap 5 classes and icons Files changed: M plone/locking/browser/info.pt Repository: plone.locking Branch: refs/heads/master Date: 2023-04-11T11:24:18-04:00 Author: Eric Wohnlich (ewohnlich) <eric.wohnlich@gmail.com> Commit: plone/plone.locking@85fca98 Create bs5.feature Files changed: A news/bs5.feature Repository: plone.locking Branch: refs/heads/master Date: 2023-04-13T09:01:42+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.locking@855ec3a bump version and update classifiers Files changed: M setup.py Repository: plone.locking Branch: refs/heads/master Date: 2023-04-13T09:01:46+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.locking@5fae671 changenote Files changed: M news/bs5.feature Repository: plone.locking Branch: refs/heads/master Date: 2023-04-13T10:43:27+02:00 Author: Peter Mathis (petschki) <petschki@users.noreply.github.com> Commit: plone/plone.locking@e7f5acd Merge pull request #20 from plone/bootstrap-5 Bootstrap 5 Files changed: A news/bs5.feature M plone/locking/browser/info.pt M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
May 2, 2023
Branch: refs/heads/master Date: 2023-05-01T22:52:29Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.schema@d7b8ffd [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.schema Branch: refs/heads/master Date: 2023-05-02T16:25:13+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.schema@2fa61b1 Merge pull request #20 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-25T23:19:47+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.event@debfb6d Configuring with plone/meta Files changed: A news/cfffba8c.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.event Branch: refs/heads/master Date: 2023-06-25T23:20:45+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.event@51a16fe fix: adjust setup.py Files changed: M setup.py Repository: plone.event Branch: refs/heads/master Date: 2023-10-04T17:42:21+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.event@a58538d Merge pull request #20 from plone/config-with-default-template-0039996b Config with default template Files changed: A news/cfffba8c.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
Oct 4, 2023
Branch: refs/heads/master Date: 2023-06-25T23:19:47+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.event@debfb6d Configuring with plone/meta Files changed: A news/cfffba8c.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.event Branch: refs/heads/master Date: 2023-06-25T23:20:45+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.event@51a16fe fix: adjust setup.py Files changed: M setup.py Repository: plone.event Branch: refs/heads/master Date: 2023-10-04T17:42:21+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.event@a58538d Merge pull request #20 from plone/config-with-default-template-0039996b Config with default template Files changed: A news/cfffba8c.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:17Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.caching@55d3e58 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.15.0 → v3.15.2](asottile/pyupgrade@v3.15.0...v3.15.2) - [github.com/psf/black: 24.1.1 → 24.4.2](psf/black@24.1.1...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.caching Branch: refs/heads/master Date: 2024-05-07T21:26:13+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.caching@9f44f7b Merge pull request #20 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:17Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.caching@55d3e58 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.15.0 → v3.15.2](asottile/pyupgrade@v3.15.0...v3.15.2) - [github.com/psf/black: 24.1.1 → 24.4.2](psf/black@24.1.1...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.caching Branch: refs/heads/master Date: 2024-05-07T21:26:13+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.caching@9f44f7b Merge pull request #20 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:52:53Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.alterego@3bac62c [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.alterego Branch: refs/heads/master Date: 2024-05-07T21:32:12+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.alterego@6d8cec3 Merge pull request #20 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:52:53Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.alterego@3bac62c [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.alterego Branch: refs/heads/master Date: 2024-05-07T21:32:12+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.alterego@6d8cec3 Merge pull request #20 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
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.
My fix for ticket#11189 patches plone.app.portlets, so we need to check that out, too.
Related pull requests:
plone/plone.app.portlets#3
plone/Products.CMFPlone#5