package b0

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module B0_web_browserSource

Web browser interaction.

B0_web_browser opens and reloads URLs in the user's browsers. Up to severe platform and browser application limitations it tries to limit the creation of new tabs, reloading existing one which have the same URL or are, if requested, prefixed by the URL.

Environment variables

Sourcemodule Env : sig ... end

Environment variables.

Open and reload URLs

Sourcetype t

The type for browsers.

Sourceval find : ?search:B0_std.Cmd.tool_search -> ?cmd:B0_std.Cmd.t -> unit -> (t, string) result

find ~search ~cmd tries to find a browser in a rather complex and platform dependent way.

Sourceval show : background:bool -> prefix:bool -> t -> string -> (unit, string) result

show ~background ~prefix browser url shows url using browser browser. If background is true tries to keep the browser application in the background, if false brings it in user focus.

The function tries to limit the creation of new tabs using the following strategy:

  • Repeat from the frontmost browser window to the backmost one until a tab to reload is found:

    1. If the window's current tab's URL is url (or is prefixed by url when prefix is true), reload this tab.
    2. If the window has one or more tab whose URL is url (or is prefixed by url when prefix is true), pick the left most one, make it current in the window and reload it.
  • If no tab was found, get the frontmost window. If the current tab has no URI, use that tab with url otherwise create a new tab with url and make it current for the window.

Cli interaction

Sourceval browser : ?docs:string -> ?opts:string list -> unit -> B0_std.Cmd.t option Cmdliner.Term.t

browser is an option and BROWSER environment variable to use with the browser argument of find. opts are the cli options and default to ["b"; "browser"].

Sourceval prefix : ?docs:string -> default:bool -> unit -> bool Cmdliner.Term.t

prefix are options to use the with prefix argument of show. This defines these options:

  • --prefix to specify true and if default is false -p aswell.
  • --exact to specify false.

The default value of the option is default.

Sourceval background : ?docs:string -> ?opts:string list -> unit -> bool Cmdliner.Term.t

background is an option to use with the background argument of !show. opts are the cli options and default to ["g"; "background"]

Sourceval man_best_effort_reload : Cmdliner.Manpage.block list

man_best_effort_reload is a manual fragment explaining best-effort reloading.