Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread bruno at modulix
Adrian Holovaty wrote: > bruno at modulix wrote: > >>RoR is not an IDE, it's a web framework. The closest things in Python >>are TurboGears (good Ajax/js support via Mochikit), Subway (never >>tested), and Django (no Ajax support AFAIK). > > > Note that "no Ajax support" is misleading. Of course

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Paul Boddie
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework >doesn't provide anything by itself. I'm not going to argue whether Django supports "Ajax" or not, but I will agree that for the desired

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Paul Boddie
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework >doesn't provide anything by itself. I'm not going to argue whether Django supports "Ajax" or not, but I will agree that for the desired

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Paul Boddie
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework >doesn't provide anything by itself. I'm not going to argue whether Django supports "Ajax" or not, but I will agree that for the desired

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Adrian Holovaty
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework > doesn't provide anything by itself. Would you say the CGI module offers > support for templating, data persistance and Ajax as well ?-)

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Aahz
In article <[EMAIL PROTECTED]>, Paul Boddie <[EMAIL PROTECTED]> wrote: > >I personally don't believe very strongly in this server-side >serialisation of various non-displayable formats for potentially large >amounts of client-side code to unpack, process, stuff into different >places, and so on. As

ANN: SPE 0.7.0.a Python IDE now with uml viewer

