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

Added lots of checkouts and new versions to 5.1. #207

Merged
merged 1 commit into from
May 6, 2016

Conversation

mauritsvanrees
Copy link
Sponsor Member

bin/manage jenkins goes through the list of packages and reports on changes.
We should do this more often.

Note: I have updated the pin of z3c.batching but this not actually used in core Plone.

@mauritsvanrees
Copy link
Sponsor Member Author

Woohoo: we have a Plone Contributors Agreement verifier! Thanks!

@mauritsvanrees
Copy link
Sponsor Member Author

The first test run failed because I updated z3c.form:
zopefoundation/z3c.form#44
I have reverted this part and am now trying again.

@jensens
Copy link
Sponsor Member

jensens commented May 5, 2016

looks good. do we really depend on collective.js.jqueryui anywhere? sounds scary to have core depend on it.

@mauritsvanrees
Copy link
Sponsor Member Author

No, we are not using collective.js.jqueryui in core. I think we added the pin in the Plone 4 days because various add-ons use it, I think PloneFormGen among them, and there were a lot of people who installed a version that did not work well with their Plone/jquery version. So we added the pin to have a canonical version.
I guess having it in the auto-checkout now has no real effect, since we are indeed not using it. But it serves as a note indicating that this needs a release. Its master branch actually has changes for Plone 5.
I will resolve the conflict of this pull request and then merge.

@mauritsvanrees mauritsvanrees merged commit 818fc6d into 5.1 May 6, 2016
'bin/manage jenkins' goes through the list of packages and reports on changes.
We should do this more often.
@mauritsvanrees mauritsvanrees deleted the maurits-various-checkouts-51 branch May 6, 2016 09:52
mister-roboto pushed a commit that referenced this pull request Jan 25, 2017
Branch: refs/heads/master
Date: 2017-01-19T12:44:40+01:00
Author: Markus Unterwaditzer (untitaker) <markus@unterwaditzer.net>
Commit: collective/icalendar@a01dda2

Remove custom merge strategy for changelog

This causes old PRs to add the changelog entry to already released
versions. It happened to me while rebasing #207

Files changed:
D .gitattributes
Repository: icalendar
Branch: refs/heads/master
Date: 2017-01-26T00:20:46+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: collective/icalendar@74ef4c1

Merge pull request #208 from untitaker/no-automerge

Remove custom merge strategy for changelog

Files changed:
D .gitattributes
mister-roboto pushed a commit that referenced this pull request Jan 25, 2017
Branch: refs/heads/master
Date: 2017-01-19T12:44:40+01:00
Author: Markus Unterwaditzer (untitaker) <markus@unterwaditzer.net>
Commit: collective/icalendar@a01dda2

Remove custom merge strategy for changelog

This causes old PRs to add the changelog entry to already released
versions. It happened to me while rebasing #207

Files changed:
D .gitattributes
Repository: icalendar
Branch: refs/heads/master
Date: 2017-01-26T00:20:46+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: collective/icalendar@74ef4c1

Merge pull request #208 from untitaker/no-automerge

Remove custom merge strategy for changelog

Files changed:
D .gitattributes
mister-roboto pushed a commit that referenced this pull request Apr 18, 2017
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Christian Geier (geier) <geier@lostpackets.de>
Commit: collective/icalendar@d0fd108

Allow `=` in parameter values.

Some parameter values (e.g., BASE64 encoded binary data often ends with
one or two equal signs) may contain an equal sign (`=`). The current
implementation splits key-value pairs at all equal signs, which leads to
errors. Especially icalendar files generated by Apple's software often
feature BASE64 encoded binary data in parameter values.

This patch introduces a new parameter `maxsplit` to
icalendar.parser.q_split() which works similar as python's
string.split(sep, maxsplit) which we then use to split parameter
key-value pairs only at the first equal sign.

This patch fixes #197.

Files changed:
M CHANGES.rst
M src/icalendar/parser.py
M src/icalendar/tests/apple_xlocation_test.py
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Christian Geier (geier) <geier@lostpackets.de>
Commit: collective/icalendar@124b328

Moved test_apple_xlocation() to test_icalendar.py

