I'm working on an extension which must be able to call a external program.
In firefox, nsIProcess can be used and it's very easy.
But opera's UserJS or widget seems very weak and have no such function.
Is there some working around?

Another question, I tried to use protocols handlers.
It's just weird, and strange problems show up.

  1. When the URL passed to the protocol handler has UTF-8 character like %AE in it,
    whether escape() it or not, the handler cannot receive the correct URL.
    I have to replace % with some strange strings to avoid this. It's really a ugly solution.
    It only appears in Linux, opera 11.0.
    I'm starting to think it's a bug.
  2. In Opera Linux, it will replace all the backslash in URL with '/'. I don't want this, how to disable it?
link|improve this question

62% accept rate
There's an open feature request for nsIProcess on the extension api wishlist: dev.opera.com/forums/topic/… Maybe it will come some day. – eckes Dec 21 '10 at 11:19
feedback

1 Answer

Regarding the second part of your question, have you tried using the encodeURI() function for escaping your URLs?

link|improve this answer
Yep, tried that. I misspoke on the question. In fact, escape() works find, but it's not the standard form of URL since it's in unicode like %uXXXX, besides this, neither of encodeURI() and encodeURIComponent() works. – Shiva Wu Dec 23 '10 at 12:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.