2004-12-21 Thread www.stani.be
Spe is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index, auto todo list, sticky notes, integrated pycrust shell, python file browser, recent file browser, drag&drop, context help, ... Special is

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-02 Thread Daniel Bickett
This is certainly a worthy topic. There are several IDEs for Python (one I like very much being Komodo) that have plenty of fancy debugging features and advanced operations, however I have yet to encounter (elsewhere) the convenience that comes with being able to press F5 and have an interactive in

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-02 Thread Stephen Waterbury
Daniel Bickett wrote: This is certainly a worthy topic. There are several IDEs for Python (one I like very much being Komodo) that have plenty of fancy debugging features and advanced operations, however I have yet to encounter (elsewhere) the convenience that comes with being able to press F5 and

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-02 Thread Ashot
WingIDE looks nice though, and it seems that the interactive shell is built in from the screenshots. Can you run a program to a certain point break point and use the shell? On Wed, 02 Feb 2005 23:40:40 -0500, Stephen Waterbury <[EMAIL PROTECTED]> wrote: Daniel Bickett wrote: This is certai

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Fuzzyman
If you use IPython for your interactive mode stuff, you'll have a nice history... Regards, Fuzzy http://www.voidspace.org.uk/python/index.shtml -- http://mail.python.org/mailman/listinfo/python-list

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Pierre Barbier de Reuille
Fuzzyman a écrit : If you use IPython for your interactive mode stuff, you'll have a nice history... Regards, Fuzzy http://www.voidspace.org.uk/python/index.shtml Best event : if your "EDITOR" system variable in "vim", using the "ed" command in ipython will bring "vim" with (eventually) the code y

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Bruno Desthuilliers
Daniel Bickett a écrit : This is certainly a worthy topic. There are several IDEs for Python (one I like very much being Komodo) that have plenty of fancy debugging features and advanced operations, however I have yet to encounter (elsewhere) the convenience that comes with being able to press F5 a

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Bruno Desthuilliers
Pierre Barbier de Reuille a écrit : Fuzzyman a écrit : If you use IPython for your interactive mode stuff, you'll have a nice history... Regards, Fuzzy http://www.voidspace.org.uk/python/index.shtml Best event : if your "EDITOR" system variable in "vim", using the "ed" command in ipython will brin

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Richie Hindle
[Ashot] > I have been frustrated for quite some time with a lack of a history > command in IDLE To recall a line from your history in IDLE, cursor up to that line and hit Enter. > I've tried something called pyCrust, but this too didn't have history To recall a line from your history in PyCru

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Steve Holden
Ashot wrote: WingIDE looks nice though, and it seems that the interactive shell is built in from the screenshots. Can you run a program to a certain point break point and use the shell? Indeed you can - there's an interpreter available that executes in the context of the current stack frame

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Steve Holden
Richie Hindle wrote: [Ashot] I have been frustrated for quite some time with a lack of a history command in IDLE To recall a line from your history in IDLE, cursor up to that line and hit Enter. The history is required to be available in a chunk, to copy and paste into a file. I've tried some

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Kartic
Ashot said the following on 2/2/2005 9:45 PM: Vim related: -- Ideally, it would be nice to have a command mapped to a keystroke that can append the last executed command to a file. Even better would be a system that would integrate the file editing and interactive command

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Richie Hindle
[Steve] > The history is required to be available in a chunk, to copy and paste > into a file. I see, sorry, I didn't catch that the first time round. (In PyCrust you can use Alt+LeftDrag to copy a rectangular selection - you'll still need to remove any output, but at least you can get rid of

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-03 Thread Markus Wankus
I highly recommend trying pyDev. 0.9 just came out, and I find 0.85 very usable and quite cool. There is nice debug support, and context-sensitive code completion as well as real-time validation of your code. This is an exciting project with a bright future in my opinion. Markus. Ashot wrote

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-04 Thread TZOTZIOY
On Wed, 02 Feb 2005 20:45:48 -0600, rumours say that Ashot <[EMAIL PROTECTED]> might have written: >I have been frustrated for quite some time with a lack of a history >command in IDLE (in fact with IDLE in general). Often I'll develop new >code at the command line, testing each line as I go.

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-04 Thread http://www.stani.be
I think SPE has exactly what you need. Next to the shell there is the session, which has only the commands typed on the interactive prompt. Stani http://spe.pycs.net Ashot wrote: > This is sort of both Python and Vim related (which is why I've posted to > both newsgroups). > > Python related: >

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-05 Thread Tim Hoffman
Have a gander at Boa Constructor. YOu can certainly go to a shell when debugging. (ie set breakpoint) then the shell is attached to that context. T Ashot wrote: This is sort of both Python and Vim related (which is why I've posted to both newsgroups). Python related: -- I hav

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-05 Thread Pat
Ashot wrote: > This is sort of both Python and Vim related (which is why I've posted to > both newsgroups). > > Python related: > -- > I have been frustrated for quite some time with a lack of a history > command in IDLE (in fact with IDLE in general). Often I'll develop new >

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-05 Thread Fernando Perez
Hi, Ashot wrote: > This is sort of both Python and Vim related (which is why I've posted to > both newsgroups). [...] I know you've been using ipython recently (the readline color bugs), so perhaps my reply is a bit redundant. Forgive me if that's the case, I just want to give you some useful

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-06 Thread Ashot
On Sat, 05 Feb 2005 11:07:40 -0700, Fernando Perez <[EMAIL PROTECTED]> wrote: Hi, Ashot wrote: This is sort of both Python and Vim related (which is why I've posted to both newsgroups). [...] I know you've been using ipython recently (the readline color bugs), so perhaps my reply is a bit redundant

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-06 Thread Ashot
On Mon, 07 Feb 2005 00:55:07 -0600, Ashot <[EMAIL PROTECTED]> wrote: On Sat, 05 Feb 2005 11:07:40 -0700, Fernando Perez <[EMAIL PROTECTED]> wrote: Hi, Ashot wrote: This is sort of both Python and Vim related (which is why I've posted to both newsgroups). [...] I know you've been using ipython recen

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-07 Thread Fernando Perez
Ashot wrote: > yup, this is why I've been using it, its (almost exactly :) what I was looking > for. I had tried it before, but was reluctant to use it because the windows > terminal is not very appealing. Some things I've noticed so far that I think > could be improved, some of which are minor b

Re: IDLE history, Python IDE, and Interactive Python with Vim

2005-02-07 Thread Fernando Perez
Ashot wrote: > Sorry, a few more things I forgot to mention having to do with editing > multiline entries in the console: > > Autotab setting doesn't seem to have any effect, I have to type "ctrl-o" > manually I've noticed it doesn't work under win32. It's fine under *nix. There's only so much

A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Kirill Simonov
Hi, Could anyone suggest me a simple IDE suitable for teaching Python as a first programming language to high school students? It is necessary that it has a good support for input/output in Cyrillic. Unfortunately, most IDEs I tried failed miserably in this respect. My test was simple: I've run

A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Kirill Simonov
On Sat, Nov 18, 2006 at 10:08:22PM +0300, Oleg Broytmann wrote: > On Sat, Nov 18, 2006 at 09:01:04PM +0200, Kirill Simonov wrote: > > Could anyone suggest me a simple IDE suitable for teaching Python as a > > first programming language to high school students? > >Does it have to be an IDE? Wou

Re:A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Kirill Simonov
On Sat, Nov 18, 2006 at 01:22:44PM -0600, Larry Bates wrote: > Oleg Broytmann wrote: > > On Sat, Nov 18, 2006 at 09:01:04PM +0200, Kirill Simonov wrote: > >> Could anyone suggest me a simple IDE suitable for teaching Python as a > >> first programming language to high school students? > > > >D

ANN: SPE 0.7.2.C Python IDE with wxGlade, UML & Blender support

2005-02-24 Thread http://www.stani.be
Spe is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index, auto todo list, sticky notes, integrated pycrust shell, python file browser, recent file browser, drag&drop, context help, ... Special is

SPE 0.7.5.e - Python IDE with improved uml, debugger & unicode support

2005-11-02 Thread SPE - Stani's Python Editor
is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index, auto todo list, sticky notes, integrated pycrust shell, python file browser, recent file browser, drag&drop, context help, ... Special is its blende

ANN: SPE 0.8.1.b Python IDE (complete rewrite for running files)

2005-12-14 Thread SPE - Stani's Python Editor
Stone (bug report) Development: * http://developer.berlios.de/mail/?group_id=4161 Donations (thanks!): * Widhaya Trisarnwadhana About SPE: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index,

Re: SPE 0.8.1.b Python IDE (complete rewrite for running files)

2005-12-15 Thread Yechezkal Gutfreund
debug support) > * Thurston Stone (bug report) > > Development: > * http://developer.berlios.de/mail/?group_id=4161 > > Donations (thanks!): > * Widhaya Trisarnwadhana > > About SPE: > SPE is a python IDE with auto-indentation, auto completion, call tips

ANN: SPE 0.8.2.a Python IDE: configure styles, interactive terminals & ubuntu

2006-01-26 Thread SPE - Stani's Python Editor
pe.deb (be sure to have pythonX.X-dev installed) :**Development**: - http://developer.berlios.de/mail/?group_id=4161 About SPE: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index, auto todo list, stick

Re: Re:A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread PyScripter
Kirill Simonov wrote: > PyScripter does, indeed, look nice, but unfortunately it appeared to > have similar issues with cyrillic support. Thank you anyway for the > suggestion. What are the issues? PyScripter offers full support for utf-8 encoded files and PEP-263. The editor internally is uni

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Leo Kislov
Kirill Simonov wrote: > Hi, > > Could anyone suggest me a simple IDE suitable for teaching Python as a > first programming language to high school students? It is necessary > that it has a good support for input/output in Cyrillic. > > Unfortunately, most IDEs I tried failed miserably in this resp

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Alan Franzoni
Kirill Simonov si è divertito a scrivere: > Unfortunately, most IDEs I tried failed miserably in this respect. My > test was simple: I've run the code > name = raw_input("What's your name? ") # written in Russian > print "Hello, %s!" % name # in Russian as well > both from

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Kirill Simonov
On Sun, Nov 19, 2006 at 12:33:39PM +0100, Alan Franzoni wrote: > Kirill Simonov si è divertito a scrivere: > > > Unfortunately, most IDEs I tried failed miserably in this respect. My > > test was simple: I've run the code > > name = raw_input("What's your name? ") # written in Russian > >

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Alan Franzoni
Kirill Simonov si è divertito a scrivere: > On Sun, Nov 19, 2006 at 12:33:39PM +0100, Alan Franzoni wrote: > No, I would prefer the editor to save the .py files with non-ASCII > characters in UTF-8 encoding adding the BOM at the beginning of the > file. This will allow the interpreted to detect

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Kirill Simonov
On Sun, Nov 19, 2006 at 03:27:32AM -0800, Leo Kislov wrote: > IDLE on Windows works fine for your example in interactive console: > > >>> name = raw_input("What's your name? ") Have you tried to use cyrillic characters in a Python string in interactive console? When I do it, I get the "Unsupporte

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Kirill Simonov
On Sun, Nov 19, 2006 at 03:13:30PM +0100, Alan Franzoni wrote: > Kirill Simonov si è divertito a scrivere: > > > On Sun, Nov 19, 2006 at 12:33:39PM +0100, Alan Franzoni wrote: > > > No, I would prefer the editor to save the .py files with non-ASCII > > characters in UTF-8 encoding adding the BO

Re: Re:A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Kirill Simonov
On Sat, Nov 18, 2006 at 06:11:48PM -0800, PyScripter wrote: > Kirill Simonov wrote: > > PyScripter does, indeed, look nice, but unfortunately it appeared to > > have similar issues with cyrillic support. Thank you anyway for the > > suggestion. > > > What are the issues? PyScripter offers full s

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Leo Kislov
Kirill Simonov wrote: > On Sun, Nov 19, 2006 at 03:27:32AM -0800, Leo Kislov wrote: > > IDLE on Windows works fine for your example in interactive console: > > > > >>> name = raw_input("What's your name? ") > > Have you tried to use cyrillic characters in a Python string in > interactive console?

Re: A python IDE for teaching that supports cyrillic i/o

2006-11-22 Thread od
tool69 wrote: > Sorry, but did someone knows if Pida works under Windows ? > Thanks. No, it doesn't really. You can start it up with a bit of hacking, and I have seen screenshots around, but only with the scintilla-based editor. We are waiting for SVG support in GTK on windows. Writing a vim-win

ANN: SPE 0.7.3.a Python IDE with wxGlade, Blender and PyChecker support

2005-03-23 Thread s_t_a_n_i
Spe is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index, auto todo list, sticky notes, integrated pycrust shell, python file browser, recent file browser, drag&drop, context help, ... Special is

Re: ANN: SPE 0.8.2.a Python IDE: configure styles, interactive terminals & ubuntu

2006-01-26 Thread Claudio Grondi
rian (16.10 euro) > - Amit Antebi (10 euro) > - Steven Hepple (10 euro) > > The development of SPE is driven by donations. > > :**Installation**: > > - See http://pythonide.stani.be/manual/html/manual2.html > - For ubuntu: dpkg -i spe.deb (be sure to have pythonX.X-dev inst

Re: ANN: SPE 0.8.2.a Python IDE: configure styles, interactive terminals & ubuntu

2006-01-28 Thread dimitri pater
Hi,From: http://www.serpia.org/spe switching to http://www.serpia.org/sorry"""please enable _javascript_ in your browser to visit serpia.orgif you think that sucks, please contact me about it if not, enable _javascript_ and click here"""If you would like to know how much people find, it sucks, thi

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Oleg Broytmann
On Sat, Nov 18, 2006 at 09:01:04PM +0200, Kirill Simonov wrote: > Could anyone suggest me a simple IDE suitable for teaching Python as a > first programming language to high school students? Does it have to be an IDE? Wouldn't it be better to use a simple text editor + command line? Oleg. --

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread tom
Oleg Broytmann wrote: > On Sat, Nov 18, 2006 at 09:01:04PM +0200, Kirill Simonov wrote: > >> Could anyone suggest me a simple IDE suitable for teaching Python as a >> first programming language to high school students >> which operating system would this concern? IDLE which you might find

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Larry Bates
Oleg Broytmann wrote: > On Sat, Nov 18, 2006 at 09:01:04PM +0200, Kirill Simonov wrote: >> Could anyone suggest me a simple IDE suitable for teaching Python as a >> first programming language to high school students? > >Does it have to be an IDE? Wouldn't it be better to use a simple text > ed

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Oleg Broytmann
On Sat, Nov 18, 2006 at 09:22:48PM +0200, Kirill Simonov wrote: > On Sat, Nov 18, 2006 at 10:08:22PM +0300, Oleg Broytmann wrote: > > On Sat, Nov 18, 2006 at 09:01:04PM +0200, Kirill Simonov wrote: > > > Could anyone suggest me a simple IDE suitable for teaching Python as a > > > first programming

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Kirill Simonov
On Sat, Nov 18, 2006 at 07:20:49PM +, tom wrote: > Oleg Broytmann wrote: > > On Sat, Nov 18, 2006 at 09:01:04PM +0200, Kirill Simonov wrote: > > > >> Could anyone suggest me a simple IDE suitable for teaching Python as a > >> first programming language to high school students > >> > whi

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Kirill Simonov
On Sat, Nov 18, 2006 at 10:52:35PM +0300, Oleg Broytmann wrote: > On Sat, Nov 18, 2006 at 09:22:48PM +0200, Kirill Simonov wrote: > > Preferably. I believe that using a editor + command line will only make > > things worse because console and GUI have different encodings under > > Windows. > >

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Gleb Kulikov
В сообщении от Воскресенье 19 Ноябрь 2006 01:01 Kirill Simonov написал: > first programming language to high school students? It is necessary > Unfortunately, most IDEs I tried failed miserably in this respect. My > For the record, I've checked IDLE, PythonWin, Eric, DrPython, SPE, and Pardon

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread Kirill Simonov
On Sun, Nov 19, 2006 at 02:49:43AM +0600, Gleb Kulikov wrote: > В сообщении от Воскресенье 19 Ноябрь 2006 01:01 Kirill Simonov написал: > > > first programming language to high school students? It is necessary > > > Unfortunately, most IDEs I tried failed miserably in this respect. My > > > For

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread Alexey Wasilyev
Здравствуйте, Kirill. Вы писали 18 ноября 2006 г., 22:22:48: >> > Could anyone suggest me a simple IDE suitable for teaching Python as a >> > first programming language to high school students? >> >>Does it have to be an IDE? Wouldn't it be better to use a simple text >> editor + command line

Re: [Zopyrus] A python IDE for teaching that supports cyrillic i/o

2006-11-19 Thread tool69
Sorry, but did someone knows if Pida works under Windows ? Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Fund raising for SPE (Python IDE) on Mac Os X is great success!!

2005-10-20 Thread SPE - Stani's Python Editor
Hi, I'd like to thank everyone who contributed, especially Richard Brown from Dartware and Rick Thomas. I'm highly impressed that the smallest user base of SPE collected the largest donation ever to SPE. Now it's my turn to impress the SPE Mac users. As such the light is green for SPE on the Mac.

ANN: SPE 0.8.0.b Python IDE (new: Mac support, doc viewer and workspaces)

2005-12-01 Thread SPE - Stani's Python Editor
he advertisements on SPE's websites generate a moderate, but necesssary income. From now on if you donate, you can ask me by email an ad-free, nice pdf version of the manual. :**About SPE**: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, s

Re: Fund raising for SPE (Python IDE) on Mac Os X is great success!!

2005-10-20 Thread dimitri pater
Dear Stani, It is good to hear that the donation was a success. And you deserve it, your contribution to the Python community is an example fot others and I am convinced that every donation, be it large or small, is well spent! A lot of us use SPE, don't we? greetz, DimitriOn 20 Oct 2005 12:38:04

<    1   2   3