home *** CD-ROM | disk | FTP | other *** search
- {
- Name = "OmniWeb compatibility commands";
- Description = "AppleScript commands supported for compatibility with other applications.";
-
- Classes = { };
-
- Commands = {
- ParseURL = {
- Name = "ParseAnchor";
- Description = "Parses a URL (possibly relative to a base URL) and returns the resulting URL as a string.";
- Arguments = {
- base = { Name = "withURL"; Description = "The base URL with respect to which to interpret a relative URL."; };
- };
- };
- GetWindowInfo = {
- Name = "GetWindowInfo";
- Description = "Given a window's numeric ID, returns a list containing its current URL and title string.";
- Arguments = { };
- };
- ListWindows = {
- Name = "ListWindows";
- Description = "Returns a list of the numeric IDs of all open browser windows.";
- Arguments = { };
- };
- OpenURL = {
- Name = "OpenURL";
- Description = "Causes the web browser to display a specified URL.";
- Arguments = {
- intoFile = { Name = "to"; Description = "The file to which to save the retrieved data"; };
- intoWindow = { Name = "toWindow"; Description = "The numeric ID of the window to use."; };
- formData = { Name = "FormData"; Description = "Data to use for a POST transaction."; };
- postMIMEType = { Name = "MIME Type"; Description = "The MIME Content-Type of the FormData."; };
- };
- };
- ShowFile = {
- Name = "ShowFile";
- Description = "Causes the web browser to display the contents of the specified file.";
- Arguments = {
- file = { Name = "FileSpec"; Description = "The file to display."; };
- MIMEType = { Name = "MIME Type"; Description = "The MIME type of the file's contents."; };
- intoWindow = { Name = "Window Identifier"; Description = "The numeric ID of the window to use."; };
- asURL = { Name = "URL"; Description = "The URL from which this data was originally retrieved."; };
- };
- };
-
- };
- }
-
-