-
Notifications
You must be signed in to change notification settings - Fork 4
Fix redirects #95
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
Fix redirects #95
Conversation
best practices
update redirect links redirected removed files to related index pages
Summary of ChangesHello @anthonymarkQA, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly refines the documentation's redirection strategy by updating numerous 301 redirect links. The primary goal is to improve the accuracy and specificity of content navigation, ensuring that users and search engines are consistently directed to the most relevant and current documentation pages, thereby enhancing the overall user experience and maintainability of the documentation. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request updates a large number of redirect links to point to their new locations after a documentation reorganization. The changes are mostly correct and improve the user experience by preventing broken links. However, I've found a few issues: one redirect is missing its status code, and a few others have incorrect target paths, missing parts of the URL like /user_guide/ or /developer_guide/. These should be corrected to ensure the redirects work as intended.
docs/_static/_redirects
Outdated
| /technical_reference/backup.html /developer_guide/index.html 301 | ||
| /technical_reference/code.html /developer_guide/index.html 301 | ||
| /technical_reference/extensibility.html /developer_guide/index.html 301 | ||
| /technical_reference/backup.html /reference/technical/backup.html |
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.
docs/_static/_redirects
Outdated
| /tutorial/event_data.html /user_guide/registry_management/using_event_data.html 301 | ||
| /tutorial/custom_fields.html /user_guide/administration/custom_fields.html 301 | ||
| /tutorial/dashboards_and_reports.html /developer_guide/module_development/dashboard.html 301 | ||
| /tutorial/event_data.html /registry_management/using_event_data.html 301 |
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.
docs/_static/_redirects
Outdated
| /tutorial/vouchers.html /user_guide/program_management/configure_inkind_entitlements.html 301 | ||
| /_modules/odoo/addons/g2p_programs/models/managers/cycle_manager.html /developer_guide/module_development/cycles.html 301 | ||
| /_modules/odoo/addons/g2p_programs/models/managers/eligibility_manager.html /developer_guide/module_development/programs.html 301 | ||
| /_modules/odoo/addons/g2p_programs/models/managers/entitlement_manager.html /module_development/entitlements.html 301 |
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.
The redirect target for /_modules/odoo/addons/g2p_programs/models/managers/entitlement_manager.html seems to be missing the /developer_guide/ prefix. Based on the file structure, the correct path should be /developer_guide/module_development/entitlements.html.
/_modules/odoo/addons/g2p_programs/models/managers/entitlement_manager.html /developer_guide/module_development/entitlements.html 301
resolve comments from gemini
|



update redirect links
redirected removed files to related index pages