The Netscape web site contains much information that can be useful when you're creating JavaScript applications. Some URLs of particular interest include:
http://home.netscape.com/one_stop/intranet_apps/index.html
http://help.netscape.com/products/tools/livewire
http://developer.netscape.com/library/one/sdk/livewire/
JavaScript applications run on many operating systems; the information here applies to all versions. File and directory paths are given in Windows format (with backslashes separating directory names). For Unix versions, the directory paths are the same, except that you use slashes instead of backslashes to separate directories.
This book uses uniform resource locators (URLs) of the form
http://server.domain/path/file.htmlIn these URLs, server represents the name of the server on which you run your application, such as
research1
or www
; domain represents your Internet domain name, such as netscape.com
or uiuc.edu
; path represents the directory structure on the server; and file.html
represents an individual filename. In general, items in italics in URLs are placeholders and items in normal monospace font are literals. If your server has Secure Sockets Layer (SSL) enabled, you would use https
instead of http
in the URL.This book uses the following font conventions:
The monospace font
is used for sample code and code listings, API and language elements (such as function names and class names), filenames, pathnames, directory names, HTML tags, and any text that must be typed on the screen. (Monospace italic font
is used for placeholders embedded in code.) Last Updated: 10/31/97 12:29:49