Re: A couple of tracebacks when running leo's own tests

2008-08-23 Thread zpcspm
One more traceback for r890. $ bzr pull ... All changes applied successfully. Now on revision 890. Running tests: @enabled-plugins found in unitTest.leo This is a fixed window @suite run all doctests (windows only) script did not set g.app.scriptDict @suite test syntax of all plugins script

Idle curiosity

2008-08-23 Thread Kent Tenney
Ignore this if it is only a reflection of my ignorance of details. Could shadow files be .leo files? I've always liked that if I do Outline-Copy Node and make a file from what is in the clipboard, it is a valid Leo file. Is there a basic difference in requirements which demands that shadow

Re: Leo now requires Python 2.4 or higher

2008-08-23 Thread Edward K. Ream
On Fri, Aug 22, 2008 at 7:24 PM, thyrsus [EMAIL PROTECTED] wrote: I represent only two users in my environment, and if Python 2.4 must be, you'll have to leave us behind for a while. What's the earliest version of Python that you use? Maybe we'll make that the minimum :-) Edward

Re: Idle curiosity

2008-08-23 Thread Edward K. Ream
On Sat, Aug 23, 2008 at 5:45 AM, Kent Tenney [EMAIL PROTECTED] wrote: Could shadow files be .leo files? No. They must be derived files or the fundamental algorithm won't work. Edward --~--~-~--~~~---~--~~ You received this message because you are subscribed

Tabs instead of spaces in exported clean files

2008-08-23 Thread zpcspm
I have a script button that writes clean files (without sentinels). You can see the code here: http://pastebin.com/f5b797cec If I have a @thin derived file that contains Python source code and starts with: --- cut here --- @first #!/usr/bin/env python @language python @tabwidth 4 --- cut here

Re: a more controversial suggestion?

2008-08-23 Thread billp9619
My thought would be to have the headline remain as it is but display text given in the body. Any editing would need to switch to the real node text (besides just different syntax coloring). Likewise, I would like to be able to express user attributes in the body as directives, so that they are

Re: Let straighten out the settings mess

2008-08-23 Thread Edward K. Ream
On Aug 16, 12:39 pm, Alia K [EMAIL PROTECTED] wrote: +1 for the following unix-like structure for per user leo settings: $HOME/.leo     leoID.txt     myLeoSettings.leo     etc.. rev 891 now uses this directory structure for all files that were formerly in the $HOME directory. Leo will

Re: leo.zwiki.org down?

2008-08-23 Thread Edward K. Ream
On Fri, Aug 22, 2008 at 7:29 PM, thyrsus [EMAIL PROTECTED] wrote: It's been giving Service Temporarily Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Apache/2.2.4 (Ubuntu) Server at

Re: Tabs instead of spaces in exported clean files

2008-08-23 Thread zpcspm
On Aug 23, 10:59 pm, Edward K. Ream [EMAIL PROTECTED] wrote: @tabwidth -4 specifies 4 spaces, @tabwidth 4 specifies tabs whose effective width is 4 spaces. Your script uses at.write, which follows this convention. So it seem like you are getting the expected results. If you don't like