-
Notifications
You must be signed in to change notification settings - Fork 0
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
docs: [FC-0074] make adjustments to generate docs with sphinx for GH pages #11
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @mariajgrimaldi, I was reviewing the documentation and I have a few comments:
- The event name link and event type are incorrect:
openedx-events-2-zapier/README.rst
Line 59 in fc9284c
| `PERSISTENT_GRADE_SUMMARY_CHANGED`_ | org.openedx.learning.course.persistent_grade.summary.v1 | Triggered when a persistent grade summary is updated. This happens | - When I try to access the handlers.py link it redirects me to the same page, but not to the repository. I think all relative links are broken.
openedx-events-2-zapier/README.rst
Line 71 in fc9284c
In the file `handlers.py`_, handlers listen to Django signals using the standard `receiver`_ decorator:
Thanks, @BryanttV. I see that handlers.py works fine in the readme file but not with Sphinx. I'll try a workaround to fix it. |
README.rst
Outdated
@@ -56,7 +58,7 @@ Supported Events | |||
+-------------------------------------+------------------------------------------------------------+---------------------------------------------------------------------+ | |||
| `COURSE_ENROLLMENT_CREATED`_ | org.openedx.learning.course.enrollment.created.v1 | Triggered upon successful course enrollment. | | |||
+-------------------------------------+------------------------------------------------------------+---------------------------------------------------------------------+ | |||
| `PERSISTENT_GRADE_SUMMARY_CHANGED`_ | org.openedx.learning.course.persistent_grade.summary.v1 | Triggered when a persistent grade summary is updated. This happens | | |||
| `PERSISTENT_GRADE_SUMMARY_CHANGED`_ | org.openedx.learning.course.persistent_grade_summary.v1 | Triggered when a persistent grade summary is updated. This happens | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| `PERSISTENT_GRADE_SUMMARY_CHANGED`_ | org.openedx.learning.course.persistent_grade_summary.v1 | Triggered when a persistent grade summary is updated. This happens | | |
| `PERSISTENT_GRADE_SUMMARY_CHANGED`_ | org.openedx.learning.course.persistent_grade_summary.changed.v1 | Triggered when a persistent grade summary is updated. This happens | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry for all the back and forth, I didn't notice these changes were wrong. Thanks :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we update the LICENSE and CODEOWNERS link? It is the same problem with the link.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, done!
FYI @sarina |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Description
This PR changes the structure of the doc so it can be rendered in GH pages: https://edunext.github.io/openedx-events-2-zapier/ for the developer's consumption.