Re: Python with Ecmascript

2008-07-11 Thread Daniel Fetchinson
>>>NJSModule? >>>http://en.wikipedia.org/wiki/NJS > >> This seems to be very good indeed. Just downloaded njs but the only >> njsmodule version I could find was for python 2.1. Does anyone have a >> recent copy? > > 1. You might ask here: > http://lists.njs-javascript.org/cgi-bin/mailman/listinfo/u

Re: Python with Ecmascript

2008-07-11 Thread Alan Isaac
NJSModule? http://en.wikipedia.org/wiki/NJS Daniel Fetchinson wrote: This seems to be very good indeed. Just downloaded njs but the only njsmodule version I could find was for python 2.1. Does anyone have a recent copy? 1. You might ask here: http://lists.njs-javascript.org/cgi-bin/mailman/

Re: Python with Ecmascript

2008-07-10 Thread Daniel Fetchinson
>> Is there a way to do similar things on linux? > > NJSModule? > http://en.wikipedia.org/wiki/NJS This seems to be very good indeed. Just downloaded njs but the only njsmodule version I could find was for python 2.1. Does anyone have a recent copy? Cheers, Daniel -- Psss, psss, put it down! - h

Re: Python with Ecmascript

2008-07-10 Thread Alan Isaac
Daniel Fetchinson wrote: Is there a way to do similar things on linux? NJSModule? http://en.wikipedia.org/wiki/NJS Alan Isaac -- http://mail.python.org/mailman/listinfo/python-list

Re: Python with Ecmascript

2008-07-07 Thread sysprv
On Jul 7, 9:23 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On 7 Èec, 08:21, alex23 <[EMAIL PROTECTED]> wrote: > > > On Jul 7, 12:31 am, "[EMAIL PROTECTED]" > > > <[EMAIL PROTECTED]> wrote: > > > I personally does not like COM solution. I prefer some simple library > > > but may be it is

Re: Python with Ecmascript

2008-07-07 Thread [EMAIL PROTECTED]
On 7 Čec, 08:21, alex23 <[EMAIL PROTECTED]> wrote: > On Jul 7, 12:31 am, "[EMAIL PROTECTED]" > > <[EMAIL PROTECTED]> wrote: > > I personally does not like COM solution. I prefer some simple library > > but may be it is just a hope. > > Have you looked at the module 'python-spidermonkey'? It appare

Re: Python with Ecmascript

2008-07-06 Thread alex23
On Jul 7, 12:31 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I personally does not like COM solution. I prefer some simple library > but may be it is just a hope. Have you looked at the module 'python-spidermonkey'? It apparently "allows for the implementation of Javascript classes, objec

Re: Python with Ecmascript

2008-07-06 Thread [EMAIL PROTECTED]
On 6 Čec, 07:02, Tim Roberts <[EMAIL PROTECTED]> wrote: > "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > >for my Python application (Windows platform) to be standards > >compliant, I need to embbed Ecmascript(Javascript) interpreter - I > >need to execute plugins written in this language. > >

Re: Python with Ecmascript

2008-07-06 Thread Daniel Fetchinson
>> Is there a way to do similar things on linux? > > I think no. Because these tech use COM. And COM don't exist under xxnux. > But: > - look if XPCOM, or dBus) can help you > - search with the word "MOZLAB", who work a solution (plugin) for > drive Firefox, from an external software. Wow, moz

Re: Python with Ecmascript

2008-07-05 Thread M�ta-MCI (MVP)
Hi! Is there a way to do similar things on linux? I think no. Because these tech use COM. And COM don't exist under xxnux. But: - look if XPCOM, or dBus) can help you - search with the word "MOZLAB", who work a solution (plugin) for drive Firefox, from an external software. Good luck! --

Re: Python with Ecmascript

2008-07-05 Thread Tim Roberts
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > >for my Python application (Windows platform) to be standards >compliant, I need to embbed Ecmascript(Javascript) interpreter - I >need to execute plugins written in this language. What standard are you hoping to comply with? I mean, what kind of a

Re: Python with Ecmascript

2008-07-05 Thread Daniel Fetchinson
> Ecmascript (Jscript) is Active-Scripting compliant. > With PyWin32, you can : > - call JScript functions (with parameters) > - define pieces of code (& run it) > > Another way, is to drive Internet-Explorer (via COM). You can set the > IE-Windows as invisible, and connect the motor of exe

Re: Python with Ecmascript

2008-07-05 Thread M�ta-MCI (MVP)
Hi! Ecmascript (Jscript) is Active-Scripting compliant. With PyWin32, you can : - call JScript functions (with parameters) - define pieces of code (& run it) Another way, is to drive Internet-Explorer (via COM). You can set the IE-Windows as invisible, and connect the motor of execution (

Re: Python with Ecmascript

2008-07-05 Thread Phil Thompson
On Sat, 5 Jul 2008 06:28:42 -0700 (PDT), "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hello, > > for my Python application (Windows platform) to be standards > compliant, I need to embbed Ecmascript(Javascript) interpreter - I > need to execute plugins written in this language. Which engine is

Python with Ecmascript

2008-07-05 Thread [EMAIL PROTECTED]
Hello, for my Python application (Windows platform) to be standards compliant, I need to embbed Ecmascript(Javascript) interpreter - I need to execute plugins written in this language. Which engine is suitable for Python, I have found bunch of them. Any recomendations are welcome. To be more spec