-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed vim specific stuff from gitignore. #5
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
gotcha
added a commit
that referenced
this pull request
Nov 8, 2011
Removed vim specific stuff from gitignore.
tisto
added a commit
that referenced
this pull request
Feb 1, 2015
Branch: refs/heads/master Date: 2015-01-31T02:53:51+01:00 Author: Daniel Widerin (saily) <daniel@widerin.net> Commit: plone/plone.batching@6fc1df8 Revert "Fix issue with orphaning" Files changed: M CHANGES.rst M plone/batching/batch.py M plone/batching/tests.py diff --git a/CHANGES.rst b/CHANGES.rst index 420d228..a2eb2dc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,7 @@ Changelog 1.0.3 (unreleased) ------------------ -- Fix issue with orphaning - [do3cc] +- Nothing changed yet. 1.0.2 (2014-04-13) diff --git a/plone/batching/batch.py b/plone/batching/batch.py index f6d3e87..c5e57d0 100644 --- a/plone/batching/batch.py +++ b/plone/batching/batch.py @@ -31,8 +31,6 @@ def __init__(self, sequence, size, start=0, end=0, orphan=0, overlap=0, overlap - the number of overlapping elements in each batch pagerange - the number of pages to display in the navigation """ - assert orphan < size, "Having an orphan size, higher than batch size" \ - " is undefined" start += 1 self._sequence = sequence self._size = size @@ -157,7 +155,7 @@ def lastpage(self): """ Last page of batch """ pages = self.sequence_length / self.pagesize - if (self.sequence_length - self.orphan) % self.pagesize: + if self.sequence_length % self.pagesize: pages += 1 return pages diff --git a/plone/batching/tests.py b/plone/batching/tests.py index 5b92a44..3b442cc 100644 --- a/plone/batching/tests.py +++ b/plone/batching/tests.py @@ -97,13 +97,6 @@ def test_lastpage(self): lastbatch = BaseBatch(range(20), 5, start=batch.last) self.assertTrue(lastbatch.islastpage) - def test_lastpage_with_orphans(self): - batch = BaseBatch(range(11), 10, orphan=1) - self.assertEqual(1, batch.lastpage) - batch = BaseBatch(range(109), 10, orphan=9) - self.assertEqual(10, batch.lastpage) - self.assertRaises(AssertionError, BaseBatch, [], 10, orphan=20) - def test_items_not_on_page(self): batch = BaseBatch(range(20), 5, start=5) self.assertEqual(batch.items_not_on_page, Repository: plone.batching Branch: refs/heads/master Date: 2015-02-01T16:02:53+01:00 Author: Timo Stollenwerk (tisto) <tisto@plone.org> Commit: plone/plone.batching@3f388e3 Merge pull request #5 from plone/revert-4-orphaning Revert "Fix issue with orphaning" Files changed: M CHANGES.rst M plone/batching/batch.py M plone/batching/tests.py diff --git a/CHANGES.rst b/CHANGES.rst index 420d228..a2eb2dc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,7 @@ Changelog 1.0.3 (unreleased) ------------------ -- Fix issue with orphaning - [do3cc] +- Nothing changed yet. 1.0.2 (2014-04-13) diff --git a/plone/batching/batch.py b/plone/batching/batch.py index f6d3e87..c5e57d0 100644 --- a/plone/batching/batch.py +++ b/plone/batching/batch.py @@ -31,8 +31,6 @@ def __init__(self, sequence, size, start=0, end=0, orphan=0, overlap=0, overlap - the number of overlapping elements in each batch pagerange - the number of pages to display in the navigation """ - assert orphan < size, "Having an orphan size, higher than batch size" \ - " is undefined" start += 1 self._sequence = sequence self._size = size @@ -157,7 +155,7 @@ def lastpage(self): """ Last page of batch """ pages = self.sequence_length / self.pagesize - if (self.sequence_length - self.orphan) % self.pagesize: + if self.sequence_length % self.pagesize: pages += 1 return pages diff --git a/plone/batching/tests.py b/plone/batching/tests.py index 5b92a44..3b442cc 100644 --- a/plone/batching/tests.py +++ b/plone/batching/tests.py @@ -97,13 +97,6 @@ def test_lastpage(self): lastbatch = BaseBatch(range(20), 5, start=batch.last) self.assertTrue(lastbatch.islastpage) - def test_lastpage_with_orphans(self): - batch = BaseBatch(range(11), 10, orphan=1) - self.assertEqual(1, batch.lastpage) - batch = BaseBatch(range(109), 10, orphan=9) - self.assertEqual(10, batch.lastpage) - self.assertRaises(AssertionError, BaseBatch, [], 10, orphan=20) - def test_items_not_on_page(self): batch = BaseBatch(range(20), 5, start=5) self.assertEqual(batch.items_not_on_page,
vangheem
added a commit
that referenced
this pull request
Feb 3, 2015
Branch: refs/heads/master Date: 2015-01-27T18:46:58+01:00 Author: Mathieu Le Marec - Pasquet (kiorky) <kiorky@cryptelium.net> Commit: plone/plone.app.contentlisting@76322f5 forward getURL's relative kw for contentlistings (plone4 compat) Files changed: M CHANGES.txt M plone/app/contentlisting/catalog.py M plone/app/contentlisting/interfaces.py diff --git a/CHANGES.txt b/CHANGES.txt index 39226a0..bf48e4c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,8 +4,8 @@ Changelog 1.1.1 (unreleased) ------------------ -- Nothing changed yet. - +- forward getURL's relative kw for contentlistings (plone4 compat) + [kiorky] 1.1.0 (2014-04-16) ------------------ diff --git a/plone/app/contentlisting/catalog.py b/plone/app/contentlisting/catalog.py index aa75d91..df1bd31 100644 --- a/plone/app/contentlisting/catalog.py +++ b/plone/app/contentlisting/catalog.py @@ -73,8 +73,8 @@ def getId(self): def getPath(self): return self._brain.getPath() - def getURL(self): - return self._brain.getURL() + def getURL(self, relative=False): + return self._brain.getURL(relative=relative) def uuid(self): # content objects might have UID and might not. diff --git a/plone/app/contentlisting/interfaces.py b/plone/app/contentlisting/interfaces.py index 0118e0b..b5a8bde 100644 --- a/plone/app/contentlisting/interfaces.py +++ b/plone/app/contentlisting/interfaces.py @@ -21,7 +21,7 @@ def getDataOrigin(): def getPath(): """Path to the object, relative to the portal root""" - def getURL(): + def getURL(relative=False): """Full url to the object, including the portal root""" def uuid(): Repository: plone.app.contentlisting Branch: refs/heads/master Date: 2015-02-03T16:31:05-06:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.app.contentlisting@385d1b8 Merge pull request #5 from plone/pac forward getURL's relative kw for contentlistings (plone4 compat) Files changed: M CHANGES.txt M plone/app/contentlisting/catalog.py M plone/app/contentlisting/interfaces.py diff --git a/CHANGES.txt b/CHANGES.txt index 39226a0..bf48e4c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,8 +4,8 @@ Changelog 1.1.1 (unreleased) ------------------ -- Nothing changed yet. - +- forward getURL's relative kw for contentlistings (plone4 compat) + [kiorky] 1.1.0 (2014-04-16) ------------------ diff --git a/plone/app/contentlisting/catalog.py b/plone/app/contentlisting/catalog.py index aa75d91..df1bd31 100644 --- a/plone/app/contentlisting/catalog.py +++ b/plone/app/contentlisting/catalog.py @@ -73,8 +73,8 @@ def getId(self): def getPath(self): return self._brain.getPath() - def getURL(self): - return self._brain.getURL() + def getURL(self, relative=False): + return self._brain.getURL(relative=relative) def uuid(self): # content objects might have UID and might not. diff --git a/plone/app/contentlisting/interfaces.py b/plone/app/contentlisting/interfaces.py index 0118e0b..b5a8bde 100644 --- a/plone/app/contentlisting/interfaces.py +++ b/plone/app/contentlisting/interfaces.py @@ -21,7 +21,7 @@ def getDataOrigin(): def getPath(): """Path to the object, relative to the portal root""" - def getURL(): + def getURL(relative=False): """Full url to the object, including the portal root""" def uuid():
tisto
added a commit
that referenced
this pull request
Mar 6, 2015
Branch: refs/heads/master Date: 2015-03-06T07:13:47+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.openid@ff322b0 simplify plugin creation This hopefully fixes the p.a.testing merge of p.openid Files changed: M plone/app/openid/setuphandlers.py Repository: plone.app.openid Branch: refs/heads/master Date: 2015-03-06T10:04:08+01:00 Author: Timo Stollenwerk (tisto) <tisto@plone.org> Commit: plone/plone.app.openid@689fa3d Merge pull request #5 from plone/tomgross-patch-1 simplify plugin creation Files changed: M plone/app/openid/setuphandlers.py
tisto
added a commit
that referenced
this pull request
Mar 6, 2015
Branch: refs/heads/master Date: 2015-03-06T07:13:47+01:00 Author: Tom Gross (tomgross) <itconsense@gmail.com> Commit: plone/plone.app.openid@ff322b0 simplify plugin creation This hopefully fixes the p.a.testing merge of p.openid Files changed: M plone/app/openid/setuphandlers.py Repository: plone.app.openid Branch: refs/heads/master Date: 2015-03-06T10:04:08+01:00 Author: Timo Stollenwerk (tisto) <tisto@plone.org> Commit: plone/plone.app.openid@689fa3d Merge pull request #5 from plone/tomgross-patch-1 simplify plugin creation Files changed: M plone/app/openid/setuphandlers.py
sureshvv
added a commit
that referenced
this pull request
Mar 6, 2015
Branch: refs/heads/master Date: 2015-03-05T06:11:03+05:30 Author: sureshvv (sureshvv) <sureshvv@hotmail.com> Commit: plone/plone.scale@cb12eb2 PIL thumbnail does not magnify image If we are scaling up, we cannot use thumbnail to magnify image. We need to use resize. Files changed: M plone/scale/scale.py Repository: plone.scale Branch: refs/heads/master Date: 2015-03-05T06:13:13+05:30 Author: sureshvv (sureshvv) <sureshvv@hotmail.com> Commit: plone/plone.scale@f313933 Update changes.rst Files changed: M docs/changes.rst Repository: plone.scale Branch: refs/heads/master Date: 2015-03-06T16:50:47+05:30 Author: Suresh V () <suresh-varsha.vaidyanathan@vnc.biz> Commit: plone/plone.scale@8d15fcc Bug fix with test. Files changed: M plone/scale/scale.py M plone/scale/tests/test_scale.py Repository: plone.scale Branch: refs/heads/master Date: 2015-03-06T16:53:24+05:30 Author: sureshvv (sureshvv) <sureshvv@hotmail.com> Commit: plone/plone.scale@bb994d6 Merge pull request #5 from sureshvv/master Bug fix. Image thumbnail cannot be used to scale up. Files changed: M docs/changes.rst M plone/scale/scale.py M plone/scale/tests/test_scale.py
sureshvv
added a commit
that referenced
this pull request
Mar 6, 2015
Branch: refs/heads/master Date: 2015-03-05T06:11:03+05:30 Author: sureshvv (sureshvv) <sureshvv@hotmail.com> Commit: plone/plone.scale@cb12eb2 PIL thumbnail does not magnify image If we are scaling up, we cannot use thumbnail to magnify image. We need to use resize. Files changed: M plone/scale/scale.py Repository: plone.scale Branch: refs/heads/master Date: 2015-03-05T06:13:13+05:30 Author: sureshvv (sureshvv) <sureshvv@hotmail.com> Commit: plone/plone.scale@f313933 Update changes.rst Files changed: M docs/changes.rst Repository: plone.scale Branch: refs/heads/master Date: 2015-03-06T16:50:47+05:30 Author: Suresh V () <suresh-varsha.vaidyanathan@vnc.biz> Commit: plone/plone.scale@8d15fcc Bug fix with test. Files changed: M plone/scale/scale.py M plone/scale/tests/test_scale.py Repository: plone.scale Branch: refs/heads/master Date: 2015-03-06T16:53:24+05:30 Author: sureshvv (sureshvv) <sureshvv@hotmail.com> Commit: plone/plone.scale@bb994d6 Merge pull request #5 from sureshvv/master Bug fix. Image thumbnail cannot be used to scale up. Files changed: M docs/changes.rst M plone/scale/scale.py M plone/scale/tests/test_scale.py
saily
added a commit
that referenced
this pull request
Mar 11, 2015
Branch: refs/heads/master Date: 2015-03-11T16:36:17+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@bb791b9 basic pep8 et al, review and minor mods, zca and security decorators Files changed: A CHANGES.rst A README.rst M Products/PlonePAS/__init__.py M Products/PlonePAS/config.py M Products/PlonePAS/configure.zcml M Products/PlonePAS/events.py M Products/PlonePAS/exportimport.zcml M Products/PlonePAS/gruf_support.py M Products/PlonePAS/ldapmp.py M Products/PlonePAS/pas.py M Products/PlonePAS/patch.py M Products/PlonePAS/permissions.py M Products/PlonePAS/setuphandlers.py M Products/PlonePAS/storage.py M Products/PlonePAS/tests/__init__.py M Products/PlonePAS/tests/base.py M Products/PlonePAS/tests/dummy.py M Products/PlonePAS/tests/test_basic_ops.py M Products/PlonePAS/tests/test_doctests.py M Products/PlonePAS/tests/test_groupdatatool.py M Products/PlonePAS/tests/test_groupstool.py M Products/PlonePAS/tests/test_memberdatatool.py M Products/PlonePAS/tests/test_membershiptool.py M Products/PlonePAS/tests/test_properties.py M Products/PlonePAS/tests/test_role_plugin.py M Products/PlonePAS/tests/test_views.py M Products/PlonePAS/tools/__init__.py M Products/PlonePAS/tools/groupdata.py M Products/PlonePAS/tools/groups.py M Products/PlonePAS/tools/memberdata.py M Products/PlonePAS/tools/membership.py M Products/PlonePAS/utils.py M Products/__init__.py M setup.py D CHANGES.txt D README.txt Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@6f34326 cleanup patches, make them better readable, add deprecation and merge gruf_support in pas to reduce complexicty Files changed: M Products/PlonePAS/__init__.py M Products/PlonePAS/config.py M Products/PlonePAS/pas.py M Products/PlonePAS/patch.py M setup.py D Products/PlonePAS/gruf_support.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@04d7dfb more pep8 (forgotten ones) Files changed: M CHANGES.rst M Products/PlonePAS/interfaces/__init__.py M Products/PlonePAS/interfaces/browser.py M Products/PlonePAS/interfaces/capabilities.py M Products/PlonePAS/interfaces/events.py M Products/PlonePAS/interfaces/group.py M Products/PlonePAS/interfaces/membership.py M Products/PlonePAS/interfaces/plugins.py M Products/PlonePAS/interfaces/propertysheets.py M Products/PlonePAS/plugins/__init__.py M Products/PlonePAS/plugins/autogroup.py M Products/PlonePAS/plugins/cookie_handler.py M Products/PlonePAS/plugins/crumbler.py M Products/PlonePAS/plugins/group.py M Products/PlonePAS/plugins/local_role.py M Products/PlonePAS/plugins/passwordpolicy.py M Products/PlonePAS/plugins/property.py M Products/PlonePAS/plugins/role.py M Products/PlonePAS/plugins/ufactory.py M Products/PlonePAS/plugins/user.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@93c0b87 remove dependency to CMFDefault Files changed: M CHANGES.rst M Products/PlonePAS/tools/membership.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@5283820 Expect Python 2.7 with collections. Closes #8 Files changed: M CHANGES.rst M Products/PlonePAS/plugins/ufactory.py M setup.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@f214814 more leftovers cleaned up (pep8 et al) Files changed: M Products/PlonePAS/browser/configure.zcml M Products/PlonePAS/browser/info.py M Products/PlonePAS/browser/member.py M Products/PlonePAS/browser/search.py M Products/PlonePAS/config.py M Products/PlonePAS/sheet.py M Products/PlonePAS/tools/membership.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@4f80b18 Moved Extensions/Install.py fucntions to setuphandlers, kept BBB import for activatePluginInterfaces since this is imported by borg.localrole. Files changed: M CHANGES.rst M Products/PlonePAS/Extensions/Install.py M Products/PlonePAS/setuphandlers.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@88e52a6 improve readability of canListAllUsers and canListAllGroups Files changed: M Products/PlonePAS/pas.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@54a1bce Removed (optional) Archetypes Storage used in past with CMFMember Files changed: M CHANGES.rst M setup.py D Products/PlonePAS/storage.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@d5166c4 require a zope suitable for plone5, but not a future one... Files changed: M setup.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@f399186 remove dead code Files changed: M Products/PlonePAS/utils.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@6666fc9 according to semantic versioning a major increase is needed. Files changed: M CHANGES.rst M setup.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@ac1ea23 Make patching of LDAPMultiPlugin explizit. See also #5 Files changed: M CHANGES.rst M Products/PlonePAS/__init__.py M Products/PlonePAS/ldapmp.py M Products/PlonePAS/pas.py M Products/PlonePAS/patch.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@aca38e3 removed superfluos Files changed: M Products/PlonePAS/config.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@085824d overhaul README Files changed: M README.rst Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@2357947 increase chapter level Files changed: M README.rst Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:36:18+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@930e1dc prepare to test isolated with travis as well Files changed: A .travis.yml A travis.cfg M .gitignore M setup.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@f39c848 add src directory and move Products into it to make qa.cfg defaults happy Files changed: A src/Products/PlonePAS/Extensions/Install.py A src/Products/PlonePAS/Extensions/__init__.py A src/Products/PlonePAS/__init__.py A src/Products/PlonePAS/browser/__init__.py A src/Products/PlonePAS/browser/configure.zcml A src/Products/PlonePAS/browser/info.py A src/Products/PlonePAS/browser/member.py A src/Products/PlonePAS/browser/search.py A src/Products/PlonePAS/config.py A src/Products/PlonePAS/configure.zcml A src/Products/PlonePAS/events.py A src/Products/PlonePAS/exportimport.zcml A src/Products/PlonePAS/interfaces/__init__.py A src/Products/PlonePAS/interfaces/browser.py A src/Products/PlonePAS/interfaces/capabilities.py A src/Products/PlonePAS/interfaces/events.py A src/Products/PlonePAS/interfaces/group.py A src/Products/PlonePAS/interfaces/membership.py A src/Products/PlonePAS/interfaces/plugins.py A src/Products/PlonePAS/interfaces/propertysheets.py A src/Products/PlonePAS/ldapmp.py A src/Products/PlonePAS/pas.py A src/Products/PlonePAS/patch.py A src/Products/PlonePAS/permissions.py A src/Products/PlonePAS/plugins/__init__.py A src/Products/PlonePAS/plugins/autogroup.py A src/Products/PlonePAS/plugins/cookie_handler.py A src/Products/PlonePAS/plugins/crumbler.py A src/Products/PlonePAS/plugins/group.py A src/Products/PlonePAS/plugins/local_role.py A src/Products/PlonePAS/plugins/passwordpolicy.py A src/Products/PlonePAS/plugins/property.py A src/Products/PlonePAS/plugins/role.py A src/Products/PlonePAS/plugins/ufactory.py A src/Products/PlonePAS/plugins/user.py A src/Products/PlonePAS/profiles.zcml A src/Products/PlonePAS/profiles/default/metadata.xml A src/Products/PlonePAS/profiles/default/plone-pas.txt A src/Products/PlonePAS/setuphandlers.py A src/Products/PlonePAS/sheet.py A src/Products/PlonePAS/tests/__init__.py A src/Products/PlonePAS/tests/base.py A src/Products/PlonePAS/tests/cookie_auth.rst A src/Products/PlonePAS/tests/dummy.py A src/Products/PlonePAS/tests/images/test.gif A src/Products/PlonePAS/tests/images/test.jpg A src/Products/PlonePAS/tests/images/test.png A src/Products/PlonePAS/tests/test_basic_ops.py A src/Products/PlonePAS/tests/test_doctests.py A src/Products/PlonePAS/tests/test_groupdatatool.py A src/Products/PlonePAS/tests/test_groupstool.py A src/Products/PlonePAS/tests/test_memberdatatool.py A src/Products/PlonePAS/tests/test_membershiptool.py A src/Products/PlonePAS/tests/test_properties.py A src/Products/PlonePAS/tests/test_role_plugin.py A src/Products/PlonePAS/tests/test_views.py A src/Products/PlonePAS/tool.gif A src/Products/PlonePAS/tools/__init__.py A src/Products/PlonePAS/tools/groupdata.py A src/Products/PlonePAS/tools/groups.py A src/Products/PlonePAS/tools/memberdata.py A src/Products/PlonePAS/tools/membership.py A src/Products/PlonePAS/tools/plonetool.py A src/Products/PlonePAS/utils.py A src/Products/PlonePAS/zmi/AutoGroupForm.zpt A src/Products/PlonePAS/zmi/CookieCrumblingPluginForm.dtml A src/Products/PlonePAS/zmi/ExtendedCookieAuthHelperForm.dtml A src/Products/PlonePAS/zmi/GroupAwareRoleManagerForm.dtml A src/Products/PlonePAS/zmi/GroupManagerForm.dtml A src/Products/PlonePAS/zmi/LocalRolesManagerForm.dtml A src/Products/PlonePAS/zmi/MutablePropertyProviderForm.dtml A src/Products/PlonePAS/zmi/PasswordPolicyForm.zpt A src/Products/PlonePAS/zmi/PloneUserFactoryForm.dtml A src/Products/PlonePAS/zmi/UserManagerForm.dtml A src/Products/PlonePAS/zmi/membershipRolemapping.dtml A src/Products/PlonePAS/zmi/portrait_fix.dtml A src/Products/__init__.py M .gitignore M CHANGES.rst M setup.py D Products/PlonePAS/Extensions/Install.py D Products/PlonePAS/Extensions/__init__.py D Products/PlonePAS/__init__.py D Products/PlonePAS/browser/__init__.py D Products/PlonePAS/browser/configure.zcml D Products/PlonePAS/browser/info.py D Products/PlonePAS/browser/member.py D Products/PlonePAS/browser/search.py D Products/PlonePAS/config.py D Products/PlonePAS/configure.zcml D Products/PlonePAS/events.py D Products/PlonePAS/exportimport.zcml D Products/PlonePAS/interfaces/__init__.py D Products/PlonePAS/interfaces/browser.py D Products/PlonePAS/interfaces/capabilities.py D Products/PlonePAS/interfaces/events.py D Products/PlonePAS/interfaces/group.py D Products/PlonePAS/interfaces/membership.py D Products/PlonePAS/interfaces/plugins.py D Products/PlonePAS/interfaces/propertysheets.py D Products/PlonePAS/ldapmp.py D Products/PlonePAS/pas.py D Products/PlonePAS/patch.py D Products/PlonePAS/permissions.py D Products/PlonePAS/plugins/__init__.py D Products/PlonePAS/plugins/autogroup.py D Products/PlonePAS/plugins/cookie_handler.py D Products/PlonePAS/plugins/crumbler.py D Products/PlonePAS/plugins/group.py D Products/PlonePAS/plugins/local_role.py D Products/PlonePAS/plugins/passwordpolicy.py D Products/PlonePAS/plugins/property.py D Products/PlonePAS/plugins/role.py D Products/PlonePAS/plugins/ufactory.py D Products/PlonePAS/plugins/user.py D Products/PlonePAS/profiles.zcml D Products/PlonePAS/profiles/default/metadata.xml D Products/PlonePAS/profiles/default/plone-pas.txt D Products/PlonePAS/setuphandlers.py D Products/PlonePAS/sheet.py D Products/PlonePAS/tests/__init__.py D Products/PlonePAS/tests/base.py D Products/PlonePAS/tests/cookie_auth.rst D Products/PlonePAS/tests/dummy.py D Products/PlonePAS/tests/images/test.gif D Products/PlonePAS/tests/images/test.jpg D Products/PlonePAS/tests/images/test.png D Products/PlonePAS/tests/test_basic_ops.py D Products/PlonePAS/tests/test_doctests.py D Products/PlonePAS/tests/test_groupdatatool.py D Products/PlonePAS/tests/test_groupstool.py D Products/PlonePAS/tests/test_memberdatatool.py D Products/PlonePAS/tests/test_membershiptool.py D Products/PlonePAS/tests/test_properties.py D Products/PlonePAS/tests/test_role_plugin.py D Products/PlonePAS/tests/test_views.py D Products/PlonePAS/tool.gif D Products/PlonePAS/tools/__init__.py D Products/PlonePAS/tools/groupdata.py D Products/PlonePAS/tools/groups.py D Products/PlonePAS/tools/memberdata.py D Products/PlonePAS/tools/membership.py D Products/PlonePAS/tools/plonetool.py D Products/PlonePAS/utils.py D Products/PlonePAS/zmi/AutoGroupForm.zpt D Products/PlonePAS/zmi/CookieCrumblingPluginForm.dtml D Products/PlonePAS/zmi/ExtendedCookieAuthHelperForm.dtml D Products/PlonePAS/zmi/GroupAwareRoleManagerForm.dtml D Products/PlonePAS/zmi/GroupManagerForm.dtml D Products/PlonePAS/zmi/LocalRolesManagerForm.dtml D Products/PlonePAS/zmi/MutablePropertyProviderForm.dtml D Products/PlonePAS/zmi/PasswordPolicyForm.zpt D Products/PlonePAS/zmi/PloneUserFactoryForm.dtml D Products/PlonePAS/zmi/UserManagerForm.dtml D Products/PlonePAS/zmi/membershipRolemapping.dtml D Products/PlonePAS/zmi/portrait_fix.dtml D Products/__init__.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@0f17c0a there is no direct upgrade path from Plone 2.5 in Plone 5 Files changed: D src/Products/PlonePAS/tools/plonetool.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@f675efd flake8 fixes after running code-analysis, still some C901 (too complex) left Files changed: M src/Products/PlonePAS/interfaces/group.py M src/Products/PlonePAS/ldapmp.py M src/Products/PlonePAS/pas.py M src/Products/PlonePAS/patch.py M src/Products/PlonePAS/plugins/autogroup.py M src/Products/PlonePAS/plugins/group.py M src/Products/PlonePAS/plugins/local_role.py M src/Products/PlonePAS/plugins/role.py M src/Products/PlonePAS/setuphandlers.py M src/Products/PlonePAS/sheet.py M src/Products/PlonePAS/tests/base.py M src/Products/PlonePAS/tests/test_groupdatatool.py M src/Products/PlonePAS/tests/test_groupstool.py M src/Products/PlonePAS/tests/test_membershiptool.py M src/Products/PlonePAS/tests/test_properties.py M src/Products/PlonePAS/tools/groupdata.py M src/Products/PlonePAS/tools/groups.py M src/Products/PlonePAS/tools/membership.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@366551f trim code-analysis and fixed in code what still was wrong Files changed: M src/Products/PlonePAS/Extensions/__init__.py M src/Products/PlonePAS/browser/__init__.py M src/Products/PlonePAS/browser/info.py M src/Products/PlonePAS/interfaces/group.py M src/Products/PlonePAS/pas.py M src/Products/PlonePAS/patch.py M src/Products/PlonePAS/plugins/group.py M src/Products/PlonePAS/plugins/local_role.py M src/Products/PlonePAS/plugins/passwordpolicy.py M src/Products/PlonePAS/plugins/property.py M src/Products/PlonePAS/plugins/role.py M src/Products/PlonePAS/tests/test_basic_ops.py M travis.cfg Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@738897e activate code-analysis Files changed: M .travis.yml Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@e2f4794 fixup buildout Files changed: M buildout.cfg M travis.cfg D bootstrap.py Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@65c2925 fix MANIFEST.in Files changed: M MANIFEST.in Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:44:14+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PlonePAS@7c929a7 fix link to PAS sources in README Files changed: M README.rst Repository: Products.PlonePAS Branch: refs/heads/master Date: 2015-03-11T16:47:06+01:00 Author: Daniel Widerin (saily) <daniel@widerin.net> Commit: plone/Products.PlonePAS@af4351c Merge pull request #7 from plone/jensens-cleanup-and-review pep8 et al, review and code modernization, zca and security decorators, remove Plone4+Py2.6 code, overhaul Files changed: A .travis.yml A CHANGES.rst A README.rst A src/Products/PlonePAS/Extensions/Install.py A src/Products/PlonePAS/Extensions/__init__.py A src/Products/PlonePAS/__init__.py A src/Products/PlonePAS/browser/__init__.py A src/Products/PlonePAS/browser/configure.zcml A src/Products/PlonePAS/browser/info.py A src/Products/PlonePAS/browser/member.py A src/Products/PlonePAS/browser/search.py A src/Products/PlonePAS/config.py A src/Products/PlonePAS/configure.zcml A src/Products/PlonePAS/events.py A src/Products/PlonePAS/exportimport.zcml A src/Products/PlonePAS/interfaces/__init__.py A src/Products/PlonePAS/interfaces/browser.py A src/Products/PlonePAS/interfaces/capabilities.py A src/Products/PlonePAS/interfaces/events.py A src/Products/PlonePAS/interfaces/group.py A src/Products/PlonePAS/interfaces/membership.py A src/Products/PlonePAS/interfaces/plugins.py A src/Products/PlonePAS/interfaces/propertysheets.py A src/Products/PlonePAS/ldapmp.py A src/Products/PlonePAS/pas.py A src/Products/PlonePAS/patch.py A src/Products/PlonePAS/permissions.py A src/Products/PlonePAS/plugins/__init__.py A src/Products/PlonePAS/plugins/autogroup.py A src/Products/PlonePAS/plugins/cookie_handler.py A src/Products/PlonePAS/plugins/crumbler.py A src/Products/PlonePAS/plugins/group.py A src/Products/PlonePAS/plugins/local_role.py A src/Products/PlonePAS/plugins/passwordpolicy.py A src/Products/PlonePAS/plugins/property.py A src/Products/PlonePAS/plugins/role.py A src/Products/PlonePAS/plugins/ufactory.py A src/Products/PlonePAS/plugins/user.py A src/Products/PlonePAS/profiles.zcml A src/Products/PlonePAS/profiles/default/metadata.xml A src/Products/PlonePAS/profiles/default/plone-pas.txt A src/Products/PlonePAS/setuphandlers.py A src/Products/PlonePAS/sheet.py A src/Products/PlonePAS/tests/__init__.py A src/Products/PlonePAS/tests/base.py A src/Products/PlonePAS/tests/cookie_auth.rst A src/Products/PlonePAS/tests/dummy.py A src/Products/PlonePAS/tests/images/test.gif A src/Products/PlonePAS/tests/images/test.jpg A src/Products/PlonePAS/tests/images/test.png A src/Products/PlonePAS/tests/test_basic_ops.py A src/Products/PlonePAS/tests/test_doctests.py A src/Products/PlonePAS/tests/test_groupdatatool.py A src/Products/PlonePAS/tests/test_groupstool.py A src/Products/PlonePAS/tests/test_memberdatatool.py A src/Products/PlonePAS/tests/test_membershiptool.py A src/Products/PlonePAS/tests/test_properties.py A src/Products/PlonePAS/tests/test_role_plugin.py A src/Products/PlonePAS/tests/test_views.py A src/Products/PlonePAS/tool.gif A src/Products/PlonePAS/tools/__init__.py A src/Products/PlonePAS/tools/groupdata.py A src/Products/PlonePAS/tools/groups.py A src/Products/PlonePAS/tools/memberdata.py A src/Products/PlonePAS/tools/membership.py A src/Products/PlonePAS/utils.py A src/Products/PlonePAS/zmi/AutoGroupForm.zpt A src/Products/PlonePAS/zmi/CookieCrumblingPluginForm.dtml A src/Products/PlonePAS/zmi/ExtendedCookieAuthHelperForm.dtml A src/Products/PlonePAS/zmi/GroupAwareRoleManagerForm.dtml A src/Products/PlonePAS/zmi/GroupManagerForm.dtml A src/Products/PlonePAS/zmi/LocalRolesManagerForm.dtml A src/Products/PlonePAS/zmi/MutablePropertyProviderForm.dtml A src/Products/PlonePAS/zmi/PasswordPolicyForm.zpt A src/Products/PlonePAS/zmi/PloneUserFactoryForm.dtml A src/Products/PlonePAS/zmi/UserManagerForm.dtml A src/Products/PlonePAS/zmi/membershipRolemapping.dtml A src/Products/PlonePAS/zmi/portrait_fix.dtml A src/Products/__init__.py A travis.cfg M .gitignore M MANIFEST.in M buildout.cfg M setup.py D CHANGES.txt D Products/PlonePAS/Extensions/Install.py D Products/PlonePAS/Extensions/__init__.py D Products/PlonePAS/__init__.py D Products/PlonePAS/browser/__init__.py D Products/PlonePAS/browser/configure.zcml D Products/PlonePAS/browser/info.py D Products/PlonePAS/browser/member.py D Products/PlonePAS/browser/search.py D Products/PlonePAS/config.py D Products/PlonePAS/configure.zcml D Products/PlonePAS/events.py D Products/PlonePAS/exportimport.zcml D Products/PlonePAS/gruf_support.py D Products/PlonePAS/interfaces/__init__.py D Products/PlonePAS/interfaces/browser.py D Products/PlonePAS/interfaces/capabilities.py D Products/PlonePAS/interfaces/events.py D Products/PlonePAS/interfaces/group.py D Products/PlonePAS/interfaces/membership.py D Products/PlonePAS/interfaces/plugins.py D Products/PlonePAS/interfaces/propertysheets.py D Products/PlonePAS/ldapmp.py D Products/PlonePAS/pas.py D Products/PlonePAS/patch.py D Products/PlonePAS/permissions.py D Products/PlonePAS/plugins/__init__.py D Products/PlonePAS/plugins/autogroup.py D Products/PlonePAS/plugins/cookie_handler.py D Products/PlonePAS/plugins/crumbler.py D Products/PlonePAS/plugins/group.py D Products/PlonePAS/plugins/local_role.py D Products/PlonePAS/plugins/passwordpolicy.py D Products/PlonePAS/plugins/property.py D Products/PlonePAS/plugins/role.py D Products/PlonePAS/plugins/ufactory.py D Products/PlonePAS/plugins/user.py D Products/PlonePAS/profiles.zcml D Products/PlonePAS/profiles/default/metadata.xml D Products/PlonePAS/profiles/default/plone-pas.txt D Products/PlonePAS/setuphandlers.py D Products/PlonePAS/sheet.py D Products/PlonePAS/storage.py D Products/PlonePAS/tests/__init__.py D Products/PlonePAS/tests/base.py D Products/PlonePAS/tests/cookie_auth.rst D Products/PlonePAS/tests/dummy.py D Products/PlonePAS/tests/images/test.gif D Products/PlonePAS/tests/images/test.jpg D Products/PlonePAS/tests/images/test.png D Products/PlonePAS/tests/test_basic_ops.py D Products/PlonePAS/tests/test_doctests.py D Products/PlonePAS/tests/test_groupdatatool.py D Products/PlonePAS/tests/test_groupstool.py D Products/PlonePAS/tests/test_memberdatatool.py D Products/PlonePAS/tests/test_membershiptool.py D Products/PlonePAS/tests/test_properties.py D Products/PlonePAS/tests/test_role_plugin.py D Products/PlonePAS/tests/test_views.py D Products/PlonePAS/tool.gif D Products/PlonePAS/tools/__init__.py D Products/PlonePAS/tools/groupdata.py D Products/PlonePAS/tools/groups.py D Products/PlonePAS/tools/memberdata.py D Products/PlonePAS/tools/membership.py D Products/PlonePAS/tools/plonetool.py D Products/PlonePAS/utils.py D Products/PlonePAS/zmi/AutoGroupForm.zpt D Products/PlonePAS/zmi/CookieCrumblingPluginForm.dtml D Products/PlonePAS/zmi/ExtendedCookieAuthHelperForm.dtml D Products/PlonePAS/zmi/GroupAwareRoleManagerForm.dtml D Products/PlonePAS/zmi/GroupManagerForm.dtml D Products/PlonePAS/zmi/LocalRolesManagerForm.dtml D Products/PlonePAS/zmi/MutablePropertyProviderForm.dtml D Products/PlonePAS/zmi/PasswordPolicyForm.zpt D Products/PlonePAS/zmi/PloneUserFactoryForm.dtml D Products/PlonePAS/zmi/UserManagerForm.dtml D Products/PlonePAS/zmi/membershipRolemapping.dtml D Products/PlonePAS/zmi/portrait_fix.dtml D Products/__init__.py D README.txt D bootstrap.py
jensens
added a commit
that referenced
this pull request
Mar 16, 2015
Branch: refs/heads/master Date: 2015-03-16T13:24:02+01:00 Author: Kees Hink (khink) <keeshink@gmail.com> Commit: plone/plone.app.contentrules@58320d0 Remove DL's from portal message templates. Files changed: M CHANGES.rst M plone/app/contentrules/actions/templates/mail.pt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-03-16T13:24:02+01:00 Author: Kees Hink (khink) <keeshink@gmail.com> Commit: plone/plone.app.contentrules@8dc7abb Remove DL's from JS portal message insertion. Files changed: M plone/app/contentrules/browser/contentrules.js Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-03-16T13:24:03+01:00 Author: Kees Hink (khink) <keeshink@gmail.com> Commit: plone/plone.app.contentrules@62232ff Remove DL from /@@rules-controlpanel Files changed: M plone/app/contentrules/browser/templates/controlpanel.pt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-03-16T13:25:24+01:00 Author: Kees Hink (khink) <keeshink@gmail.com> Commit: plone/plone.app.contentrules@0eea928 Remove DL's from manage-assignments.pt Files changed: M plone/app/contentrules/browser/templates/manage-assignments.pt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-03-16T13:29:07+01:00 Author: Kees Hink (khink) <keeshink@gmail.com> Commit: plone/plone.app.contentrules@dcd9810 Remove DL's from /@@manage-elements Files changed: M plone/app/contentrules/browser/templates/manage-elements.pt Repository: plone.app.contentrules Branch: refs/heads/master Date: 2015-03-16T18:01:16+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.contentrules@7e88899 Merge pull request #5 from plone/remove-dt-dl-dd Remove DL's from portal message templates. Files changed: M CHANGES.rst M plone/app/contentrules/actions/templates/mail.pt M plone/app/contentrules/browser/contentrules.js M plone/app/contentrules/browser/templates/controlpanel.pt M plone/app/contentrules/browser/templates/manage-assignments.pt M plone/app/contentrules/browser/templates/manage-elements.pt
jensens
added a commit
that referenced
this pull request
Apr 21, 2015
Branch: refs/heads/master Date: 2015-03-31T15:36:07+02:00 Author: Godefroid Chapelle (gotcha) <gotcha@bubblenet.be> Commit: plone/Products.PortalTransforms@aef5df6 Do not escape <, >, and & inside script tag when it is not suppressed. Files changed: M CHANGES.rst M Products/PortalTransforms/tests/test_transforms.py M Products/PortalTransforms/transforms/safe_html.py Repository: Products.PortalTransforms Branch: refs/heads/master Date: 2015-04-21T07:29:14+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PortalTransforms@74cae7d Merge pull request #5 from plone/entities_in_script Do not escape <, >, and & inside script tag Files changed: M CHANGES.rst M Products/PortalTransforms/tests/test_transforms.py M Products/PortalTransforms/transforms/safe_html.py
jensens
added a commit
that referenced
this pull request
Apr 21, 2015
Branch: refs/heads/master Date: 2015-03-31T15:36:07+02:00 Author: Godefroid Chapelle (gotcha) <gotcha@bubblenet.be> Commit: plone/Products.PortalTransforms@aef5df6 Do not escape <, >, and & inside script tag when it is not suppressed. Files changed: M CHANGES.rst M Products/PortalTransforms/tests/test_transforms.py M Products/PortalTransforms/transforms/safe_html.py Repository: Products.PortalTransforms Branch: refs/heads/master Date: 2015-04-21T07:29:14+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/Products.PortalTransforms@74cae7d Merge pull request #5 from plone/entities_in_script Do not escape <, >, and & inside script tag Files changed: M CHANGES.rst M Products/PortalTransforms/tests/test_transforms.py M Products/PortalTransforms/transforms/safe_html.py
vangheem
added a commit
that referenced
this pull request
Jul 13, 2015
Branch: refs/heads/master Date: 2015-07-12T22:54:59Z Author: Fulvio Casali (fulv) <fulviocasali@gmail.com> Commit: plone/plone.app.referenceablebehavior@d5e5fcd Remove superfluous 'for'. Files changed: M plone/app/referenceablebehavior/configure.zcml Repository: plone.app.referenceablebehavior Branch: refs/heads/master Date: 2015-07-13T07:31:18+02:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.app.referenceablebehavior@11bc52b Merge pull request #5 from plone/fulv-warning-plone-behavior Fixes plone/Products.CMFPlone#669 Files changed: M plone/app/referenceablebehavior/configure.zcml
agitator
added a commit
that referenced
this pull request
Jul 24, 2015
Branch: refs/heads/master Date: 2015-06-02T14:30:03+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@afa188c plone documentation style and some ReST fixes Files changed: M README.rst Repository: plone.session Branch: refs/heads/master Date: 2015-06-02T14:30:46+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@1572ff1 indent, other minor cleanup Files changed: M setup.py Repository: plone.session Branch: refs/heads/master Date: 2015-06-02T15:10:42+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@a334ba8 cleanup: followpep8, plone code conventions, better readability Files changed: M CHANGES.rst M plone/session/__init__.py M plone/session/configure.zcml M plone/session/interfaces.py M plone/session/plugins/__init__.py M plone/session/plugins/session.py M plone/session/profiles.zcml M plone/session/resources.zcml M plone/session/tktauth.py Repository: plone.session Branch: refs/heads/master Date: 2015-07-24T17:57:21+02:00 Author: agitator (agitator) <hpeter@agitator.com> Commit: plone/plone.session@4ac0377 Merge pull request #5 from plone/cleanup Cleanup: pep8 et al Files changed: M CHANGES.rst M README.rst M plone/session/__init__.py M plone/session/configure.zcml M plone/session/interfaces.py M plone/session/plugins/__init__.py M plone/session/plugins/session.py M plone/session/profiles.zcml M plone/session/resources.zcml M plone/session/tktauth.py M setup.py
agitator
added a commit
that referenced
this pull request
Jul 24, 2015
Branch: refs/heads/master Date: 2015-06-02T14:30:03+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@afa188c plone documentation style and some ReST fixes Files changed: M README.rst Repository: plone.session Branch: refs/heads/master Date: 2015-06-02T14:30:46+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@1572ff1 indent, other minor cleanup Files changed: M setup.py Repository: plone.session Branch: refs/heads/master Date: 2015-06-02T15:10:42+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.session@a334ba8 cleanup: followpep8, plone code conventions, better readability Files changed: M CHANGES.rst M plone/session/__init__.py M plone/session/configure.zcml M plone/session/interfaces.py M plone/session/plugins/__init__.py M plone/session/plugins/session.py M plone/session/profiles.zcml M plone/session/resources.zcml M plone/session/tktauth.py Repository: plone.session Branch: refs/heads/master Date: 2015-07-24T17:57:21+02:00 Author: agitator (agitator) <hpeter@agitator.com> Commit: plone/plone.session@4ac0377 Merge pull request #5 from plone/cleanup Cleanup: pep8 et al Files changed: M CHANGES.rst M README.rst M plone/session/__init__.py M plone/session/configure.zcml M plone/session/interfaces.py M plone/session/plugins/__init__.py M plone/session/plugins/session.py M plone/session/profiles.zcml M plone/session/resources.zcml M plone/session/tktauth.py M setup.py
vangheem
added a commit
that referenced
this pull request
Sep 4, 2015
Branch: refs/heads/master Date: 2015-09-03T16:28:38-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.subrequest@dc746c3 propagate IDisableCSRFProtection interface on subrequest to parent request object Files changed: M CHANGES.rst M plone/subrequest/__init__.py Repository: plone.subrequest Branch: refs/heads/master Date: 2015-09-04T12:24:00-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.subrequest@7cd4d41 Merge pull request #5 from plone/propagate-idisabledcsrfprotection propagate IDisableCSRFProtection interface on subrequest to parent request object Files changed: M CHANGES.rst M plone/subrequest/__init__.py
vangheem
added a commit
that referenced
this pull request
Sep 4, 2015
Branch: refs/heads/master Date: 2015-09-03T16:28:38-05:00 Author: vangheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.subrequest@dc746c3 propagate IDisableCSRFProtection interface on subrequest to parent request object Files changed: M CHANGES.rst M plone/subrequest/__init__.py Repository: plone.subrequest Branch: refs/heads/master Date: 2015-09-04T12:24:00-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.subrequest@7cd4d41 Merge pull request #5 from plone/propagate-idisabledcsrfprotection propagate IDisableCSRFProtection interface on subrequest to parent request object Files changed: M CHANGES.rst M plone/subrequest/__init__.py
vangheem
added a commit
that referenced
this pull request
Sep 14, 2015
Branch: refs/heads/master Date: 2015-09-13T22:14:08+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.event@b11b020 No need for unittest2 Since python 2.7 unittest2 was already merged with unittest. Files changed: M plone/event/tests/test_adapters.py M plone/event/tests/test_recurrence_int_sequence.py M plone/event/tests/test_recurrence_sequence_ical.py M plone/event/tests/test_recurrence_sequence_timedelta.py M setup.py Repository: plone.event Branch: refs/heads/master Date: 2015-09-13T21:35:00-05:00 Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com> Commit: plone/plone.event@7d92beb Merge pull request #5 from plone/no-unittest2 No need for unittest2 Files changed: M plone/event/tests/test_adapters.py M plone/event/tests/test_recurrence_int_sequence.py M plone/event/tests/test_recurrence_sequence_ical.py M plone/event/tests/test_recurrence_sequence_timedelta.py M setup.py
thet
added a commit
that referenced
this pull request
Oct 8, 2015
Branch: refs/heads/master Date: 2015-10-08T10:50:47+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.registry@f2ec427 Cleanup: Pep8, utf8 headers, whitespace fixes, readability, ReST-fixes, doc-style, etc. Files changed: M CHANGES.rst M README.rst M plone/__init__.py M plone/registry/__init__.py M plone/registry/events.py M plone/registry/events.rst M plone/registry/field.py M plone/registry/field.rst M plone/registry/fieldfactory.py M plone/registry/fieldref.py M plone/registry/record.py M plone/registry/recordsproxy.py M plone/registry/registry.py M plone/registry/registry.rst M plone/registry/tests.py M setup.py Repository: plone.registry Branch: refs/heads/master Date: 2015-10-08T13:21:26+02:00 Author: Johannes Raggam (thet) <raggam-nl@adm.at> Commit: plone/plone.registry@964b65c Merge pull request #5 from plone/jensens-cleanup Cleanup: Pep8, utf8 headers, whitespace fixes, readability, ReST-fixes… Files changed: M CHANGES.rst M README.rst M plone/__init__.py M plone/registry/__init__.py M plone/registry/events.py M plone/registry/events.rst M plone/registry/field.py M plone/registry/field.rst M plone/registry/fieldfactory.py M plone/registry/fieldref.py M plone/registry/record.py M plone/registry/recordsproxy.py M plone/registry/registry.py M plone/registry/registry.rst M plone/registry/tests.py M setup.py
thet
added a commit
that referenced
this pull request
Oct 8, 2015
Branch: refs/heads/master Date: 2015-10-08T10:50:47+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.registry@f2ec427 Cleanup: Pep8, utf8 headers, whitespace fixes, readability, ReST-fixes, doc-style, etc. Files changed: M CHANGES.rst M README.rst M plone/__init__.py M plone/registry/__init__.py M plone/registry/events.py M plone/registry/events.rst M plone/registry/field.py M plone/registry/field.rst M plone/registry/fieldfactory.py M plone/registry/fieldref.py M plone/registry/record.py M plone/registry/recordsproxy.py M plone/registry/registry.py M plone/registry/registry.rst M plone/registry/tests.py M setup.py Repository: plone.registry Branch: refs/heads/master Date: 2015-10-08T13:21:26+02:00 Author: Johannes Raggam (thet) <raggam-nl@adm.at> Commit: plone/plone.registry@964b65c Merge pull request #5 from plone/jensens-cleanup Cleanup: Pep8, utf8 headers, whitespace fixes, readability, ReST-fixes… Files changed: M CHANGES.rst M README.rst M plone/__init__.py M plone/registry/__init__.py M plone/registry/events.py M plone/registry/events.rst M plone/registry/field.py M plone/registry/field.rst M plone/registry/fieldfactory.py M plone/registry/fieldref.py M plone/registry/record.py M plone/registry/recordsproxy.py M plone/registry/registry.py M plone/registry/registry.rst M plone/registry/tests.py M setup.py
jensens
added a commit
that referenced
this pull request
Dec 30, 2015
Branch: refs/heads/master Date: 2015-12-30T11:43:52+01:00 Author: Alessandro Pisa (ale-rt) <alessandro.pisa@redturtle.it> Commit: plone/plone.cachepurging@bf5e85e Fix typo: shoudl -> should Files changed: M CHANGES.rst M plone/cachepurging/interfaces.py Repository: plone.cachepurging Branch: refs/heads/master Date: 2015-12-30T13:10:58+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.cachepurging@7714163 Merge pull request #5 from plone/fix-shoudl-typo Fix typo: shoudl -> should Files changed: M CHANGES.rst M plone/cachepurging/interfaces.py
jensens
added a commit
that referenced
this pull request
Dec 30, 2015
Branch: refs/heads/master Date: 2015-12-30T11:43:52+01:00 Author: Alessandro Pisa (ale-rt) <alessandro.pisa@redturtle.it> Commit: plone/plone.cachepurging@bf5e85e Fix typo: shoudl -> should Files changed: M CHANGES.rst M plone/cachepurging/interfaces.py Repository: plone.cachepurging Branch: refs/heads/master Date: 2015-12-30T13:10:58+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.cachepurging@7714163 Merge pull request #5 from plone/fix-shoudl-typo Fix typo: shoudl -> should Files changed: M CHANGES.rst M plone/cachepurging/interfaces.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 3, 2016
Branch: refs/heads/master Date: 2016-01-30T14:34:40+01:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.app.lockingbehavior@e45014c transform doctest to python-test skip in Zope4 due to crazy test-isolation-issues with newest zope.testrunner Running it leads to: File "/Users/philip/workspace/coredev/src/plone.supermodel/plone/supermodel/model.py", line 87, in walk for child in schema.dependents.keys(): ConfigurationExecutionError: <type 'exceptions.AttributeError'>: 'VerifyingAdapterLookup' object has no attribute 'dependents' in: File "/Users/philip/workspace/coredev/src/plone.supermodel/plone/supermodel/configure.zcml", line 9.4-12.10 <zcml:customAction handler=".model.finalizeSchemas" order="9999999" /> Files changed: A plone/app/lockingbehavior/tests/test_locking.py M plone/app/lockingbehavior/testing.py D plone/app/lockingbehavior/tests/locking.txt D plone/app/lockingbehavior/tests/test_doctests.py Repository: plone.app.lockingbehavior Branch: refs/heads/master Date: 2016-02-02T10:46:39+01:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.lockingbehavior@1bc875e changelog missing Files changed: M CHANGES.rst M plone/app/lockingbehavior/tests/test_locking.py Repository: plone.app.lockingbehavior Branch: refs/heads/master Date: 2016-02-03T09:56:25+01:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.app.lockingbehavior@e2a7baa Merge pull request #5 from plone/thet-zope4 Zope4 Files changed: A plone/app/lockingbehavior/tests/test_locking.py M CHANGES.rst M plone/app/lockingbehavior/testing.py D plone/app/lockingbehavior/tests/locking.txt D plone/app/lockingbehavior/tests/test_doctests.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 15, 2016
Branch: refs/heads/master Date: 2016-02-15T16:35:50+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@aaf9110 better caching Files changed: M .travis.yml Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T16:36:16+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@504164e isort Files changed: A .isort.cfg M bootstrap.py M plone/tiles/absoluteurl.py M plone/tiles/data.py M plone/tiles/esi.py M plone/tiles/fieldtypeconverters.py M plone/tiles/interfaces.py M plone/tiles/meta.py M plone/tiles/tests.py M plone/tiles/type.py M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T16:36:46+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@1d01a51 autopep8 -ir . Files changed: M bootstrap.py M plone/tiles/tests.py Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T16:37:07+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@ac34e21 autopep8 -ira . Files changed: M plone/tiles/data.py Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T16:46:10+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@9a51936 do not touch bootstrap Files changed: M bootstrap.py Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T17:07:47+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@be7ad79 dont fight with setuptools versions Files changed: M test-4.2.x.cfg M test-4.3.x.cfg M test-5.x.cfg Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T17:21:03+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@c87ed5b doc style Files changed: M README.rst Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T17:21:49+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@1a554f5 zca decorators et al Files changed: M CHANGELOG.rst M plone/__init__.py M plone/tiles/absoluteurl.py M plone/tiles/fieldtypeconverters.py M plone/tiles/tile.py M plone/tiles/type.py M setup.py Repository: plone.tiles Branch: refs/heads/master Date: 2016-02-15T17:55:57+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.tiles@1ada11b Merge pull request #5 from plone/cleanup Cleanup Files changed: A .isort.cfg M .travis.yml M CHANGELOG.rst M README.rst M bootstrap.py M plone/__init__.py M plone/tiles/absoluteurl.py M plone/tiles/data.py M plone/tiles/esi.py M plone/tiles/fieldtypeconverters.py M plone/tiles/interfaces.py M plone/tiles/meta.py M plone/tiles/tests.py M plone/tiles/tile.py M plone/tiles/type.py M setup.py M test-4.2.x.cfg M test-4.3.x.cfg M test-5.x.cfg
mister-roboto
pushed a commit
that referenced
this pull request
Jun 13, 2016
Branch: refs/heads/master Date: 2016-06-13T09:43:27+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.transformchain@4b52a9d Added events to notifiy before/after all/single transform(s) are executed Files changed: A plone/transformchain/events.py M CHANGES.rst M plone/transformchain/interfaces.py M plone/transformchain/transformer.py Repository: plone.transformchain Branch: refs/heads/master Date: 2016-06-13T13:39:29+02:00 Author: agitator (agitator) <hpeter@agitator.com> Commit: plone/plone.transformchain@2594e4f Merge pull request #5 from plone/events Added events to notifiy before/after all/single transform(s) are executed Files changed: A plone/transformchain/events.py M CHANGES.rst M plone/transformchain/interfaces.py M plone/transformchain/transformer.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 1, 2016
Branch: refs/heads/master Date: 2016-07-01T13:16:54+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.intid@201e482 setuphandler now can deal with could-not-adapt exception Files changed: M CHANGES.rst M plone/app/intid/setuphandlers.py Repository: plone.app.intid Branch: refs/heads/master Date: 2016-07-01T15:29:09+02:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.intid@d32258b Merge pull request #5 from plone/fix-setuphandler-could-not-adapt setuphandler now can deal with could-not-adapt exception Files changed: M CHANGES.rst M plone/app/intid/setuphandlers.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 1, 2016
Branch: refs/heads/master Date: 2016-07-01T13:16:54+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.app.intid@201e482 setuphandler now can deal with could-not-adapt exception Files changed: M CHANGES.rst M plone/app/intid/setuphandlers.py Repository: plone.app.intid Branch: refs/heads/master Date: 2016-07-01T15:29:09+02:00 Author: Johannes Raggam (thet) <thetetet@gmail.com> Commit: plone/plone.app.intid@d32258b Merge pull request #5 from plone/fix-setuphandler-could-not-adapt setuphandler now can deal with could-not-adapt exception Files changed: M CHANGES.rst M plone/app/intid/setuphandlers.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 6, 2016
Branch: refs/heads/master Date: 2016-07-05T23:15:09+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.contentrules@245e2bb 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/contentrules/engine/assignments.py M plone/contentrules/engine/executor.py M plone/contentrules/engine/storage.py M plone/contentrules/rule/element.py M plone/contentrules/rule/eventvocab.py M plone/contentrules/rule/rule.py M plone/contentrules/rule/tests/elements.py Repository: plone.contentrules Branch: refs/heads/master Date: 2016-07-07T00:50:52+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.contentrules@4ed67d1 Merge pull request #5 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/contentrules/engine/assignments.py M plone/contentrules/engine/executor.py M plone/contentrules/engine/storage.py M plone/contentrules/rule/element.py M plone/contentrules/rule/eventvocab.py M plone/contentrules/rule/rule.py M plone/contentrules/rule/tests/elements.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 6, 2016
Branch: refs/heads/master Date: 2016-07-05T23:15:09+02:00 Author: Gil Forcada (gforcada) <gforcada@gnome.org> Commit: plone/plone.contentrules@245e2bb 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/contentrules/engine/assignments.py M plone/contentrules/engine/executor.py M plone/contentrules/engine/storage.py M plone/contentrules/rule/element.py M plone/contentrules/rule/eventvocab.py M plone/contentrules/rule/rule.py M plone/contentrules/rule/tests/elements.py Repository: plone.contentrules Branch: refs/heads/master Date: 2016-07-07T00:50:52+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.contentrules@4ed67d1 Merge pull request #5 from plone/gforcada-use-zope-decorators Use zope.interface decorator Files changed: M CHANGES.rst M plone/contentrules/engine/assignments.py M plone/contentrules/engine/executor.py M plone/contentrules/engine/storage.py M plone/contentrules/rule/element.py M plone/contentrules/rule/eventvocab.py M plone/contentrules/rule/rule.py M plone/contentrules/rule/tests/elements.py
mister-roboto
pushed a commit
that referenced
this pull request
Jan 5, 2018
Branch: refs/heads/master Date: 2018-01-05T00:01:59+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.uuid@08e1719 Fix package dependencies Files changed: M CHANGES.rst M setup.py Repository: plone.uuid Branch: refs/heads/master Date: 2018-01-05T17:44:39+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.uuid@a1b8b19 Merge pull request #5 from plone/gforcada-patch-1 Fix package dependencies Files changed: M CHANGES.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jan 5, 2018
Branch: refs/heads/master Date: 2018-01-05T00:01:59+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.uuid@08e1719 Fix package dependencies Files changed: M CHANGES.rst M setup.py Repository: plone.uuid Branch: refs/heads/master Date: 2018-01-05T17:44:39+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.uuid@a1b8b19 Merge pull request #5 from plone/gforcada-patch-1 Fix package dependencies Files changed: M CHANGES.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jan 5, 2018
Branch: refs/heads/master Date: 2018-01-05T00:01:59+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.uuid@08e1719 Fix package dependencies Files changed: M CHANGES.rst M setup.py Repository: plone.uuid Branch: refs/heads/master Date: 2018-01-05T17:44:39+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.uuid@a1b8b19 Merge pull request #5 from plone/gforcada-patch-1 Fix package dependencies Files changed: M CHANGES.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jan 5, 2018
Branch: refs/heads/master Date: 2018-01-05T00:01:59+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.uuid@08e1719 Fix package dependencies Files changed: M CHANGES.rst M setup.py Repository: plone.uuid Branch: refs/heads/master Date: 2018-01-05T17:44:39+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.uuid@a1b8b19 Merge pull request #5 from plone/gforcada-patch-1 Fix package dependencies Files changed: M CHANGES.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jun 10, 2018
Branch: refs/heads/master Date: 2018-06-10T12:35:33+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/five.intid@188e258 Fix doctests in Python3 Files changed: M CHANGES.rst M five/intid/tests.py Repository: five.intid Branch: refs/heads/master Date: 2018-06-10T22:14:27+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/five.intid@a0e1995 Merge pull request #5 from plone/python3 Fix doctests in Python 3 Files changed: M CHANGES.rst M five/intid/tests.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 9, 2018
Branch: refs/heads/master Date: 2018-07-08T23:34:34+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@3b5f204 Remove unused dependency Files changed: M Products/ExtendedPathIndex/tests/testExtendedPathIndex.py Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-08T23:35:07+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@78b1102 State dependencies correctly Use z3c.dependencychecker to fix them. Files changed: A pyproject.toml M setup.py Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-08T23:44:08+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@3db35e4 Update CHANGES Files changed: M CHANGES.rst Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-09T09:48:30+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@6269514 Merge pull request #5 from plone/fix-dependencies Fix dependencies Files changed: A pyproject.toml M CHANGES.rst M Products/ExtendedPathIndex/tests/testExtendedPathIndex.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 9, 2018
Branch: refs/heads/master Date: 2018-07-08T23:34:34+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@3b5f204 Remove unused dependency Files changed: M Products/ExtendedPathIndex/tests/testExtendedPathIndex.py Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-08T23:35:07+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@78b1102 State dependencies correctly Use z3c.dependencychecker to fix them. Files changed: A pyproject.toml M setup.py Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-08T23:44:08+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@3db35e4 Update CHANGES Files changed: M CHANGES.rst Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-09T09:48:30+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@6269514 Merge pull request #5 from plone/fix-dependencies Fix dependencies Files changed: A pyproject.toml M CHANGES.rst M Products/ExtendedPathIndex/tests/testExtendedPathIndex.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 9, 2018
Branch: refs/heads/master Date: 2018-07-08T23:34:34+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@3b5f204 Remove unused dependency Files changed: M Products/ExtendedPathIndex/tests/testExtendedPathIndex.py Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-08T23:35:07+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@78b1102 State dependencies correctly Use z3c.dependencychecker to fix them. Files changed: A pyproject.toml M setup.py Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-08T23:44:08+02:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@3db35e4 Update CHANGES Files changed: M CHANGES.rst Repository: Products.ExtendedPathIndex Branch: refs/heads/master Date: 2018-07-09T09:48:30+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/Products.ExtendedPathIndex@6269514 Merge pull request #5 from plone/fix-dependencies Fix dependencies Files changed: A pyproject.toml M CHANGES.rst M Products/ExtendedPathIndex/tests/testExtendedPathIndex.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 17, 2018
Branch: refs/heads/master Date: 2018-07-17T10:54:18+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.indexer@9c41008 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py Repository: plone.indexer Branch: refs/heads/master Date: 2018-07-17T18:15:58+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.indexer@d295968 Merge pull request #5 from plone/python3 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 17, 2018
Branch: refs/heads/master Date: 2018-07-17T10:54:18+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.indexer@9c41008 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py Repository: plone.indexer Branch: refs/heads/master Date: 2018-07-17T18:15:58+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.indexer@d295968 Merge pull request #5 from plone/python3 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 17, 2018
Branch: refs/heads/master Date: 2018-07-17T10:54:18+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.indexer@9c41008 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py Repository: plone.indexer Branch: refs/heads/master Date: 2018-07-17T18:15:58+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.indexer@d295968 Merge pull request #5 from plone/python3 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 17, 2018
Branch: refs/heads/master Date: 2018-07-17T10:54:18+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.indexer@9c41008 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py Repository: plone.indexer Branch: refs/heads/master Date: 2018-07-17T18:15:58+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.indexer@d295968 Merge pull request #5 from plone/python3 fix tests for py3 Files changed: M CHANGES.rst M plone/indexer/README.rst M plone/indexer/tests.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 19, 2018
Branch: refs/heads/master Date: 2018-05-25T09:54:31+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.caching@0383357 fix caching and tests in python 3 Files changed: M plone/caching/tests/test_hooks.py M plone/caching/utils.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-17T23:45:34+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.caching@c66eac1 Fix more tests Files changed: M plone/caching/tests/test_operations.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-17T23:45:49+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.caching@b17a1b9 Added a changelog line Files changed: M CHANGES.rst Repository: plone.caching Branch: refs/heads/master Date: 2018-09-18T15:28:16+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.caching@78bd33d add changenote and classifiers Files changed: M CHANGES.rst M setup.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-19T14:15:09+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.caching@b4e7d2f Merge pull request #5 from plone/python3 fix caching and tests in python 3 Files changed: M CHANGES.rst M plone/caching/tests/test_hooks.py M plone/caching/tests/test_operations.py M plone/caching/utils.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 19, 2018
Branch: refs/heads/master Date: 2018-05-25T09:54:31+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.caching@0383357 fix caching and tests in python 3 Files changed: M plone/caching/tests/test_hooks.py M plone/caching/utils.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-17T23:45:34+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.caching@c66eac1 Fix more tests Files changed: M plone/caching/tests/test_operations.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-17T23:45:49+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.caching@b17a1b9 Added a changelog line Files changed: M CHANGES.rst Repository: plone.caching Branch: refs/heads/master Date: 2018-09-18T15:28:16+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.caching@78bd33d add changenote and classifiers Files changed: M CHANGES.rst M setup.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-19T14:15:09+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.caching@b4e7d2f Merge pull request #5 from plone/python3 fix caching and tests in python 3 Files changed: M CHANGES.rst M plone/caching/tests/test_hooks.py M plone/caching/tests/test_operations.py M plone/caching/utils.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 19, 2018
Branch: refs/heads/master Date: 2018-05-25T09:54:31+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.caching@0383357 fix caching and tests in python 3 Files changed: M plone/caching/tests/test_hooks.py M plone/caching/utils.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-17T23:45:34+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.caching@c66eac1 Fix more tests Files changed: M plone/caching/tests/test_operations.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-17T23:45:49+02:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.caching@b17a1b9 Added a changelog line Files changed: M CHANGES.rst Repository: plone.caching Branch: refs/heads/master Date: 2018-09-18T15:28:16+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.caching@78bd33d add changenote and classifiers Files changed: M CHANGES.rst M setup.py Repository: plone.caching Branch: refs/heads/master Date: 2018-09-19T14:15:09+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.caching@b4e7d2f Merge pull request #5 from plone/python3 fix caching and tests in python 3 Files changed: M CHANGES.rst M plone/caching/tests/test_hooks.py M plone/caching/tests/test_operations.py M plone/caching/utils.py M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 19, 2018
Branch: refs/heads/master Date: 2018-06-26T18:39:31+02:00 Author: David Glick (davisagli) <david@glicksoftware.com> Commit: plone/plone.recipe.alltests@3abfed4 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py Repository: plone.recipe.alltests Branch: refs/heads/master Date: 2018-09-19T14:44:39+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.recipe.alltests@655ccb6 Merge pull request #5 from plone/python3 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 19, 2018
Branch: refs/heads/master Date: 2018-06-26T18:39:31+02:00 Author: David Glick (davisagli) <david@glicksoftware.com> Commit: plone/plone.recipe.alltests@3abfed4 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py Repository: plone.recipe.alltests Branch: refs/heads/master Date: 2018-09-19T14:44:39+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.recipe.alltests@655ccb6 Merge pull request #5 from plone/python3 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 19, 2018
Branch: refs/heads/master Date: 2018-06-26T18:39:31+02:00 Author: David Glick (davisagli) <david@glicksoftware.com> Commit: plone/plone.recipe.alltests@3abfed4 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py Repository: plone.recipe.alltests Branch: refs/heads/master Date: 2018-09-19T14:44:39+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.recipe.alltests@655ccb6 Merge pull request #5 from plone/python3 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py
mister-roboto
pushed a commit
that referenced
this pull request
Sep 19, 2018
Branch: refs/heads/master Date: 2018-06-26T18:39:31+02:00 Author: David Glick (davisagli) <david@glicksoftware.com> Commit: plone/plone.recipe.alltests@3abfed4 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py Repository: plone.recipe.alltests Branch: refs/heads/master Date: 2018-09-19T14:44:39+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.recipe.alltests@655ccb6 Merge pull request #5 from plone/python3 Fix for python 3 Files changed: M CHANGES.rst M src/plone/recipe/alltests/__init__.py M src/plone/recipe/alltests/runner.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 17, 2018
Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/archetypes.schemaextender@ef6fb6a Switch to new TestCase using AT after PloneTestcase is now DX. Files changed: M CHANGES.rst M archetypes/schemaextender/tests/base.py M archetypes/schemaextender/tests/testIntegration.py Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/archetypes.schemaextender@3c6bde8 wip: fix test Files changed: M archetypes/schemaextender/usage.txt Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/archetypes.schemaextender@7222a19 Use p.a.testing.push/popGlobalRegistry Instead of trying own cleanup and leaking stuff afterwads. Also did a cleanup while at it. Files changed: M archetypes/schemaextender/tests/__init__.py M archetypes/schemaextender/tests/base.py M archetypes/schemaextender/tests/mocks.py M archetypes/schemaextender/tests/testAccessor.py M archetypes/schemaextender/tests/testIntegration.py M archetypes/schemaextender/tests/testOrdering.py M archetypes/schemaextender/tests/testSchemaFactory.py Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/archetypes.schemaextender@1300f60 try to fix layer leaking 'ho' Files changed: M archetypes/schemaextender/tests/base.py Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/archetypes.schemaextender@2d15d84 use zca.UNIT_TESTING Files changed: M archetypes/schemaextender/tests/testAccessor.py M archetypes/schemaextender/tests/testIntegration.py Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/archetypes.schemaextender@5a489fa dont leak extender adapter Files changed: M archetypes/schemaextender/tests/testAccessor.py Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/archetypes.schemaextender@3319551 fix extender adapter leaking and cleanup code Files changed: M archetypes/schemaextender/tests/base.py M archetypes/schemaextender/tests/testAccessor.py Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:44:34+02:00 Author: Peter Mathis (petschki) <peter.mathis@kombinat.at> Commit: plone/archetypes.schemaextender@b7453eb remove layer and manually push/pop global registry Files changed: M archetypes/schemaextender/tests/base.py Repository: archetypes.schemaextender Branch: refs/heads/master Date: 2018-10-17T10:45:46+02:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/archetypes.schemaextender@44c6fc3 Merge pull request #5 from plone/testlayer Switch to new TestCase using AT after PloneTestcase is now DX. Files changed: M CHANGES.rst M archetypes/schemaextender/tests/__init__.py M archetypes/schemaextender/tests/base.py M archetypes/schemaextender/tests/mocks.py M archetypes/schemaextender/tests/testAccessor.py M archetypes/schemaextender/tests/testIntegration.py M archetypes/schemaextender/tests/testOrdering.py M archetypes/schemaextender/tests/testSchemaFactory.py M archetypes/schemaextender/usage.txt
mister-roboto
pushed a commit
that referenced
this pull request
Oct 22, 2018
Branch: refs/heads/master Date: 2018-10-06T12:32:28+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@06eb5f3 Use check_id function from Plone. About to be introduced in Plone 5.1, replacing the check_id skin script. Files changed: A news/4.bugfix M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T12:32:28+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@5a988e3 Factor out a fallback_check_id function from the IdValidator. Files changed: M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T12:32:28+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@bde3272 Use check_id method if it exists. Mostly done because this makes it easier to test. But this should help for cases where someone has overriden the check_id script, or is really using a custom check_id method. Files changed: M Products/validation/tests/test_validation.py M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T15:54:11+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@3eda462 Do not explicitly test CMFPlone.utils.check_id on 5.1. On 5.1, the context will always have a check_id attribute (the script), so this situation should not happen. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T16:11:32+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@1b45452 Fixed calling check_id. When check_id is an attribute, the instance is already implicitly passed as 'self'. Files changed: M Products/validation/tests/test_validation.py M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T16:22:57+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@3335c24 Test the IdValidator better. Test all three scenarios in their own test function: basic check_id attribute/script, new Plone utils.check_id function, fallback function. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-08T10:53:08+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@ee99081 Do more checks on Plone 5.1, and check for renaming an item. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-08T18:06:03+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@e657c2a IdValidator: fix tests on Plone 5.2. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-22T21:22:24+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@4fd8af0 Merge pull request #5 from plone/use-check-id-function-from-plone Use check id function from plone Files changed: A news/4.bugfix M Products/validation/tests/test_validation.py M Products/validation/validators/IdValidator.py
mister-roboto
pushed a commit
that referenced
this pull request
Oct 22, 2018
Branch: refs/heads/master Date: 2018-10-06T12:32:28+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@06eb5f3 Use check_id function from Plone. About to be introduced in Plone 5.1, replacing the check_id skin script. Files changed: A news/4.bugfix M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T12:32:28+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@5a988e3 Factor out a fallback_check_id function from the IdValidator. Files changed: M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T12:32:28+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@bde3272 Use check_id method if it exists. Mostly done because this makes it easier to test. But this should help for cases where someone has overriden the check_id script, or is really using a custom check_id method. Files changed: M Products/validation/tests/test_validation.py M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T15:54:11+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@3eda462 Do not explicitly test CMFPlone.utils.check_id on 5.1. On 5.1, the context will always have a check_id attribute (the script), so this situation should not happen. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T16:11:32+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@1b45452 Fixed calling check_id. When check_id is an attribute, the instance is already implicitly passed as 'self'. Files changed: M Products/validation/tests/test_validation.py M Products/validation/validators/IdValidator.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-06T16:22:57+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@3335c24 Test the IdValidator better. Test all three scenarios in their own test function: basic check_id attribute/script, new Plone utils.check_id function, fallback function. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-08T10:53:08+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@ee99081 Do more checks on Plone 5.1, and check for renaming an item. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-08T18:06:03+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@e657c2a IdValidator: fix tests on Plone 5.2. Files changed: M Products/validation/tests/test_validation.py Repository: Products.validation Branch: refs/heads/master Date: 2018-10-22T21:22:24+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.validation@4fd8af0 Merge pull request #5 from plone/use-check-id-function-from-plone Use check id function from plone Files changed: A news/4.bugfix M Products/validation/tests/test_validation.py M Products/validation/validators/IdValidator.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 10, 2019
Branch: refs/heads/master Date: 2019-02-08T17:29:36+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.keyring@f00dfe0 Avoid deprecation warnings Files changed: M plone/keyring/tests/testKeymanager.py M plone/keyring/tests/testKeyring.py Repository: plone.keyring Branch: refs/heads/master Date: 2019-02-08T17:30:31+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.keyring@84d3165 Add news entry Files changed: A news/5.bugfix Repository: plone.keyring Branch: refs/heads/master Date: 2019-02-10T16:53:35+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.keyring@5426464 Merge pull request #5 from plone/deprecation-warnings Avoid deprecation warnings Files changed: A news/5.bugfix M plone/keyring/tests/testKeymanager.py M plone/keyring/tests/testKeyring.py
mister-roboto
pushed a commit
that referenced
this pull request
Feb 10, 2019
Branch: refs/heads/master Date: 2019-02-08T17:29:36+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.keyring@f00dfe0 Avoid deprecation warnings Files changed: M plone/keyring/tests/testKeymanager.py M plone/keyring/tests/testKeyring.py Repository: plone.keyring Branch: refs/heads/master Date: 2019-02-08T17:30:31+01:00 Author: Gil Forcada (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.keyring@84d3165 Add news entry Files changed: A news/5.bugfix Repository: plone.keyring Branch: refs/heads/master Date: 2019-02-10T16:53:35+01:00 Author: Jens W. Klein (jensens) <jk@kleinundpartner.at> Commit: plone/plone.keyring@5426464 Merge pull request #5 from plone/deprecation-warnings Avoid deprecation warnings Files changed: A news/5.bugfix M plone/keyring/tests/testKeymanager.py M plone/keyring/tests/testKeyring.py
mister-roboto
pushed a commit
that referenced
this pull request
Apr 11, 2019
Branch: refs/heads/master Date: 2019-04-09T13:09:42+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.z3cform@507647c Minor fixes Mostly to check if mr.roboto picks the changes. Files changed: M setup.py Repository: plone.z3cform Branch: refs/heads/master Date: 2019-04-09T13:10:54+02:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.z3cform@b8065f5 Update CHANGES.rst Files changed: M CHANGES.rst Repository: plone.z3cform Branch: refs/heads/master Date: 2019-04-10T23:31:16+02:00 Author: Peter Mathis (petschki) <petschki@users.noreply.github.com> Commit: plone/plone.z3cform@a73df6c Merge branch 'master' into gforcada-patch-1 Files changed: M CHANGES.rst M setup.py Repository: plone.z3cform Branch: refs/heads/master Date: 2019-04-11T09:42:00+02:00 Author: Peter Mathis (petschki) <petschki@users.noreply.github.com> Commit: plone/plone.z3cform@6cedb1e Merge pull request #5 from plone/gforcada-patch-1 Minor fixes Files changed: M CHANGES.rst M setup.py
mister-roboto
pushed a commit
that referenced
this pull request
Jul 11, 2021
Branch: refs/heads/master Date: 2021-07-10T22:30:30+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.isurlinportal@f62b819 Move to GitHub Actions and test Plone 5.0. Files changed: A .github/workflows/tests.yml M tox.ini D .travis.yml Repository: Products.isurlinportal Branch: refs/heads/master Date: 2021-07-11T12:59:49+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/Products.isurlinportal@9f46523 Merge pull request #5 from plone/maurits/github-actions-tox Move to GitHub Actions and test Plone 5.0. Files changed: A .github/workflows/tests.yml M tox.ini D .travis.yml
mister-roboto
pushed a commit
that referenced
this pull request
Jul 11, 2021
Branch: refs/heads/master Date: 2021-07-10T22:30:30+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/Products.isurlinportal@f62b819 Move to GitHub Actions and test Plone 5.0. Files changed: A .github/workflows/tests.yml M tox.ini D .travis.yml Repository: Products.isurlinportal Branch: refs/heads/master Date: 2021-07-11T12:59:49+02:00 Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl> Commit: plone/Products.isurlinportal@9f46523 Merge pull request #5 from plone/maurits/github-actions-tox Move to GitHub Actions and test Plone 5.0. Files changed: A .github/workflows/tests.yml M tox.ini D .travis.yml
mister-roboto
pushed a commit
that referenced
this pull request
Jun 16, 2022
Branch: refs/heads/main Date: 2022-04-19T17:26:42+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@19a3efc Add image srcset definition and json schema Files changed: A news/5.feature M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-04-19T17:28:00+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@2799df3 Allow picture tag and loading attributes in HTMLFilter Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-04-19T19:13:23+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@b4ba912 Add hideInEditor property in IMAGE_SRCSET_SCHEMA Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-04-20T14:43:16+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.base@f1cfd24 Allow srcset attribute in HTMLFilter. Sorted the attributes alphabetically. Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-04-22T15:20:30+03:00 Author: Maik Derstappen (MrTango) <md@derico.de> Commit: plone/plone.base@566b2b0 Update src/plone/base/interfaces/controlpanel.py Co-authored-by: Alessandro Pisa <alessandro.pisa@gmail.com> Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-04-25T20:17:46+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@552be4f move IMAGE_SRCSET_SCHEMA into inteface defintion and simplify defaults Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T11:36:08+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@0e0881a use additionalScales for every source Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:09:28+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@5a4f2d4 Add image srcset definition and json schema Files changed: A news/5.feature M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:09:28+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@33814e5 Allow picture tag and loading attributes in HTMLFilter Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:09:28+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@c040156 Add hideInEditor property in IMAGE_SRCSET_SCHEMA Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:09:28+03:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.base@865f903 Allow srcset attribute in HTMLFilter. Sorted the attributes alphabetically. Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:09:28+03:00 Author: Maik Derstappen (MrTango) <md@derico.de> Commit: plone/plone.base@bd91ba1 Update src/plone/base/interfaces/controlpanel.py Co-authored-by: Alessandro Pisa <alessandro.pisa@gmail.com> Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:09:28+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@98afe3f move IMAGE_SRCSET_SCHEMA into inteface defintion and simplify defaults Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:09:28+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@0506332 use additionalScales for every source Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T12:27:45+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@951e867 Merge remote-tracking branch 'remotes/origin/mrtango-image-handling-sourcesets-settings' into mrtango-image-handling-sourcesets-settings Files changed: Repository: plone.base Branch: refs/heads/main Date: 2022-05-05T18:04:19+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@ff2de27 rename sourceset to source and remove exlucludeScales param Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-08T20:58:58+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@71c957f revert naming change of sourceset Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-09T20:48:29+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@95498f9 isort fix Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-18T12:54:06+02:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@6205b85 Add additionalScales in default settings Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T12:58:19+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@1ee0b76 Add image srcset definition and json schema Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T12:59:18+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@7b93e61 Add hideInEditor property in IMAGE_SRCSET_SCHEMA Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T12:59:41+03:00 Author: Maik Derstappen (MrTango) <md@derico.de> Commit: plone/plone.base@f32ef4e Update src/plone/base/interfaces/controlpanel.py Co-authored-by: Alessandro Pisa <alessandro.pisa@gmail.com> Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T13:00:06+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@47b4304 move IMAGE_SRCSET_SCHEMA into inteface defintion and simplify defaults Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T13:00:08+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@efd1e06 rename sourceset to source and remove exlucludeScales param Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T13:00:08+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@f92f1aa revert naming change of sourceset Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T13:00:08+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@aa37bf4 isort fix Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T13:00:08+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@18c55e1 Add additionalScales in default settings Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-05-27T13:03:07+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@5439896 Merge remote-tracking branch 'remotes/origin/mrtango-image-handling-sourcesets-settings' into mrtango-image-handling-sourcesets-settings Files changed: Repository: plone.base Branch: refs/heads/main Date: 2022-06-07T17:27:35+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@09457a8 rename image_srcsets to picture_variants Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-06-08T18:10:24+03:00 Author: MrTango (MrTango) <md@derico.de> Commit: plone/plone.base@fc2b7d9 allow sizes attribute in hTML filter Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-06-16T14:20:47+02:00 Author: Philip Bauer (pbauer) <bauer@starzel.de> Commit: plone/plone.base@16dc0e1 remove duplicate scale for small Files changed: M src/plone/base/interfaces/controlpanel.py Repository: plone.base Branch: refs/heads/main Date: 2022-06-16T18:53:42+02:00 Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org> Commit: plone/plone.base@a5243b8 Merge pull request #5 from plone/mrtango-image-handling-sourcesets-settings Add image srcset definition and json schema Files changed: A news/5.feature M src/plone/base/interfaces/controlpanel.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 5, 2023
Branch: refs/heads/master Date: 2023-02-09T16:30:08+01:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.portlets@d789003 Fix deprecation warnings Fixes #5 Files changed: A news/5.bugfix M plone/portlets/README.txt M plone/portlets/interfaces.py Repository: plone.portlets Branch: refs/heads/master Date: 2023-03-05T21:56:06+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.portlets@8e94ba9 Merge pull request #6 from plone/5.bugfix Fix deprecation warnings Files changed: A news/5.bugfix M plone/portlets/README.txt M plone/portlets/interfaces.py
mister-roboto
pushed a commit
that referenced
this pull request
Mar 5, 2023
Branch: refs/heads/master Date: 2023-02-09T16:30:08+01:00 Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com> Commit: plone/plone.portlets@d789003 Fix deprecation warnings Fixes #5 Files changed: A news/5.bugfix M plone/portlets/README.txt M plone/portlets/interfaces.py Repository: plone.portlets Branch: refs/heads/master Date: 2023-03-05T21:56:06+01:00 Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com> Commit: plone/plone.portlets@8e94ba9 Merge pull request #6 from plone/5.bugfix Fix deprecation warnings Files changed: A news/5.bugfix M plone/portlets/README.txt M plone/portlets/interfaces.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.
No description provided.