Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.3: remove all svn references, remove hudson, zopetrunk, cmftrunk #109

Merged
merged 9 commits into from
Sep 11, 2015

Conversation

mauritsvanrees
Copy link
Member

Sigh, I had written down a nice text, but I lost connection and the text got lost on submission... Slightly less long then.

I have moved all remaining subversion repos to github. All references to subversion are gone from the sources. zopetrunk.cfg and cmftrunk.cfg seem useless on 4.3 and are gone.

@tisto @gforcada I have removed hudson.cfg as this seems unused. Is that good?

It is not used anywhere in Plone 4.0 or higher.
We are not going to do anything with this in Plone 4.3.
Plus, it points to svn.
Not useful for Plone 4.3.
Surely this has been replaced by jenkins.cfg?
None of our repositories uses subversion anymore.
@mauritsvanrees
Copy link
Member Author

@mauritsvanrees
Copy link
Member Author

Jenkins is happy.

vangheem added a commit that referenced this pull request Sep 11, 2015
4.3: remove all svn references, remove hudson, zopetrunk, cmftrunk
@vangheem vangheem merged commit ee8ebde into 4.3 Sep 11, 2015
@vangheem vangheem deleted the maurits-43-cleanup-svn branch September 11, 2015 22:19
@gforcada
Copy link
Member

🎉

mister-roboto pushed a commit that referenced this pull request Sep 19, 2016
Branch: refs/heads/2.1.x
Date: 2016-09-19T11:26:14+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.content@8abb138

Apply security hotfix 20160830 for folder factories redirection.

Files changed:
A plone/app/content/tests/test_folder.py
M CHANGES.txt
M plone/app/content/browser/folderfactories.py
Repository: plone.app.content
Branch: refs/heads/2.1.x
Date: 2016-09-19T12:42:34+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.content@077f019

Merge pull request #109 from plone/apply-hotfix-20160830-21

Apply security hotfix 20160830 for folder factories redirection. [2.1]

Files changed:
A plone/app/content/tests/test_folder.py
M CHANGES.txt
M plone/app/content/browser/folderfactories.py
mister-roboto pushed a commit that referenced this pull request Dec 22, 2016
Branch: refs/heads/master
Date: 2016-09-20T13:05:24+02:00
Author: Gil Forcada (gforcada) <gforcada@gnome.org>
Commit: plone/plone.app.discussion@26a21a1

Reindex comments when they are modified

Files changed:
M CHANGES.rst
M plone/app/discussion/browser/comment.py
M plone/app/discussion/subscribers.py
M plone/app/discussion/subscribers.zcml
M plone/app/discussion/tests/test_catalog.py
Repository: plone.app.discussion
Branch: refs/heads/master
Date: 2016-12-22T18:34:50+01:00
Author: Alessandro Pisa (ale-rt) <alessandro.pisa@gmail.com>
Commit: plone/plone.app.discussion@17fd1b0

Merge pull request #109 from derFreitag/gforcada-patch-1

Reindex comments when they are modified

Files changed:
M CHANGES.rst
M plone/app/discussion/browser/comment.py
M plone/app/discussion/subscribers.py
M plone/app/discussion/subscribers.zcml
M plone/app/discussion/tests/test_catalog.py
mister-roboto pushed a commit that referenced this pull request Dec 22, 2016
Branch: refs/heads/master
Date: 2016-09-20T13:05:24+02:00
Author: Gil Forcada (gforcada) <gforcada@gnome.org>
Commit: plone/plone.app.discussion@26a21a1

Reindex comments when they are modified

Files changed:
M CHANGES.rst
M plone/app/discussion/browser/comment.py
M plone/app/discussion/subscribers.py
M plone/app/discussion/subscribers.zcml
M plone/app/discussion/tests/test_catalog.py
Repository: plone.app.discussion
Branch: refs/heads/master
Date: 2016-12-22T18:34:50+01:00
Author: Alessandro Pisa (ale-rt) <alessandro.pisa@gmail.com>
Commit: plone/plone.app.discussion@17fd1b0

Merge pull request #109 from derFreitag/gforcada-patch-1

Reindex comments when they are modified

Files changed:
M CHANGES.rst
M plone/app/discussion/browser/comment.py
M plone/app/discussion/subscribers.py
M plone/app/discussion/subscribers.zcml
M plone/app/discussion/tests/test_catalog.py
mister-roboto pushed a commit that referenced this pull request Apr 6, 2017
Branch: refs/heads/master
Date: 2017-04-06T11:14:22+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.upgrade@a0a4e19

Fixed ImportError when `Products.ATContentTypes` is not available.

