Re: Why is Script 'leo-m.exe' not available in Leo 6.1-final on PyPI?

2020-01-03 Thread Matt Wilkie
> > Why is the script 'leo-m.exe' available in the development-/ beta version >>> of Leo (e.g. 6.1-b1-devel) but not in the master-/ final version of Leo >>> (e.g. 6.1-final) at PyPI? >>> >> >> It's because master lags behind devel. It was inadvertently left out of >> the last master (final)

Re: Why is Script 'leo-m.exe' not available in Leo 6.1-final on PyPI?

2020-01-03 Thread Matt Wilkie
> > Thanks for this reminder. - Yes, it does work for leo.core.runLeo - but - > it does not work for launchLeo.py, since this file is not part of the Leo > package when installed from PyPI. > > AFAICT this is related to what Matt called "Leo's issue with (newer) > Python Packaging Preferences"

Re: Why is Script 'leo-m.exe' not available in Leo 6.1-final on PyPI?

2020-01-03 Thread Matt Wilkie
> > BTW, it's easier to run these modules using python -m, since you don't > have to keep coming up with the full path. That is: > > python -m leo.core.runLeo # or launchLeo or whatever > > Of course, the leo directory location has to be known to Python if it's not > in the standard location

Re: PDF output for RsT/Sphinx documents works again

2020-01-03 Thread Matt Wilkie
Good things to know. Thanks! The rst2pdf project looks relatively vibrant so I would expect your fixes or something approximating them to be incorporated before too long. -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this

Re: Question about "Import leoGlobals, but do NOT set g."

2020-01-03 Thread Brian Theado
On Fri, Jan 3, 2020 at 7:21 AM Edward K. Ream wrote: > On Thu, Jan 2, 2020 at 12:11 PM Brian Theado > wrote: > > For runLeo.py, the code looks like this: >> >> # Import leoGlobals, but do NOT set g. >> import leo.core.leoGlobals as leoGlobals >> # Create g.app. >> import leo.core.leoApp as

Re: Progress on ViewRendered2

2020-01-03 Thread Thomas Passin
On Friday, December 27, 2019 at 6:35:04 PM UTC-5, Thomas Passin wrote: > > I have made a lot of progress on re-implementing *Viewrendered2 *in the > QT5 era, and I wanted to share where I am with it. > Here's the new work as of today: - I completely re-implemented the code that reads a node's

Re: Question about "Import leoGlobals, but do NOT set g."

2020-01-03 Thread Edward K. Ream
On Thu, Jan 2, 2020 at 12:11 PM Brian Theado wrote: For runLeo.py, the code looks like this: > > # Import leoGlobals, but do NOT set g. > import leo.core.leoGlobals as leoGlobals > # Create g.app. > import leo.core.leoApp as leoApp > leoGlobals.app = leoApp.LeoApp() > # **Now** we can set g. > g