-
-
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
4.1 robot #14
Merged
Merged
4.1 robot #14
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
gotcha
added a commit
that referenced
this pull request
Nov 8, 2011
added more test on reordering folder contents
tisto
added a commit
that referenced
this pull request
Jan 22, 2015
Branch: refs/heads/master Date: 2015-01-22T18:01:44+01:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.app.textfield@2a9117a Revert "Fix marshaler decode to always set raw value as unicode" Files changed: M docs/HISTORY.rst M plone/app/textfield/marshaler.py diff --git a/docs/HISTORY.rst b/docs/HISTORY.rst index 4fae0b8..7da4a34 100644 --- a/docs/HISTORY.rst +++ b/docs/HISTORY.rst @@ -4,20 +4,6 @@ Changelog 1.2.5 (unreleased) ------------------ -- Fix marshaler decode to always decode raw value into unicode - [datakurre] - -- Remove utils.getSiteEncoding, which was deprecated and not used anywhere. - [thet] - -- For Plone 5, support getting markup control panel settings from the registry, - while still supporting normal portal_properties access for Plone < 5. - [thet] - -- Resolved an interesting circular import case, which wasnt effective because - of sort order of imports - [thet] - - For Plone 5, support getting markup control panel settings from the registry, while still supporting normal portal_properties access for Plone < 5. [thet] diff --git a/plone/app/textfield/marshaler.py b/plone/app/textfield/marshaler.py index baf0bdb..482647e 100644 --- a/plone/app/textfield/marshaler.py +++ b/plone/app/textfield/marshaler.py @@ -32,12 +32,8 @@ def decode( charset='utf-8', contentType=None, primary=False): - try: - unicode_value = value.decode(charset) - except UnicodeEncodeError: - unicode_value = value # was already unicode return RichTextValue( - raw=unicode_value, + raw=value, mimeType=contentType or self.field.default_mime_type, outputMimeType=self.field.output_mime_type, encoding=charset Repository: plone.app.textfield Branch: refs/heads/master Date: 2015-01-22T18:01:54+01:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.app.textfield@23bc04d Merge pull request #14 from plone/revert-13-datakurre-fix-decode Revert "Fix marshaler decode to always set raw value as unicode" Files changed: M docs/HISTORY.rst M plone/app/textfield/marshaler.py diff --git a/docs/HISTORY.rst b/docs/HISTORY.rst index 4fae0b8..7da4a34 100644 --- a/docs/HISTORY.rst +++ b/docs/HISTORY.rst @@ -4,20 +4,6 @@ Changelog 1.2.5 (unreleased) ------------------ -- Fix marshaler decode to always decode raw value into unicode - [datakurre] - -- Remove utils.getSiteEncoding, which was deprecated and not used anywhere. - [thet] - -- For Plone 5, support getting markup control panel settings from the registry, - while still supporting normal portal_properties access for Plone < 5. - [thet] - -- Resolved an interesting circular import case, which wasnt effective because - of sort order of imports - [thet] - - For Plone 5, support getting markup control panel settings from the registry, while still supporting normal portal_properties access for Plone < 5. [thet] diff --git a/plone/app/textfield/marshaler.py b/plone/app/textfield/marshaler.py index baf0bdb..482647e 100644 --- a/plone/app/textfield/marshaler.py +++ b/plone/app/textfield/marshaler.py @@ -32,12 +32,8 @@ def decode( charset='utf-8', contentType=None, primary=False): - try: - unicode_value = value.decode(charset) - except UnicodeEncodeError: - unicode_value = value # was already unicode return RichTextValue( - raw=unicode_value, + raw=value, mimeType=contentType or self.field.default_mime_type, outputMimeType=self.field.output_mime_type, encoding=charset
tisto
added a commit
that referenced
this pull request
Feb 27, 2015
Branch: refs/heads/master Date: 2015-01-25T20:15:31+01:00 Author: Jure Cerjak (jcerjak) <[email protected]> Commit: plone/plone.app.search@15427c4 read "allow_anon_views_about" from registry instead of properties Files changed: M CHANGES.rst M plone/app/search/search.pt diff --git a/CHANGES.rst b/CHANGES.rst index 8a05d5c..a1ea647 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,9 @@ Changelog 1.2.3 (unreleased) ------------------ -- Nothing changed yet. +- Read ``allow_anon_views_about`` setting from the registry instead of portal + properties (see plone/Products.CMFPlone#216). + [jcerjak] 1.2.2 (2014-10-23) diff --git a/plone/app/search/search.pt b/plone/app/search/search.pt index 2549364..9ae4233 100644 --- a/plone/app/search/search.pt +++ b/plone/app/search/search.pt @@ -147,7 +147,7 @@ <div class="search-type-options"> <tal:div tal:define="typeLists python:context.createMultiColumnList(types_list, numCols=2, sort_on='self');" - + tal:repeat="sublist typeLists"> <tal:items repeat="type sublist"> <div> @@ -240,7 +240,7 @@ </dl> - + </div> @@ -275,8 +275,8 @@ toLocalizedTime nocall: context/@@plone/toLocalizedTime; site_properties context/portal_properties/site_properties; use_view_action site_properties/typesUseViewActionInListings|python:(); - allowAnonymousViewAbout site_properties/allowAnonymousViewAbout; - show_about python:not isAnon or allowAnonymousViewAbout;"> + allow_anon_views_about python:context.portal_registry['plone.allow_anon_views_about']; + show_about python:not isAnon or allow_anon_views_about;"> <ol class="searchResults"> <tal:results repeat="item batch"> <li> Repository: plone.app.search Branch: refs/heads/master Date: 2015-02-27T07:47:52+01:00 Author: Timo Stollenwerk () <[email protected]> Commit: plone/plone.app.search@c233aec Merge branch 'master' into plip10359-security-controlpanel Files changed: M README.rst diff --git a/README.rst b/README.rst index 6868b6f..a42c0fb 100644 --- a/README.rst +++ b/README.rst @@ -8,4 +8,6 @@ plone.app.search also updates main search field (usually located at the top righ plone.app.search has the aim to give intuitively clear and understandable interface for searching in Plone. But there might be some new things that are not so obvious. Let's see how the search results works now. Notes -===== \ No newline at end of file +===== + +This package is merged into Products.CMFPlone in Plone 5. Repository: plone.app.search Branch: refs/heads/master Date: 2015-02-27T08:35:10+01:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.app.search@9c7459b Merge pull request #14 from plone/plip10359-security-controlpanel Plip 10359 - Security Control Panel migration Files changed: M CHANGES.rst M plone/app/search/search.pt diff --git a/CHANGES.rst b/CHANGES.rst index 8a05d5c..a1ea647 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,9 @@ Changelog 1.2.3 (unreleased) ------------------ -- Nothing changed yet. +- Read ``allow_anon_views_about`` setting from the registry instead of portal + properties (see plone/Products.CMFPlone#216). + [jcerjak] 1.2.2 (2014-10-23) diff --git a/plone/app/search/search.pt b/plone/app/search/search.pt index 2549364..9ae4233 100644 --- a/plone/app/search/search.pt +++ b/plone/app/search/search.pt @@ -147,7 +147,7 @@ <div class="search-type-options"> <tal:div tal:define="typeLists python:context.createMultiColumnList(types_list, numCols=2, sort_on='self');" - + tal:repeat="sublist typeLists"> <tal:items repeat="type sublist"> <div> @@ -240,7 +240,7 @@ </dl> - + </div> @@ -275,8 +275,8 @@ toLocalizedTime nocall: context/@@plone/toLocalizedTime; site_properties context/portal_properties/site_properties; use_view_action site_properties/typesUseViewActionInListings|python:(); - allowAnonymousViewAbout site_properties/allowAnonymousViewAbout; - show_about python:not isAnon or allowAnonymousViewAbout;"> + allow_anon_views_about python:context.portal_registry['plone.allow_anon_views_about']; + show_about python:not isAnon or allow_anon_views_about;"> <ol class="searchResults"> <tal:results repeat="item batch"> <li>
vangheem
added a commit
that referenced
this pull request
Apr 15, 2015
Branch: refs/heads/master Date: 2015-04-15T23:54:42+03:00 Author: Yuriy Hvozdovych (gvizdyk) <[email protected]> Commit: plone/plonetheme.barceloneta@1484da2 fixed styles for vertical align of the button in a search box Files changed: M plonetheme/barceloneta/theme/less/barceloneta-compiled.css M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map M plonetheme/barceloneta/theme/less/header.plone.less Repository: plonetheme.barceloneta Branch: refs/heads/master Date: 2015-04-15T23:23:41+02:00 Author: Nathan Van Gheem (vangheem) <[email protected]> Commit: plone/plonetheme.barceloneta@139e47f Merge pull request #14 from gvizdyk/fix_button_search Fixed styles for vertical align of the button in a search box Files changed: M plonetheme/barceloneta/theme/less/barceloneta-compiled.css M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map M plonetheme/barceloneta/theme/less/header.plone.less
tisto
added a commit
that referenced
this pull request
Jun 1, 2015
Branch: refs/heads/master Date: 2015-05-31T22:46:32+02:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@ab50833 start move to z3c.form Files changed: M CHANGES.rst M plone/app/contentrules/actions/configure.zcml M plone/app/contentrules/actions/copy.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/assignments.py M plone/app/contentrules/browser/configure.zcml M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/elements.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/navigation.py M plone/app/contentrules/browser/rule.py M plone/app/contentrules/browser/templates/contentrules-pageform.pt 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 setup.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-05-31T22:46:32+02:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@2d83198 test fixes Files changed: M plone/app/contentrules/actions/configure.zcml 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/conditions/configure.zcml 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/tests/test_action_copy.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_cascading_rule.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 M plone/app/contentrules/tests/test_condition_wftransition.py M plone/app/contentrules/tests/test_rule_management_views.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-05-31T20:57:36-05:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@2c1e940 more test fixes Files changed: M plone/app/contentrules/browser/configure.zcml M plone/app/contentrules/browser/rule.py M plone/app/contentrules/tests/test_action_copy.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 M plone/app/contentrules/tests/test_condition_wftransition.py M plone/app/contentrules/tests/test_rule_management_views.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-06-01T00:55:17-05:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@ae888b4 some usability/style tweaksg Files changed: M plone/app/contentrules/actions/copy.py M plone/app/contentrules/browser/contentrule-elements.js M plone/app/contentrules/browser/contentrules.css M plone/app/contentrules/browser/rule.py M plone/app/contentrules/browser/templates/controlpanel.pt M plone/app/contentrules/browser/templates/manage-assignments.pt M plone/app/contentrules/browser/templates/manage-elements.pt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-06-01T01:27:09-05:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@ca7e62c fix remaining tests Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py M plone/app/contentrules/actions/copy.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/templates/manage-elements.pt M plone/app/contentrules/tests/assignment.txt M plone/app/contentrules/tests/multipublish.txt M plone/app/contentrules/tests/simplepublish.txt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-06-01T11:08:22+02:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.app.contentrules@7427228 Merge pull request #14 from plone/move-to-z3cform move to z3c.form Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py M plone/app/contentrules/actions/configure.zcml 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/assignments.py M plone/app/contentrules/browser/configure.zcml M plone/app/contentrules/browser/contentrule-elements.js M plone/app/contentrules/browser/contentrules.css M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/elements.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/navigation.py M plone/app/contentrules/browser/rule.py M plone/app/contentrules/browser/templates/contentrules-pageform.pt M plone/app/contentrules/browser/templates/controlpanel.pt M plone/app/contentrules/browser/templates/manage-assignments.pt M plone/app/contentrules/browser/templates/manage-elements.pt M plone/app/contentrules/conditions/configure.zcml 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/tests/assignment.txt M plone/app/contentrules/tests/multipublish.txt M plone/app/contentrules/tests/simplepublish.txt M plone/app/contentrules/tests/test_action_copy.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_cascading_rule.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 M plone/app/contentrules/tests/test_condition_wftransition.py M plone/app/contentrules/tests/test_rule_management_views.py M setup.py
tisto
added a commit
that referenced
this pull request
Jun 2, 2015
Branch: refs/heads/master Date: 2015-05-31T22:46:32+02:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@ab50833 start move to z3c.form Files changed: M CHANGES.rst M plone/app/contentrules/actions/configure.zcml M plone/app/contentrules/actions/copy.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/assignments.py M plone/app/contentrules/browser/configure.zcml M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/elements.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/navigation.py M plone/app/contentrules/browser/rule.py M plone/app/contentrules/browser/templates/contentrules-pageform.pt 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 setup.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-05-31T22:46:32+02:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@2d83198 test fixes Files changed: M plone/app/contentrules/actions/configure.zcml 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/conditions/configure.zcml 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/tests/test_action_copy.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_cascading_rule.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 M plone/app/contentrules/tests/test_condition_wftransition.py M plone/app/contentrules/tests/test_rule_management_views.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-05-31T20:57:36-05:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@2c1e940 more test fixes Files changed: M plone/app/contentrules/browser/configure.zcml M plone/app/contentrules/browser/rule.py M plone/app/contentrules/tests/test_action_copy.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 M plone/app/contentrules/tests/test_condition_wftransition.py M plone/app/contentrules/tests/test_rule_management_views.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-06-01T00:55:17-05:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@ae888b4 some usability/style tweaksg Files changed: M plone/app/contentrules/actions/copy.py M plone/app/contentrules/browser/contentrule-elements.js M plone/app/contentrules/browser/contentrules.css M plone/app/contentrules/browser/rule.py M plone/app/contentrules/browser/templates/controlpanel.pt M plone/app/contentrules/browser/templates/manage-assignments.pt M plone/app/contentrules/browser/templates/manage-elements.pt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-06-01T01:27:09-05:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.app.contentrules@ca7e62c fix remaining tests Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py M plone/app/contentrules/actions/copy.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/templates/manage-elements.pt M plone/app/contentrules/tests/assignment.txt M plone/app/contentrules/tests/multipublish.txt M plone/app/contentrules/tests/simplepublish.txt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-06-01T11:08:22+02:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.app.contentrules@7427228 Merge pull request #14 from plone/move-to-z3cform move to z3c.form Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py M plone/app/contentrules/actions/configure.zcml 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/assignments.py M plone/app/contentrules/browser/configure.zcml M plone/app/contentrules/browser/contentrule-elements.js M plone/app/contentrules/browser/contentrules.css M plone/app/contentrules/browser/controlpanel.py M plone/app/contentrules/browser/elements.py M plone/app/contentrules/browser/formhelper.py M plone/app/contentrules/browser/navigation.py M plone/app/contentrules/browser/rule.py M plone/app/contentrules/browser/templates/contentrules-pageform.pt M plone/app/contentrules/browser/templates/controlpanel.pt M plone/app/contentrules/browser/templates/manage-assignments.pt M plone/app/contentrules/browser/templates/manage-elements.pt M plone/app/contentrules/conditions/configure.zcml 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/tests/assignment.txt M plone/app/contentrules/tests/multipublish.txt M plone/app/contentrules/tests/simplepublish.txt M plone/app/contentrules/tests/test_action_copy.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_cascading_rule.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 M plone/app/contentrules/tests/test_condition_wftransition.py M plone/app/contentrules/tests/test_rule_management_views.py M setup.py
tisto
added a commit
that referenced
this pull request
Jun 8, 2015
Branch: refs/heads/master Date: 2015-06-08T07:10:12Z Author: Tom Gross (tomgross) <[email protected]> Commit: plone/plone.app.iterate@aa8df9d don't remove acquisition on object for getToolByName call Files changed: M CHANGES.rst M plone/app/iterate/subscribers/workflow.py Repository: plone.app.iterate Branch: refs/heads/master Date: 2015-06-08T11:31:47Z Author: Tom Gross (tomgross) <[email protected]> Commit: plone/plone.app.iterate@1e06629 use aq_inner to remove potentially double wrapped stuff Files changed: M plone/app/iterate/subscribers/workflow.py Repository: plone.app.iterate Branch: refs/heads/master Date: 2015-06-08T18:09:44+02:00 Author: Timo Stollenwerk (tisto) <[email protected]> Commit: plone/plone.app.iterate@cd49f57 Merge pull request #14 from plone/tomgross-fixgettool don't remove acquisition on object for getToolByName call Files changed: M CHANGES.rst M plone/app/iterate/subscribers/workflow.py
gforcada
added a commit
that referenced
this pull request
Jun 18, 2015
Branch: refs/heads/master Date: 2015-06-18T09:32:16+02:00 Author: Mauro Amico (mamico) <[email protected]> Commit: plone/plone.recipe.zeoserver@1a8f8b2 Obsoleted link for bug and questions? The link in the README to bugs and questions is currently https://launchpad.net/~collective.buildout. It is really active or obsoleted. Files changed: M README.rst Repository: plone.recipe.zeoserver Branch: refs/heads/master Date: 2015-06-18T11:10:20+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.recipe.zeoserver@b713418 Merge pull request #14 from plone/mamico-patch-1 Obsoleted link for bug and questions? Files changed: M README.rst
gforcada
added a commit
that referenced
this pull request
Jun 18, 2015
Branch: refs/heads/master Date: 2015-06-18T09:32:16+02:00 Author: Mauro Amico (mamico) <[email protected]> Commit: plone/plone.recipe.zeoserver@1a8f8b2 Obsoleted link for bug and questions? The link in the README to bugs and questions is currently https://launchpad.net/~collective.buildout. It is really active or obsoleted. Files changed: M README.rst Repository: plone.recipe.zeoserver Branch: refs/heads/master Date: 2015-06-18T11:10:20+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.recipe.zeoserver@b713418 Merge pull request #14 from plone/mamico-patch-1 Obsoleted link for bug and questions? Files changed: M README.rst
ebrehault
added a commit
that referenced
this pull request
Jul 3, 2015
Branch: refs/heads/master Date: 2015-07-02T17:14:24+02:00 Author: Eric BREHAULT (ebrehault) <[email protected]> Commit: plone/archetypes.multilingual@74bd011 allow any AT objects to be adapated as ILanguage (not just ATContentTypes) Files changed: M archetypes/multilingual/configure.zcml M docs/HISTORY.txt Repository: archetypes.multilingual Branch: refs/heads/master Date: 2015-07-03T10:00:17+02:00 Author: Eric BREHAULT (ebrehault) <[email protected]> Commit: plone/archetypes.multilingual@3784fe8 Merge pull request #14 from plone/ebr-fix-adapter Any AT object can be adapted to ILanguage Files changed: M archetypes/multilingual/configure.zcml M docs/HISTORY.txt
vangheem
added a commit
that referenced
this pull request
Jul 13, 2015
Branch: refs/heads/master Date: 2015-07-12T21:39:10Z Author: Fulvio Casali (fulv) <[email protected]> Commit: plone/plone.app.relationfield@8911ec5 Remove superfluous 'for'. Files changed: M plone/app/relationfield/configure.zcml Repository: plone.app.relationfield Branch: refs/heads/master Date: 2015-07-13T07:30:32+02:00 Author: Nathan Van Gheem (vangheem) <[email protected]> Commit: plone/plone.app.relationfield@b339751 Merge pull request #14 from plone/fulv-warning-plone-behavior Fixes plone/Products.CMFPlone#669 Files changed: M plone/app/relationfield/configure.zcml
jensens
added a commit
that referenced
this pull request
Jul 24, 2015
Branch: refs/heads/master Date: 2015-07-10T15:08:43+02:00 Author: Tom Gross (tomgross) <[email protected]> Commit: plone/plone.testing@fea5658 Allow mulitple registration functions for product install In some rare cases multiple registration functions are helpful (ie the use of archetypes.configure). This commit introduces a parameter for the installProduct method which allows this behavior. It is set to False by default Files changed: M src/plone/testing/z2.py Repository: plone.testing Branch: refs/heads/master Date: 2015-07-15T14:06:17Z Author: Tom Gross (tomgross) <[email protected]> Commit: plone/plone.testing@3b22384 document changes Files changed: M CHANGES.rst Repository: plone.testing Branch: refs/heads/master Date: 2015-07-24T09:47:35+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.testing@68790a5 Merge pull request #14 from plone/tomgross-patch-1 Allow mulitple registration functions for product install Files changed: M CHANGES.rst M src/plone/testing/z2.py
jensens
added a commit
that referenced
this pull request
Jul 24, 2015
Branch: refs/heads/master Date: 2015-07-10T15:08:43+02:00 Author: Tom Gross (tomgross) <[email protected]> Commit: plone/plone.testing@fea5658 Allow mulitple registration functions for product install In some rare cases multiple registration functions are helpful (ie the use of archetypes.configure). This commit introduces a parameter for the installProduct method which allows this behavior. It is set to False by default Files changed: M src/plone/testing/z2.py Repository: plone.testing Branch: refs/heads/master Date: 2015-07-15T14:06:17Z Author: Tom Gross (tomgross) <[email protected]> Commit: plone/plone.testing@3b22384 document changes Files changed: M CHANGES.rst Repository: plone.testing Branch: refs/heads/master Date: 2015-07-24T09:47:35+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.testing@68790a5 Merge pull request #14 from plone/tomgross-patch-1 Allow mulitple registration functions for product install Files changed: M CHANGES.rst M src/plone/testing/z2.py
jensens
added a commit
that referenced
this pull request
Sep 29, 2015
Branch: refs/heads/master Date: 2015-09-24T19:36:07-03:00 Author: hvelarde (hvelarde) <[email protected]> Commit: plone/plonetheme.sunburst@fa64a65 Remove Chrome Frame from X-UA-Compatible HTTP header as it's deprecated See: https://blog.chromium.org/2013/06/retiring-chrome-frame.html Files changed: M CHANGES.rst M plonetheme/sunburst/skins/sunburst_templates/main_template.pt Repository: plonetheme.sunburst Branch: refs/heads/master Date: 2015-09-29T22:54:51+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plonetheme.sunburst@a71fc95 Merge pull request #14 from plone/hvelarde-chrome-frame Remove Chrome Frame from X-UA-Compatible HTTP header as it's deprecated Files changed: M CHANGES.rst M plonetheme/sunburst/skins/sunburst_templates/main_template.pt
vangheem
added a commit
that referenced
this pull request
Nov 6, 2015
Branch: refs/heads/master Date: 2015-11-05T14:44:32-06:00 Author: vangheem (vangheem) <[email protected]> Commit: plone/plone.outputfilters@04d2d89 Fix case where unicode ends up getting used when resolving img tags and (un)restrictedTraverse does not work with unicode Files changed: M CHANGES.txt M plone/outputfilters/filters/resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2015-11-06T11:19:33-06:00 Author: Nathan Van Gheem (vangheem) <[email protected]> Commit: plone/plone.outputfilters@3a57f75 Merge pull request #14 from plone/unicode-img Fix issue with unicode, img tags and unrestrictedTraverse Files changed: M CHANGES.txt M plone/outputfilters/filters/resolveuid_and_caption.py
jensens
added a commit
that referenced
this pull request
Jan 6, 2016
Branch: refs/heads/master Date: 2015-06-04T10:37:29+08:00 Author: doug (shadowmint) <[email protected]> Commit: plone/plone.app.imaging@ce832aa Adds documentation for what the 'direction' parameter actually does Files changed: M README.rst Repository: plone.app.imaging Branch: refs/heads/master Date: 2016-01-06T23:38:32+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.imaging@50bc117 Merge pull request #14 from shadowmint/bug-obscure-documentation Adds documentation for what the 'direction' parameter actually does Files changed: M README.rst
jensens
added a commit
that referenced
this pull request
Jan 8, 2016
Branch: refs/heads/master Date: 2016-01-07T12:54:25+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.PlonePAS@51f055a Typo Files changed: M README.rst Repository: Products.PlonePAS Branch: refs/heads/master Date: 2016-01-08T09:29:56+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/Products.PlonePAS@aeb3e29 Merge pull request #14 from plone/gforcada-patch-1 Typo Files changed: M README.rst
mister-roboto
pushed a commit
that referenced
this pull request
Jan 12, 2016
Branch: refs/heads/master Date: 2016-01-11T20:23:41-02:00 Author: Davi Lima (davilima6) <[email protected]> Commit: plone/plone.batching@b0a5673 Make ellipses stylable and provide more CSS hooks to pagination markup Files changed: M CHANGES.rst M plone/batching/batchnavigation.pt Repository: plone.batching Branch: refs/heads/master Date: 2016-01-12T08:54:31+01:00 Author: Johannes Raggam (thet) <[email protected]> Commit: plone/plone.batching@0b5c244 Merge pull request #14 from plone/pagination_markup Make ellipses stylable and provide more CSS hooks to pagination markup Files changed: M CHANGES.rst M plone/batching/batchnavigation.pt
mister-roboto
pushed a commit
that referenced
this pull request
Jan 12, 2016
Branch: refs/heads/master Date: 2016-01-11T20:23:41-02:00 Author: Davi Lima (davilima6) <[email protected]> Commit: plone/plone.batching@b0a5673 Make ellipses stylable and provide more CSS hooks to pagination markup Files changed: M CHANGES.rst M plone/batching/batchnavigation.pt Repository: plone.batching Branch: refs/heads/master Date: 2016-01-12T08:54:31+01:00 Author: Johannes Raggam (thet) <[email protected]> Commit: plone/plone.batching@0b5c244 Merge pull request #14 from plone/pagination_markup Make ellipses stylable and provide more CSS hooks to pagination markup Files changed: M CHANGES.rst M plone/batching/batchnavigation.pt
mister-roboto
pushed a commit
that referenced
this pull request
Jan 20, 2016
Branch: refs/heads/2.2.x Date: 2016-01-20T13:31:30+01:00 Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.app.form@596db78 more context for wysiwyg editors Files changed: M CHANGES.rst M plone/app/form/widgets/wysiwygwidget.pt Repository: plone.app.form Branch: refs/heads/2.2.x Date: 2016-01-20T14:09:56Z Author: Godefroid Chapelle (gotcha) <[email protected]> Commit: plone/plone.app.form@00d4c43 Merge pull request #14 from plone/more_context_wysiwyg more context for wysiwyg editors Files changed: M CHANGES.rst M plone/app/form/widgets/wysiwygwidget.pt
mister-roboto
pushed a commit
that referenced
this pull request
Feb 5, 2016
Branch: refs/heads/master Date: 2016-02-04T23:15:37+01:00 Author: Gil Forcada (gforcada) <[email protected]> Commit: plone/plone.app.contentlisting@1e2a0e4 Cleanup Files changed: 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/test_integration_doctest.py M plone/app/contentlisting/tests/test_integration_unit.py Repository: plone.app.contentlisting Branch: refs/heads/master Date: 2016-02-05T01:49:02+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.contentlisting@ec17664 Merge pull request #14 from plone/cleanup Cleanup Files changed: 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/test_integration_doctest.py M plone/app/contentlisting/tests/test_integration_unit.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 16, 2016
Branch: refs/heads/master Date: 2016-02-15T13:53:45+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.registry@a5e9f0b Document how to remove a record Files changed: M README.rst Repository: plone.app.registry Branch: refs/heads/master Date: 2016-02-15T13:54:30+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.registry@da72606 Update CHANGES.rst Files changed: M CHANGES.rst Repository: plone.app.registry Branch: refs/heads/master Date: 2016-02-17T00:08:01+01:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.registry@4b08988 Merge pull request #14 from plone/gforcada-patch-1 Document how to remove a record Files changed: M CHANGES.rst M README.rst
mister-roboto
pushed a commit
that referenced
this pull request
Nov 16, 2017
Branch: refs/heads/master Date: 2017-11-05T23:55:42-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@7edcb75 adjust ReplaceableWrapper to work in Zope 4 Files changed: M CHANGES.rst M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-06T20:40:06-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@e6aca05 avoid recursion Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-13T23:45:11-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@c199b33 Yo dawg, I put a wrapper in your wrapper so you can unwrap while you unwrap Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-15T10:37:17-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@00c0822 fix double wrapping Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-16T07:40:26-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@c1b3a95 duct tape and baling wire Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-16T21:29:21+01:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.folder@cc98886 Merge pull request #14 from plone/davisagli-replaceable adjust ReplaceableWrapper to work in Zope 4 Files changed: M CHANGES.rst M src/plone/app/folder/base.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 16, 2017
Branch: refs/heads/master Date: 2017-11-05T23:55:42-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@7edcb75 adjust ReplaceableWrapper to work in Zope 4 Files changed: M CHANGES.rst M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-06T20:40:06-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@e6aca05 avoid recursion Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-13T23:45:11-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@c199b33 Yo dawg, I put a wrapper in your wrapper so you can unwrap while you unwrap Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-15T10:37:17-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@00c0822 fix double wrapping Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-16T07:40:26-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@c1b3a95 duct tape and baling wire Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-16T21:29:21+01:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.folder@cc98886 Merge pull request #14 from plone/davisagli-replaceable adjust ReplaceableWrapper to work in Zope 4 Files changed: M CHANGES.rst M src/plone/app/folder/base.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 16, 2017
Branch: refs/heads/master Date: 2017-11-05T23:55:42-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@7edcb75 adjust ReplaceableWrapper to work in Zope 4 Files changed: M CHANGES.rst M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-06T20:40:06-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@e6aca05 avoid recursion Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-13T23:45:11-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@c199b33 Yo dawg, I put a wrapper in your wrapper so you can unwrap while you unwrap Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-15T10:37:17-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@00c0822 fix double wrapping Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-16T07:40:26-05:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/plone.app.folder@c1b3a95 duct tape and baling wire Files changed: M src/plone/app/folder/base.py Repository: plone.app.folder Branch: refs/heads/master Date: 2017-11-16T21:29:21+01:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.folder@cc98886 Merge pull request #14 from plone/davisagli-replaceable adjust ReplaceableWrapper to work in Zope 4 Files changed: M CHANGES.rst M src/plone/app/folder/base.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 2, 2018
Branch: refs/heads/master Date: 2018-03-02T08:31:26+01:00 Author: Md Nazrul Islam (nazrulworld) <[email protected]> Commit: plone/Products.PasswordResetTool@d6d8285 1. rstrip cleaner added in password reset action for userid Files changed: M Products/PasswordResetTool/skins/PasswordReset/pwreset_action.cpy Repository: Products.PasswordResetTool Branch: refs/heads/master Date: 2018-03-02T11:49:02+01:00 Author: Md Nazrul Islam (nazrulworld) <[email protected]> Commit: plone/Products.PasswordResetTool@8bc6012 1. rstrip is replaced with `strip` so that both side cleaning works Files changed: M Products/PasswordResetTool/skins/PasswordReset/pwreset_action.cpy Repository: Products.PasswordResetTool Branch: refs/heads/master Date: 2018-03-02T12:10:45+01:00 Author: Md Nazrul Islam (nazrulworld) <[email protected]> Commit: plone/Products.PasswordResetTool@4a330f5 1. userid striping keep outside of try except Files changed: M CHANGES.rst M Products/PasswordResetTool/skins/PasswordReset/pwreset_action.cpy Repository: Products.PasswordResetTool Branch: refs/heads/master Date: 2018-03-02T14:12:23+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/Products.PasswordResetTool@1592481 Merge pull request #14 from nazrulworld/master userid is cleaned by rstrip during password reset submission Files changed: M CHANGES.rst M Products/PasswordResetTool/skins/PasswordReset/pwreset_action.cpy
mister-roboto
pushed a commit
that referenced
this pull request
May 5, 2018
Branch: refs/heads/master Date: 2018-03-29T00:02:27+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@0cd92c1 fix sorting of viewlets in py3 Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-04-01T14:59:33+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@a6c34b3 add hack to remove duplicate viewlets (probably the code above is broken) Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T16:31:48+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@65dc9f8 Fix sorting Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T17:06:56+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@0c52e06 More Python 2 / 3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T18:00:05+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.viewletmanager@fed14c5 Merge pull request #14 from plone/python3 More Python3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/manager.py M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py
mister-roboto
pushed a commit
that referenced
this pull request
May 5, 2018
Branch: refs/heads/master Date: 2018-03-29T00:02:27+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@0cd92c1 fix sorting of viewlets in py3 Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-04-01T14:59:33+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@a6c34b3 add hack to remove duplicate viewlets (probably the code above is broken) Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T16:31:48+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@65dc9f8 Fix sorting Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T17:06:56+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@0c52e06 More Python 2 / 3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T18:00:05+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.viewletmanager@fed14c5 Merge pull request #14 from plone/python3 More Python3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/manager.py M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py
mister-roboto
pushed a commit
that referenced
this pull request
May 5, 2018
Branch: refs/heads/master Date: 2018-03-29T00:02:27+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@0cd92c1 fix sorting of viewlets in py3 Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-04-01T14:59:33+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@a6c34b3 add hack to remove duplicate viewlets (probably the code above is broken) Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T16:31:48+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@65dc9f8 Fix sorting Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T17:06:56+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@0c52e06 More Python 2 / 3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T18:00:05+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.viewletmanager@fed14c5 Merge pull request #14 from plone/python3 More Python3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/manager.py M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py
mister-roboto
pushed a commit
that referenced
this pull request
May 5, 2018
Branch: refs/heads/master Date: 2018-03-29T00:02:27+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@0cd92c1 fix sorting of viewlets in py3 Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-04-01T14:59:33+02:00 Author: Philip Bauer (pbauer) <[email protected]> Commit: plone/plone.app.viewletmanager@a6c34b3 add hack to remove duplicate viewlets (probably the code above is broken) Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T16:31:48+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@65dc9f8 Fix sorting Files changed: M plone/app/viewletmanager/manager.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T17:06:56+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.app.viewletmanager@0c52e06 More Python 2 / 3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py Repository: plone.app.viewletmanager Branch: refs/heads/master Date: 2018-05-05T18:00:05+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.viewletmanager@fed14c5 Merge pull request #14 from plone/python3 More Python3 compatibility Files changed: M CHANGES.rst M plone/app/viewletmanager/manager.py M plone/app/viewletmanager/tests/manager.rst M plone/app/viewletmanager/tests/test_docs.py
mister-roboto
pushed a commit
that referenced
this pull request
May 8, 2018
Branch: refs/heads/master Date: 2018-05-07T12:19:41-04:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@4c1e05c Test against plone.app.contenttypes fixture instead of Archetypes Files changed: M CHANGES.rst M Products/CMFDynamicViewFTI/profiles/sample_types/types/DynDocument.xml M Products/CMFDynamicViewFTI/tests/CMFDVFTITestCase.py M Products/CMFDynamicViewFTI/tests/test_fti.py M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2018-05-07T12:22:57-04:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@cab4896 backwards incompatible Files changed: M CHANGES.rst M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2018-05-08T13:36:37+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@841d84b Merge pull request #14 from plone/no-at Test against plone.app.contenttypes fixture instead of Archetypes Files changed: M CHANGES.rst M Products/CMFDynamicViewFTI/profiles/sample_types/types/DynDocument.xml M Products/CMFDynamicViewFTI/tests/CMFDVFTITestCase.py M Products/CMFDynamicViewFTI/tests/test_fti.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
May 8, 2018
Branch: refs/heads/master Date: 2018-05-07T12:19:41-04:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@4c1e05c Test against plone.app.contenttypes fixture instead of Archetypes Files changed: M CHANGES.rst M Products/CMFDynamicViewFTI/profiles/sample_types/types/DynDocument.xml M Products/CMFDynamicViewFTI/tests/CMFDVFTITestCase.py M Products/CMFDynamicViewFTI/tests/test_fti.py M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2018-05-07T12:22:57-04:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@cab4896 backwards incompatible Files changed: M CHANGES.rst M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2018-05-08T13:36:37+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@841d84b Merge pull request #14 from plone/no-at Test against plone.app.contenttypes fixture instead of Archetypes Files changed: M CHANGES.rst M Products/CMFDynamicViewFTI/profiles/sample_types/types/DynDocument.xml M Products/CMFDynamicViewFTI/tests/CMFDVFTITestCase.py M Products/CMFDynamicViewFTI/tests/test_fti.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
May 8, 2018
Branch: refs/heads/master Date: 2018-05-07T12:19:41-04:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@4c1e05c Test against plone.app.contenttypes fixture instead of Archetypes Files changed: M CHANGES.rst M Products/CMFDynamicViewFTI/profiles/sample_types/types/DynDocument.xml M Products/CMFDynamicViewFTI/tests/CMFDVFTITestCase.py M Products/CMFDynamicViewFTI/tests/test_fti.py M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2018-05-07T12:22:57-04:00 Author: David Glick (davisagli) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@cab4896 backwards incompatible Files changed: M CHANGES.rst M setup.py Repository: Products.CMFDynamicViewFTI Branch: refs/heads/master Date: 2018-05-08T13:36:37+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/Products.CMFDynamicViewFTI@841d84b Merge pull request #14 from plone/no-at Test against plone.app.contenttypes fixture instead of Archetypes Files changed: M CHANGES.rst M Products/CMFDynamicViewFTI/profiles/sample_types/types/DynDocument.xml M Products/CMFDynamicViewFTI/tests/CMFDVFTITestCase.py M Products/CMFDynamicViewFTI/tests/test_fti.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Aug 7, 2018
Branch: refs/heads/master Date: 2018-08-07T16:18:15+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.cachepurging@effd841 refactor to use requests instead of own connection-foo Files changed: M CHANGES.rst M bootstrap.py M plone/__init__.py M plone/cachepurging/browser.py M plone/cachepurging/interfaces.py M plone/cachepurging/paths.py M plone/cachepurging/purger.py M plone/cachepurging/rewrite.py M plone/cachepurging/tests/test_hooks.py M plone/cachepurging/tests/test_purger.py M plone/cachepurging/tests/test_rewrite.py M plone/cachepurging/tests/test_traversable_paths.py M plone/cachepurging/tests/test_utils.py M plone/cachepurging/tests/test_views.py M plone/cachepurging/utils.py M setup.py Repository: plone.cachepurging Branch: refs/heads/master Date: 2018-08-07T16:26:44+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.cachepurging@e5f3745 fix logging Files changed: M plone/cachepurging/purger.py Repository: plone.cachepurging Branch: refs/heads/master Date: 2018-08-07T17:55:31+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.cachepurging@28c14c5 fix tests Files changed: M plone/cachepurging/purger.py M plone/cachepurging/tests/test_purger.py Repository: plone.cachepurging Branch: refs/heads/master Date: 2018-08-07T21:55:25+02:00 Author: agitator (agitator) <[email protected]> Commit: plone/plone.cachepurging@edcded4 Merge pull request #14 from plone/refactor-with-requests Refactor using requests Files changed: M CHANGES.rst M bootstrap.py M plone/__init__.py M plone/cachepurging/browser.py M plone/cachepurging/interfaces.py M plone/cachepurging/paths.py M plone/cachepurging/purger.py M plone/cachepurging/rewrite.py M plone/cachepurging/tests/test_hooks.py M plone/cachepurging/tests/test_purger.py M plone/cachepurging/tests/test_rewrite.py M plone/cachepurging/tests/test_traversable_paths.py M plone/cachepurging/tests/test_utils.py M plone/cachepurging/tests/test_views.py M plone/cachepurging/utils.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 14, 2019
Branch: refs/heads/master Date: 2019-02-13T21:41:22+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.redirector@afe86cb Turn browser.txt doctest into test_browser.py unittest. Files changed: A news/1486.bugfix A plone/app/redirector/tests/test_browser.py D plone/app/redirector/tests/browser.txt D plone/app/redirector/tests/test_doctests.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2019-02-13T21:41:27+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.redirector@a7414bc Turned storage.py doctest into unittests. Files changed: M news/1486.bugfix M plone/app/redirector/storage.py M plone/app/redirector/tests/test_storage.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2019-02-13T21:41:27+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.redirector@34b3300 Split test_storage into multiple tests that test one thing each. Files changed: M plone/app/redirector/tests/test_storage.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2019-02-13T21:41:27+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.redirector@c9360e9 Extra tests for storage without any slash and with nested paths. Files changed: M plone/app/redirector/tests/test_storage.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2019-02-13T21:41:27+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.redirector@0c98367 test_storage: renamed 'p' to 'st'. 'p' is reserved when you are in a pdb. Files changed: M plone/app/redirector/tests/test_storage.py Repository: plone.app.redirector Branch: refs/heads/master Date: 2019-02-13T21:41:27+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.redirector@2d89317 Renamed news snippet. Files changed: A news/12.bugfix D news/1486.bugfix Repository: plone.app.redirector Branch: refs/heads/master Date: 2019-02-14T10:16:37+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.app.redirector@b0a99f3 Merge pull request #14 from plone/maurits-improve-tests Move from doctests to unittests and split them up Files changed: A news/12.bugfix A plone/app/redirector/tests/test_browser.py M plone/app/redirector/storage.py M plone/app/redirector/tests/test_storage.py D plone/app/redirector/tests/browser.txt D plone/app/redirector/tests/test_doctests.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 17, 2019
Branch: refs/heads/master Date: 2019-04-16T22:45:10+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@aa23e42 Fix requirement (zope.hookable>=4.2.0) of zope.component Files changed: M buildout.cfg Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-16T22:45:10+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@5f4b5e0 Fix failing utility registry for doctests Files changed: M setup.py Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-16T22:45:10+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@82a41a2 Fix zope.component dependencies Fix zope.testing library only for test script required Files changed: M buildout.cfg M setup.py Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-16T23:03:38+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@07a789e Add news item for #12 Files changed: A news/12.bugfix Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-17T11:38:20+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.memoize@53e38de Merge pull request #14 from andbag/fix-ci-testing Fix for travis ci. Files changed: A news/12.bugfix M buildout.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Apr 17, 2019
Branch: refs/heads/master Date: 2019-04-16T22:45:10+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@aa23e42 Fix requirement (zope.hookable>=4.2.0) of zope.component Files changed: M buildout.cfg Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-16T22:45:10+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@5f4b5e0 Fix failing utility registry for doctests Files changed: M setup.py Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-16T22:45:10+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@82a41a2 Fix zope.component dependencies Fix zope.testing library only for test script required Files changed: M buildout.cfg M setup.py Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-16T23:03:38+02:00 Author: Andreas Gabriel (andbag) <[email protected]> Commit: plone/plone.memoize@07a789e Add news item for #12 Files changed: A news/12.bugfix Repository: plone.memoize Branch: refs/heads/master Date: 2019-04-17T11:38:20+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.memoize@53e38de Merge pull request #14 from andbag/fix-ci-testing Fix for travis ci. Files changed: A news/12.bugfix M buildout.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Sep 3, 2019
Branch: refs/heads/master Date: 2019-09-03T13:12:12+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.folder@f20059a Implement a simplified and fast traverse: use it in GOPIP. Files changed: A news/14.bugfix M src/plone/folder/nogopip.py Repository: plone.folder Branch: refs/heads/master Date: 2019-09-03T16:04:26+02:00 Author: agitator (agitator) <[email protected]> Commit: plone/plone.folder@b08307a Merge pull request #14 from plone/traversal-performance Implement a simplified and fast traverse: use it in GOPIP. Files changed: A news/14.bugfix M src/plone/folder/nogopip.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 23, 2019
Branch: refs/heads/master Date: 2019-09-20T14:29:20+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/five.intid@313fdcc Speedup object lookup by up factor ~80 Files changed: A news/14.bugfix M five/intid/keyreference.py Repository: five.intid Branch: refs/heads/master Date: 2019-09-23T10:49:27+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/five.intid@568b6c4 be paranoid and fallback to OFS traverse for edge cases where __getitem__ is not enough. Files changed: M five/intid/keyreference.py Repository: five.intid Branch: refs/heads/master Date: 2019-09-23T13:53:03+02:00 Author: agitator (agitator) <[email protected]> Commit: plone/five.intid@aba0c75 Merge pull request #14 from plone/speedup Speedup object lookup by up factor ~80 Files changed: A news/14.bugfix M five/intid/keyreference.py
mister-roboto
pushed a commit
that referenced
this pull request
May 21, 2020
Branch: refs/heads/master Date: 2020-05-20T23:31:29+02:00 Author: ale-rt (ale-rt) <[email protected]> Commit: plone/plone.z3cform@d8c2a35 Zope 5 compatibility Copy the HTTPRequest._decode from Zope4 because it is has been removed in Zope5 Fixes #13 Files changed: A news/.gitkeep A news/13.bugfix M src/plone/z3cform/tests.py M src/plone/z3cform/z2.py Repository: plone.z3cform Branch: refs/heads/master Date: 2020-05-21T23:37:26+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.z3cform@93eb0f1 Merge pull request #14 from plone/13-recursive-decode Zope 5 compatibility Files changed: A news/.gitkeep A news/13.bugfix M src/plone/z3cform/tests.py M src/plone/z3cform/z2.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 2, 2020
Branch: refs/heads/master Date: 2020-08-10T21:22:44+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.stringinterp@c75a0cf Avoid a deprecation warning To keep zope 4 and earlier compatibility, a try/except is used. Files changed: M plone/stringinterp/adapters.py Repository: plone.stringinterp Branch: refs/heads/master Date: 2020-09-02T18:20:24+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.stringinterp@00ddce0 Create 14.misc Files changed: A news/14.misc Repository: plone.stringinterp Branch: refs/heads/master Date: 2020-09-02T18:20:38+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.stringinterp@2c71049 Merge pull request #14 from plone/gforcada-patch-1 Avoid a deprecation warning Files changed: A news/14.misc M plone/stringinterp/adapters.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 2, 2020
Branch: refs/heads/master Date: 2020-08-10T21:22:44+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.stringinterp@c75a0cf Avoid a deprecation warning To keep zope 4 and earlier compatibility, a try/except is used. Files changed: M plone/stringinterp/adapters.py Repository: plone.stringinterp Branch: refs/heads/master Date: 2020-09-02T18:20:24+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.stringinterp@00ddce0 Create 14.misc Files changed: A news/14.misc Repository: plone.stringinterp Branch: refs/heads/master Date: 2020-09-02T18:20:38+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.stringinterp@2c71049 Merge pull request #14 from plone/gforcada-patch-1 Avoid a deprecation warning Files changed: A news/14.misc M plone/stringinterp/adapters.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 7, 2021
Branch: refs/heads/master Date: 2021-10-05T20:56:04+02:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.referenceablebehavior@4117763 Prevent installation on Python 3, where we know Archetypes does not work. Files changed: A news/3330.bugfix M setup.py Repository: plone.app.referenceablebehavior Branch: refs/heads/master Date: 2021-10-07T12:27:55+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.referenceablebehavior@935d249 Merge pull request #14 from plone/prevent-installation-on-py3 Prevent installation on Python 3, where we know Archetypes does not work Files changed: A news/3330.bugfix M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 7, 2021
Branch: refs/heads/master Date: 2021-10-05T20:56:04+02:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/plone.app.referenceablebehavior@4117763 Prevent installation on Python 3, where we know Archetypes does not work. Files changed: A news/3330.bugfix M setup.py Repository: plone.app.referenceablebehavior Branch: refs/heads/master Date: 2021-10-07T12:27:55+02:00 Author: Jens W. Klein (jensens) <[email protected]> Commit: plone/plone.app.referenceablebehavior@935d249 Merge pull request #14 from plone/prevent-installation-on-py3 Prevent installation on Python 3, where we know Archetypes does not work Files changed: A news/3330.bugfix M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Aug 16, 2022
Branch: refs/heads/master Date: 2022-08-17T01:25:40+05:30 Author: Anirudh H Kashyap (anirudhhkashyap) <[email protected]> Commit: plone/plone.app.uuid@65cdc16 Add optional security check for uuidToObject (#14) * Add optional security check for uuidToObject Sometimes the user is allowed to view the object. The unrestricted flag is used to check this. It is False by default and when set to True allows the object to be accessed. This resolves issue #13. * Update 13.bugfix Append contributor name. Files changed: A news/13.bugfix M plone/app/uuid/tests.py M plone/app/uuid/utils.py
mister-roboto
pushed a commit
that referenced
this pull request
Dec 23, 2022
Branch: refs/heads/main Date: 2022-12-23T12:16:32-03:00 Author: Franco Pellegrini (frapell) <[email protected]> Commit: plone/plone.base@6693557 Add `required=False` to missing boolean field from syndication config. refs gh-14 Files changed: A news/14.bugfix M src/plone/base/interfaces/syndication.py Repository: plone.base Branch: refs/heads/main Date: 2022-12-23T16:49:27-03:00 Author: Franco Pellegrini (frapell) <[email protected]> Commit: plone/plone.base@ab78e0a Merge pull request #26 from plone/frapell-required-boolean Add `required=False` to missing boolean field from syndication config Files changed: A news/14.bugfix M src/plone/base/interfaces/syndication.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 9, 2023
Branch: refs/heads/master Date: 2023-02-08T17:58:42+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@85ede24 Configuring with plone/meta Files changed: A .editorconfig A .github/workflows/linting.yml A .meta.toml A lint-requirements.txt A tox.ini M pyproject.toml M setup.cfg Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:10:46+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@9c01c2f chore: pyupgrade Files changed: M borg/__init__.py M borg/localrole/__init__.py M borg/localrole/bbb/__init__.py M borg/localrole/bbb/interfaces.py M borg/localrole/config.py M borg/localrole/default_adapter.py M borg/localrole/factory_adapter.py M borg/localrole/interfaces.py M borg/localrole/setuphandlers.py M borg/localrole/tests.py M borg/localrole/utils.py M borg/localrole/workspace.py M setup.py Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:10:47+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@f6bb099 chore: isort + black Files changed: M borg/__init__.py M borg/localrole/__init__.py M borg/localrole/bbb/interfaces.py M borg/localrole/config.py M borg/localrole/default_adapter.py M borg/localrole/factory_adapter.py M borg/localrole/interfaces.py M borg/localrole/setuphandlers.py M borg/localrole/tests.py M borg/localrole/utils.py M borg/localrole/workspace.py M setup.py Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:10:47+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@6d7a090 chore: zpretty Files changed: M borg/localrole/configure.zcml M borg/localrole/default.zcml M borg/localrole/exportimport.zcml M borg/localrole/profiles/default/import_steps.xml Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:10:47+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@6c518a1 chore: codespell typos Files changed: M borg/localrole/bbb/interfaces.py Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:10:47+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@67826ff chore: flake8 Files changed: M borg/localrole/default_adapter.py Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:10:47+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@4a83ae9 chore: pyroma Files changed: M setup.py Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:23:33+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@3becbbf feat: fix dependencies Files changed: M .meta.toml M borg/localrole/tests.py M pyproject.toml M setup.py Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T18:23:37+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@0bcd3fe Add news entry Files changed: A news/1.bugfix Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-08T21:47:12+01:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/borg.localrole@0c07151 Use global workflow Files changed: D .github/workflows/linting.yml Repository: borg.localrole Branch: refs/heads/master Date: 2023-02-09T02:02:18+01:00 Author: Maurits van Rees (mauritsvanrees) <[email protected]> Commit: plone/borg.localrole@bc294b7 Merge pull request #14 from plone/config-with-default-template-2d21bb8c Config with default template Files changed: A .editorconfig A .meta.toml A lint-requirements.txt A news/1.bugfix A tox.ini M borg/__init__.py M borg/localrole/__init__.py M borg/localrole/bbb/__init__.py M borg/localrole/bbb/interfaces.py M borg/localrole/config.py M borg/localrole/configure.zcml M borg/localrole/default.zcml M borg/localrole/default_adapter.py M borg/localrole/exportimport.zcml M borg/localrole/factory_adapter.py M borg/localrole/interfaces.py M borg/localrole/profiles/default/import_steps.xml M borg/localrole/setuphandlers.py M borg/localrole/tests.py M borg/localrole/utils.py M borg/localrole/workspace.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:50:18Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.contentrules@b19d579 [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.contentrules Branch: refs/heads/master Date: 2023-05-02T16:29:18+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.contentrules@9d5b643 Merge pull request #14 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:50:00Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.browserlayer@9bce79a [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.browserlayer Branch: refs/heads/master Date: 2023-05-02T16:30:34+02:00 Author: Gil Forcada Codinachs (gforcada) <[email protected]> Commit: plone/plone.browserlayer@b6168ba Merge pull request #14 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 29, 2024
Branch: refs/heads/master Date: 2024-11-27T15:11:02-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@8c5a3dd remove deprecated unittest.makeSuite Files changed: M src/collective/monkeypatcher/tests/test_monkeypatcher.py Repository: collective.monkeypatcher Branch: refs/heads/master Date: 2024-11-27T15:12:13-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@dd64846 changenote Files changed: A news/14.bugfix Repository: collective.monkeypatcher Branch: refs/heads/master Date: 2024-11-28T22:48:09-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@b68bd2b Merge pull request #14 from plone/py-3.13-unittest Fix removed `unittest.makeSuite` in py 3.13 Files changed: A news/14.bugfix M src/collective/monkeypatcher/tests/test_monkeypatcher.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 29, 2024
Branch: refs/heads/master Date: 2024-11-27T15:11:02-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@8c5a3dd remove deprecated unittest.makeSuite Files changed: M src/collective/monkeypatcher/tests/test_monkeypatcher.py Repository: collective.monkeypatcher Branch: refs/heads/master Date: 2024-11-27T15:12:13-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@dd64846 changenote Files changed: A news/14.bugfix Repository: collective.monkeypatcher Branch: refs/heads/master Date: 2024-11-28T22:48:09-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@b68bd2b Merge pull request #14 from plone/py-3.13-unittest Fix removed `unittest.makeSuite` in py 3.13 Files changed: A news/14.bugfix M src/collective/monkeypatcher/tests/test_monkeypatcher.py
mister-roboto
pushed a commit
that referenced
this pull request
Nov 29, 2024
Branch: refs/heads/master Date: 2024-11-27T15:11:02-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@8c5a3dd remove deprecated unittest.makeSuite Files changed: M src/collective/monkeypatcher/tests/test_monkeypatcher.py Repository: collective.monkeypatcher Branch: refs/heads/master Date: 2024-11-27T15:12:13-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@dd64846 changenote Files changed: A news/14.bugfix Repository: collective.monkeypatcher Branch: refs/heads/master Date: 2024-11-28T22:48:09-03:00 Author: Peter Mathis (petschki) <[email protected]> Commit: plone/collective.monkeypatcher@b68bd2b Merge pull request #14 from plone/py-3.13-unittest Fix removed `unittest.makeSuite` in py 3.13 Files changed: A news/14.bugfix M src/collective/monkeypatcher/tests/test_monkeypatcher.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.
added more test on reordering folder contents