Re: spatial versioning

2014-07-07 Thread Kent Tenney
So how do we get to play with this? https://gist.github.com/ktenney/d474f8034c84c56b74e7 is a plugin which implements the basic stuff as 'lndb' (Leo node database), sqlalchemy is the only dependency. Lightly tested. Thanks, Kennt On Wed, Jul 2, 2014 at 10:32 AM, Edward K. Ream

Re: spatial versioning

2014-07-07 Thread Kent Tenney
Btw, is there a reason not to use c.db? I'm sticking with a database for a couple reasons: access from outside Leo, debugging and inspection tools, flexibility. The postgresql store is network accessible, might evolve into some kind of collaboration thingy. On Fri, Jul 4, 2014 at 10:06 AM,

Re: Using leo for documentation (rst3 html)

2014-07-07 Thread Todd Mars
The Repeats: It is to perform a command when the user stops typing, right? --If the user has not type, nothing is done. --If the user has typed, then the timer starts. If there was a timer already, it's just reset to the delay time. --when the timer fires, the command is executed. just

Re: Using leo for documentation (rst3 html)

2014-07-07 Thread 'Terry Brown' via leo-editor
On Mon, 7 Jul 2014 09:59:09 -0700 (PDT) Todd Mars tamn...@gmail.com wrote: The Repeats: It is to perform a command when the user stops typing, right? --If the user has not type, nothing is done. --If the user has typed, then the timer starts. If there was a timer already, it's

How to Ctrl-C a script started by Ctrl-B?

2014-07-07 Thread SegundoBob
Does anyone know how to cancel a Leo-Editor script that is started by Ctrl-B? I know how to use Ctrl-C to cancel a python script that is run from the command line: import sys import time idx = 0 try: while True: print '{0}\r'.format(idx), sys.stdout.flush() idx +=

Re: How to Ctrl-C a script started by Ctrl-B?

2014-07-07 Thread 'Terry Brown' via leo-editor
On Mon, 7 Jul 2014 18:55:11 -0700 (PDT) SegundoBob segundo...@gmail.com wrote: Does anyone know how to cancel a Leo-Editor script that is started by Ctrl-B? I'm not sure if it can be done from Leo, I think the Ctrl-B scripts are run in the same process as Leo itself. Would a solution