Files changed:
M src/icalendar/tests/test_icalendar.py
D src/icalendar/tests/apple_xlocation_test.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Christian Geier (geier) <geier@lostpackets.de>
Commit: collective/icalendar@b82893f

New test for broken properties.

The fix for #197 makes the test data used for testing the error
messages for broken properties (which was valid data) work with
icalendar, we therefor need a new test with actually invalid data.

Files changed:
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Markus Unterwaditzer (untitaker) <markus@unterwaditzer.net>
Commit: collective/icalendar@0f408d8

Fix q_split for maxsplit=0

Files changed:
M src/icalendar/parser.py
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Markus Unterwaditzer (untitaker) <markus@unterwaditzer.net>
Commit: collective/icalendar@805f59d

Extend tests

Files changed:
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:19:43+02:00
Author: Christian Geier (geier) <github@lostpackets.de>
Commit: collective/icalendar@8a52e56

Merge pull request #207 from geier/fix_base64_equal

Allow `=` in parameter values.

Files changed:
M CHANGES.rst
M src/icalendar/parser.py
M src/icalendar/tests/test_icalendar.py
D src/icalendar/tests/apple_xlocation_test.py
mister-roboto pushed a commit that referenced this pull request Apr 18, 2017
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Christian Geier (geier) <geier@lostpackets.de>
Commit: collective/icalendar@d0fd108

Allow `=` in parameter values.

Some parameter values (e.g., BASE64 encoded binary data often ends with
one or two equal signs) may contain an equal sign (`=`). The current
implementation splits key-value pairs at all equal signs, which leads to
errors. Especially icalendar files generated by Apple's software often
feature BASE64 encoded binary data in parameter values.

This patch introduces a new parameter `maxsplit` to
icalendar.parser.q_split() which works similar as python's
string.split(sep, maxsplit) which we then use to split parameter
key-value pairs only at the first equal sign.

This patch fixes #197.

Files changed:
M CHANGES.rst
M src/icalendar/parser.py
M src/icalendar/tests/apple_xlocation_test.py
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Christian Geier (geier) <geier@lostpackets.de>
Commit: collective/icalendar@124b328

Moved test_apple_xlocation() to test_icalendar.py

Files changed:
M src/icalendar/tests/test_icalendar.py
D src/icalendar/tests/apple_xlocation_test.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Christian Geier (geier) <geier@lostpackets.de>
Commit: collective/icalendar@b82893f

New test for broken properties.

The fix for #197 makes the test data used for testing the error
messages for broken properties (which was valid data) work with
icalendar, we therefor need a new test with actually invalid data.

Files changed:
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Markus Unterwaditzer (untitaker) <markus@unterwaditzer.net>
Commit: collective/icalendar@0f408d8

Fix q_split for maxsplit=0

Files changed:
M src/icalendar/parser.py
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:07:41+02:00
Author: Markus Unterwaditzer (untitaker) <markus@unterwaditzer.net>
Commit: collective/icalendar@805f59d

Extend tests

Files changed:
M src/icalendar/tests/test_icalendar.py
Repository: icalendar
Branch: refs/heads/master
Date: 2017-04-19T00:19:43+02:00
Author: Christian Geier (geier) <github@lostpackets.de>
Commit: collective/icalendar@8a52e56

Merge pull request #207 from geier/fix_base64_equal

Allow `=` in parameter values.

Files changed:
M CHANGES.rst
M src/icalendar/parser.py
M src/icalendar/tests/test_icalendar.py
D src/icalendar/tests/apple_xlocation_test.py
mister-roboto pushed a commit that referenced this pull request Jun 15, 2019
Branch: refs/heads/master
Date: 2019-05-22T20:08:55+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.app.upgrade@45193ab

fix upgrades from Plone 4.3 to 5.2

Files changed:
M plone/app/upgrade/v43/final.py
Repository: plone.app.upgrade

Branch: refs/heads/master
Date: 2019-06-13T12:50:58+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.app.upgrade@aa27f74

add changenote

Files changed:
A news/207.bugfix
Repository: plone.app.upgrade

Branch: refs/heads/master
Date: 2019-06-15T20:06:43+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.app.upgrade@2fbe849

