Skip to content
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

Add initial UI sections docs pages and script for generation #114

Open
wants to merge 44 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
063119a
Initial UI sections docs generation
dalthviz Feb 23, 2023
85e4dc5
Fix UI sections script call
dalthviz Feb 23, 2023
3bfadc4
Add graphviz installation step to CI. Catch OSError if graphviz execu…
dalthviz Feb 24, 2023
02debe7
Use flag to not use dot executable instead of adding it to CI. Remove…
dalthviz Feb 24, 2023
f7e46e8
Update .gitignore for UI sections pages generation
dalthviz Feb 24, 2023
be02a44
Use no-output flag and undo some changes
dalthviz Feb 24, 2023
772f4d2
Use no-output flag inside the script
dalthviz Feb 24, 2023
277f6df
Fix index link and links inside diagrams
dalthviz Feb 24, 2023
c0115bb
Divide diagrams in subgraphs
dalthviz Mar 6, 2023
4afe56a
Merge branch 'main' into issue_93
dalthviz Mar 7, 2023
7045d08
Test using d3 to add zoom for mermaid diagrams
dalthviz Mar 8, 2023
82fd5e6
Change d3 zoom addition approach
dalthviz Mar 8, 2023
a3c6a77
Add docstring to functions and accesibility config to mermaid diagrams
dalthviz Mar 10, 2023
470b01b
Merge branch 'main' into issue_93
dalthviz Mar 13, 2023
6c37e5a
Merge branch 'main' into issue_93
dalthviz Jun 15, 2023
838f079
Update config to use latest release of sphinx mermaid extension with …
dalthviz Jun 15, 2023
8b0df9b
Merge branch 'main' into issue_93
dalthviz Aug 18, 2023
e0f8bd8
Merge branch 'main' into issue_93
dalthviz Aug 23, 2024
02b5f5d
Change menus import
dalthviz Aug 23, 2024
0f6f5b0
Remove unexistent document reference from toc
dalthviz Aug 23, 2024
d98a930
Remove more now unexistent document reference from toc
dalthviz Aug 23, 2024
cbe9f6e
Change UI sections docs position
dalthviz Aug 23, 2024
ae30132
Update references to UI section pages
dalthviz Aug 23, 2024
44a16cb
Changes to show diagram for dialogs and console
dalthviz Aug 23, 2024
4eef48e
Update application menus generation args
dalthviz Aug 26, 2024
303d9ea
Update application menus and status bar generation args
dalthviz Aug 26, 2024
41e8cf1
Update layer controls generation args
dalthviz Aug 26, 2024
185075a
Merge branch 'main' into issue_93
dalthviz Aug 27, 2024
83ba1ad
Update layer list args and remove general unused args
dalthviz Aug 27, 2024
61934c9
Update viewer args
dalthviz Aug 27, 2024
3d5c161
Update console args
dalthviz Aug 27, 2024
be943eb
Update dialog args and add external modules subgraph
dalthviz Aug 27, 2024
185ced5
Merge branch 'main' into issue_93
psobolewskiPhD Sep 27, 2024
a5f93fa
Merge branch 'main' into issue_93
dalthviz Oct 24, 2024
1daa207
Merge branch 'main' into issue_93
psobolewskiPhD Dec 18, 2024
3cfe160
Testing
dalthviz Dec 18, 2024
1817430
Testing
dalthviz Dec 18, 2024
14e5997
Test new default mermaid version
dalthviz Dec 19, 2024
c8780f7
Check mermaid extension version update
dalthviz Dec 19, 2024
c967797
Trying to disable elk support
dalthviz Dec 19, 2024
5e1df11
Pass specific mermaid version
dalthviz Dec 19, 2024
179d031
Merge branch 'main' into issue_93
dalthviz Dec 23, 2024
0317c98
Add mention for napari-ui-tracer plugin
dalthviz Dec 26, 2024
6fde6b5
Merge branch 'main' into issue_93
dalthviz Dec 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ docs/gallery/
docs/guides/preferences.md
docs/guides/_layer_events.md
docs/guides/_layerlist_events.md
docs/developers/architecture/ui_sections/*
!docs/developers/architecture/ui_sections/index.md
docs/guides/_viewer_events.md
docs/images/_autogenerated/
docs/jupyter_execute/
Expand Down
1 change: 1 addition & 0 deletions docs/_scripts/prep_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def main():
prep_npe2()
__import__('update_preference_docs').main()
__import__('update_event_docs').main()
__import__('update_ui_sections_docs').main()


if __name__ == "__main__":
Expand Down
Loading
Loading