See https://community.plone.org/t/plone-6-0-0rc2-released/15945/3
The logic plone.app.layout was changed in 2021: #258
You have these two settings:
- Site Settings: Display publication date, default False. Description: "Show in the byline the date a content item was published."
- Security Settings: Allow anyone to view 'about' information, default False. Description: "If not selected only logged-in users will be able to view information about who created an item and when it was modified."
If I see it correctly, in Plone 5.2:
- When you are authenticated, you see the byline.
- Anonymous does not see the byline, unless "Allow anyone to view 'about' information" is switched on.
- When "Display publication date" is on, both the publication and modification date are shown, if the viewlet is shown at all.
In the PR for Plone 6.0 the idea seems to have been:
- It is probably okay for anonymous to view the publication and/or modification date.
- But site admins should be able to switch off showing the author information to anonymous.
Currently in the code the logic is:
- When you are authenticated, you see the byline.
- Anonymous does not see the byline, unless "Display publication date" is switched on.
- When "Display publication date" is on, only the publication date is shown.
- Anonymous only sees the author information when "Allow anyone to view 'about' information" is switched on.
So what is missing:
- The publication should be extra. When "Display publication date" is switched on, both the published and modified dates should be shown. When it is switched off, authenticated users should see the modified date.
- The descriptions and maybe titles of these settings should be fixed to fit the new logic.
cc @agitator who did this change, and @jensens who approved it. Did I understand the intention correctly?
See https://community.plone.org/t/plone-6-0-0rc2-released/15945/3
The logic plone.app.layout was changed in 2021: #258
You have these two settings:
If I see it correctly, in Plone 5.2:
In the PR for Plone 6.0 the idea seems to have been:
Currently in the code the logic is:
So what is missing:
cc @agitator who did this change, and @jensens who approved it. Did I understand the intention correctly?