Wx Web Add-on
Craig Hunter
hunter-associates@cox.net
August 18, 2005
Function: This add-on will load a web page.
The input setting format for this add-on is simply the http-based URL to be loaded, for instance:
http://www.apple.com
In the context of Wx's add-on conventions, http acts as the add-on name and //www.apple.com acts as the input.
Note: since Wx interprets "+" and ":" characters as delimiters in add-on codes, special care must be taken when embedding these within URLs -- for instance, if a port needed to be specified in a URL with a ":" or a URL string needs to have a "+" character. In these cases, you may represent these characters by their hex equivalents. The ":" character can be represented by "%3A" and the "+" character can be represented by "%2B" (no quotes in either case). The add-on will interpret these as ":" and "+", respectively, when forming the real URL for loading into the WebView.
Unlike other Wx add-ons, multiple instances of this add-on cannot be specified, and this add-on cannot be combined with other add-ons.