We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you set an interval ("repeat every") value of "0" in reccurrence popup, it causes an infinite loop in Python dateutil RRULE interpretation.
dateutil
Example of a simple RRULE that breaks : FREQ=MONTHLY;INTERVAL=0;BYMONTHDAY=1;COUNT=7'
FREQ=MONTHLY;INTERVAL=0;BYMONTHDAY=1;COUNT=7'
INTERVAL=0 is not a valid value for RFC 5545 and should not be allowed.
INTERVAL=0
I can see in the translations that the error message exists :
plone.formwidget.recurrence/plone/formwidget/recurrence/browser/i18n.py
Line 150 in e95c341
Also, in the Mockup demo, there is an error message for "0" interval :
But in the last Plone 6, you can stil choose "0" interval and put the instance on her knees with infinite loop.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you set an interval ("repeat every") value of "0" in reccurrence popup, it causes an infinite loop in Python
dateutil
RRULE interpretation.Example of a simple RRULE that breaks :
FREQ=MONTHLY;INTERVAL=0;BYMONTHDAY=1;COUNT=7'
INTERVAL=0
is not a valid value for RFC 5545 and should not be allowed.I can see in the translations that the error message exists :
plone.formwidget.recurrence/plone/formwidget/recurrence/browser/i18n.py
Line 150 in e95c341
Also, in the Mockup demo, there is an error message for "0" interval :
But in the last Plone 6, you can stil choose "0" interval and put the instance on her knees with infinite loop.
The text was updated successfully, but these errors were encountered: