Mapping Topic IDs to Help Topics Programming Your Application to Support Context-Sensitive Help
16.1 Supported Java Virtual Machines
Since OHJ is a Java application or applet, it must run in a Java Virtual Machine JVM. That means that you must ensure that your users have an appropriate JVM installed. If you are using OHJ as help for a Java application, that application must also run in a virtual machine, so it is likely that the JVM is already being distributed with your application.16.2 Which OHJ JAR Files Must Be Shipped
The following JAR Java ARchive files must be redistributed as part of your product install. These files contain the OHJ engine implementation and its dependencies. For more information about these files, see Section 13.2.2, Contents of an OHJDK Release . ■ helpversion_num.jar ■ oracle_ice.jar16.3 Deploying Compressed Help Content in JARs
Java based applications are often distributed in JAR format. You may wish to include your Help content as a JAR file in your distribution, as HTML content files are significantly reduced in size by JAR compression.16.3.1 Creating JAR files
To create JAR files, use the JAR tool that is distributed with your Java Development Kit. If you are using a third party help authoring system that supports OHJ, it may also be able to perform this task. Special care should be given to the organization of files and their assigned paths within the JAR archives. The directory structure within your help JAR file must match the directory structure for your product implementation JAR files. Your help content should be after the location of the implementation class that you use as a reference point. 16-2 Oracle Fusion Middleware Developers Guide for Oracle Help For example, If your product implementation JAR includes classes with the following directory structure, comyourCompanyyourProductSomeProduct.class comyourCompanyyourProductSomeClass.class then your help JARs should contain the matching paths so that the help content is below the product implementation classes in the shared directory structure: comyourCompanyyourProducthelpProductHelp.hs comyourCompanyyourProducthelpTableOfContents.xml comyourCompanyyourProducthelpSomeHelpTopic.html16.3.2 Which Book Constructor to Use
To create a Book object with help content loaded from a JAR file, the help JAR file and implementation JAR files must be on the system CLASSPATH. If you have organized the JAR files as described, then you know the location of the help content is relative to the location of your implementation classes on the CLASSPATH. Thus, you will use the versions of the HelpSet constructors that accept a Java class and a relative path from that class. For example, if you have two JAR files, construct the helpset object using the following code: import com.yourCompany.yourProduct.SomeProduct; helpset myhelpset = new helpsetSomeProduct.class, helpProductHelp.hs;Parts
» Oracle Fusion Middleware Online Documentation Library
» Oracle Help for the Web – Rich Client
» Oracle Help for the Web – UIX
» Oracle Help in Oracle JDeveloper Oracle Help Licensing and Support
» OHJ Topic Windows Oracle Fusion Middleware Online Documentation Library
» Case Sensitive Search for Topic List
» Branding area Open, Pluggable Architecture
» Toolbar area Open, Pluggable Architecture
» Navigator area Open, Pluggable Architecture
» Topic view area Open, Pluggable Architecture
» OHW-RC Global Toolbar Oracle Fusion Middleware Online Documentation Library
» Show permanent link for this topic page OHW-RC Contents Navigator
» OHW-RC Index Navigator Oracle Fusion Middleware Online Documentation Library
» OHW-RC Search Navigator Oracle Fusion Middleware Online Documentation Library
» About OHW-RC Feature Bookmarking Feature
» Branding area Single Pane Layout Feature
» Helpset switcher Single Pane Layout Feature
» Tab bar Single Pane Layout Feature
» OHW-RC Topic Pane OHW-UIX Table of Contents
» OHW-UIX Index OHW-UIX Search OHW-UIX Topics
» File Name Extensions Oracle Fusion Middleware Online Documentation Library
» The helpset Element Helpset File
» The title Element Helpset File
» The maps Element Helpset File
» The wintype Element Helpset File
» The links Element Helpset File
» The view Element Helpset File
» The subhelpset Element Helpset File
» Sample Helpset File Helpset File
» TOC Elements Table of Contents File
» Link File Elements Link File
» Search Index File Topic ID Links
» Associative Links Oracle Fusion Middleware Online Documentation Library
» Custom Protocol Links Oracle Fusion Middleware Online Documentation Library
» Popups Oracle Fusion Middleware Online Documentation Library
» Topic IDs Oracle Fusion Middleware Online Documentation Library
» Window Types Oracle Fusion Middleware Online Documentation Library
» The oracle.help.engine.XMLMapFixedConventionEngine Help Engine
» The oracle.help.engine.XMLMapConventionEngine Help Engine Optimizing Dynamic Maps
» The debugMode Attribute The helpConfiguration Element
» Best Practice for Internationalization
» The locale Child Element books The contentLocation Element
» Sample locales Section The locales Element
» Sharing Resources Across Helpsets
» The parameters Element Oracle Fusion Middleware Online Documentation Library
» The navigatorAliases Element Custom Protocol Links Preloading Helpsets Containing Embedded Help
» HTML Files Authoring Embedded Help
» Starting the Wizard Creating a Helpset File
» Specifying Authoring Tool and HTML Browser Specifying Source Directory
» Defining Full-Text Search View Defining Map File
» Converting Associative Links Converting Popup Window Links
» Window Identity Defining Window Types
» Placement Attributes Style Attributes
» Finalizing the HelpSet Oracle Fusion Middleware Online Documentation Library
» Java Requirements Oracle Fusion Middleware Online Documentation Library
» Running the Indexer Oracle Fusion Middleware Online Documentation Library
» Running the JapaneseIndexer Oracle Fusion Middleware Online Documentation Library
» Installing OHJDK Contents of an OHJDK Release
» Setting the Java CLASSPATH for OHJDK Development
» Oracle Help for Java Runtime in JDeveloper Overview of Adding OHJ to an Application
» Constructing the Help Object
» Adding the Favorites Tab or Custom Tab
» When to Create the Help object
» Showing the Navigator Window
» Catching TopicDisplayExceptions Showing a Topic
» Disposing of the Help Object
» Mapping Topic IDs to Help Topics Programming Your Application to Support Context-Sensitive Help
» CSHManager Constructors Setting the Default Book
» Associating Topic IDs with User Interface Components
» Explicitly Showing Help for Components
» Supported Java Virtual Machines
» Which OHJ JAR Files Must Be Shipped
» Creating JAR files Deploying Compressed Help Content in JARs
» Which Book Constructor to Use
» Understanding the OHW-RC Demo Files
» Installing the OHW-RC Demo EAR File on Oracle WebLogic Server
» Installing the OHW-RC Demo EAR File on Oracle JDeveloper
» Running the OHW-RC Demo EAR File
» Verifying Requirements and Dependencies
» Verifying OHW-RC Library Files
» Installing OHW-RC Artifacts Oracle Fusion Middleware Online Documentation Library
» Understanding OHW-RC Configuration Files
» Configuring OHW-RC to Display Custom Helpsets
» Installing the OHW-RC Artifacts
» Configuring OHW-RC as Standalone Web Application
» Application and OHW-RC Configuration Files and Setup Running the application
» Mapping Topic IDs to Help Topics
» Linking to the Front Main Page Linking to a Topic
» Specifying the Locale and Group
» Using HelpTopicId Attribute Oracle Fusion Middleware Online Documentation Library
» Understanding the OHW-UIX Demo File
» Installing the OHW-UIX Demo EAR File on Oracle WebLogic Server
» Installing the OHW-UIX Demo EAR File using Oracle JDeveloper
» Running the OHW-UIX Demo EAR File
» Understanding OHW-UIX Configuration Files
» Configuring OHW-UIX to Display Custom Helpsets
» Upgrading OHW-UIX and UIX Mapping Topic IDs to Help Topics
Show more