Launcher class for Elinks browsers.
| 336 | |
| 337 | |
| 338 | class Elinks(UnixBrowser): |
| 339 | """Launcher class for Elinks browsers.""" |
| 340 | |
| 341 | remote_args = ['-remote', 'openURL(%s%action)'] |
| 342 | remote_action = "" |
| 343 | remote_action_newwin = ",new-window" |
| 344 | remote_action_newtab = ",new-tab" |
| 345 | background = False |
| 346 | |
| 347 | # elinks doesn't like its stdout to be redirected - |
| 348 | # it uses redirected stdout as a signal to do -dump |
| 349 | redirect_stdout = False |
| 350 | |
| 351 | |
| 352 | class Konqueror(BaseBrowser): |
no outgoing calls
no test coverage detected