Merge pull request #207 from plone/fix_upgrade_from_p4

Fix upgrades from Plone 4.3 to 5.2

Files changed:
A news/207.bugfix
M plone/app/upgrade/v43/final.py
mister-roboto pushed a commit that referenced this pull request Jun 15, 2019
Branch: refs/heads/master
Date: 2019-05-22T20:08:55+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.app.upgrade@45193ab

fix upgrades from Plone 4.3 to 5.2

Files changed:
M plone/app/upgrade/v43/final.py
Repository: plone.app.upgrade

Branch: refs/heads/master
Date: 2019-06-13T12:50:58+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.app.upgrade@aa27f74

add changenote

Files changed:
A news/207.bugfix
Repository: plone.app.upgrade

Branch: refs/heads/master
Date: 2019-06-15T20:06:43+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plone.app.upgrade@2fbe849

Merge pull request #207 from plone/fix_upgrade_from_p4

Fix upgrades from Plone 4.3 to 5.2

Files changed:
A news/207.bugfix
M plone/app/upgrade/v43/final.py
mister-roboto pushed a commit that referenced this pull request Jul 14, 2020
Branch: refs/heads/2.x
Date: 2020-07-10T10:13:49+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plonetheme.barceloneta@e38ac2d

Fix generation of source map links when using grunt.

Files changed:
A news/207.bugfix
M Gruntfile.js
Repository: plonetheme.barceloneta

Branch: refs/heads/2.x
Date: 2020-07-10T10:17:43+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plonetheme.barceloneta@445fa57

Make input color darker to better distinguish from placeholder text.

Files changed:
M news/207.bugfix
M plonetheme/barceloneta/theme/less/mixin.tabfocus.plone.less
M plonetheme/barceloneta/theme/less/variables.plone.less
Repository: plonetheme.barceloneta

Branch: refs/heads/2.x
Date: 2020-07-10T10:17:43+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plonetheme.barceloneta@8c4b4ac

compiled

Files changed:
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
Repository: plonetheme.barceloneta

Branch: refs/heads/2.x
Date: 2020-07-14T08:59:39+02:00
Author: Vincent Fretin (vincentfretin) <vincent.fretin@gmail.com>
Commit: plone/plonetheme.barceloneta@d747a5c

Merge pull request #207 from plone/thet-placeholder--2.x

Fix generation of source map links when using grunt. Make input color darker to better distinguish from placeholder text.

Files changed:
A news/207.bugfix
M Gruntfile.js
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
M plonetheme/barceloneta/theme/less/mixin.tabfocus.plone.less
M plonetheme/barceloneta/theme/less/variables.plone.less
mister-roboto pushed a commit that referenced this pull request Jul 14, 2020
Branch: refs/heads/2.x
Date: 2020-07-10T10:13:49+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plonetheme.barceloneta@e38ac2d

Fix generation of source map links when using grunt.

Files changed:
A news/207.bugfix
M Gruntfile.js
Repository: plonetheme.barceloneta

Branch: refs/heads/2.x
Date: 2020-07-10T10:17:43+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plonetheme.barceloneta@445fa57

Make input color darker to better distinguish from placeholder text.

Files changed:
M news/207.bugfix
M plonetheme/barceloneta/theme/less/mixin.tabfocus.plone.less
M plonetheme/barceloneta/theme/less/variables.plone.less
Repository: plonetheme.barceloneta

Branch: refs/heads/2.x
Date: 2020-07-10T10:17:43+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plonetheme.barceloneta@8c4b4ac

compiled

Files changed:
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
Repository: plonetheme.barceloneta

Branch: refs/heads/2.x
Date: 2020-07-14T08:59:39+02:00
Author: Vincent Fretin (vincentfretin) <vincent.fretin@gmail.com>
Commit: plone/plonetheme.barceloneta@d747a5c

Merge pull request #207 from plone/thet-placeholder--2.x

Fix generation of source map links when using grunt. Make input color darker to better distinguish from placeholder text.

