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
The following lines:
plone.app.event/plone/app/event/ical/exporter.py
Lines 54 to 57 in 4e6ec13
ics_view
IEvent
IMO the code should be changed to digest everything that can be adapted succesfully, i.e:
acc = IEventAccessor(event, None) if not acc: continue component = IICalendarEventComponent(event, None) if not component: continue
The text was updated successfully, but these errors were encountered:
I hope I can deliver a PR for this, but that will not happen not soonish...
Sorry, something went wrong.
No branches or pull requests
The following lines:
plone.app.event/plone/app/event/ical/exporter.py
Lines 54 to 57 in 4e6ec13
make it hard to extend the the
ics_view
to include other content types that do not directly provide theIEvent
interface.IMO the code should be changed to digest everything that can be adapted succesfully, i.e:
The text was updated successfully, but these errors were encountered: