-
-
Notifications
You must be signed in to change notification settings - Fork 76
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
Updated patches paragraph. #31
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
Added the last sentence.
tisto
added a commit
that referenced
this pull request
Mar 2, 2015
Branch: refs/heads/master Date: 2015-01-26T19:54:27+01:00 Author: Jure Cerjak (jcerjak) <jcerjak@termitnjak.si> Commit: plone/plone.app.users@5f96023 fix doctests, security settings are now properly read from the registry This reverts some of the changes done in fd8a29812598df320637a03588cf0c7599d2a9e7 See also plone/plone.app.users#22 Files changed: M plone/app/users/tests/duplicate_email.rst M plone/app/users/tests/email_login.rst M plone/app/users/tests/flexible_user_registration.rst diff --git a/plone/app/users/tests/duplicate_email.rst b/plone/app/users/tests/duplicate_email.rst index da0e362..91b2ded 100644 --- a/plone/app/users/tests/duplicate_email.rst +++ b/plone/app/users/tests/duplicate_email.rst @@ -32,7 +32,7 @@ Login as user two: >>> browser.open('http://nohost/plone/') >>> browser.getLink('Log in').click() - >>> browser.getControl('Login Name').value = 'usertwo@example.com' + >>> browser.getControl('E-mail').value = 'usertwo@example.com' >>> browser.getControl('Password').value = 'secret' >>> browser.getControl('Log in').click() >>> 'Login failed' in browser.contents diff --git a/plone/app/users/tests/email_login.rst b/plone/app/users/tests/email_login.rst index 7766ad3..4b7c649 100644 --- a/plone/app/users/tests/email_login.rst +++ b/plone/app/users/tests/email_login.rst @@ -67,10 +67,9 @@ Fill out the form, using an odd email address that should not give problems. >>> 'Failed to create your account' in browser.contents False - We can now login. - >>> browser.getLink('Log in').click() - >>> browser.getControl('Login Name').value = 'bob-jones+test@example.com' - >>> browser.getControl('Password').value = 'secret' + We can login immediately. + >>> 'Click the button to log in immediately.' in browser.contents + True >>> browser.getControl('Log in').click() >>> 'You are now logged in' in browser.contents True @@ -81,9 +80,10 @@ Fill out the form, using an odd email address that should not give problems. True >>> browser.getLink(url='http://nohost/plone/logout').click() - We login as manager. + We login as manager. The login form now has a different label for + the login name. >>> browser.open('http://nohost/plone/login_form') - >>> browser.getControl('Login Name').value = SITE_OWNER_NAME + >>> browser.getControl('E-mail').value = SITE_OWNER_NAME >>> browser.getControl('Password').value = SITE_OWNER_PASSWORD >>> browser.getControl('Log in').click() diff --git a/plone/app/users/tests/flexible_user_registration.rst b/plone/app/users/tests/flexible_user_registration.rst index ae58d4a..affef03 100644 --- a/plone/app/users/tests/flexible_user_registration.rst +++ b/plone/app/users/tests/flexible_user_registration.rst @@ -147,6 +147,8 @@ Check render register form in 'Use Email As Login' mode. >>> browser.getControl('Password').value = 'testpassword' >>> browser.getControl('Confirm password').value = 'testpassword' >>> browser.getControl('Register').click() + >>> browser.contents + '...Welcome!...You have been registered...' Revert email mode. Repository: plone.app.users Branch: refs/heads/master Date: 2015-02-27T07:46:59+01:00 Author: Timo Stollenwerk () <contact@timostollenwerk.net> Commit: plone/plone.app.users@0229de2 Merge branch 'master' into plip10359-security-controlpanel Files changed: M MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in index 233d37d..6acb23e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,3 @@ -include *.txt include *.rst recursive-include docs * Repository: plone.app.users Branch: refs/heads/master Date: 2015-03-02T18:10:17+01:00 Author: Timo Stollenwerk (tisto) <tisto@plone.org> Commit: plone/plone.app.users@6473850 Merge pull request #31 from plone/plip10359-security-controlpanel Plip 10359 - Security Control Panel migration Files changed: M plone/app/users/tests/duplicate_email.rst M plone/app/users/tests/email_login.rst M plone/app/users/tests/flexible_user_registration.rst diff --git a/plone/app/users/tests/duplicate_email.rst b/plone/app/users/tests/duplicate_email.rst index da0e362..91b2ded 100644 --- a/plone/app/users/tests/duplicate_email.rst +++ b/plone/app/users/tests/duplicate_email.rst @@ -32,7 +32,7 @@ Login as user two: >>> browser.open('http://nohost/plone/') >>> browser.getLink('Log in').click() - >>> browser.getControl('Login Name').value = 'usertwo@example.com' + >>> browser.getControl('E-mail').value = 'usertwo@example.com' >>> browser.getControl('Password').value = 'secret' >>> browser.getControl('Log in').click() >>> 'Login failed' in browser.contents diff --git a/plone/app/users/tests/email_login.rst b/plone/app/users/tests/email_login.rst index 7766ad3..4b7c649 100644 --- a/plone/app/users/tests/email_login.rst +++ b/plone/app/users/tests/email_login.rst @@ -67,10 +67,9 @@ Fill out the form, using an odd email address that should not give problems. >>> 'Failed to create your account' in browser.contents False - We can now login. - >>> browser.getLink('Log in').click() - >>> browser.getControl('Login Name').value = 'bob-jones+test@example.com' - >>> browser.getControl('Password').value = 'secret' + We can login immediately. + >>> 'Click the button to log in immediately.' in browser.contents + True >>> browser.getControl('Log in').click() >>> 'You are now logged in' in browser.contents True @@ -81,9 +80,10 @@ Fill out the form, using an odd email address that should not give problems. True >>> browser.getLink(url='http://nohost/plone/logout').click() - We login as manager. + We login as manager. The login form now has a different label for + the login name. >>> browser.open('http://nohost/plone/login_form') - >>> browser.getControl('Login Name').value = SITE_OWNER_NAME + >>> browser.getControl('E-mail').value = SITE_OWNER_NAME >>> browser.getControl('Password').value = SITE_OWNER_PASSWORD >>> browser.getControl('Log in').click() diff --git a/plone/app/users/tests/flexible_user_registration.rst b/plone/app/users/tests/flexible_user_registration.rst index ae58d4a..affef03 100644 --- a/plone/app/users/tests/flexible_user_registration.rst +++ b/plone/app/users/tests/flexible_user_registration.rst @@ -147,6 +147,8 @@ Check render register form in 'Use Email As Login' mode. >>> browser.getControl('Password').value = 'testpassword' >>> browser.getControl('Confirm password').value = 'testpassword' >>> browser.getControl('Register').click() + >>> browser.contents + '...Welcome!...You have been registered...' Revert email mode.
jensens
added a commit
that referenced
this pull request
May 20, 2015
Branch: refs/heads/master Date: 2014-08-21T19:04:16+02:00 Author: Christopher Mann (chris2fr) <christopher@mann.fr> Commit: plone/diazo@7fa6c72 Updated information on Nginx stand-alone deployment This documentation update shows how you can update the Nginx 1.6 and 1.7 servers whereas the original html-xslt project only maintains the 0.7 and 0.8 releases. Files changed: M docs/deployment.rst Repository: diazo Branch: refs/heads/master Date: 2015-05-20T11:04:50+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/diazo@e917d54 Merge pull request #31 from chris2fr/master Updated information on Nginx stand-alone deployment Files changed: M docs/deployment.rst
jensens
added a commit
that referenced
this pull request
May 20, 2015
Branch: refs/heads/master Date: 2014-08-21T19:04:16+02:00 Author: Christopher Mann (chris2fr) <christopher@mann.fr> Commit: plone/diazo@7fa6c72 Updated information on Nginx stand-alone deployment This documentation update shows how you can update the Nginx 1.6 and 1.7 servers whereas the original html-xslt project only maintains the 0.7 and 0.8 releases. Files changed: M docs/deployment.rst Repository: diazo Branch: refs/heads/master Date: 2015-05-20T11:04:50+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/diazo@e917d54 Merge pull request #31 from chris2fr/master Updated information on Nginx stand-alone deployment Files changed: M docs/deployment.rst
vangheem
added a commit
that referenced
this pull request
Jun 26, 2015
Branch: refs/heads/master Date: 2015-06-25T20:11:02-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.dexterity@d240bb2 check allowed types for add form Files changed: M CHANGES.rst M plone/dexterity/browser/add.py Repository: plone.dexterity Branch: refs/heads/master Date: 2015-06-25T22:35:38-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.dexterity@7966d95 fix test for add form, mocks Files changed: M plone/dexterity/tests/test_views.py Repository: plone.dexterity Branch: refs/heads/master Date: 2015-06-26T09:17:19-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.dexterity@e41a1cc Merge pull request #31 from plone/check-allowed-types check allowed types for add form Files changed: M CHANGES.rst M plone/dexterity/browser/add.py M plone/dexterity/tests/test_views.py
vangheem
added a commit
that referenced
this pull request
Jun 26, 2015
Branch: refs/heads/master Date: 2015-06-25T20:11:02-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.dexterity@d240bb2 check allowed types for add form Files changed: M CHANGES.rst M plone/dexterity/browser/add.py Repository: plone.dexterity Branch: refs/heads/master Date: 2015-06-25T22:35:38-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.dexterity@7966d95 fix test for add form, mocks Files changed: M plone/dexterity/tests/test_views.py Repository: plone.dexterity Branch: refs/heads/master Date: 2015-06-26T09:17:19-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.dexterity@e41a1cc Merge pull request #31 from plone/check-allowed-types check allowed types for add form Files changed: M CHANGES.rst M plone/dexterity/browser/add.py M plone/dexterity/tests/test_views.py
bloodbare
added a commit
that referenced
this pull request
Jul 17, 2015
Branch: refs/heads/master Date: 2015-04-18T20:05:45+02:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.app.querystring@dc5aacc Add operators selection.oneOf and selection.all change Subject QueryField operators to use selection.oneOf and selection.all operators. The change make's it possible to use "oneOf" (OR) and "all" (AND) for Tag criteria of collections. Now is there only a meaningless "Is" operator. Files changed: A plone/app/querystring/profiles/upgrades/to_6/registry.xml M plone/app/querystring/profiles.zcml M plone/app/querystring/profiles/default/registry.xml M plone/app/querystring/queryparser.py M plone/app/querystring/upgrades.zcml Repository: plone.app.querystring Branch: refs/heads/master Date: 2015-07-15T11:18:24+02:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.app.querystring@a0eff52 Merge branch 'master' into mrtango-subject-all-operator Conflicts: plone/app/querystring/profiles.zcml plone/app/querystring/profiles/upgrades/to_6/registry.xml plone/app/querystring/queryparser.py plone/app/querystring/upgrades.zcml Files changed: A plone/app/querystring/profiles/upgrades/to_7/registry.xml A plone/app/querystring/profiles/upgrades/to_8/registry.xml M CHANGES.rst M plone/app/querystring/profiles/default/metadata.xml M plone/app/querystring/profiles/default/registry.xml M plone/app/querystring/profiles/upgrades/to_6/registry.xml M plone/app/querystring/queryparser.py M plone/app/querystring/tests/testQueryParser.py M plone/app/querystring/upgrades.zcml M setup.py Repository: plone.app.querystring Branch: refs/heads/master Date: 2015-07-17T12:43:13+02:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.app.querystring@8a55c6d fix registry entries Files changed: M plone/app/querystring/profiles.zcml M plone/app/querystring/profiles/default/registry.xml Repository: plone.app.querystring Branch: refs/heads/master Date: 2015-07-17T14:13:58+02:00 Author: Ramon Navarro Bosch (bloodbare) <ramon.nb@gmail.com> Commit: plone/plone.app.querystring@3d08240 Merge pull request #31 from plone/mrtango-subject-all-operator Add operators selection.any and selection.all to Subject Files changed: A plone/app/querystring/profiles/upgrades/to_8/registry.xml M plone/app/querystring/profiles.zcml M plone/app/querystring/profiles/default/registry.xml M plone/app/querystring/profiles/upgrades/to_6/registry.xml M plone/app/querystring/queryparser.py M plone/app/querystring/upgrades.zcml
thet
added a commit
that referenced
this pull request
Sep 2, 2015
Branch: refs/heads/master Date: 2015-09-01T00:51:22+02:00 Author: Johannes Raggam (thet) <raggam-nl@adm.at> Commit: plone/plone.schemaeditor@796d47b Make plone.protect.utils.addTokenToUrl a soft dependency, making this package usable in Plone < 5.0. Files changed: M CHANGES.rst M plone/schemaeditor/browser/schema/listing.py M setup.py Repository: plone.schemaeditor Branch: refs/heads/master Date: 2015-09-02T14:28:02+02:00 Author: Johannes Raggam (thet) <raggam-nl@adm.at> Commit: plone/plone.schemaeditor@2bd7b26 Merge pull request #31 from plone/thet-addTokenToUrl-softdependency addTokenToUrl soft dependency Files changed: M CHANGES.rst M plone/schemaeditor/browser/schema/listing.py M setup.py
vangheem
added a commit
that referenced
this pull request
Sep 12, 2015
Branch: refs/heads/master Date: 2015-08-28T09:37:16+02:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plonetheme.barceloneta@0cc656e provide basic table styles closes plone/Products.CMFPlone#755 Files changed: M CHANGES.rst M plonetheme/barceloneta/theme/less/barceloneta-compiled.css M plonetheme/barceloneta/theme/less/tables.plone.less Repository: plonetheme.barceloneta Branch: refs/heads/master Date: 2015-09-12T00:10:48-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plonetheme.barceloneta@4d65840 Merge pull request #31 from plone/table-styles provide basic table styles Files changed: M CHANGES.rst M plonetheme/barceloneta/theme/less/barceloneta-compiled.css M plonetheme/barceloneta/theme/less/tables.plone.less
mauritsvanrees
added a commit
that referenced
this pull request
Nov 4, 2015
Branch: refs/heads/master Date: 2015-11-04T08:36:13+01:00 Author: Thomas Schorr (tschorr) <t_schorr@gmx.de> Commit: plone/Products.CMFEditions@2f6cad8 fix #31 - do not rely on specific size Files changed: M Products/CMFEditions/tests/test_ZVCStorageTool.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2015-11-04T09:29:21+01:00 Author: Thomas Schorr (tschorr) <t_schorr@gmx.de> Commit: plone/Products.CMFEditions@6c0b75a changelog Files changed: M CHANGES.rst Repository: Products.CMFEditions Branch: refs/heads/master Date: 2015-11-04T12:10:12+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.CMFEditions@7296067 Nuked trailing white space. Files changed: M Products/CMFEditions/configure.zcml M Products/CMFEditions/exportimport/repository.py M Products/CMFEditions/permissions.zcml M Products/CMFEditions/profiles.zcml M Products/CMFEditions/tests/test_ZVCStorageTool.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2015-11-04T12:11:22+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.CMFEditions@3ff35c8 Replaced single character variables in test15_storageStatistics. They often interfere with commands in a pdb. Files changed: M Products/CMFEditions/tests/test_ZVCStorageTool.py
mauritsvanrees
added a commit
that referenced
this pull request
Nov 4, 2015
Branch: refs/heads/master Date: 2015-11-04T08:36:13+01:00 Author: Thomas Schorr (tschorr) <t_schorr@gmx.de> Commit: plone/Products.CMFEditions@2f6cad8 fix #31 - do not rely on specific size Files changed: M Products/CMFEditions/tests/test_ZVCStorageTool.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2015-11-04T09:29:21+01:00 Author: Thomas Schorr (tschorr) <t_schorr@gmx.de> Commit: plone/Products.CMFEditions@6c0b75a changelog Files changed: M CHANGES.rst Repository: Products.CMFEditions Branch: refs/heads/master Date: 2015-11-04T12:10:12+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.CMFEditions@7296067 Nuked trailing white space. Files changed: M Products/CMFEditions/configure.zcml M Products/CMFEditions/exportimport/repository.py M Products/CMFEditions/permissions.zcml M Products/CMFEditions/profiles.zcml M Products/CMFEditions/tests/test_ZVCStorageTool.py Repository: Products.CMFEditions Branch: refs/heads/master Date: 2015-11-04T12:11:22+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.CMFEditions@3ff35c8 Replaced single character variables in test15_storageStatistics. They often interfere with commands in a pdb. Files changed: M Products/CMFEditions/tests/test_ZVCStorageTool.py
jensens
added a commit
that referenced
this pull request
Nov 22, 2015
Branch: refs/heads/master Date: 2015-11-19T21:06:51+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.linkintegrity@1f234fc started linkretriever implementation Files changed: A plone/app/linkintegrity/interfaces.py A plone/app/linkintegrity/retriever.py M plone/app/linkintegrity/handlers.py Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2015-11-21T18:22:34+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.linkintegrity@b01645c make adapters work and cleanup Files changed: M plone/app/linkintegrity/configure.zcml M plone/app/linkintegrity/handlers.py M plone/app/linkintegrity/retriever.py Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2015-11-21T18:23:53+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.linkintegrity@2dd57a5 document changes Files changed: M CHANGES.rst Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2015-11-21T18:50:04+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.linkintegrity@fd86fb0 cleanup methods and documentation Files changed: M README.rst M plone/app/linkintegrity/browser/update.py M plone/app/linkintegrity/configure.zcml M plone/app/linkintegrity/handlers.py Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2015-11-21T19:03:09+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.linkintegrity@f981c9c remove unused imports Files changed: M plone/app/linkintegrity/browser/update.py M plone/app/linkintegrity/handlers.py M plone/app/linkintegrity/tests/base.py Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2015-11-21T20:21:16+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.linkintegrity@8c3883a fixed indention Files changed: M plone/app/linkintegrity/retriever.py Repository: plone.app.linkintegrity Branch: refs/heads/master Date: 2015-11-22T21:26:23+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.linkintegrity@8896f40 Merge pull request #31 from plone/tomgross-linkretriever Introduce IRetriever adapter for easier customization Files changed: A plone/app/linkintegrity/interfaces.py A plone/app/linkintegrity/retriever.py M CHANGES.rst M README.rst M plone/app/linkintegrity/browser/update.py M plone/app/linkintegrity/configure.zcml M plone/app/linkintegrity/handlers.py M plone/app/linkintegrity/tests/base.py
mister-roboto
pushed a commit
that referenced
this pull request
Jan 19, 2016
Branch: refs/heads/master Date: 2016-01-19T11:12:10-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/archetypes.referencebrowserwidget@f703ba9 fix to work for plone 5 Files changed: M CHANGES.rst M src/archetypes/referencebrowserwidget/browser/view.py M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.pt M src/archetypes/referencebrowserwidget/tests/test_product.py M src/archetypes/referencebrowserwidget/utils.py Repository: archetypes.referencebrowserwidget Branch: refs/heads/master Date: 2016-01-19T11:58:50-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/archetypes.referencebrowserwidget@f67e536 in case jquery tools overlay is not loaded Files changed: M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.js Repository: archetypes.referencebrowserwidget Branch: refs/heads/master Date: 2016-01-19T12:39:27-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/archetypes.referencebrowserwidget@4ebc385 Merge pull request #31 from plone/plone5-fixes fix to work for plone 5 Files changed: M CHANGES.rst M src/archetypes/referencebrowserwidget/browser/view.py M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.js M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.pt M src/archetypes/referencebrowserwidget/tests/test_product.py M src/archetypes/referencebrowserwidget/utils.py
mister-roboto
pushed a commit
that referenced
this pull request
Jan 19, 2016
Branch: refs/heads/master Date: 2016-01-19T11:12:10-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/archetypes.referencebrowserwidget@f703ba9 fix to work for plone 5 Files changed: M CHANGES.rst M src/archetypes/referencebrowserwidget/browser/view.py M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.pt M src/archetypes/referencebrowserwidget/tests/test_product.py M src/archetypes/referencebrowserwidget/utils.py Repository: archetypes.referencebrowserwidget Branch: refs/heads/master Date: 2016-01-19T11:58:50-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/archetypes.referencebrowserwidget@f67e536 in case jquery tools overlay is not loaded Files changed: M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.js Repository: archetypes.referencebrowserwidget Branch: refs/heads/master Date: 2016-01-19T12:39:27-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/archetypes.referencebrowserwidget@4ebc385 Merge pull request #31 from plone/plone5-fixes fix to work for plone 5 Files changed: M CHANGES.rst M src/archetypes/referencebrowserwidget/browser/view.py M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.js M src/archetypes/referencebrowserwidget/skins/referencebrowser/referencebrowser.pt M src/archetypes/referencebrowserwidget/tests/test_product.py M src/archetypes/referencebrowserwidget/utils.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 6, 2016
Branch: refs/heads/master Date: 2016-02-05T18:29:59+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@9fc83f7 Nuked trailing white space. Files changed: M Products/ATContentTypes/configuration/component.xml M Products/ATContentTypes/skins/ATContentTypes/atct_album_image.pt M Products/ATContentTypes/skins/ATContentTypes/atct_album_view.pt M Products/ATContentTypes/skins/ATContentTypes/atct_history.pt M Products/ATContentTypes/skins/ATContentTypes/atct_image_transform.pt M Products/ATContentTypes/skins/ATContentTypes/atct_macros.pt M Products/ATContentTypes/skins/ATContentTypes/atct_saveTopicSetup.cpy M Products/ATContentTypes/skins/ATContentTypes/criterion_edit_form.cpt M Products/ATContentTypes/skins/ATContentTypes/criterion_remove.cpy M Products/ATContentTypes/skins/ATContentTypes/validate_remove_criterion.vpy M Products/ATContentTypes/tool/metadata.py M Products/ATContentTypes/www/imageScales.zpt M Products/ATContentTypes/www/overview.zpt M README.rst Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T18:32:14+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@cc86d22 white space only pep8 Files changed: M Products/ATContentTypes/tests/test_attopic.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T18:33:52+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@13639ba Selected autopep8 fixes. Files changed: M Products/ATContentTypes/configuration/config.py M Products/ATContentTypes/configuration/datatype.py M Products/ATContentTypes/configuration/schema.py M Products/ATContentTypes/content/base.py M Products/ATContentTypes/criteria/date.py M Products/ATContentTypes/lib/calendarsupport.py M Products/ATContentTypes/lib/constraintypes.py M Products/ATContentTypes/lib/imagetransform.py M Products/ATContentTypes/tests/test_bugs.py M Products/ATContentTypes/thirdparty/exif.py M Products/ATContentTypes/tool/metadata.py M Products/ATContentTypes/tool/topic.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T18:52:02+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@2e8eaea Selected more invasive autopep8 fixes. Files changed: M CHANGES.rst M Products/ATContentTypes/configuration/datatype.py M Products/ATContentTypes/content/base.py M Products/ATContentTypes/content/document.py M Products/ATContentTypes/content/file.py M Products/ATContentTypes/content/topic.py M Products/ATContentTypes/criteria/__init__.py M Products/ATContentTypes/criteria/reference.py M Products/ATContentTypes/criteria/selection.py M Products/ATContentTypes/interface.py M Products/ATContentTypes/lib/constraintypes.py M Products/ATContentTypes/lib/validators.py M Products/ATContentTypes/tests/test_criteria.py M Products/ATContentTypes/tests/test_portal_factory.py M Products/ATContentTypes/thirdparty/exif.py M Products/ATContentTypes/tool/factory.py M Products/ATContentTypes/tool/topic.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T18:53:13+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@315ae5d Sorted imports with isort. Added .isort.cfg. We skip __init__.py files, because they would cause ImportErrors. Files changed: A .isort.cfg M CHANGES.rst M Products/ATContentTypes/atct.py M Products/ATContentTypes/browser/calendar.py M Products/ATContentTypes/browser/criteria.py M Products/ATContentTypes/browser/download.py M Products/ATContentTypes/browser/nextprevious.py M Products/ATContentTypes/config.py M Products/ATContentTypes/configuration/config.py M Products/ATContentTypes/configuration/datatype.py M Products/ATContentTypes/configuration/schema.py M Products/ATContentTypes/content/base.py M Products/ATContentTypes/content/document.py M Products/ATContentTypes/content/event.py M Products/ATContentTypes/content/favorite.py M Products/ATContentTypes/content/file.py M Products/ATContentTypes/content/folder.py M Products/ATContentTypes/content/image.py M Products/ATContentTypes/content/link.py M Products/ATContentTypes/content/newsitem.py M Products/ATContentTypes/content/schemata.py M Products/ATContentTypes/content/topic.py M Products/ATContentTypes/criteria/base.py M Products/ATContentTypes/criteria/boolean.py M Products/ATContentTypes/criteria/currentauthor.py M Products/ATContentTypes/criteria/date.py M Products/ATContentTypes/criteria/daterange.py M Products/ATContentTypes/criteria/list.py M Products/ATContentTypes/criteria/path.py M Products/ATContentTypes/criteria/portaltype.py M Products/ATContentTypes/criteria/reference.py M Products/ATContentTypes/criteria/relativepath.py M Products/ATContentTypes/criteria/schemata.py M Products/ATContentTypes/criteria/selection.py M Products/ATContentTypes/criteria/simpleint.py M Products/ATContentTypes/criteria/simplestring.py M Products/ATContentTypes/criteria/sort.py M Products/ATContentTypes/exportimport/atcttool.py M Products/ATContentTypes/exportimport/content.py M Products/ATContentTypes/exportimport/factorytool.py M Products/ATContentTypes/exportimport/tests/test_factory_tool.py M Products/ATContentTypes/factories.py M Products/ATContentTypes/interface.py M Products/ATContentTypes/interfaces/factory.py M Products/ATContentTypes/interfaces/folder.py M Products/ATContentTypes/interfaces/interfaces.py M Products/ATContentTypes/interfaces/topic.py M Products/ATContentTypes/lib/calendarsupport.py M Products/ATContentTypes/lib/constraintypes.py M Products/ATContentTypes/lib/historyaware.py M Products/ATContentTypes/lib/imagetransform.py M Products/ATContentTypes/lib/validators.py M Products/ATContentTypes/permission.py M Products/ATContentTypes/setuphandlers.py M Products/ATContentTypes/skins/ATContentTypes/formatCatalogMetadata.py M Products/ATContentTypes/skins/ATContentTypes/link_redirect_view.py M Products/ATContentTypes/tests/atctftestcase.py M Products/ATContentTypes/tests/atcttestcase.py M Products/ATContentTypes/tests/testContentTypes.py M Products/ATContentTypes/tests/test_atdocument.py M Products/ATContentTypes/tests/test_atevent.py M Products/ATContentTypes/tests/test_atfile.py M Products/ATContentTypes/tests/test_atfolder.py M Products/ATContentTypes/tests/test_atimage.py M Products/ATContentTypes/tests/test_atlink.py M Products/ATContentTypes/tests/test_atnewsitem.py M Products/ATContentTypes/tests/test_attopic.py M Products/ATContentTypes/tests/test_browserdefaultmixin.py M Products/ATContentTypes/tests/test_bugs.py M Products/ATContentTypes/tests/test_constraintypes.py M Products/ATContentTypes/tests/test_content_profile.py M Products/ATContentTypes/tests/test_criteria.py M Products/ATContentTypes/tests/test_default_mimetypes.py M Products/ATContentTypes/tests/test_doctests.py M Products/ATContentTypes/tests/test_installation.py M Products/ATContentTypes/tests/test_interfaces.py M Products/ATContentTypes/tests/test_portal_factory.py M Products/ATContentTypes/tests/test_skinScripts.py M Products/ATContentTypes/tests/test_tool.py M Products/ATContentTypes/tests/test_topictool.py M Products/ATContentTypes/tests/utils.py M Products/ATContentTypes/thirdparty/exif.py M Products/ATContentTypes/tool/atct.py M Products/ATContentTypes/tool/factory.py M Products/ATContentTypes/tool/metadata.py M Products/ATContentTypes/tool/topic.py M Products/ATContentTypes/utils.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T19:02:45+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@17c6ac9 Added utf-8 coding magic comment. Files changed: M CHANGES.rst M Products/ATContentTypes/__init__.py M Products/ATContentTypes/atct.py M Products/ATContentTypes/browser/calendar.py M Products/ATContentTypes/browser/criteria.py M Products/ATContentTypes/browser/download.py M Products/ATContentTypes/browser/nextprevious.py M Products/ATContentTypes/config.py M Products/ATContentTypes/configuration/__init__.py M Products/ATContentTypes/configuration/config.py M Products/ATContentTypes/configuration/datatype.py M Products/ATContentTypes/configuration/schema.py M Products/ATContentTypes/content/__init__.py M Products/ATContentTypes/content/base.py M Products/ATContentTypes/content/document.py M Products/ATContentTypes/content/event.py M Products/ATContentTypes/content/favorite.py M Products/ATContentTypes/content/file.py M Products/ATContentTypes/content/folder.py M Products/ATContentTypes/content/image.py M Products/ATContentTypes/content/link.py M Products/ATContentTypes/content/newsitem.py M Products/ATContentTypes/content/schemata.py M Products/ATContentTypes/content/topic.py M Products/ATContentTypes/criteria/__init__.py M Products/ATContentTypes/criteria/base.py M Products/ATContentTypes/criteria/boolean.py M Products/ATContentTypes/criteria/currentauthor.py M Products/ATContentTypes/criteria/date.py M Products/ATContentTypes/criteria/daterange.py M Products/ATContentTypes/criteria/list.py M Products/ATContentTypes/criteria/path.py M Products/ATContentTypes/criteria/portaltype.py M Products/ATContentTypes/criteria/reference.py M Products/ATContentTypes/criteria/relativepath.py M Products/ATContentTypes/criteria/schemata.py M Products/ATContentTypes/criteria/selection.py M Products/ATContentTypes/criteria/simpleint.py M Products/ATContentTypes/criteria/simplestring.py M Products/ATContentTypes/criteria/sort.py M Products/ATContentTypes/exportimport/__init__.py M Products/ATContentTypes/exportimport/atcttool.py M Products/ATContentTypes/exportimport/content.py M Products/ATContentTypes/exportimport/factorytool.py M Products/ATContentTypes/exportimport/tests/test_factory_tool.py M Products/ATContentTypes/factories.py M Products/ATContentTypes/interface.py M Products/ATContentTypes/interfaces/__init__.py M Products/ATContentTypes/interfaces/document.py M Products/ATContentTypes/interfaces/event.py M Products/ATContentTypes/interfaces/factories.py M Products/ATContentTypes/interfaces/factory.py M Products/ATContentTypes/interfaces/file.py M Products/ATContentTypes/interfaces/folder.py M Products/ATContentTypes/interfaces/image.py M Products/ATContentTypes/interfaces/interfaces.py M Products/ATContentTypes/interfaces/link.py M Products/ATContentTypes/interfaces/news.py M Products/ATContentTypes/interfaces/topic.py M Products/ATContentTypes/lib/__init__.py M Products/ATContentTypes/lib/calendarsupport.py M Products/ATContentTypes/lib/constraintypes.py M Products/ATContentTypes/lib/historyaware.py M Products/ATContentTypes/lib/imagetransform.py M Products/ATContentTypes/lib/validators.py M Products/ATContentTypes/migration/__init__.py M Products/ATContentTypes/migration/v1_2/__init__.py M Products/ATContentTypes/permission.py M Products/ATContentTypes/setuphandlers.py M Products/ATContentTypes/tests/atctftestcase.py M Products/ATContentTypes/tests/atcttestcase.py M Products/ATContentTypes/tests/testContentTypes.py M Products/ATContentTypes/tests/test_atdocument.py M Products/ATContentTypes/tests/test_atevent.py M Products/ATContentTypes/tests/test_atfolder.py M Products/ATContentTypes/tests/test_atlink.py M Products/ATContentTypes/tests/test_atnewsitem.py M Products/ATContentTypes/tests/test_attopic.py M Products/ATContentTypes/tests/test_browserdefaultmixin.py M Products/ATContentTypes/tests/test_bugs.py M Products/ATContentTypes/tests/test_constraintypes.py M Products/ATContentTypes/tests/test_content_profile.py M Products/ATContentTypes/tests/test_controlpanel.py M Products/ATContentTypes/tests/test_criteria.py M Products/ATContentTypes/tests/test_default_mimetypes.py M Products/ATContentTypes/tests/test_installation.py M Products/ATContentTypes/tests/test_interfaces.py M Products/ATContentTypes/tests/test_migrations.py M Products/ATContentTypes/tests/test_portal_factory.py M Products/ATContentTypes/tests/test_skinScripts.py M Products/ATContentTypes/tests/test_tool.py M Products/ATContentTypes/tests/test_topictool.py M Products/ATContentTypes/tests/utils.py M Products/ATContentTypes/thirdparty/exif.py M Products/ATContentTypes/tool/__init__.py M Products/ATContentTypes/tool/atct.py M Products/ATContentTypes/tool/factory.py M Products/ATContentTypes/tool/metadata.py M Products/ATContentTypes/tool/topic.py M Products/ATContentTypes/utils.py M Products/__init__.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T19:22:45+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@2db18b9 Removed unneeded imports. Or added '# noqa' to stop flake8 from complaining, especially in __init__.py files. Files changed: M Products/ATContentTypes/__init__.py M Products/ATContentTypes/atct.py M Products/ATContentTypes/config.py M Products/ATContentTypes/configuration/__init__.py M Products/ATContentTypes/configuration/datatype.py M Products/ATContentTypes/content/__init__.py M Products/ATContentTypes/criteria/__init__.py M Products/ATContentTypes/interfaces/__init__.py M Products/ATContentTypes/interfaces/interfaces.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T19:27:15+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@b8b5830 Removed unused local variables. Files changed: M Products/ATContentTypes/criteria/daterange.py M Products/ATContentTypes/thirdparty/exif.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T20:42:17+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@d6160c7 Fixed too long lines. Plus assorted other small pyflakes/pep8 changes. Files changed: M Products/ATContentTypes/browser/nextprevious.py M Products/ATContentTypes/content/base.py M Products/ATContentTypes/content/document.py M Products/ATContentTypes/content/event.py M Products/ATContentTypes/content/favorite.py M Products/ATContentTypes/content/folder.py M Products/ATContentTypes/content/image.py M Products/ATContentTypes/content/newsitem.py M Products/ATContentTypes/content/schemata.py M Products/ATContentTypes/content/topic.py M Products/ATContentTypes/criteria/__init__.py M Products/ATContentTypes/criteria/date.py M Products/ATContentTypes/criteria/daterange.py M Products/ATContentTypes/criteria/list.py M Products/ATContentTypes/criteria/relativepath.py M Products/ATContentTypes/criteria/schemata.py M Products/ATContentTypes/criteria/selection.py M Products/ATContentTypes/criteria/simpleint.py M Products/ATContentTypes/lib/calendarsupport.py M Products/ATContentTypes/lib/constraintypes.py M Products/ATContentTypes/lib/validators.py M Products/ATContentTypes/setuphandlers.py M Products/ATContentTypes/tests/atctftestcase.py M Products/ATContentTypes/tests/atcttestcase.py M Products/ATContentTypes/tests/test_atdocument.py M Products/ATContentTypes/tests/test_atevent.py M Products/ATContentTypes/tests/test_atfile.py M Products/ATContentTypes/tests/test_atfolder.py M Products/ATContentTypes/tests/test_atimage.py M Products/ATContentTypes/tests/test_atlink.py M Products/ATContentTypes/tests/test_atnewsitem.py M Products/ATContentTypes/tests/test_attopic.py M Products/ATContentTypes/tests/test_browserdefaultmixin.py M Products/ATContentTypes/tests/test_calendar.py M Products/ATContentTypes/tests/test_constraintypes.py M Products/ATContentTypes/tests/test_controlpanel.py M Products/ATContentTypes/tests/test_criteria.py M Products/ATContentTypes/tests/test_doctests.py M Products/ATContentTypes/tests/test_installation.py M Products/ATContentTypes/tool/factory.py M Products/ATContentTypes/tool/metadata.py M Products/ATContentTypes/tool/topic.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T20:45:44+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@246e416 Removed double line from simpleint criterion. This had the effect that post_validate always gave an error for value2. Possibly this is used nowhere, because this has been in there for years. Files changed: M CHANGES.rst M Products/ATContentTypes/criteria/simpleint.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T21:01:16+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@2433d58 Another minor pep8 fix Files changed: M Products/ATContentTypes/tests/test_interfaces.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-05T21:26:11+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.ATContentTypes@93a2ba6 Added security decorators. Files changed: M CHANGES.rst M Products/ATContentTypes/content/base.py M Products/ATContentTypes/content/document.py M Products/ATContentTypes/content/event.py M Products/ATContentTypes/content/file.py M Products/ATContentTypes/content/folder.py M Products/ATContentTypes/content/image.py M Products/ATContentTypes/content/link.py M Products/ATContentTypes/content/newsitem.py M Products/ATContentTypes/content/topic.py M Products/ATContentTypes/criteria/base.py M Products/ATContentTypes/criteria/boolean.py M Products/ATContentTypes/criteria/currentauthor.py M Products/ATContentTypes/criteria/date.py M Products/ATContentTypes/criteria/daterange.py M Products/ATContentTypes/criteria/list.py M Products/ATContentTypes/criteria/path.py M Products/ATContentTypes/criteria/portaltype.py M Products/ATContentTypes/criteria/relativepath.py M Products/ATContentTypes/criteria/selection.py M Products/ATContentTypes/criteria/simpleint.py M Products/ATContentTypes/criteria/simplestring.py M Products/ATContentTypes/criteria/sort.py M Products/ATContentTypes/lib/calendarsupport.py M Products/ATContentTypes/lib/constraintypes.py M Products/ATContentTypes/lib/historyaware.py M Products/ATContentTypes/lib/imagetransform.py M Products/ATContentTypes/tool/atct.py M Products/ATContentTypes/tool/factory.py M Products/ATContentTypes/tool/metadata.py M Products/ATContentTypes/tool/topic.py Repository: Products.ATContentTypes Branch: refs/heads/master Date: 2016-02-06T23:08:06+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.forcada@freitag.de> Commit: plone/Products.ATContentTypes@2941685 Merge pull request #31 from plone/maurits-partial-cleanup Partial cleanup (pep8, pyflakes, sorting, security decorators) Files changed: A .isort.cfg M CHANGES.rst M Products/ATContentTypes/__init__.py M Products/ATContentTypes/atct.py M Products/ATContentTypes/browser/calendar.py M Products/ATContentTypes/browser/criteria.py M Products/ATContentTypes/browser/download.py M Products/ATContentTypes/browser/nextprevious.py M Products/ATContentTypes/config.py M Products/ATContentTypes/configuration/__init__.py M Products/ATContentTypes/configuration/component.xml M Products/ATContentTypes/configuration/config.py M Products/ATContentTypes/configuration/datatype.py M Products/ATContentTypes/configuration/schema.py M Products/ATContentTypes/content/__init__.py M Products/ATContentTypes/content/base.py M Products/ATContentTypes/content/document.py M Products/ATContentTypes/content/event.py M Products/ATContentTypes/content/favorite.py M Products/ATContentTypes/content/file.py M Products/ATContentTypes/content/folder.py M Products/ATContentTypes/content/image.py M Products/ATContentTypes/content/link.py M Products/ATContentTypes/content/newsitem.py M Products/ATContentTypes/content/schemata.py M Products/ATContentTypes/content/topic.py M Products/ATContentTypes/criteria/__init__.py M Products/ATContentTypes/criteria/base.py M Products/ATContentTypes/criteria/boolean.py M Products/ATContentTypes/criteria/currentauthor.py M Products/ATContentTypes/criteria/date.py M Products/ATContentTypes/criteria/daterange.py M Products/ATContentTypes/criteria/list.py M Products/ATContentTypes/criteria/path.py M Products/ATContentTypes/criteria/portaltype.py M Products/ATContentTypes/criteria/reference.py M Products/ATContentTypes/criteria/relativepath.py M Products/ATContentTypes/criteria/schemata.py M Products/ATContentTypes/criteria/selection.py M Products/ATContentTypes/criteria/simpleint.py M Products/ATContentTypes/criteria/simplestring.py M Products/ATContentTypes/criteria/sort.py M Products/ATContentTypes/exportimport/__init__.py M Products/ATContentTypes/exportimport/atcttool.py M Products/ATContentTypes/exportimport/content.py M Products/ATContentTypes/exportimport/factorytool.py M Products/ATContentTypes/exportimport/tests/test_factory_tool.py M Products/ATContentTypes/factories.py M Products/ATContentTypes/interface.py M Products/ATContentTypes/interfaces/__init__.py M Products/ATContentTypes/interfaces/document.py M Products/ATContentTypes/interfaces/event.py M Products/ATContentTypes/interfaces/factories.py M Products/ATContentTypes/interfaces/factory.py M Products/ATContentTypes/interfaces/file.py M Products/ATContentTypes/interfaces/folder.py M Products/ATContentTypes/interfaces/image.py M Products/ATContentTypes/interfaces/interfaces.py M Products/ATContentTypes/interfaces/link.py M Products/ATContentTypes/interfaces/news.py M Products/ATContentTypes/interfaces/topic.py M Products/ATContentTypes/lib/__init__.py M Products/ATContentTypes/lib/calendarsupport.py M Products/ATContentTypes/lib/constraintypes.py M Products/ATContentTypes/lib/historyaware.py M Products/ATContentTypes/lib/imagetransform.py M Products/ATContentTypes/lib/validators.py M Products/ATContentTypes/migration/__init__.py M Products/ATContentTypes/migration/v1_2/__init__.py M Products/ATContentTypes/permission.py M Products/ATContentTypes/setuphandlers.py M Products/ATContentTypes/skins/ATContentTypes/atct_album_image.pt M Products/ATContentTypes/skins/ATContentTypes/atct_album_view.pt M Products/ATContentTypes/skins/ATContentTypes/atct_history.pt M Products/ATContentTypes/skins/ATContentTypes/atct_image_transform.pt M Products/ATContentTypes/skins/ATContentTypes/atct_macros.pt M Products/ATContentTypes/skins/ATContentTypes/atct_saveTopicSetup.cpy M Products/ATContentTypes/skins/ATContentTypes/criterion_edit_form.cpt M Products/ATContentTypes/skins/ATContentTypes/criterion_remove.cpy M Products/ATContentTypes/skins/ATContentTypes/formatCatalogMetadata.py M Products/ATContentTypes/skins/ATContentTypes/link_redirect_view.py M Products/ATContentTypes/skins/ATContentTypes/validate_remove_criterion.vpy M Products/ATContentTypes/tests/atctftestcase.py M Products/ATContentTypes/tests/atcttestcase.py M Products/ATContentTypes/tests/testContentTypes.py M Products/ATContentTypes/tests/test_atdocument.py M Products/ATContentTypes/tests/test_atevent.py M Products/ATContentTypes/tests/test_atfile.py M Products/ATContentTypes/tests/test_atfolder.py M Products/ATContentTypes/tests/test_atimage.py M Products/ATContentTypes/tests/test_atlink.py M Products/ATContentTypes/tests/test_atnewsitem.py M Products/ATContentTypes/tests/test_attopic.py M Products/ATContentTypes/tests/test_browserdefaultmixin.py M Products/ATContentTypes/tests/test_bugs.py M Products/ATContentTypes/tests/test_calendar.py M Products/ATContentTypes/tests/test_constraintypes.py M Products/ATContentTypes/tests/test_content_profile.py M Products/ATContentTypes/tests/test_controlpanel.py M Products/ATContentTypes/tests/test_criteria.py M Products/ATContentTypes/tests/test_default_mimetypes.py M Products/ATContentTypes/tests/test_doctests.py M Products/ATContentTypes/tests/test_installation.py M Products/ATContentTypes/tests/test_interfaces.py M Products/ATContentTypes/tests/test_migrations.py M Products/ATContentTypes/tests/test_portal_factory.py M Products/ATContentTypes/tests/test_skinScripts.py M Products/ATContentTypes/tests/test_tool.py M Products/ATContentTypes/tests/test_topictool.py M Products/ATContentTypes/tests/utils.py M Products/ATContentTypes/thirdparty/exif.py M Products/ATContentTypes/tool/__init__.py M Products/ATContentTypes/tool/atct.py M Products/ATContentTypes/tool/factory.py M Products/ATContentTypes/tool/metadata.py M Products/ATContentTypes/tool/topic.py M Products/ATContentTypes/utils.py M Products/ATContentTypes/www/imageScales.zpt M Products/ATContentTypes/www/overview.zpt M Products/__init__.py M README.rst
mister-roboto
pushed a commit
that referenced
this pull request
Jul 9, 2016
Branch: refs/heads/master Date: 2016-07-05T23:12:37+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.app.ldap@08565f3 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/ldap/browser/schema.py M plone/app/ldap/browser/server.py M plone/app/ldap/engine/schema.py M plone/app/ldap/engine/server.py M plone/app/ldap/engine/storage.py M plone/app/ldap/engine/vocabulary.py Repository: plone.app.ldap Branch: refs/heads/master Date: 2016-07-09T08:50:39+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.app.ldap@c24afe6 Merge pull request #31 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/app/ldap/browser/schema.py M plone/app/ldap/browser/server.py M plone/app/ldap/engine/schema.py M plone/app/ldap/engine/server.py M plone/app/ldap/engine/storage.py M plone/app/ldap/engine/vocabulary.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 9, 2016
Branch: refs/heads/master Date: 2016-07-05T23:12:37+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.app.ldap@08565f3 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/ldap/browser/schema.py M plone/app/ldap/browser/server.py M plone/app/ldap/engine/schema.py M plone/app/ldap/engine/server.py M plone/app/ldap/engine/storage.py M plone/app/ldap/engine/vocabulary.py Repository: plone.app.ldap Branch: refs/heads/master Date: 2016-07-09T08:50:39+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.app.ldap@c24afe6 Merge pull request #31 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/app/ldap/browser/schema.py M plone/app/ldap/browser/server.py M plone/app/ldap/engine/schema.py M plone/app/ldap/engine/server.py M plone/app/ldap/engine/storage.py M plone/app/ldap/engine/vocabulary.py
mister-roboto
pushed a commit
that referenced
this pull request
Aug 25, 2016
Branch: refs/heads/2.1.x Date: 2016-08-23T18:54:31+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.iterate@afe4a84 Remove broken references when making checkout. Fixes issue plone/plone.app.iterate#30. Files changed: M CHANGES.rst M plone/app/iterate/relation.py M plone/app/iterate/tests/test_iterate.py Repository: plone.app.iterate Branch: refs/heads/2.1.x Date: 2016-08-25T08:48:35+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.app.iterate@17e05f2 Merge pull request #31 from plone/catch-reference-exception-43 Remove broken references when making checkout. Files changed: M CHANGES.rst M plone/app/iterate/relation.py M plone/app/iterate/tests/test_iterate.py
mister-roboto
pushed a commit
that referenced
this pull request
Aug 30, 2016
Branch: refs/heads/master Date: 2016-08-30T20:15:35+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.testing@6529a46 Load Products.CMFFormController in tests. It is still used by core Plone, also without Archetypes. This makes the CMFFormController tests pass. Files changed: M CHANGES.rst M plone/app/testing/layers.py Repository: plone.app.testing Branch: refs/heads/master Date: 2016-08-30T22:25:46+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.testing@79a54c0 Merge pull request #31 from plone/load-cmfformcontroller Load Products.CMFFormController in tests. Files changed: M CHANGES.rst M plone/app/testing/layers.py
mister-roboto
pushed a commit
that referenced
this pull request
Aug 30, 2016
Branch: refs/heads/master Date: 2016-08-30T20:15:35+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.testing@6529a46 Load Products.CMFFormController in tests. It is still used by core Plone, also without Archetypes. This makes the CMFFormController tests pass. Files changed: M CHANGES.rst M plone/app/testing/layers.py Repository: plone.app.testing Branch: refs/heads/master Date: 2016-08-30T22:25:46+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.app.testing@79a54c0 Merge pull request #31 from plone/load-cmfformcontroller Load Products.CMFFormController in tests. Files changed: M CHANGES.rst M plone/app/testing/layers.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 2, 2016
Branch: refs/heads/master Date: 2016-10-02T20:34:08+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.app.blob@12fe4f4 Add coding header Files changed: M CHANGES.rst M setup.py M src/plone/__init__.py M src/plone/app/__init__.py M src/plone/app/blob/__init__.py M src/plone/app/blob/adapters/__init__.py M src/plone/app/blob/adapters/atfile.py M src/plone/app/blob/adapters/atimage.py M src/plone/app/blob/adapters/blobwrapper.py M src/plone/app/blob/adapters/file.py M src/plone/app/blob/adapters/fileupload.py M src/plone/app/blob/adapters/ofsfile.py M src/plone/app/blob/adapters/pdata.py M src/plone/app/blob/adapters/stringio.py M src/plone/app/blob/adapters/webdav.py M src/plone/app/blob/adapters/xmlrpc.py M src/plone/app/blob/browser/__init__.py M src/plone/app/blob/browser/maintenance.py M src/plone/app/blob/browser/migration.py M src/plone/app/blob/browser/size.py M src/plone/app/blob/config.py M src/plone/app/blob/content.py M src/plone/app/blob/download.py M src/plone/app/blob/iterators.py M src/plone/app/blob/markings.py M src/plone/app/blob/migrations.py M src/plone/app/blob/mixins.py M src/plone/app/blob/monkey.py M src/plone/app/blob/scale.py M src/plone/app/blob/subtypes/__init__.py M src/plone/app/blob/subtypes/blob.py M src/plone/app/blob/subtypes/file.py M src/plone/app/blob/subtypes/image.py M src/plone/app/blob/tests/__init__.py M src/plone/app/blob/tests/base.py M src/plone/app/blob/tests/bbb.py M src/plone/app/blob/tests/layer.py M src/plone/app/blob/tests/lingua.py M src/plone/app/blob/tests/patches.py M src/plone/app/blob/tests/test_adapters.py M src/plone/app/blob/tests/test_base_fields.py M src/plone/app/blob/tests/test_doctests.py M src/plone/app/blob/tests/test_integration.py M src/plone/app/blob/tests/test_linguaplone.py M src/plone/app/blob/tests/test_maintenance.py M src/plone/app/blob/tests/test_replacements.py M src/plone/app/blob/tests/test_scaling.py M src/plone/app/blob/tests/test_utils.py M src/plone/app/blob/tests/test_webdav.py M src/plone/app/blob/tests/utils.py M src/plone/app/blob/utils.py Repository: plone.app.blob Branch: refs/heads/master Date: 2016-10-02T22:02:40+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.app.blob@c0e93b1 Merge pull request #31 from plone/gforcada-patch-1 Add coding header Files changed: M CHANGES.rst M setup.py M src/plone/__init__.py M src/plone/app/__init__.py M src/plone/app/blob/__init__.py M src/plone/app/blob/adapters/__init__.py M src/plone/app/blob/adapters/atfile.py M src/plone/app/blob/adapters/atimage.py M src/plone/app/blob/adapters/blobwrapper.py M src/plone/app/blob/adapters/file.py M src/plone/app/blob/adapters/fileupload.py M src/plone/app/blob/adapters/ofsfile.py M src/plone/app/blob/adapters/pdata.py M src/plone/app/blob/adapters/stringio.py M src/plone/app/blob/adapters/webdav.py M src/plone/app/blob/adapters/xmlrpc.py M src/plone/app/blob/browser/__init__.py M src/plone/app/blob/browser/maintenance.py M src/plone/app/blob/browser/migration.py M src/plone/app/blob/browser/size.py M src/plone/app/blob/config.py M src/plone/app/blob/content.py M src/plone/app/blob/download.py M src/plone/app/blob/iterators.py M src/plone/app/blob/markings.py M src/plone/app/blob/migrations.py M src/plone/app/blob/mixins.py M src/plone/app/blob/monkey.py M src/plone/app/blob/scale.py M src/plone/app/blob/subtypes/__init__.py M src/plone/app/blob/subtypes/blob.py M src/plone/app/blob/subtypes/file.py M src/plone/app/blob/subtypes/image.py M src/plone/app/blob/tests/__init__.py M src/plone/app/blob/tests/base.py M src/plone/app/blob/tests/bbb.py M src/plone/app/blob/tests/layer.py M src/plone/app/blob/tests/lingua.py M src/plone/app/blob/tests/patches.py M src/plone/app/blob/tests/test_adapters.py M src/plone/app/blob/tests/test_base_fields.py M src/plone/app/blob/tests/test_doctests.py M src/plone/app/blob/tests/test_integration.py M src/plone/app/blob/tests/test_linguaplone.py M src/plone/app/blob/tests/test_maintenance.py M src/plone/app/blob/tests/test_replacements.py M src/plone/app/blob/tests/test_scaling.py M src/plone/app/blob/tests/test_utils.py M src/plone/app/blob/tests/test_webdav.py M src/plone/app/blob/tests/utils.py M src/plone/app/blob/utils.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 17, 2016
Branch: refs/heads/master Date: 2016-10-16T00:09:24-07:00 Author: David Glick (davisagli) <david@glicksoftware.com> Commit: plone/plone.app.imaging@892ad08 plone.app.imaging doesn't require plone.app.controlpanel any more Files changed: M CHANGES.rst M setup.py Repository: plone.app.imaging Branch: refs/heads/master Date: 2016-10-16T22:47:39-05:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.imaging@d4f0b10 Merge pull request #31 from plone/davisagli-AT-cleanup plone.app.imaging doesn't actually require plone.app.controlpanel Files changed: M CHANGES.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 17, 2016
Branch: refs/heads/master Date: 2016-10-16T00:09:24-07:00 Author: David Glick (davisagli) <david@glicksoftware.com> Commit: plone/plone.app.imaging@892ad08 plone.app.imaging doesn't require plone.app.controlpanel any more Files changed: M CHANGES.rst M setup.py Repository: plone.app.imaging Branch: refs/heads/master Date: 2016-10-16T22:47:39-05:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.imaging@d4f0b10 Merge pull request #31 from plone/davisagli-AT-cleanup plone.app.imaging doesn't actually require plone.app.controlpanel Files changed: M CHANGES.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 7, 2017
Branch: refs/heads/4.3.x Date: 2017-04-07T12:46:12+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.testing@f1de157 Fix for ZODB 5: Abort transaction before DB close. Files changed: M CHANGES.rst M src/plone/testing/z2.py Repository: plone.testing Branch: refs/heads/4.3.x Date: 2017-04-07T14:32:25+02:00 Author: agitator (agitator) <agitator@users.noreply.github.com> Commit: plone/plone.testing@384af39 Merge pull request #31 from plone/abort-before-close-4.3.x Fix for ZODB 5: Abort transaction before DB close (4.3.x backport) Files changed: M CHANGES.rst M src/plone/testing/z2.py
mister-roboto
pushed a commit
that referenced
this pull request
May 11, 2017
Branch: refs/heads/master Date: 2017-04-25T13:26:44+02:00 Author: Malthe Borch (malthe) <mborch@gmail.com> Commit: plone/plone.app.contentrules@932af67 Refactor Files changed: M plone/app/contentrules/actions/__init__.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-04-25T13:28:33+02:00 Author: Malthe Borch (malthe) <mborch@gmail.com> Commit: plone/plone.app.contentrules@9676e17 Content wrapper must proxy changes to content object Previously, setting an attribute on the content would simply add the entry to the content wrapper's own dictionary instead of proxying the change to the content object. This fixes action editing such that changes are persisted correctly. Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-05-08T09:29:54+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.contentrules@c730470 Merge branch 'master' into fix-action-edit-form Files changed: M CHANGES.rst M setup.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-05-11T23:45:25+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.contentrules@e261b03 Merge pull request #31 from plone/fix-action-edit-form Fix action edit form Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py
mister-roboto
pushed a commit
that referenced
this pull request
May 11, 2017
Branch: refs/heads/master Date: 2017-04-25T13:26:44+02:00 Author: Malthe Borch (malthe) <mborch@gmail.com> Commit: plone/plone.app.contentrules@932af67 Refactor Files changed: M plone/app/contentrules/actions/__init__.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-04-25T13:28:33+02:00 Author: Malthe Borch (malthe) <mborch@gmail.com> Commit: plone/plone.app.contentrules@9676e17 Content wrapper must proxy changes to content object Previously, setting an attribute on the content would simply add the entry to the content wrapper's own dictionary instead of proxying the change to the content object. This fixes action editing such that changes are persisted correctly. Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-05-08T09:29:54+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.contentrules@c730470 Merge branch 'master' into fix-action-edit-form Files changed: M CHANGES.rst M setup.py Repository: plone.app.contentrules Branch: refs/heads/master Date: 2017-05-11T23:45:25+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.contentrules@e261b03 Merge pull request #31 from plone/fix-action-edit-form Fix action edit form Files changed: M CHANGES.rst M plone/app/contentrules/actions/__init__.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 7, 2018
Branch: refs/heads/master Date: 2018-01-31T00:02:12+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.PlonePAS@7122036 Removed Extensions/Install.py. This had only backwards compatibility imports. Until yesterday, borg.localrole and plone.app.upgrade were using them, but I made pull requests for them, which were merged. So for Plone 5.2 this will be fine. Files changed: M CHANGES.rst D src/Products/PlonePAS/Extensions/Install.py D src/Products/PlonePAS/Extensions/__init__.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2018-02-07T10:06:30+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@1d41a4f Merge pull request #31 from plone/remove-extensions-install Removed Extensions/Install.py Files changed: M CHANGES.rst D src/Products/PlonePAS/Extensions/Install.py D src/Products/PlonePAS/Extensions/__init__.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 3, 2018
Branch: refs/heads/master Date: 2018-03-31T01:47:01+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/Products.PortalTransforms@7fdfe84 fix importing transforms in py3 Files changed: M Products/PortalTransforms/transforms/__init__.py Repository: Products.PortalTransforms Branch: refs/heads/master Date: 2018-04-01T14:18:00+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/Products.PortalTransforms@9cba248 fix safe_html for py3 Files changed: M Products/PortalTransforms/transforms/safe_html.py Repository: Products.PortalTransforms Branch: refs/heads/master Date: 2018-04-03T23:33:55+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PortalTransforms@6d0e3c1 Merge pull request #31 from plone/python3 Python3 Files changed: M Products/PortalTransforms/transforms/__init__.py M Products/PortalTransforms/transforms/safe_html.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 17, 2018
Branch: refs/heads/master Date: 2018-03-21T22:08:12+01:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.outputfilters@813a145 start dealing with sgmllib in py3 (TODO: port to BS4) Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-03-22T17:20:24+01:00 Author: Tobias Herp (tobiasherp) <tobias.herp@visaplan.com> Commit: plone/plone.outputfilters@e8cbb34 updated .gitignore Added 3 lines Files changed: M .gitignore Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-03-23T10:22:24+01:00 Author: Tobias Herp (tobiasherp) <tobias.herp@visaplan.com> Commit: plone/plone.outputfilters@de3a7ce Merge branch 'master' into issue27 Files changed: M buildout.cfg Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-03-23T13:57:16+01:00 Author: Tobias Herp (tobiasherp) <tobias.herp@visaplan.com> Commit: plone/plone.outputfilters@d00945a use BeautifulSoup 4 instead of SGMLParser (WIP) Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-03-23T14:53:47+01:00 Author: Tobias Herp (tobiasherp) <tobias.herp@visaplan.com> Commit: plone/plone.outputfilters@baf79cb Merge branch 'python3-therp' of github.com:plone/plone.outputfilters into python3-therp Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-04-01T14:17:06+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.outputfilters@e1d1f90 disable resolveuid_and_caption for py3 (see #27) Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-16T12:24:08+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@b308295 remove sgmllib completely and fix tests 2 failing tests remaining ... WIP Files changed: M CHANGES.rst M plone/outputfilters/filters/resolveuid_and_caption.py M plone/outputfilters/tests/test_resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-16T12:32:28+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@a5b9792 Merge branch 'python3' into python3-therp Files changed: M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-16T13:59:40+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@e154346 fix failing tests in py2 and py3 Files changed: M plone/outputfilters/filters/example.py M plone/outputfilters/filters/resolveuid_and_caption.py M plone/outputfilters/tests/test_resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-16T14:08:26+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@1d8c3d0 try to fix failing doctest for py2 and py3 py2 - fail py3 - pass Files changed: M plone/outputfilters/filters/example.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-16T14:38:04+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@98cf21f fix `ResourceWarning: unclosed file` in tests Files changed: M plone/outputfilters/tests/test_resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-16T20:27:01+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@a60792f test non ascii transforms for py2 and py3 Files changed: A plone/outputfilters/tests/README_py2.rst M plone/outputfilters/README.rst M plone/outputfilters/filters/example.py M plone/outputfilters/tests/test_docs.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-16T20:46:39+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@e5b875a update classifier Files changed: M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-17T09:57:50+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.outputfilters@8878037 Merge pull request #30 from plone/python3-therp python3 compatibility Files changed: A plone/outputfilters/tests/README_py2.rst M .gitignore M CHANGES.rst M buildout.cfg M plone/outputfilters/README.rst M plone/outputfilters/filters/example.py M plone/outputfilters/filters/resolveuid_and_caption.py M plone/outputfilters/tests/test_docs.py M plone/outputfilters/tests/test_resolveuid_and_caption.py M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:16:13+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.outputfilters@7ec4eae start dealing with sgmllib in py3 (TODO: port to BS4) Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:16:13+02:00 Author: Tobias Herp (tobiasherp) <tobias.herp@visaplan.com> Commit: plone/plone.outputfilters@7dca1ec updated .gitignore Added 3 lines Files changed: M .gitignore Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:16:13+02:00 Author: Tobias Herp (tobiasherp) <tobias.herp@visaplan.com> Commit: plone/plone.outputfilters@321dbb9 use BeautifulSoup 4 instead of SGMLParser (WIP) Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:27:15+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@60172ab remove sgmllib completely and fix tests 2 failing tests remaining ... WIP Files changed: M CHANGES.rst M plone/outputfilters/filters/resolveuid_and_caption.py M plone/outputfilters/tests/test_resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:27:15+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@f1bbf66 fix failing tests in py2 and py3 Files changed: M plone/outputfilters/filters/example.py M plone/outputfilters/filters/resolveuid_and_caption.py M plone/outputfilters/tests/test_resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:27:16+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@eb619fd try to fix failing doctest for py2 and py3 py2 - fail py3 - pass Files changed: M plone/outputfilters/filters/example.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:29:51+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@5b06121 fix `ResourceWarning: unclosed file` in tests Files changed: M plone/outputfilters/tests/test_resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:29:51+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@289fb78 test non ascii transforms for py2 and py3 Files changed: A plone/outputfilters/tests/README_py2.rst M plone/outputfilters/README.rst M plone/outputfilters/filters/example.py M plone/outputfilters/tests/test_docs.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:29:51+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@c01492b update classifier Files changed: M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:34:07+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@57ea66a rebase python3 Files changed: Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T09:43:21+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@4bfa045 fix failing tests after rebasing Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py M plone/outputfilters/tests/test_resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-07-18T10:09:19+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/plone.outputfilters@39d8501 fix resolving absolute /resolveuid/xxx links changes in plone/plone.outputfilters@d6bf906 by @tomgross were lost during rebase ... I've took them over ... Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-10-02T11:34:38+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.outputfilters@0f90bd4 BeautifulSoup needs to be feeded unicode in order to work properly with non-ascii Files changed: M plone/outputfilters/filters/resolveuid_and_caption.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-10-17T11:35:38+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.outputfilters@3a329d0 mark version as feature change Files changed: M CHANGES.rst M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-10-17T11:40:59+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.outputfilters@735e8cd merge master Files changed: M setup.py Repository: plone.outputfilters Branch: refs/heads/master Date: 2018-10-17T11:41:29+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.outputfilters@8bf98b6 Merge pull request #31 from plone/python3 Python3 Files changed: A plone/outputfilters/tests/README_py2.rst M .gitignore M CHANGES.rst M plone/outputfilters/README.rst M plone/outputfilters/filters/example.py M plone/outputfilters/filters/resolveuid_and_caption.py M plone/outputfilters/tests/test_docs.py M plone/outputfilters/tests/test_resolveuid_and_caption.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 20, 2019
Branch: refs/heads/master Date: 2019-06-19T23:12:03-04:00 Author: Eric Steele (esteele) <eric@esteele.net> Commit: plone/plone.staticresources@11a0654 Fix restructured text error when releasing This package fails to upload to pypi due to a restructured text error in the long description. This PR fixes a `<string>:297: (SEVERE/4) Title level inconsistent:` error. Files changed: M README.rst Repository: plone.staticresources Branch: refs/heads/master Date: 2019-06-20T09:52:02+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.staticresources@0ba5fd2 Merge pull request #31 from plone/esteele-patch-1 Fix restructured text error when releasing Files changed: M README.rst
mister-roboto
pushed a commit
that referenced
this pull request
Dec 26, 2019
Branch: refs/heads/master Date: 2019-12-24T15:44:08+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/archetypes.multilingual@7c97c03 Fix export of components by adding a __name__ property to the handler. Fixes plone/archetypes.multilingual#27 See also plone/plone.multilingualbehavior#10 Files changed: A news/27.bugfix M archetypes/multilingual/subscriber.py Repository: archetypes.multilingual Branch: refs/heads/master Date: 2019-12-26T01:03:13+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/archetypes.multilingual@3db3ea8 Merge pull request #31 from plone/maurits-fix-name-master Fix export of components by adding a __name__ property to the handler. [master] Files changed: A news/27.bugfix M archetypes/multilingual/subscriber.py
mister-roboto
pushed a commit
that referenced
this pull request
Dec 26, 2019
Branch: refs/heads/master Date: 2019-12-24T15:44:08+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/archetypes.multilingual@7c97c03 Fix export of components by adding a __name__ property to the handler. Fixes plone/archetypes.multilingual#27 See also plone/plone.multilingualbehavior#10 Files changed: A news/27.bugfix M archetypes/multilingual/subscriber.py Repository: archetypes.multilingual Branch: refs/heads/master Date: 2019-12-26T01:03:13+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/archetypes.multilingual@3db3ea8 Merge pull request #31 from plone/maurits-fix-name-master Fix export of components by adding a __name__ property to the handler. [master] Files changed: A news/27.bugfix M archetypes/multilingual/subscriber.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 4, 2020
Branch: refs/heads/master Date: 2020-03-04T14:36:27+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.releaser@ec9ad14 Fixed adding a package to checkouts.cfg. Fixes plone/plone.releaser#30 I finished a run on coredev 5.1 with this, and now it works. Files changed: A news/30.bugfix M plone/releaser/buildout.py Repository: plone.releaser Branch: refs/heads/master Date: 2020-03-04T16:09:43+01:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.releaser@7a4cac2 Merge pull request #31 from plone/maurits/issue-30-checkouts Fixed adding a package to checkouts.cfg. Files changed: A news/30.bugfix M plone/releaser/buildout.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 4, 2020
Branch: refs/heads/master Date: 2020-03-04T14:36:27+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.releaser@ec9ad14 Fixed adding a package to checkouts.cfg. Fixes plone/plone.releaser#30 I finished a run on coredev 5.1 with this, and now it works. Files changed: A news/30.bugfix M plone/releaser/buildout.py Repository: plone.releaser Branch: refs/heads/master Date: 2020-03-04T16:09:43+01:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.releaser@7a4cac2 Merge pull request #31 from plone/maurits/issue-30-checkouts Fixed adding a package to checkouts.cfg. Files changed: A news/30.bugfix M plone/releaser/buildout.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 19, 2020
Branch: refs/heads/master Date: 2020-04-17T12:17:29+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@8a9499b Update Travis config based on buildout.plonetest. plone.tiles is in core (well, test dependency of plone.restapi), but not tested there, so we should have Travis. It worked 9 months ago on 4.3, 5.0 and 5.1. but started failing afterwards. Files changed: A requirements.txt M .coveragerc M .gitignore M .travis.yml M buildout.cfg M setup.cfg D test-4.3.x.cfg D test-5.0.x.cfg D test-5.1.x.cfg Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:17:29+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@3f4fb0e Fixed import of UnrestrictedUser. Looks like Super is a different name for UnrestrictedUser that works in all relevant Plone versions. Files changed: M plone/tiles/esi.rst Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:25:06+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@4608390 setup.py: open files cleanly with context manager. Files changed: M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:27:00+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@e43f515 Test on Python 3.6 as well. After this: $ check-python-versions setup.py says: 2.7, 3.6, 3.7, 3.8 .travis.yml says: 2.7, 3.6, 3.7, 3.8 Files changed: M .travis.yml Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:31:31+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@3b34fdf Added news snippet. Files changed: A news/33.bugfix Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:50:52+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@9eca704 Only test on Plone 5.2. Files changed: M .travis.yml M news/33.bugfix M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:56:03+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@db77ace Travis: do not mess about with different target scripts to run. We extend the default yml from buildout.plonetest, and our script and after_success parts are executed next to those parts from the default yml. So we are doing things double. Instead, restrict it to just running the standard bin/test. If someone else wants to restructure this, go ahead. Files changed: M .travis.yml Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T13:05:51+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@2ad24e0 Removed duplicate from Travis. Files changed: M .travis.yml Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T13:30:21+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@dcc6dfb Do not extend qa.cfg. Test on 4.3 and 5.1 again. If the code-analysis and coverage parts could only be installed and executed on one job, that would be helpful. They are always the parts that cause the most breakage when running a buildout for an older Plone. Files changed: M .travis.yml M buildout.cfg M news/33.bugfix M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-19T20:13:48+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.tiles@95928b5 Merge pull request #31 from plone/maurits/travis Fix Travis Files changed: A news/33.bugfix A requirements.txt M .coveragerc M .gitignore M .travis.yml M buildout.cfg M plone/tiles/esi.rst M setup.cfg M setup.py D test-4.3.x.cfg D test-5.0.x.cfg D test-5.1.x.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Apr 19, 2020
Branch: refs/heads/master Date: 2020-04-17T12:17:29+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@8a9499b Update Travis config based on buildout.plonetest. plone.tiles is in core (well, test dependency of plone.restapi), but not tested there, so we should have Travis. It worked 9 months ago on 4.3, 5.0 and 5.1. but started failing afterwards. Files changed: A requirements.txt M .coveragerc M .gitignore M .travis.yml M buildout.cfg M setup.cfg D test-4.3.x.cfg D test-5.0.x.cfg D test-5.1.x.cfg Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:17:29+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@3f4fb0e Fixed import of UnrestrictedUser. Looks like Super is a different name for UnrestrictedUser that works in all relevant Plone versions. Files changed: M plone/tiles/esi.rst Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:25:06+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@4608390 setup.py: open files cleanly with context manager. Files changed: M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:27:00+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@e43f515 Test on Python 3.6 as well. After this: $ check-python-versions setup.py says: 2.7, 3.6, 3.7, 3.8 .travis.yml says: 2.7, 3.6, 3.7, 3.8 Files changed: M .travis.yml Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:31:31+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@3b34fdf Added news snippet. Files changed: A news/33.bugfix Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:50:52+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@9eca704 Only test on Plone 5.2. Files changed: M .travis.yml M news/33.bugfix M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T12:56:03+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@db77ace Travis: do not mess about with different target scripts to run. We extend the default yml from buildout.plonetest, and our script and after_success parts are executed next to those parts from the default yml. So we are doing things double. Instead, restrict it to just running the standard bin/test. If someone else wants to restructure this, go ahead. Files changed: M .travis.yml Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T13:05:51+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@2ad24e0 Removed duplicate from Travis. Files changed: M .travis.yml Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-17T13:30:21+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.tiles@dcc6dfb Do not extend qa.cfg. Test on 4.3 and 5.1 again. If the code-analysis and coverage parts could only be installed and executed on one job, that would be helpful. They are always the parts that cause the most breakage when running a buildout for an older Plone. Files changed: M .travis.yml M buildout.cfg M news/33.bugfix M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2020-04-19T20:13:48+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.tiles@95928b5 Merge pull request #31 from plone/maurits/travis Fix Travis Files changed: A news/33.bugfix A requirements.txt M .coveragerc M .gitignore M .travis.yml M buildout.cfg M plone/tiles/esi.rst M setup.cfg M setup.py D test-4.3.x.cfg D test-5.0.x.cfg D test-5.1.x.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Oct 8, 2020
Branch: refs/heads/master Date: 2020-10-07T23:28:16+03:00 Author: Alin Voinea (avoinea) <contact@avoinea.com> Commit: plone/plone.app.relationfield@635524f Refs #30 - Fix tests to match plone.dexterity dynamic schema name Files changed: A news/30.bugfix M plone/app/relationfield/tests/test_schemaeditor.py Repository: plone.app.relationfield Branch: refs/heads/master Date: 2020-10-08T11:40:40+02:00 Author: Alessandro Pisa (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.app.relationfield@d817430 Merge pull request #31 from plone/sync-schema-on-zeo-clients Refs #30 - Fix tests to match plone.dexterity dynamic schema name Files changed: A news/30.bugfix M plone/app/relationfield/tests/test_schemaeditor.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 23, 2021
Branch: refs/heads/master Date: 2021-04-23T10:42:20+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.resource@416ea7f Do not throw an error when traversing to a FilesystemResourceDirectory Fixes #31 Files changed: A news/31.bugfix M plone/resource/directory.py Repository: plone.resource Branch: refs/heads/master Date: 2021-04-23T12:18:45+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.resource@1d3d297 Merge pull request #32 from plone/31.fixed Do not throw an error when traversing to a FilesystemResourceDirectory Files changed: A news/31.bugfix M plone/resource/directory.py
mister-roboto
pushed a commit
that referenced
this pull request
Aug 13, 2021
Branch: refs/heads/master Date: 2021-08-13T16:39:57+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@0838a71 update to unidecode 1.0.22 and use its features Files changed: M CHANGES.rst M plone/i18n/normalizer/base.py M setup.py Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T16:40:00+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.i18n@a78bd56 Fix binary/text type Files changed: M plone/i18n/normalizer/base.py Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T16:44:08+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@b94ffa0 move changelog entry to news file Files changed: A news/31.bugfix M CHANGES.rst Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T16:57:03+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@c400aa5 Plone 6 only, Drop Py 2.7 and 3.6 Files changed: A news/31.breaking M setup.py Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T17:01:46+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@c20ce42 black/isort Files changed: M plone/__init__.py M plone/i18n/__init__.py M plone/i18n/interfaces.py M plone/i18n/locales/cctld.py M plone/i18n/locales/countries.py M plone/i18n/locales/interfaces.py M plone/i18n/locales/languages.py M plone/i18n/locales/tests/base.py M plone/i18n/locales/tests/test_cctlds.py M plone/i18n/locales/tests/test_countries.py M plone/i18n/locales/tests/test_languages.py M plone/i18n/negotiate/negotiate.py M plone/i18n/negotiate/ptsnegotiator.py M plone/i18n/normalizer/__init__.py M plone/i18n/normalizer/base.py M plone/i18n/normalizer/bg.py M plone/i18n/normalizer/de.py M plone/i18n/normalizer/el.py M plone/i18n/normalizer/es.py M plone/i18n/normalizer/fr.py M plone/i18n/normalizer/interfaces.py M plone/i18n/normalizer/ja.py M plone/i18n/normalizer/pl.py M plone/i18n/normalizer/pt.py M plone/i18n/normalizer/ru.py M plone/i18n/normalizer/tests/test_adapters.py M plone/i18n/normalizer/tests/test_normalizer.py M plone/i18n/normalizer/tr.py M plone/i18n/normalizer/uk.py M plone/i18n/tests/base.py M plone/i18n/tests/test_languageutility.py M plone/i18n/tests/test_negotiation.py M plone/i18n/utility.py M pyproject.toml M setup.cfg M setup.py Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T17:03:11+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@8ce015e find . -name *.py|xargs pyupgrade --py37-plus Files changed: M plone/__init__.py M plone/i18n/__init__.py M plone/i18n/interfaces.py M plone/i18n/locales/cctld.py M plone/i18n/locales/countries.py M plone/i18n/locales/interfaces.py M plone/i18n/locales/languages.py M plone/i18n/locales/tests/__init__.py M plone/i18n/locales/tests/base.py M plone/i18n/locales/tests/test_cctlds.py M plone/i18n/locales/tests/test_countries.py M plone/i18n/locales/tests/test_languages.py M plone/i18n/negotiate/negotiate.py M plone/i18n/negotiate/ptsnegotiator.py M plone/i18n/normalizer/__init__.py M plone/i18n/normalizer/adapters.py M plone/i18n/normalizer/base.py M plone/i18n/normalizer/bg.py M plone/i18n/normalizer/de.py M plone/i18n/normalizer/el.py M plone/i18n/normalizer/es.py M plone/i18n/normalizer/fr.py M plone/i18n/normalizer/interfaces.py M plone/i18n/normalizer/ja.py M plone/i18n/normalizer/pl.py M plone/i18n/normalizer/pt.py M plone/i18n/normalizer/ru.py M plone/i18n/normalizer/tests/__init__.py M plone/i18n/normalizer/tests/base.py M plone/i18n/normalizer/tests/test_adapters.py M plone/i18n/normalizer/tests/test_normalizer.py M plone/i18n/normalizer/tr.py M plone/i18n/normalizer/uk.py M plone/i18n/tests/__init__.py M plone/i18n/tests/base.py M plone/i18n/tests/test_languageutility.py M plone/i18n/tests/test_negotiation.py M plone/i18n/utility.py Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T17:37:03+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@3290ada get rid of six Files changed: M plone/i18n/locales/countries.py M plone/i18n/locales/languages.py M plone/i18n/locales/tests/test_countries.py M plone/i18n/locales/tests/test_languages.py M plone/i18n/normalizer/base.py M plone/i18n/normalizer/ja.py M plone/i18n/normalizer/tests/test_adapters.py M plone/i18n/normalizer/tests/test_normalizer.py M setup.py Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T18:45:31+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@8525014 fix typo and make it a feature Files changed: A news/31.feature D news/31.bugfix Repository: plone.i18n Branch: refs/heads/master Date: 2021-08-13T18:50:14+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.i18n@a08ccda Merge pull request #31 from plone/cleanup-and-upgrade-unidecode-3 Update to unidecode 1.2.0 and use its features Files changed: A news/31.breaking A news/31.feature M plone/__init__.py M plone/i18n/__init__.py M plone/i18n/interfaces.py M plone/i18n/locales/cctld.py M plone/i18n/locales/countries.py M plone/i18n/locales/interfaces.py M plone/i18n/locales/languages.py M plone/i18n/locales/tests/__init__.py M plone/i18n/locales/tests/base.py M plone/i18n/locales/tests/test_cctlds.py M plone/i18n/locales/tests/test_countries.py M plone/i18n/locales/tests/test_languages.py M plone/i18n/negotiate/negotiate.py M plone/i18n/negotiate/ptsnegotiator.py M plone/i18n/normalizer/__init__.py M plone/i18n/normalizer/adapters.py M plone/i18n/normalizer/base.py M plone/i18n/normalizer/bg.py M plone/i18n/normalizer/de.py M plone/i18n/normalizer/el.py M plone/i18n/normalizer/es.py M plone/i18n/normalizer/fr.py M plone/i18n/normalizer/interfaces.py M plone/i18n/normalizer/ja.py M plone/i18n/normalizer/pl.py M plone/i18n/normalizer/pt.py M plone/i18n/normalizer/ru.py M plone/i18n/normalizer/tests/__init__.py M plone/i18n/normalizer/tests/base.py M plone/i18n/normalizer/tests/test_adapters.py M plone/i18n/normalizer/tests/test_normalizer.py M plone/i18n/normalizer/tr.py M plone/i18n/normalizer/uk.py M plone/i18n/tests/__init__.py M plone/i18n/tests/base.py M plone/i18n/tests/test_languageutility.py M plone/i18n/tests/test_negotiation.py M plone/i18n/utility.py M pyproject.toml M setup.cfg M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 14, 2021
Branch: refs/heads/master Date: 2021-09-14T13:53:00+02:00 Author: Érico Andrei (ericof) <ericof@gmail.com> Commit: plone/plone.app.contentmenu@eb4f2d6 Fix #31: Remove cyclic dependency with Products.CMFPlone. Files changed: A news/31.bugfix M setup.py Repository: plone.app.contentmenu Branch: refs/heads/master Date: 2021-09-14T15:00:56+02:00 Author: Érico Andrei (ericof) <ericof@gmail.com> Commit: plone/plone.app.contentmenu@130fa4a Merge pull request #32 from plone/issue-31-remove-cyclic-dependency Remove cyclic dependency with Products.CMFPlone. Files changed: A news/31.bugfix M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 14, 2021
Branch: refs/heads/master Date: 2021-09-14T13:53:00+02:00 Author: Érico Andrei (ericof) <ericof@gmail.com> Commit: plone/plone.app.contentmenu@eb4f2d6 Fix #31: Remove cyclic dependency with Products.CMFPlone. Files changed: A news/31.bugfix M setup.py Repository: plone.app.contentmenu Branch: refs/heads/master Date: 2021-09-14T15:00:56+02:00 Author: Érico Andrei (ericof) <ericof@gmail.com> Commit: plone/plone.app.contentmenu@130fa4a Merge pull request #32 from plone/issue-31-remove-cyclic-dependency Remove cyclic dependency with Products.CMFPlone. Files changed: A news/31.bugfix M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 14, 2021
Branch: refs/heads/master Date: 2021-09-14T16:23:41+02:00 Author: Victor Fernandez de Alba (sneridagh) <sneridagh@gmail.com> Commit: plone/plone.app.workflow@2102dab Remove cyclic dependency with Products.CMFPlone Files changed: A news/30.bugfix M setup.py Repository: plone.app.workflow Branch: refs/heads/master Date: 2021-09-14T20:32:49+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.app.workflow@a181216 Merge pull request #31 from plone/removecyclicplonedeps Remove cyclic dependency with Products.CMFPlone Files changed: A news/30.bugfix M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 6, 2022
Branch: refs/heads/master Date: 2022-04-06T12:19:25+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.portlet.collection@2d72a77 Use @@iconresolver to display icons Files changed: M plone/portlet/collection/collection.pt Repository: plone.portlet.collection Branch: refs/heads/master Date: 2022-04-06T12:20:45+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.portlet.collection@a012bbf changenote Files changed: A news/31.bugfix Repository: plone.portlet.collection Branch: refs/heads/master Date: 2022-04-06T12:45:09+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.portlet.collection@1a5848a fix test Files changed: M plone/portlet/collection/tests/functional.txt Repository: plone.portlet.collection Branch: refs/heads/master Date: 2022-04-06T12:46:07+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.portlet.collection@63dcfa6 Merge pull request #31 from plone/show_icons Use @@iconresolver to display icons Files changed: A news/31.bugfix M plone/portlet/collection/collection.pt M plone/portlet/collection/tests/functional.txt
mister-roboto
pushed a commit
that referenced
this pull request
Aug 24, 2022
Branch: refs/heads/master Date: 2022-08-24T16:53:31+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.session@48edcb3 Fix extension Files changed: A news/26.feature D news/26.feature.txt Repository: plone.session Branch: refs/heads/master Date: 2022-08-24T17:06:00+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.session@85f8620 flake8 and isort config compatible with black Files changed: M setup.cfg Repository: plone.session Branch: refs/heads/master Date: 2022-08-24T17:10:04+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.session@fb89288 Run isort Files changed: M plone/session/__init__.py M plone/session/hiddenprofiles.py M plone/session/plugins/session.py M plone/session/tests/testDocTests.py M plone/session/tests/testPAS.py M plone/session/tktauth.py M setup.py Repository: plone.session Branch: refs/heads/master Date: 2022-08-24T17:13:33+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.session@74caee0 flake8 fixes Files changed: M plone/session/plugins/session.py M plone/session/tests/testPAS.py M plone/session/tktauth.py Repository: plone.session Branch: refs/heads/master Date: 2022-08-24T19:01:42+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/plone.session@ea96eaa Merge pull request #31 from plone/small-fixes Small fixes Files changed: A news/26.feature M plone/session/__init__.py M plone/session/hiddenprofiles.py M plone/session/plugins/session.py M plone/session/tests/testDocTests.py M plone/session/tests/testPAS.py M plone/session/tktauth.py M setup.cfg M setup.py D news/26.feature.txt
mister-roboto
pushed a commit
that referenced
this pull request
Mar 10, 2023
Branch: refs/heads/master Date: 2023-03-09T22:00:47+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.formwidget.recurrence@25d552c Do not add charset to application/x-www-form-urlencoded header. Adding a charset to this Content-Type is illegal according to the definition, and fails with Zope master. See #844 (comment) In our case, when you click to add a recurrence, you get a dialog box saying 'error' because the call to `@@json_recurrence` failed. Files changed: A news/844.bugfix M plone/formwidget/recurrence/tests/test_z3cwidget.py M plone/formwidget/recurrence/z3cform/widget.py Repository: plone.formwidget.recurrence Branch: refs/heads/master Date: 2023-03-10T21:31:21+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.formwidget.recurrence@25e1695 Merge pull request #31 from plone/maurits-no-charset-with-x-www-form-urlencoded Do not add charset to application/x-www-form-urlencoded header. Files changed: A news/844.bugfix M plone/formwidget/recurrence/tests/test_z3cwidget.py M plone/formwidget/recurrence/z3cform/widget.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 26, 2023
Branch: refs/heads/master Date: 2023-04-25T16:05:53+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@749d010 Configuring with plone/meta Files changed: A .editorconfig A .meta.toml A .pre-commit-config.yaml A news/2a4ba395.internal A tox.ini M pyproject.toml M setup.cfg Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:07:13+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@a7a6f1b chore: pyupgrade Files changed: M plone/__init__.py M plone/resourceeditor/__init__.py M plone/resourceeditor/browser.py M plone/resourceeditor/testing.py M plone/resourceeditor/tests/test_file_manager.py M plone/resourceeditor/tests/test_file_manager_action.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:08:41+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@7fe428b chore: isort Files changed: M plone/resourceeditor/browser.py M plone/resourceeditor/tests/test_file_manager.py M plone/resourceeditor/tests/test_file_manager_action.py M setup.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:10:02+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@e5ff3f7 chore: black Files changed: M plone/__init__.py M plone/resourceeditor/__init__.py M plone/resourceeditor/browser.py M plone/resourceeditor/testing.py M plone/resourceeditor/tests/test_file_manager.py M plone/resourceeditor/tests/test_file_manager_action.py M setup.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:10:21+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@7e0a793 chore: zpretty Files changed: M plone/resourceeditor/configure.zcml M plone/resourceeditor/editor.pt M plone/resourceeditor/preview.pt Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:13:09+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@6d2755b chore: update trove classifiers Files changed: M setup.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:13:18+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@168446a feat: pyroma Files changed: M setup.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:17:04+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@5b39a55 feat: codespell Files changed: M CHANGES.rst M plone/resourceeditor/browser.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:18:01+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@cf55508 feat: configure codespell Files changed: M pyproject.toml Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:23:28+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@7b257bb feat: drop six Files changed: M plone/resourceeditor/browser.py M plone/resourceeditor/tests/test_file_manager.py M setup.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:38:55+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@dee12e7 feat: drop CMFPlone dependency Files changed: M plone/resourceeditor/browser.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:38:56+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@f50f1ac feat: declare dependencies Files changed: M setup.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:40:11+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@600a429 chore: bump version Files changed: M setup.py Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-25T16:40:39+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.resourceeditor@f9f858e Add news entry Files changed: A news/1.breaking Repository: plone.resourceeditor Branch: refs/heads/master Date: 2023-04-26T08:01:58+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.resourceeditor@4500f85 Merge pull request #31 from plone/config-with-default-template-e43c6e11 Config with default template Files changed: A .editorconfig A .meta.toml A .pre-commit-config.yaml A news/1.breaking A news/2a4ba395.internal A tox.ini M CHANGES.rst M plone/__init__.py M plone/resourceeditor/__init__.py M plone/resourceeditor/browser.py M plone/resourceeditor/configure.zcml M plone/resourceeditor/editor.pt M plone/resourceeditor/preview.pt M plone/resourceeditor/testing.py M plone/resourceeditor/tests/test_file_manager.py M plone/resourceeditor/tests/test_file_manager_action.py M pyproject.toml M setup.cfg M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 4, 2023
Branch: refs/heads/master Date: 2023-07-03T23:30:33Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.registry@cf657ac [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.4.0 → v3.8.0](asottile/pyupgrade@v3.4.0...v3.8.0) - [github.com/collective/zpretty: 3.1.0a2 → 3.1.0](collective/zpretty@3.1.0a2...3.1.0) - [github.com/codespell-project/codespell: v2.2.4 → v2.2.5](codespell-project/codespell@v2.2.4...v2.2.5) - [github.com/mgedmin/check-python-versions: 0.21.2 → 0.21.3](mgedmin/check-python-versions@0.21.2...0.21.3) Files changed: M .pre-commit-config.yaml Repository: plone.registry Branch: refs/heads/master Date: 2023-07-04T08:06:29+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.registry@432d676 Merge pull request #31 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
Jul 4, 2023
Branch: refs/heads/master Date: 2023-07-03T23:30:33Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.registry@cf657ac [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v3.4.0 → v3.8.0](asottile/pyupgrade@v3.4.0...v3.8.0) - [github.com/collective/zpretty: 3.1.0a2 → 3.1.0](collective/zpretty@3.1.0a2...3.1.0) - [github.com/codespell-project/codespell: v2.2.4 → v2.2.5](codespell-project/codespell@v2.2.4...v2.2.5) - [github.com/mgedmin/check-python-versions: 0.21.2 → 0.21.3](mgedmin/check-python-versions@0.21.2...0.21.3) Files changed: M .pre-commit-config.yaml Repository: plone.registry Branch: refs/heads/master Date: 2023-07-04T08:06:29+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.registry@432d676 Merge pull request #31 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
Feb 23, 2024
Branch: refs/heads/master Date: 2024-02-23T06:00:01-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@6998000 Added more improvements about i18n support Files changed: A src/plone/app/debugtoolbar/locales/es/LC_MESSAGES/plone.po A src/plone/app/debugtoolbar/locales/it/LC_MESSAGES/plone.po A src/plone/app/debugtoolbar/locales/plone.pot M src/plone/app/debugtoolbar/browser/reload.pt M src/plone/app/debugtoolbar/locales/es/LC_MESSAGES/plone.app.debugtoolbar.po M src/plone/app/debugtoolbar/locales/it/LC_MESSAGES/plone.app.debugtoolbar.po M src/plone/app/debugtoolbar/locales/plone.app.debugtoolbar.pot Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2024-02-23T06:13:08-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@1320da9 Updated Spanish translation Files changed: M src/plone/app/debugtoolbar/locales/es/LC_MESSAGES/plone.app.debugtoolbar.po M src/plone/app/debugtoolbar/locales/es/LC_MESSAGES/plone.po Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2024-02-23T06:15:30-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@9c426be Updated the documentation Files changed: M CONTRIBUTORS.rst M README.rst Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2024-02-23T06:28:27-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@91d369e Updated the documentation Files changed: M README.rst Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2024-02-23T06:40:59-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@8102f6b Upgraded the buildout configuration to Plone 6.0 version Files changed: A constraints_plone60.txt A requirements.txt A requirements_plone60.txt M buildout.cfg Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2024-02-23T06:46:08-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@3cebc01 Added the development docs Files changed: A DEVELOP.rst Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2024-02-23T07:25:05-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@a173774 Added a towncrier entry for updated the CHANCES file Files changed: A news/31.feature Repository: plone.app.debugtoolbar Branch: refs/heads/master Date: 2024-02-23T07:34:59-04:00 Author: Leonardo J. Caballero G (macagua) <leonardocaballero@gmail.com> Commit: plone/plone.app.debugtoolbar@95efa12 Merge pull request #31 from plone/i18n_imporvements Added more improvements about I18n support and docs Files changed: A DEVELOP.rst A constraints_plone60.txt A news/31.feature A requirements.txt A requirements_plone60.txt A src/plone/app/debugtoolbar/locales/es/LC_MESSAGES/plone.po A src/plone/app/debugtoolbar/locales/it/LC_MESSAGES/plone.po A src/plone/app/debugtoolbar/locales/plone.pot M CONTRIBUTORS.rst M README.rst M buildout.cfg M src/plone/app/debugtoolbar/browser/reload.pt M src/plone/app/debugtoolbar/locales/es/LC_MESSAGES/plone.app.debugtoolbar.po M src/plone/app/debugtoolbar/locales/it/LC_MESSAGES/plone.app.debugtoolbar.po M src/plone/app/debugtoolbar/locales/plone.app.debugtoolbar.pot
mister-roboto
pushed a commit
that referenced
this pull request
Jun 4, 2024
Branch: refs/heads/master Date: 2024-06-03T20:01:25Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.stringinterp@ed8cbc4 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) Files changed: M .pre-commit-config.yaml Repository: plone.stringinterp Branch: refs/heads/master Date: 2024-06-04T03:22:03-04:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.stringinterp@923f65f Merge pull request #31 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Jun 4, 2024
Branch: refs/heads/master Date: 2024-06-03T20:01:25Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.stringinterp@ed8cbc4 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) Files changed: M .pre-commit-config.yaml Repository: plone.stringinterp Branch: refs/heads/master Date: 2024-06-04T03:22:03-04:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.stringinterp@923f65f Merge pull request #31 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Jun 4, 2024
Branch: refs/heads/master Date: 2024-06-03T20:00:39Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.folder@34959c8 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) Files changed: M .pre-commit-config.yaml Repository: plone.folder Branch: refs/heads/master Date: 2024-06-04T03:27:34-04:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.folder@d93487e Merge pull request #31 from plone/pre-commit-ci-update-config [pre-commit.ci] pre-commit autoupdate Files changed: M .pre-commit-config.yaml
mister-roboto
pushed a commit
that referenced
this pull request
Jun 4, 2024
Branch: refs/heads/master Date: 2024-06-03T20:00:39Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/plone.folder@34959c8 [pre-commit.ci] pre-commit autoupdate updates: - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0) Files changed: M .pre-commit-config.yaml Repository: plone.folder Branch: refs/heads/master Date: 2024-06-04T03:27:34-04:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.folder@d93487e Merge pull request #31 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 8, 2024
Branch: refs/heads/master Date: 2024-10-07T21:22:44Z Author: pre-commit-ci[bot] (pre-commit-ci[bot]) <66853113+pre-commit-ci[bot]@users.noreply.github.com> Commit: plone/Products.isurlinportal@482bfde [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 24.8.0 → 24.10.0](psf/black@24.8.0...24.10.0) Files changed: M .pre-commit-config.yaml Repository: Products.isurlinportal Branch: refs/heads/master Date: 2024-10-08T08:19:32+02:00 Author: Alessandro Pisa (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/Products.isurlinportal@fd7cb2c Merge pull request #31 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 8, 2024
Branch: refs/heads/master Date: 2024-09-12T12:33:12+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Plone@d829a03 Add dependency on distribution. Require Python 3.10 as minimum. This was already the case in Products.CMFPlone, but now also officially here. Files changed: M CHANGES.md M setup.cfg Repository: Plone Branch: refs/heads/master Date: 2024-10-08T11:11:17+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Plone@387ce11 Merge pull request #31 from plone/plone-classicui Add dependency on distribution. Files changed: M CHANGES.md M setup.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Mar 5, 2025
Branch: refs/heads/main Date: 2025-03-03T19:17:24+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@e3c8500 feat: replace pkg_resources with importlib.resources Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T19:22:16+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@cd2ddf5 feat: replace pkg_resources working_set Use `importlib.metadata.distributions` instead. Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T20:08:18+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@94161b2 feat: replace pkg_resources.iter_entry_points Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T20:09:29+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@a9169c9 Add news entry Files changed: A news/4126.bugfix Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T13:36:21+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@5876289 Require importlib_metadata on Python 3.9. This is needed for entry points. Files changed: M setup.py M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T15:44:21+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@fb1e97d Fix expected values in tests. In `example.ploneintegration`, the `example.addon` zcml gets loaded. In `example.zopeintegration`, the `example.addon` and `example.multipleeps` zcml gets loaded. This is because `example.{addon,multipleeps}/setup.py` has a strange entry point: ``` [z3c.autoinclude.plugin] dummy = dummy ``` This was added to check if our code can handle unexpected entry point contents without breaking. I don't really mind whether the zcml of these packages gets loaded or not, as this should not happen in practice. But the new way of getting the available distributions and their entry points, apparently has this as side effect. Files changed: M test-packages/example.ploneintegration/src/example/ploneintegration/tests.py M test-packages/example.zopeintegration/src/example/zopeintegration/tests.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T15:51:02+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@a0d2b55 fix news snippet Files changed: M news/4126.bugfix Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-05T10:43:39+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@0bc973c Merge pull request #31 from plone/4126-replace-pkg-resources Replace pkg_resources Files changed: A news/4126.bugfix M setup.py M src/plone/autoinclude/loader.py M test-packages/example.ploneintegration/src/example/ploneintegration/tests.py M test-packages/example.zopeintegration/src/example/zopeintegration/tests.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 5, 2025
Branch: refs/heads/main Date: 2025-03-03T19:17:24+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@e3c8500 feat: replace pkg_resources with importlib.resources Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T19:22:16+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@cd2ddf5 feat: replace pkg_resources working_set Use `importlib.metadata.distributions` instead. Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T20:08:18+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@94161b2 feat: replace pkg_resources.iter_entry_points Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T20:09:29+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@a9169c9 Add news entry Files changed: A news/4126.bugfix Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T13:36:21+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@5876289 Require importlib_metadata on Python 3.9. This is needed for entry points. Files changed: M setup.py M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T15:44:21+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@fb1e97d Fix expected values in tests. In `example.ploneintegration`, the `example.addon` zcml gets loaded. In `example.zopeintegration`, the `example.addon` and `example.multipleeps` zcml gets loaded. This is because `example.{addon,multipleeps}/setup.py` has a strange entry point: ``` [z3c.autoinclude.plugin] dummy = dummy ``` This was added to check if our code can handle unexpected entry point contents without breaking. I don't really mind whether the zcml of these packages gets loaded or not, as this should not happen in practice. But the new way of getting the available distributions and their entry points, apparently has this as side effect. Files changed: M test-packages/example.ploneintegration/src/example/ploneintegration/tests.py M test-packages/example.zopeintegration/src/example/zopeintegration/tests.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T15:51:02+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@a0d2b55 fix news snippet Files changed: M news/4126.bugfix Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-05T10:43:39+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@0bc973c Merge pull request #31 from plone/4126-replace-pkg-resources Replace pkg_resources Files changed: A news/4126.bugfix M setup.py M src/plone/autoinclude/loader.py M test-packages/example.ploneintegration/src/example/ploneintegration/tests.py M test-packages/example.zopeintegration/src/example/zopeintegration/tests.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 5, 2025
Branch: refs/heads/main Date: 2025-03-03T19:17:24+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@e3c8500 feat: replace pkg_resources with importlib.resources Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T19:22:16+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@cd2ddf5 feat: replace pkg_resources working_set Use `importlib.metadata.distributions` instead. Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T20:08:18+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@94161b2 feat: replace pkg_resources.iter_entry_points Files changed: M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-03T20:09:29+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@a9169c9 Add news entry Files changed: A news/4126.bugfix Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T13:36:21+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@5876289 Require importlib_metadata on Python 3.9. This is needed for entry points. Files changed: M setup.py M src/plone/autoinclude/loader.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T15:44:21+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@fb1e97d Fix expected values in tests. In `example.ploneintegration`, the `example.addon` zcml gets loaded. In `example.zopeintegration`, the `example.addon` and `example.multipleeps` zcml gets loaded. This is because `example.{addon,multipleeps}/setup.py` has a strange entry point: ``` [z3c.autoinclude.plugin] dummy = dummy ``` This was added to check if our code can handle unexpected entry point contents without breaking. I don't really mind whether the zcml of these packages gets loaded or not, as this should not happen in practice. But the new way of getting the available distributions and their entry points, apparently has this as side effect. Files changed: M test-packages/example.ploneintegration/src/example/ploneintegration/tests.py M test-packages/example.zopeintegration/src/example/zopeintegration/tests.py Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-04T15:51:02+01:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.autoinclude@a0d2b55 fix news snippet Files changed: M news/4126.bugfix Repository: plone.autoinclude Branch: refs/heads/main Date: 2025-03-05T10:43:39+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.autoinclude@0bc973c Merge pull request #31 from plone/4126-replace-pkg-resources Replace pkg_resources Files changed: A news/4126.bugfix M setup.py M src/plone/autoinclude/loader.py M test-packages/example.ploneintegration/src/example/ploneintegration/tests.py M test-packages/example.zopeintegration/src/example/zopeintegration/tests.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 the last sentence.