Files changed:
A news/207.bugfix
M Gruntfile.js
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
M plonetheme/barceloneta/theme/less/mixin.tabfocus.plone.less
M plonetheme/barceloneta/theme/less/variables.plone.less
mister-roboto pushed a commit that referenced this pull request Oct 17, 2020
Branch: refs/heads/master
Date: 2020-10-17T18:12:21+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.app.widgets@0ae34e9

Robot tests: Fix deprecated jQuery.size.

Files changed:
A news/207.bugfix
M plone/app/widgets/tests/robot/common.robot
M plone/app/widgets/tests/robot/test_datetime_widget.robot
M plone/app/widgets/tests/robot/test_querystring_widget.robot
M plone/app/widgets/tests/robot/test_select_widget.robot
Repository: plone.app.widgets

Branch: refs/heads/master
Date: 2020-10-17T21:09:27+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.app.widgets@d090824

Merge pull request #207 from plone/thet-jqsize

Robot tests: Replace deprecated jQuery.size with generic JavaScript.

Files changed:
A news/207.bugfix
M plone/app/widgets/tests/robot/common.robot
M plone/app/widgets/tests/robot/test_datetime_widget.robot
M plone/app/widgets/tests/robot/test_querystring_widget.robot
M plone/app/widgets/tests/robot/test_select_widget.robot
mister-roboto pushed a commit that referenced this pull request Mar 31, 2022
Branch: refs/heads/1.x
Date: 2022-03-31T21:11:08+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.staticresources@f6a3d5b

Fix icon font loading.

Fix issue with Glyphicons and Fontello font loading on Portals where the portal root is a level higher.
The fonts are now loaded relative to the CSS requesting them.

Fixes: plone/plone.staticresources#162
Fixes: plone/plone.staticresources#203

Ref: plone/plone.staticresources#168
Ref: plone/plone.staticresources#171
Ref: plone/plone.staticresources#175
Ref: https://community.plone.org/t/deployments-not-rooted-fail-to-load-the-fontello-icons/15047/12?u=thet

Files changed:
A news/xxxx.bugfix
A src/plone/staticresources/upgrades/17.zcml
A src/plone/staticresources/upgrades/profiles/17/registry.xml
M src/plone/staticresources/profiles/default/metadata.xml
M src/plone/staticresources/profiles/default/registry/bundles.xml
M src/plone/staticresources/profiles/last_compilation/registry.xml
M src/plone/staticresources/static/plone-fontello.less
M src/plone/staticresources/static/plone-glyphicons.less
M src/plone/staticresources/upgrades/configure.zcml
Repository: plone.staticresources

Branch: refs/heads/1.x
Date: 2022-03-31T21:11:08+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.staticresources@9dcd84d

Compiled.

Files changed:
M src/plone/staticresources/static/plone-fontello-compiled.css
M src/plone/staticresources/static/plone-fontello-compiled.css.map
M src/plone/staticresources/static/plone-glyphicons-compiled.css
M src/plone/staticresources/static/plone-glyphicons-compiled.css.map
Repository: plone.staticresources

Branch: refs/heads/1.x
Date: 2022-03-31T23:29:29+02:00
Author: Johannes Raggam (thet) <thetetet@gmail.com>
Commit: plone/plone.staticresources@15a5a4d

Merge pull request #207 from plone/fix-icon-font-loading

Fix icon font loading

Files changed:
A news/xxxx.bugfix
A src/plone/staticresources/upgrades/17.zcml
A src/plone/staticresources/upgrades/profiles/17/registry.xml
M src/plone/staticresources/profiles/default/metadata.xml
M src/plone/staticresources/profiles/default/registry/bundles.xml
M src/plone/staticresources/profiles/last_compilation/registry.xml
M src/plone/staticresources/static/plone-fontello-compiled.css
M src/plone/staticresources/static/plone-fontello-compiled.css.map
M src/plone/staticresources/static/plone-fontello.less
M src/plone/staticresources/static/plone-glyphicons-compiled.css
M src/plone/staticresources/static/plone-glyphicons-compiled.css.map
M src/plone/staticresources/static/plone-glyphicons.less
M src/plone/staticresources/upgrades/configure.zcml
mister-roboto pushed a commit that referenced this pull request Apr 15, 2022
Branch: refs/heads/master
Date: 2022-04-15T18:14:34-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.app.theming@5685136

