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

Contribute examples to etsdemo #380

Merged
merged 16 commits into from
Dec 2, 2020
Merged

Conversation

aaronayres35
Copy link
Contributor

@aaronayres35 aaronayres35 commented Dec 1, 2020

closes #320

replaces #359

This PR takes the steps described in this comment: #320 (comment)

It may be useful to review commit by commit as the commits generally follow each point in that comment.

Also, I tried testing the updated documentation but links result in 404 errors as the github links will not exist until after this PR is merged.

Further, at the moment, everything seems to run fine with etsdemo (no errors / everything looks correct), but when you run the examples (e.g. hello_world.py) and navigate to the output tab in the demo application, nothing is printed. When running the example from the command line, "The hello.world application says Hola World!" is printed.

(NOTE: the above happens when install etsdemo with pyside2. when trying to install with pyqt5, the application fails to launch - which seems related to enthought/pyface#418, and with wx, the application crashes once you navigate to the example file you want to run - e.g. hello_world.py)

@kitchoi
Copy link
Contributor

kitchoi commented Dec 1, 2020

but when you run the examples (e.g. hello_world.py) and navigate to the output tab in the demo application, nothing is printed. When running the example from the command line, "The hello.world application says Hola World!" is printed.

I have witnessed this yesterday. Upon further investigation, it is because etsdemo has invented a triple-under ___main___ (instead of __main__).
https://github.com/enthought/traitsui/blob/f7da6909ad1cecf457f61df5970c9281575ec61f/ets-demo/etsdemo/app.py#L468
Note that the fix is not just about changing ___main___ to __main__. That function is serving two purposes...

@aaronayres35 aaronayres35 requested a review from kitchoi December 1, 2020 17:49
Copy link
Contributor

@kitchoi kitchoi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mostly LGTM. Thank you!
One suggested change for the doc link and a small request for a test.

Copy link
Contributor

@kitchoi kitchoi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

The examples/GUI_Application is also good enough to be exposed (confirmed with @rahulporuri). That is a very simple example, and I have tested it to work with etsdemo after the folder is moved to envisage/examples/demo too. We can simply move the folder in this PR or we could also do that in a separate PR.

I also opened #381 to consider removing the other examples that still live at the top-level, which are more visible than the ones moved into envisage/examples.

Upon merging of this PR, the live documentation on docs.enthought.com/envisage will have broken links. I opened #382 to track the broken links separately. But I expect the issue to be fixed along with the upcoming release so that is no extra work needed. The issue is open merely for tracking purposes, e.g. in case the release is delayed, we might want to rebuild the documentation earlier than the release.

Comment on lines +324 to +329
"demo/*",
"demo/*/*",
"demo/*/*/*",
"demo/*/*/*/*",
"demo/*/*/*/*/*",
"demo/*/*/*/*/*/*",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wait, really? Is there no concise way to do this in a single string?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I couldn't find one. If there is a way, I'd love to know!

@kitchoi
Copy link
Contributor

kitchoi commented Dec 2, 2020

This move is making the old examples at the top level more prominent than the relevant and good ones. So if this PR goes through, I would want to make sure we have notes in examples/ (at the top level) to refer people to envisage/examples and make the old ones less obvious. I find the in-between state worse than not exposing the examples in the demo app at all. So if we could not follow this through, I'd prefer we abandon this move.

@kitchoi
Copy link
Contributor

kitchoi commented Dec 2, 2020

The quick and dirty way to get through this is perhaps:
Move the ones that are still in examples/ (top-level) into another nested folder, name that folder something less attractive, and add a README in examples/ to refer readers to envisage/examples instead. This way anyone browsing the repo would discover the ones in envisage/examples more easily.

Copy link
Contributor

@kitchoi kitchoi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@aaronayres35 aaronayres35 merged commit dacdf2a into master Dec 2, 2020
@aaronayres35 aaronayres35 deleted the contribute-examples-to-etsdemo branch December 2, 2020 15:35
aaronayres35 added a commit that referenced this pull request Dec 2, 2020
* remove logging from hello world and motd

* remove logging from other examples

* move examples into envisage

* update the single URL in docs/conf.py

* add examples as package_data

* add entry point

* flake8

* add demo folder and update package_data based off code review suggestion

* Update docs/source/conf.py

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>

* rename and add test for entry point

* move GUI_Application example into envisage/examples

* move old examples into envisage/examples/demo/legacy

* Revert "move old examples into envisage/examples/demo/legacy"

This reverts commit c026040.

* move old examples into a new subdirectory called legacy

* add a readme to reference new location for examples

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>
aaronayres35 added a commit that referenced this pull request Dec 2, 2020
* Fix index slice in ExtensionPointChangedEvent when plugin changes (#357)

* Turn off macOS builds on Travis CI (#375)

This PR turns off expensive macOS builds on Travis CI. We'll eventually use GitHub Actions to replace these.

* update changelog with backported PRs

* Make example run from any directory (#377)

* Make it possible to run example scripts from anywhere.

* Add a docstring for the test case

* Add missing __init__.py

* Import abcdefg...

* Refactor documentation links to source on GitHub (#379)

* Refactor external links to demo examples from extension_points.rst

* Update links to github in introduction.rst

* Refactor substitutions

* Group substitutions

* Update other references to github links

* Flake8

* Remove two other links to github that point to TraitsGUI

* Remove redundant newlines

* Maintain all substituions in the same place

* Remove two redundant lines

* Contribute examples to etsdemo (#380)

* remove logging from hello world and motd

* remove logging from other examples

* move examples into envisage

* update the single URL in docs/conf.py

* add examples as package_data

* add entry point

* flake8

* add demo folder and update package_data based off code review suggestion

* Update docs/source/conf.py

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>

* rename and add test for entry point

* move GUI_Application example into envisage/examples

* move old examples into envisage/examples/demo/legacy

* Revert "move old examples into envisage/examples/demo/legacy"

This reverts commit c026040.

* move old examples into a new subdirectory called legacy

* add a readme to reference new location for examples

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>

* more changelog updates

* more changes to changelog

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>
Co-authored-by: Mark Dickinson <mdickinson@enthought.com>
aaronayres35 added a commit that referenced this pull request Dec 4, 2020
* Fix index slice in ExtensionPointChangedEvent when plugin changes (#357)

* Turn off macOS builds on Travis CI (#375)

This PR turns off expensive macOS builds on Travis CI. We'll eventually use GitHub Actions to replace these.

* update changelog with backported PRs

* Make example run from any directory (#377)

* Make it possible to run example scripts from anywhere.

* Add a docstring for the test case

* Add missing __init__.py

* Import abcdefg...

* Refactor documentation links to source on GitHub (#379)

* Refactor external links to demo examples from extension_points.rst

* Update links to github in introduction.rst

* Refactor substitutions

* Group substitutions

* Update other references to github links

* Flake8

* Remove two other links to github that point to TraitsGUI

* Remove redundant newlines

* Maintain all substituions in the same place

* Remove two redundant lines

* Contribute examples to etsdemo (#380)

* remove logging from hello world and motd

* remove logging from other examples

* move examples into envisage

* update the single URL in docs/conf.py

* add examples as package_data

* add entry point

* flake8

* add demo folder and update package_data based off code review suggestion

* Update docs/source/conf.py

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>

* rename and add test for entry point

* move GUI_Application example into envisage/examples

* move old examples into envisage/examples/demo/legacy

* Revert "move old examples into envisage/examples/demo/legacy"

This reverts commit c026040.

* move old examples into a new subdirectory called legacy

* add a readme to reference new location for examples

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>

* more changelog updates

* more changes to changelog

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>
Co-authored-by: Mark Dickinson <mdickinson@enthought.com>
aaronayres35 added a commit that referenced this pull request Dec 4, 2020
* Backports for 5.0.0 and update changelog (#378)

* Fix index slice in ExtensionPointChangedEvent when plugin changes (#357)

* Turn off macOS builds on Travis CI (#375)

This PR turns off expensive macOS builds on Travis CI. We'll eventually use GitHub Actions to replace these.

* update changelog with backported PRs

* Make example run from any directory (#377)

* Make it possible to run example scripts from anywhere.

* Add a docstring for the test case

* Add missing __init__.py

* Import abcdefg...

* Refactor documentation links to source on GitHub (#379)

* Refactor external links to demo examples from extension_points.rst

* Update links to github in introduction.rst

* Refactor substitutions

* Group substitutions

* Update other references to github links

* Flake8

* Remove two other links to github that point to TraitsGUI

* Remove redundant newlines

* Maintain all substituions in the same place

* Remove two redundant lines

* Contribute examples to etsdemo (#380)

* remove logging from hello world and motd

* remove logging from other examples

* move examples into envisage

* update the single URL in docs/conf.py

* add examples as package_data

* add entry point

* flake8

* add demo folder and update package_data based off code review suggestion

* Update docs/source/conf.py

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>

* rename and add test for entry point

* move GUI_Application example into envisage/examples

* move old examples into envisage/examples/demo/legacy

* Revert "move old examples into envisage/examples/demo/legacy"

This reverts commit c026040.

* move old examples into a new subdirectory called legacy

* add a readme to reference new location for examples

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>

* more changelog updates

* more changes to changelog

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>
Co-authored-by: Mark Dickinson <mdickinson@enthought.com>

* add release date

Co-authored-by: Kit Choi <kitchoi@users.noreply.github.com>
Co-authored-by: Mark Dickinson <mdickinson@enthought.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Consider contributing a few examples to etsdemo.
3 participants