]> gitweb.factorcode.org Git - factor.git/blob - basis/webbrowser/webbrowser-docs.factor
Update actions, because Node.js 16 actions are deprecated, to Node.js 20
[factor.git] / basis / webbrowser / webbrowser-docs.factor
1 ! Copyright (C) 2011 John Benediktsson
2 ! See http://factorcode.org/license.txt for BSD license
3
4 USING: help.markup help.syntax kernel present strings ;
5
6 IN: webbrowser
7
8 HELP: open-item
9 { $values { "item" object } }
10 { $description
11   "Opens an item, which is either a file, directory or url in a detached process using the default application, similar to double-clicking the file's icon. item is any object that has the " { $link present } " method." } ;
12
13 HELP: open-url
14 { $values { "url" string } }
15 { $description
16     "Open a specified url in the default web browser."
17 } ;