20 lines
		
	
	
		
			494 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			494 B
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2011 John Benediktsson
 | 
						|
! See http://factorcode.org/license.txt for BSD license
 | 
						|
 | 
						|
USING: help.markup help.syntax strings webbrowser ;
 | 
						|
 | 
						|
IN: webbrowser
 | 
						|
 | 
						|
HELP: open-file
 | 
						|
{ $values { "path" string } }
 | 
						|
{ $description
 | 
						|
    "Open a specified file or directory in a detached process using "
 | 
						|
    "the default application, similar to double-clicking the file's icon."
 | 
						|
} ;
 | 
						|
 | 
						|
HELP: open-url
 | 
						|
{ $values { "url" string } }
 | 
						|
{ $description
 | 
						|
    "Open a specified url in the default web browser."
 | 
						|
} ;
 |