Launcher class for Elinks browsers.
| 344 | |
| 345 | |
| 346 | class Elinks(UnixBrowser): |
| 347 | """Launcher class for Elinks browsers.""" |
| 348 | |
| 349 | remote_args = ['-remote', 'openURL(%s%action)'] |
| 350 | remote_action = "" |
| 351 | remote_action_newwin = ",new-window" |
| 352 | remote_action_newtab = ",new-tab" |
| 353 | background = False |
| 354 | |
| 355 | # elinks doesn't like its stdout to be redirected - |
| 356 | # it uses redirected stdout as a signal to do -dump |
| 357 | redirect_stdout = False |
| 358 | |
| 359 | |
| 360 | class Konqueror(BaseBrowser): |
no outgoing calls
no test coverage detected
searching dependent graphs…