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

Add 2025 holidays #286

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Changelog
when using `BaseDGHV.print_attendees` and `BaseDGHV.print_attendees_by_type`
using a special parameter `short_title_kwargs`.
[gbastien]
- Added holidays for 2025.
[aduchene]
- Completed `AnnexTypeDescriptors` and `ToolInitializer` to manage
attribute `after_scan_change_annex_type_to`.
Completed init attributes of `AnnexSubTypeDescriptor` and
Expand Down
2 changes: 2 additions & 0 deletions src/Products/PloneMeeting/migrations/migrate_to_4214.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ def run(self, extra_omitted=[], from_migration_to_4200=False):
# dashboard faceted criteria, new MeetingConfigs created manually in between
# are missing this new criterion
self.updateFacetedFilters(xml_filename='upgrade_step_4211_add_item_widgets.xml')
# holidays 2025 were added
self.updateHolidays()
logger.info('Migrating to PloneMeeting 4214... Done.')


Expand Down
13 changes: 13 additions & 0 deletions src/Products/PloneMeeting/profiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,19 @@ def __init__(self, meetingFolderTitle, meetingConfigs, orgs):
{'date': '2024/11/11', },
{'date': '2024/11/15', },
{'date': '2024/12/25', },

{'date': '2025/01/01', }, # 2025
{'date': '2025/04/21', },
{'date': '2025/05/01', },
{'date': '2025/05/29', },
{'date': '2025/06/09', },
{'date': '2025/07/21', },
{'date': '2025/08/15', },
{'date': '2025/09/27', },
{'date': '2025/11/01', },
{'date': '2025/11/11', },
{'date': '2025/11/15', },
{'date': '2025/12/25', },
]
self.delayUnavailableEndDays = ()
self.configGroups = ()
Expand Down
Loading