Message3079

Author pjenvey
Recipients arjaan, pjenvey
Date 2008-03-10.01:46:36
SpamBayes Score 0.01954907
Marked as misclassified No
Message-id <1205113596.76.0.584991290944.issue1762054@psf.upfronthosting.co.za>
In-reply-to
Content
I'd really like to add the webbrowser module (Paste imports it) but 
unfortunately it's kind of useless without the platform specific ic 
module.

Without ic it will try spawning console browsers on POSIX systems via 
os.system. The problem with that is our os.system can't share the jython 
process's stdin with the child webbrowser process (a limitation of 
Java), so you can't actually use the browser.

Java 1.6 provides similar functionality via java.awt.Desktop.browse. We 
could utilize that (it will refuse to work on a headless environment 
though)
History
Date User Action Args
2008-03-10 01:46:36pjenveysetspambayes_score: 0.0195491 -> 0.01954907
recipients: + pjenvey, arjaan
2008-03-10 01:46:36pjenveysetspambayes_score: 0.0195491 -> 0.0195491
messageid: <1205113596.76.0.584991290944.issue1762054@psf.upfronthosting.co.za>
2008-03-10 01:46:36pjenveylinkissue1762054 messages
2008-03-10 01:46:36pjenveycreate