Re: [pygame] pygame web plugin

2008-09-07 Thread Campbell Barton
Im still a bit at a loss as to where the blocking problem is... if I was to sandbox cpython for a pygame heres what Id try. - replace builtins like import, compile, exec, reload through the C api (as with the blender3d example I posted earlier, scripters will need to write scripts accounting for

Re: [pygame] pygame web plugin

2008-09-07 Thread Bob Ippolito
On Sun, Sep 7, 2008 at 12:49 PM, Campbell Barton <[EMAIL PROTECTED]> wrote: > Im still a bit at a loss as to where the blocking problem is... > > if I was to sandbox cpython for a pygame heres what Id try. > > - replace builtins like import, compile, exec, reload through the C > api (as with the b

Re: [pygame] pygame web plugin

2008-09-07 Thread Noah Kantrowitz
On Sep 7, 2008, at 10:49 AM, Campbell Barton wrote: Im still a bit at a loss as to where the blocking problem is... if I was to sandbox cpython for a pygame heres what Id try. - replace builtins like import, compile, exec, reload through the C api (as with the blender3d example I posted earl

Re: [pygame] pygame web plugin

2008-09-07 Thread Ron Dippold
This is something Java actually does pretty well. I dislike it for the most part, but its sandboxing is better than anything I've ever seen (except certain secure OSes). Flash actually does it pretty well now too, though holes keep turning up occasionally. Interestingly, unless they've changed

Re: [pygame] pygame web plugin

2008-09-07 Thread [EMAIL PROTECTED]
On 9/7/08, Ron Dippold <[EMAIL PROTECTED]> wrote: > > This is something Java actually does pretty well. I dislike it for the most > part, but its sandboxing is better than anything I've ever seen (except > certain secure OSes). Flash actually does it pretty well now too, though > holes keep turning

Re: [pygame] pygame web plugin

2008-09-07 Thread Campbell Barton
On Mon, Sep 8, 2008 at 4:42 AM, Bob Ippolito <[EMAIL PROTECTED]> wrote: > On Sun, Sep 7, 2008 at 12:49 PM, Campbell Barton <[EMAIL PROTECTED]> wrote: >> Im still a bit at a loss as to where the blocking problem is... >> >> if I was to sandbox cpython for a pygame heres what Id try. >> >> - replace

Re: [pygame] pygame web plugin

2008-09-07 Thread Bob Ippolito
On Sun, Sep 7, 2008 at 1:56 PM, Ron Dippold <[EMAIL PROTECTED]> wrote: > This is something Java actually does pretty well. I dislike it for the most > part, but its sandboxing is better than anything I've ever seen (except > certain secure OSes). Flash actually does it pretty well now too, though >