This page talks about technical aspects of how JMRI provides help information using JmriHelp as well as some suggestions on common approaches for help pages.
JmriHelp replaces JavaHelp. The main difference is that the help pages are displayed in the user's default browser. This removes the HTML 4 requirement along with the requirement for the name attribute in anchor tags. Links within a page now use the id attribute which can be placed in any HTML tag, such as the header tags. Preferences ⇒ Help is used by the user to select the whether Window Help and General help references are displayed using the distribution help files or jmri.org help files. The latter provides fully formatted help pages.
Note: The following content has references to directory paths. The language specific portion of the path is displayed as **. The current language values are en for English and fr for French.
Since the goal is to update the JMRI repository, the following actions need to take place within a git branch for the task, not the master branch.
The help files are located in the help directory within the JMRI distribution directory.
The master copy is stored in the help directory in the JMRI code repository. This means to get your own local copy, follow the steps on the "getting the code" page.
Within that, all the English-language files are located within the en subdirectory. Eventually, this will let us internationalize the help pages.
Within that, there are several file trees:
jmri.jmrit.speedometer.SpeedometerFrame
class (from
the src/jmri/jmrit/speedometer/SpeedometerFrame.java
file) should have its
window-specific help in a file at
package/jmri/jmrit/speedometer/SpeedometerFrame.shtml
.While this is how we would LIKE our help files organized, help pages are created by
members of the community and sometimes general descriptions are put in the package
directory rather than the html directory and vice versa. [If you see something that needs
to be moved, please post a note to jmri-developers
groups.io as there are members who occasionally try to do some housekeeping.]
In the long run, we want only two branches to the help file structure: the package part of the tree for help information that is specific to a particular piece of code, and another part of the tree for more general information. (It's a religious issue whether that 2nd part should be called "html" or "manual"; the key thing is we end up with just one). The web is meant to be a web, with many paths through it to reach content. The second part of the tree ("html") should also be organized as "one page, one topic", with links to connect them as needed.
It is inconvenient to have to maintain two separate web pages for the main website and the help system. To reduce the need for that, we use a particular form for the web pages in the help system. [Additional information can also be found here.]
If none of these meet your needs (or do not exist), you may create a Sidebar.shtml in the subdirectory, in which case, you should follow the format of other Sidebar.shtml files in other subdirectories at the same level or in the parent directory. In 2020, there was a major effort to standardize the sidebar files, using server-side includes for common parts files in the /help/en/parts directory. Typically, a Sidebar.shtml file in a terminal subdirectory (one with no lower level) will further reference a local part in a file in the same subdirectory and named Sidebar[type]LocalPart.shtml, where [type] would be based on the name of the parent directory, such as Hardware or Tool. This use of local part files allows Sidebar.shtml files in terminal subdirectories to use identical code, something that makes maintenance significantly easier.
If you do not need a local part, you can include the Sidebar.shtml from the parent directory but ONLY if that file does not have any relative URLs (URLs with "../" and similar). If it is does, the sidebar links will not work when incorporated into your page. Look at the contents of Sidebar.shtml in the parent directory before attempting to reference it.
Note: The French web pages were updated to the new sidebar structure in 2022.
JmriHelp uses standard HTML 5. Since the SSI includes look like comments, they are not processed. The help pages will be displayed using the browser's default CSS. If additional CSS is added to the help page, it will override the browser settings. It will also override the site CSS settings when the page is displayed by the site server.
The file name cannot contain an underscore character. The file suffix is .shtml.
The id attribute can be assigned to HTML tags and then referenced by JmriHelp. This makes it possible to display window specific help information within a larger help document.
Do not use spaces or %20
in id names. If you must use a phrase for a name,
use the underscore character: "This_Anchor", not "This Anchor.
When describing a sequence of user actions or pull downs, use the double right arrow HTML
entity ampersand-rArr-semicolon, and label the whole sequence as "strong".
For example:
File ⇒ Store Panels
A non-breaking space can be used before the right arrow to control line breaks.
You cannot count on any particular location for your files on the local machine, so all links to other help pages need to be relative. Links to XML contents also need to be relative even though they are not displayed by JmriHelp.
Links to web pages outside the help system work and should be specified as fully qualified, preferably with https://. These pages may be opened in a new tab or in the same tab (overwriting the current page), depending on how the person who wrote the help page coded the reference. As of this writing (2020/04/04), there is an ongoing debate as to the preferred method.] The browser preferences might also affect the new tab / replace tab behavior.
Within the JMRI code, access to the help system comes via the jmri.util.HelpUtil class. (For historical reasons, there's a bit of code in apps.Apps, but you should ignore that).
The easiest way to add a help menu to a frame is to have it be a JmriJFrame (which you should do anyway), and call addHelpMenu(<helpkey>) after you've built any other menus.
The helpkey is the dotted path to the help file, without the .shtml suffix. If the helpkey refers to an id within the page, the path is extended with an underscore and the name of the id.
By convention, we use a similar file tree for the source code and help files. For
example, the jmri.jmrit.simpleclock.SimpleClockFrame
class inherits from
JmriJFrame, and adds a help menu with the line
addHelpMenu("package.jmri.jmrit.simpleclock.SimpleClockFrame", true);The help file is then located at
help/en/package/jmri/jmrit/simpleclock/SimpleClockFrame.shtml
.
A number of help files have been put in place without any contents; hopefully some users will edit them and contribute them back.
HelpUtil is called when the Window Help or General Help menu item is selected. The helpkey specified in the JMRI code is used to display the appropriate help page in the browser.
Using Preferences ⇒ Help, the user can choose to have the local help page or the jmri.org help page displayed. The local page is in the JMRI distribution which means the page is at the same release level as the JMRI code.
If jmri.org is selected, HelpUtil will convert the helpkey into a URL and pass it to the user's default browser.
When a new helpkey has been defined in the JMRI code, it can be added to the index and/or the table contents. This step is optional. Displaying the help page triggered by Window Help is independent of the table of contents and index. Since the default file based presentation does not display sidebars, it can be helpful to include at least a basic entry in the TOC and/or Index to simplify navigation.
These files reside at help/** (** is en for English or fr for French).
These are xml files that can edited with any xml aware file editor. Each line in the file consists of a user friendly text name and the target helpkey.
<indexitem text="Setting The Internal Clock "
target="package.jmri.jmrit.simpleclock.SimpleClockFrame"/>
<tocitem text="Setting the Internal Clock "
target="package.jmri.jmrit.simpleclock.SimpleClockFrame"/>
The JmriHelp configuration files are located at help/**/local. This directory contains the following content:
The Java process to pass a file name to a browser does not support query (?) or id (#) parameters. HelpUtil builds a stub.html file in the settings:jmrihelp location. The stub file does a re-direct to local/index.html#helpkey. Javascript in index.html converts the helpkey into the file name to be loaded into the iframe.
After JmriHelp_**TOC.xml and JmriHelp_**Index.xml have been updated, run the ant buildhelp target. This is run using the main JMRI ant build.xml file, not the special build.xml in help/**.
After the build process has completed, test the new helpkeys and verify that they open the proper pages.
When the changes have been verified, commit the changes and create a pull request. For details, see Developing with JMRI
JmriHelp includes a table of contents and an index. These are both available as hyperlinks on the web. The table of contents is displayed by the JmriHelp browser page when invoked from the JMRI Help menu.
These pages are created as part of the buildhelp process and will be included in the PR process. Manual changes to these pages will be overwritten when buildhelp is run.
The Continuous Integration process checks all changes to JMRI Help files to make sure they're OK. If you'd like to run that same check while you're working, do:
ant scanhelp
If you do not have access to ant, you should use one of the HTML validation programs available online, such as from the W3C Markup Validation Service. These services will find many common errors (unmatched tags, etc.), but also sometimes give warning or even error messages that do not impact JMRI integration.
Changes to Help pages which have been merged should show up automatically on the JMRI.org website after a short while. There's a Jenkins job that handles periodic updates for the static (from repository, unlike e.g. Javadoc) pages.
When you integrate support for new hardware into JMRI, you should also create a page or pages for the help system and the web. There are several steps involved to ensure that your new hardware help is integrated into the JMRI Help system and its website. All references below to files are to the JMRI Repository structure in GitHub. Note use of capitalization in references to (fictitious) product "X" from manufacturer "M":
Following all these steps will ensure that other users will be able to find and use the new hardware you have integrated into JMRI.
The main component is java/test/jmri/util/BuildHelpFilesTest. The class
is nominally a test program, but it has a public static main()
which makes it
possible to be called from ant. It is excluded from alltest .
The program uses the JmriHelp_** files and the alternate_map.txt file to create the jmri_map.xml file.
When the program is done, the buildhelp target calls ant in each language location. The language specific ant process builds the webtoc.shtml and webindex.shtml files from JmriHelp_**TOC.xml, JmriHelp_**Index.xml and jmri_map.xml using format.xsl. The third step builds the local/index.html file using the JmriHelp_**TOC.xml , JmriHelp_**Index.xml and jmri_map.xml files using formatLocalTOC.xsl.