Do not apply the theme transform over every request. Closes gh-207

Files changed:
A news/207.misc
M src/plone/app/theming/transform.py
mister-roboto pushed a commit that referenced this pull request Apr 15, 2022
Branch: refs/heads/master
Date: 2022-04-15T18:15:49-03:00
Author: Franco Pellegrini (frapell) <frapell@gmail.com>
Commit: plone/plone.app.theming@bd38907

Revert "Do not apply the theme transform over every request. Closes gh-207"

This reverts commit 5685136c69b0e2b56b6c0a07a90c5a883d4d79d2.

Files changed:
M src/plone/app/theming/transform.py
D news/207.misc
mister-roboto pushed a commit that referenced this pull request Apr 1, 2023
Branch: refs/heads/master
Date: 2023-04-01T14:33:46+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@674728e

Configuring with plone/meta

Files changed:
A .editorconfig
A .meta.toml
A .pre-commit-config.yaml
A news/47959565.internal
A tox.ini
M pyproject.toml
M setup.cfg
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:33:46+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@781fea1

chore: pyupgrade

Files changed:
M plone/app/discussion/comment.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:33:47+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@1bcadd1

chore: isort

Files changed:
M plone/app/discussion/comment.py
M plone/app/discussion/tests/test_indexers.py
M plone/app/discussion/upgrades.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:33:47+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@7149d49

chore: black

Files changed:
M plone/app/discussion/browser/comment.py
M plone/app/discussion/browser/comments.py
M plone/app/discussion/browser/traversal.py
M plone/app/discussion/catalog.py
M plone/app/discussion/conversation.py
M plone/app/discussion/testing.py
M plone/app/discussion/tests/test_catalog.py
M plone/app/discussion/tests/test_comment.py
M plone/app/discussion/tests/test_comments_viewlet.py
M plone/app/discussion/tests/test_controlpanel.py
M plone/app/discussion/tests/test_conversation.py
M plone/app/discussion/tests/test_events.py
M plone/app/discussion/tests/test_indexers.py
M plone/app/discussion/tests/test_moderation_multiple_state_view.py
M plone/app/discussion/tests/test_moderation_view.py
M plone/app/discussion/tests/test_notifications.py
M plone/app/discussion/tests/test_workflow.py
M plone/app/discussion/tool.py
M plone/app/discussion/upgrades.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:33:47+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@c38fa50

chore: zpretty ZCML/XML

Files changed:
M plone/app/discussion/browser/captcha.zcml
M plone/app/discussion/browser/configure.zcml
M plone/app/discussion/configure.zcml
M plone/app/discussion/contentrules.zcml
M plone/app/discussion/notifications.zcml
M plone/app/discussion/permissions.zcml
M plone/app/discussion/profiles/default/actions.xml
M plone/app/discussion/profiles/default/browserlayer.xml
M plone/app/discussion/profiles/default/catalog.xml
M plone/app/discussion/profiles/default/controlpanel.xml
M plone/app/discussion/profiles/default/metadata.xml
M plone/app/discussion/profiles/default/portal_atct.xml
M plone/app/discussion/profiles/default/registry.xml
M plone/app/discussion/profiles/default/rolemap.xml
M plone/app/discussion/profiles/default/types.xml
M plone/app/discussion/profiles/default/types/Discussion_Item.xml
M plone/app/discussion/profiles/default/workflows.xml
M plone/app/discussion/profiles/default/workflows/comment_one_state_workflow/definition.xml
M plone/app/discussion/profiles/default/workflows/comment_review_workflow/definition.xml
M plone/app/discussion/subscribers.zcml
M plone/app/discussion/upgrades.zcml
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:53:57+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@c652f4e

feat: flake8

Files changed:
M docs/source/conf.py
M plone/app/discussion/browser/conversation.py
M plone/app/discussion/catalog.py
M plone/app/discussion/subscribers.py
M plone/app/discussion/tests/test_moderation_multiple_state_view.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:53:57+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@f357a32

feat: pyroma

Files changed:
M setup.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:53:57+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@6cf8012

feat: configure codespell