This happens when you only have the `Products.CMFPlone` egg and not the `Plone` egg.
See https://community.plone.org/t/plone-5-1b3-soft-released/3936/5
Traceback was:

  File "/home/vagrant/Eggs/plone.app.upgrade-2.0.2-py2.7.egg/plone/app/upgrade/__init__.py", line 111, in &lt;module&gt;
      from Products.ATContentTypes.tool import metadata
   zope.configuration.xmlconfig.ZopeXMLConfigurationError: File "/home/vagrant/www.fhnw.ch/parts/instance1v/etc/site.zcml", line 12.2-12.39
     ZopeXMLConfigurationError: File "/home/vagrant/Eggs/Products.CMFPlone-5.1b3-py2.7.egg/Products/CMFPlone/meta.zcml", line 47.4-51.10
     ImportError: No module named ATContentTypes.tool

I fixed that with the already available atcontenttypes_bbb module.

Then the next traceback surfaced:

    ZopeXMLConfigurationError: File "/Users/maurits/community/plone-coredev/5.1/src/plone.app.upgrade/plone/app/upgrade/v40/configure.zcml", line 172.8-176.14
    ConfigurationError: ('Invalid value for', 'handler', "ImportError: Couldn't import Products.CMFDefault.upgrade.to22, No module named upgrade.to22")

This is because my fix turned Products.CMFDefault into an aliased module,
which caused the conditionally registered upgrade step to be loaded, causing an error.
I fixed this by making a wrapper around the original CMFDefault upgrade step.

Note that this will only be called when someone upgrades from a Plone 4.0 alpha release to Plone 5, which seems unlikely.

Files changed:
M CHANGES.rst
M plone/app/upgrade/__init__.py
M plone/app/upgrade/v40/alphas.py
M plone/app/upgrade/v40/configure.zcml
Repository: plone.app.upgrade
Branch: refs/heads/master
Date: 2017-04-06T18:06:44+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.upgrade@2b08e22

Merge pull request #109 from plone/fix-importerrors-atcontenttypes-cmfdefault

Fixed ImportError when `Products.ATContentTypes` is not available.

Files changed:
M CHANGES.rst
M plone/app/upgrade/__init__.py
M plone/app/upgrade/v40/alphas.py
M plone/app/upgrade/v40/configure.zcml
mister-roboto pushed a commit that referenced this pull request Apr 6, 2017
Branch: refs/heads/master
Date: 2017-04-06T11:14:22+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.upgrade@a0a4e19

Fixed ImportError when `Products.ATContentTypes` is not available.

This happens when you only have the `Products.CMFPlone` egg and not the `Plone` egg.
See https://community.plone.org/t/plone-5-1b3-soft-released/3936/5
Traceback was:

  File "/home/vagrant/Eggs/plone.app.upgrade-2.0.2-py2.7.egg/plone/app/upgrade/__init__.py", line 111, in &lt;module&gt;
      from Products.ATContentTypes.tool import metadata
   zope.configuration.xmlconfig.ZopeXMLConfigurationError: File "/home/vagrant/www.fhnw.ch/parts/instance1v/etc/site.zcml", line 12.2-12.39
     ZopeXMLConfigurationError: File "/home/vagrant/Eggs/Products.CMFPlone-5.1b3-py2.7.egg/Products/CMFPlone/meta.zcml", line 47.4-51.10
     ImportError: No module named ATContentTypes.tool

I fixed that with the already available atcontenttypes_bbb module.

Then the next traceback surfaced:

    ZopeXMLConfigurationError: File "/Users/maurits/community/plone-coredev/5.1/src/plone.app.upgrade/plone/app/upgrade/v40/configure.zcml", line 172.8-176.14
    ConfigurationError: ('Invalid value for', 'handler', "ImportError: Couldn't import Products.CMFDefault.upgrade.to22, No module named upgrade.to22")

This is because my fix turned Products.CMFDefault into an aliased module,
which caused the conditionally registered upgrade step to be loaded, causing an error.
I fixed this by making a wrapper around the original CMFDefault upgrade step.

Note that this will only be called when someone upgrades from a Plone 4.0 alpha release to Plone 5, which seems unlikely.

Files changed:
M CHANGES.rst
M plone/app/upgrade/__init__.py
M plone/app/upgrade/v40/alphas.py
M plone/app/upgrade/v40/configure.zcml
Repository: plone.app.upgrade
Branch: refs/heads/master
Date: 2017-04-06T18:06:44+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.upgrade@2b08e22

Merge pull request #109 from plone/fix-importerrors-atcontenttypes-cmfdefault

Fixed ImportError when `Products.ATContentTypes` is not available.

