-
Notifications
You must be signed in to change notification settings - Fork 247
Remove deprecated functionality #1537
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
Changes from 14 commits
a51cbc3
6c79958
9e657b4
eeb1c4b
d81f464
a4d6c96
1b60b95
2cf9997
1dbb39a
68a7a02
9237815
f9b11ea
4734607
a8dfafb
a833222
f5cb0b7
73a3ecb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,6 +89,16 @@ | |
| # This patterns also effect to html_static_path and html_extra_path | ||
| exclude_patterns = [] | ||
|
|
||
| # List of warnings to suppress | ||
| suppress_warnings = [] | ||
|
|
||
| # if the file deprecated.xml does not exist in the doxygen xml output, breathe | ||
| # will fail to build the docs, so we conditionally add "breathe.rst" to the | ||
| # exclude_patterns list | ||
| if not os.path.exists(breathe_projects["librmm"] + "/deprecated.xml"): | ||
harrism marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| exclude_patterns.append("librmm_docs/deprecated.rst") | ||
| suppress_warnings.append("toc.excluded") | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is this for? I'd guess when you exclude things it generates an extra file and then it warns about that file not being included anywhere, or something like that?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't have a better way to conditionally remove it from the toc.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah OK I see. Yeah that seems fine then. |
||
|
|
||
| # The name of the Pygments (syntax highlighting) style to use. | ||
| pygments_style = "sphinx" | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.