Files changed:
M pyproject.toml
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:53:57+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@78e4d8e

feat: codespell

Files changed:
M CHANGES.rst
M docs/source/api/index.txt
M plone/app/discussion/architecture.txt
M plone/app/discussion/browser/moderation.py
M plone/app/discussion/comment.py
M plone/app/discussion/tests/functional_test_comments.txt
M plone/app/discussion/tests/test_comments_viewlet.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T14:53:57+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@72f93e0

feat: remove archetypes code path

Files changed:
M plone/app/discussion/browser/conversation.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T19:01:59+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@9bce1dc

chore: zptlint PT

Files changed:
M plone/app/discussion/browser/controlpanel.pt
M plone/app/discussion/browser/moderation.pt
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T19:01:59+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@257e339

fix(ci): disable zpretty

Files changed:
M .pre-commit-config.yaml
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T19:01:59+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@05ff8df

feat: configure z3c.dependencychecker

Files changed:
M pyproject.toml
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T19:01:59+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@7dbefd0

feat:  declare dependencies

Files changed:
M setup.py
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2023-04-01T23:09:35+02:00
Author: Gil Forcada Codinachs (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.app.discussion@e7f7a24

Merge pull request #207 from plone/config-with-default-template-58fc40eb

Config with default template

Files changed:
A .editorconfig
A .meta.toml
A .pre-commit-config.yaml
A news/47959565.internal
A tox.ini
M CHANGES.rst
M docs/source/api/index.txt
M docs/source/conf.py
M plone/app/discussion/architecture.txt
M plone/app/discussion/browser/captcha.zcml
M plone/app/discussion/browser/comment.py
M plone/app/discussion/browser/comments.py
M plone/app/discussion/browser/configure.zcml
M plone/app/discussion/browser/controlpanel.pt
M plone/app/discussion/browser/conversation.py
M plone/app/discussion/browser/moderation.pt
M plone/app/discussion/browser/moderation.py
M plone/app/discussion/browser/traversal.py
M plone/app/discussion/catalog.py
M plone/app/discussion/comment.py
M plone/app/discussion/configure.zcml
M plone/app/discussion/contentrules.zcml
M plone/app/discussion/conversation.py
M plone/app/discussion/notifications.zcml
M plone/app/discussion/permissions.zcml
M plone/app/discussion/profiles/default/actions.xml
M plone/app/discussion/profiles/default/browserlayer.xml
M plone/app/discussion/profiles/default/catalog.xml
M plone/app/discussion/profiles/default/controlpanel.xml
M plone/app/discussion/profiles/default/metadata.xml
M plone/app/discussion/profiles/default/portal_atct.xml
M plone/app/discussion/profiles/default/registry.xml
M plone/app/discussion/profiles/default/rolemap.xml
M plone/app/discussion/profiles/default/types.xml
M plone/app/discussion/profiles/default/types/Discussion_Item.xml
M plone/app/discussion/profiles/default/workflows.xml
M plone/app/discussion/profiles/default/workflows/comment_one_state_workflow/definition.xml
M plone/app/discussion/profiles/default/workflows/comment_review_workflow/definition.xml
M plone/app/discussion/subscribers.py
M plone/app/discussion/subscribers.zcml
M plone/app/discussion/testing.py
M plone/app/discussion/tests/functional_test_comments.txt
M plone/app/discussion/tests/test_catalog.py
M plone/app/discussion/tests/test_comment.py
M plone/app/discussion/tests/test_comments_viewlet.py
M plone/app/discussion/tests/test_controlpanel.py
M plone/app/discussion/tests/test_conversation.py
M plone/app/discussion/tests/test_events.py
M plone/app/discussion/tests/test_indexers.py
M plone/app/discussion/tests/test_moderation_multiple_state_view.py
M plone/app/discussion/tests/test_moderation_view.py
M plone/app/discussion/tests/test_notifications.py
M plone/app/discussion/tests/test_workflow.py
M plone/app/discussion/tool.py
M plone/app/discussion/upgrades.py
M plone/app/discussion/upgrades.zcml
M pyproject.toml
M setup.cfg
M setup.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.

None yet

2 participants