Files changed:
M CHANGES.rst
M plone/app/upgrade/__init__.py
M plone/app/upgrade/v40/alphas.py
M plone/app/upgrade/v40/configure.zcml
mister-roboto pushed a commit that referenced this pull request Mar 12, 2018
Branch: refs/heads/master
Date: 2018-03-12T12:58:14-04:00
Author: David Glick (davisagli) <david@glicksoftware.com>
Commit: plone/plone.app.portlets@1c6f33c

bump version since a 4.3.x branch was created

Files changed:
M CHANGES.rst
M setup.py
Repository: plone.app.portlets

Branch: refs/heads/master
Date: 2018-03-12T12:58:42-04:00
Author: David Glick (davisagli) <david@glicksoftware.com>
Commit: plone/plone.app.portlets@bdafe81

also catch NotFound while traversing portlet add views

Files changed:
M CHANGES.rst
M plone/app/portlets/browser/editmanager.py
Repository: plone.app.portlets

Branch: refs/heads/master
Date: 2018-03-12T14:34:44-04:00
Author: David Glick (davisagli) <david.glick@plone.org>
Commit: plone/plone.app.portlets@713e27e

Merge pull request #109 from plone/davisagli-traversal-master

Also catch NotFound while traversing portlet add views

Files changed:
M CHANGES.rst
M plone/app/portlets/browser/editmanager.py
M setup.py
mister-roboto pushed a commit that referenced this pull request May 16, 2018
Branch: refs/heads/master
Date: 2018-05-16T12:02:38+02:00
Author: Michael Howitz (icemac) <mh@gocept.com>
Commit: plone/Products.Archetypes@830e562

Test against Plone 5.2.

Files changed:
M buildout.cfg
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T12:56:05+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@7a66ce9

add annotate step in travis

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T12:59:53+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@aa4d6db

explicit ask for python version in travis

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T13:02:46+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@820e579

explicit force to new virtualenv and python version

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T13:06:25+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@f16f4a5

run test in verbose mode

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T14:12:28+02:00
Author: Michael Howitz (icemac) <mh@gocept.com>
Commit: plone/Products.Archetypes@d3a3199

Add change log entry.

Files changed:
M CHANGES.rst
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T14:26:09+02:00
Author: Alexander Loechel (loechel) <loechel@users.noreply.github.com>
Commit: plone/Products.Archetypes@699bda4

Merge pull request #109 from plone/plone-5.2

Test against Plone 5.2.

Files changed:
M .travis.yml
M CHANGES.rst
M buildout.cfg
mister-roboto pushed a commit that referenced this pull request May 16, 2018
Branch: refs/heads/master
Date: 2018-05-16T12:02:38+02:00
Author: Michael Howitz (icemac) <mh@gocept.com>
Commit: plone/Products.Archetypes@830e562

Test against Plone 5.2.

Files changed:
M buildout.cfg
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T12:56:05+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@7a66ce9

add annotate step in travis

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T12:59:53+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@aa4d6db

explicit ask for python version in travis

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T13:02:46+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@820e579

explicit force to new virtualenv and python version

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T13:06:25+02:00
Author: Alexander Loechel (loechel) <Alexander.Loechel@lmu.de>
Commit: plone/Products.Archetypes@f16f4a5

run test in verbose mode

Files changed:
M .travis.yml
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T14:12:28+02:00
Author: Michael Howitz (icemac) <mh@gocept.com>
Commit: plone/Products.Archetypes@d3a3199

Add change log entry.

Files changed:
M CHANGES.rst
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2018-05-16T14:26:09+02:00
Author: Alexander Loechel (loechel) <loechel@users.noreply.github.com>
Commit: plone/Products.Archetypes@699bda4

Merge pull request #109 from plone/plone-5.2

Test against Plone 5.2.

Files changed:
M .travis.yml
M CHANGES.rst
M buildout.cfg
mister-roboto pushed a commit that referenced this pull request Sep 3, 2019
Branch: refs/heads/master
Date: 2019-08-29T10:13:17+02:00
Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com>
Commit: plone/plone.dexterity@91407dd

Improve debugging

The debug messages issued when a non existent behavior is recorded in an FTI have been improved

Fixes #109

Files changed:
A news/109.bugfix
M plone/dexterity/schema.py
M plone/dexterity/tests/test_schema_cache.py
Repository: plone.dexterity

Branch: refs/heads/master
Date: 2019-09-03T13:19:35+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.dexterity@04f9f70

Merge pull request #110 from plone/109-improved-warnings

Improve debugging

Files changed:
A news/109.bugfix
M plone/dexterity/schema.py
M plone/dexterity/tests/test_schema_cache.py
mister-roboto pushed a commit that referenced this pull request Sep 16, 2019
Branch: refs/heads/master
Date: 2019-09-16T02:17:00+02:00
Author: mauro (mamico) <mauro.amico@unibo.it>
Commit: plone/plone.app.z3cform@9eff0e1

