WebWorks Help SDK (API) for 4.x and 5.x
Version |
Date |
Changes |
1.2 |
2007-05-07 |
Re-organized and added javascript api notes and examples. |
1.1 |
2006-12-10 |
Initial version. |
Description
This WebWorks Help SDK download zip file is required if you intend to integrate WebWorks Help with your installed applications and fully take advantage of the context-sensitive help api it provides.
Includes complete set of C/C++/COM/.Net code and example projects for including WebWorks Help support in your Windows, Macintosh, or Unix installed applications.
Also includes javascript code and example projects for creating help for web applications.
Contents
Release 4.0.7.1
Contains only documentation changes for organizing the information for use by either web or "installed application" developers. Also includes additional sample ePublisher projects.
Release 4.0.7
- To enable better browser window reuse, when using the Javascript API, make the following overrides to your master project (applies only to ePublisher release 9.2.2).
- Remove the following line from selected HTML files:
window.name = "WWHFrame";
- These are the HTML files to override in your ePublisher master project:
Files/wwhelp/wwhimpl/common/html/reset.htm Files/wwhelp/wwhimpl/common/html/switch.htm Files/wwhelp/wwhimpl/common/html/wwhelp.htm Files/wwhelp/wwhimpl/js/html/wwhelp.htm
Release 4.0.6
Major features of this release:
Support for WebWorks Help 4.0 and 5.0 help sets
- Internet Explorer 7.0 support
Notes
As for additional information, it isn't so much that IE7 drops the query string as it no longer reposts it to a server.
So, consider this case:
http://www.webworks.com/show.aspx?message=cool
If you enter that on a website, IE posts:
http://www.webworks.com/show.aspx?message=cool
If a security dialog pops up, then here's where things differ:
- IE6:
Reposts http://www.webworks.com/show.aspx?message=cool
Posts http://www.webworks.com/show.aspx
Because you wouldn't want the server to perform an action twice, now would you.
This is great for servers, but lousy for file systems:
file:///C:/index.html?context=help&topic=me
If you enter that on a website, IE posts:
file:///C:/index.html?context=help&topic=me
If a security dialog pops up, then here's where things differ:
- IE6:
Reposts file:///C:/index.html?context=help&topic=me
Posts file:///C:/index.html
Not so great for context sensitive help.