LinkWidget selected tab on edit #108

Files changed:
M plone/app/z3cform/templates/link_input.pt
Repository: plone.app.z3cform

Branch: refs/heads/master
Date: 2019-09-16T09:34:27+02:00
Author: mauro (mamico) <mauro.amico@unibo.it>
Commit: plone/plone.app.z3cform@624640a

changelog

Files changed:
A news/108.bugfix
Repository: plone.app.z3cform

Branch: refs/heads/master
Date: 2019-09-16T09:34:39+02:00
Author: mauro (mamico) <mauro.amico@unibo.it>
Commit: plone/plone.app.z3cform@51ae7b7

Merge branch 'master' of github.com:mamico/plone.app.z3cform

Files changed:
M CHANGES.rst
M plone/app/z3cform/templates/link_input.pt
M setup.py
D news/107.bugfix
Repository: plone.app.z3cform

Branch: refs/heads/master
Date: 2019-09-16T10:18:39+02:00
Author: mauro (mamico) <mauro.amico@unibo.it>
Commit: plone/plone.app.z3cform@9af2b9f

missing attributename

Files changed:
M plone/app/z3cform/templates/link_input.pt
Repository: plone.app.z3cform

Branch: refs/heads/master
Date: 2019-09-16T12:48:44+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.z3cform@966b3e6

Merge pull request #109 from mamico/master

Fix LinkWidget selected tab on edit

Files changed:
A news/108.bugfix
M plone/app/z3cform/templates/link_input.pt
mister-roboto pushed a commit that referenced this pull request Feb 17, 2022
Branch: refs/heads/master
Date: 2022-02-17T08:43:50+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.namedfile@ea81748

Register AnnotationStorage as IImageScaleStorage multi adapter. (#109)

* Register AnnotationStorage as IImageScaleStorage multi adapter.

Both from `plone.scale`.
Use this adapter in our scaling functions when we store or get an image scale.
See plone/plone.scale#44

* Add tests that we get an adapter for IImageScaleStorage.

Until now, we defaulted to using plone.scale.storage.AnnotationStorage.

Files changed:
A news/44.feature
M plone/namedfile/scaling.py
M plone/namedfile/scaling.zcml
M plone/namedfile/tests/test_scaling.py
mister-roboto pushed a commit that referenced this pull request Aug 25, 2022
Branch: refs/heads/master
Date: 2022-08-25T08:58:32+02:00
Author: ale-rt (ale-rt) <alessandro.pisa@gmail.com>
Commit: plone/plone.app.users@0832753

Added a timezone setter

Add a timezone setter that prevents `None` to be stored as a timezone.
Save it as an empty string instead.

Fixes #109

Files changed:
A news/109.bugfix
M plone/app/users/browser/account.py
Repository: plone.app.users

Branch: refs/heads/master
Date: 2022-08-25T17:26:16+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.users@a1de9d7

Merge pull request #110 from plone/109.bugfix

Added a timezone setter

Files changed:
A news/109.bugfix
M plone/app/users/browser/account.py
mister-roboto pushed a commit that referenced this pull request Jan 9, 2023
Branch: refs/heads/master
Date: 2023-01-09T21:30:27+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.caching@da84b9d

Revert changes to tests to work with the Zope security fix.

We must have an empty byte, not text, otherwise it is an indication that we get a possibly wrong Content-Type in a 304 status.
See zopefoundation/Zope#1089.

This reverts commit e6941fdfe6c8a3c98af98f4986e6932739adfca6.

Files changed:
A news/1089.bugfix
M plone/app/caching/tests/test_profile_with_caching_proxy.py
M plone/app/caching/tests/test_profile_without_caching_proxy.py
Repository: plone.app.caching

Branch: refs/heads/master
Date: 2023-01-09T22:45:00+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.caching@c3ee243

Merge pull request #109 from plone/maurits-fix-tests-again

Revert changes to tests to work with the Zope security fix. [master]

Files changed:
A news/1089.bugfix
M plone/app/caching/tests/test_profile_with_caching_proxy.py
M plone/app/caching/tests/test_profile_without_caching_proxy.py
mister-roboto pushed a commit that referenced this pull request Feb 27, 2023
Branch: refs/heads/main
Date: 2023-02-09T11:19:22+01:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.volto@34efa0a

Add fallback to cache-invalidation when migrating to FolderishDocument (Fixes #109)

Files changed:
A news/109.bugfix
M src/plone/volto/browser/migrate_to_volto.py
Repository: plone.volto

Branch: refs/heads/main
Date: 2023-02-27T09:03:13+01:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.volto@227bfdd

Merge pull request #110 from plone/missing_cache_fallback

Files changed:
A news/109.bugfix
M src/plone/volto/browser/migrate_to_volto.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants