<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ice-online.com/index.php?action=history&amp;feed=atom&amp;title=HELP</id>
	<title>HELP - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ice-online.com/index.php?action=history&amp;feed=atom&amp;title=HELP"/>
	<link rel="alternate" type="text/html" href="https://wiki.ice-online.com/index.php?title=HELP&amp;action=history"/>
	<updated>2026-04-14T16:58:13Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://wiki.ice-online.com/index.php?title=HELP&amp;diff=774&amp;oldid=prev</id>
		<title>ConvertBot: display online help information</title>
		<link rel="alternate" type="text/html" href="https://wiki.ice-online.com/index.php?title=HELP&amp;diff=774&amp;oldid=prev"/>
		<updated>2020-04-27T22:04:52Z</updated>

		<summary type="html">&lt;p&gt;display online help information&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;display online help information&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;name&amp;gt;          Name of help item&lt;br /&gt;
&amp;lt;opt&amp;gt;           Option tree containing help item&lt;br /&gt;
&lt;br /&gt;
The Help command provides a single point of reference for all help information&lt;br /&gt;
within NeXtMidas. It uses as its source files the help (.hlp), explain (.exp),&lt;br /&gt;
and source (.java) files distributed with an option tree.&lt;br /&gt;
&lt;br /&gt;
When run without the /BUILD, /INDEX, or /GUI switches, the command will attempt&lt;br /&gt;
to find the closest match to the given name under the given option tree.  If&lt;br /&gt;
no option tree is specified then all option trees are searched in the order&lt;br /&gt;
they appear in the ENV.OPT path.  If only one match is found, it is displayed&lt;br /&gt;
without prompting.  If more than one match is found, a list is presented with&lt;br /&gt;
an option to view a specific match, cycle through all, or quit altogether.&lt;br /&gt;
&lt;br /&gt;
The /GUI switch will bring up a Swing based search GUI that provides&lt;br /&gt;
hyperlinked help pages.  Use of this option will bypass the name and opt&lt;br /&gt;
flags, showing all of the help for all of the currently configured option&lt;br /&gt;
trees.&lt;br /&gt;
&lt;br /&gt;
==========================&lt;br /&gt;
 Help search/query syntax&lt;br /&gt;
==========================&lt;br /&gt;
  Terms&lt;br /&gt;
  =====&lt;br /&gt;
  A query is broken up into terms and operators. There are two types of terms:&lt;br /&gt;
  Single Terms and Phrases.&lt;br /&gt;
&lt;br /&gt;
  A Single Term is a single word such as &amp;quot;test&amp;quot; or &amp;quot;hello&amp;quot;.&lt;br /&gt;
  A Phrase is a group of words surrounded by double quotes such as &amp;quot;hello jay&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
  Multiple terms can be combined together with Boolean operators to form a more&lt;br /&gt;
  complex query (see below).&lt;br /&gt;
&lt;br /&gt;
  Wildcard Searches&lt;br /&gt;
  =================&lt;br /&gt;
  To perform a single character wildcard search use the &amp;quot;?&amp;quot; symbol.&lt;br /&gt;
  To perform a multiple character wildcard search use the &amp;quot;*&amp;quot; symbol.&lt;br /&gt;
&lt;br /&gt;
  The single character wildcard search looks for terms that match that with the&lt;br /&gt;
  single character replaced. For example, to search for &amp;quot;text&amp;quot; or &amp;quot;test&amp;quot; you&lt;br /&gt;
  can use the search: &amp;quot;te?t&amp;quot;&lt;br /&gt;
&lt;br /&gt;
  Multiple character wildcard searches looks for 0 or more characters. For&lt;br /&gt;
  example, to search for test, tests or tester, you can use the search: &amp;quot;test*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
  You can also use the wildcard searches in the beginning or middle of a term:&lt;br /&gt;
  &amp;quot;te*t&amp;quot; or &amp;quot;?est&lt;br /&gt;
&lt;br /&gt;
  Boolean Operators&lt;br /&gt;
  =================&lt;br /&gt;
  Boolean operators allow terms to be combined through logic operators. Help&lt;br /&gt;
  supports AND, &amp;quot;+&amp;quot;, OR, NOT and &amp;quot;-&amp;quot; as Boolean operators (Note: Boolean&lt;br /&gt;
  operators must be ALL CAPS).&lt;br /&gt;
&lt;br /&gt;
  The AND operator is the default conjunction operator. This means that if&lt;br /&gt;
  there is no Boolean operator between two terms, the AND operator is used.&lt;br /&gt;
&lt;br /&gt;
    AND (&amp;amp;&amp;amp;) Operator&lt;br /&gt;
    =================&lt;br /&gt;
    The AND operator matches documents where both terms exist anywhere in the&lt;br /&gt;
    text of a single document. This is equivalent to an intersection using&lt;br /&gt;
    sets. The symbol &amp;amp;&amp;amp; can be used in place of the word AND.&lt;br /&gt;
&lt;br /&gt;
    To search for documents that contain &amp;quot;Remote Midas&amp;quot; and RMIF:&lt;br /&gt;
    &amp;quot;Remote Midas&amp;quot; RMIF&lt;br /&gt;
&lt;br /&gt;
    OR (||) Operator&lt;br /&gt;
    ================&lt;br /&gt;
    The OR operator links two terms and finds a matching document if either of&lt;br /&gt;
    the terms exist in a document. This is equivalent to a union using sets.&lt;br /&gt;
    The symbol || can be used in place of the word OR.&lt;br /&gt;
&lt;br /&gt;
    To search for documents that contain &amp;quot;Remote Midas&amp;quot; or RMIF:&lt;br /&gt;
    &amp;quot;Remote Midas&amp;quot; OR RMIF&lt;br /&gt;
&lt;br /&gt;
    + Operator&lt;br /&gt;
    ==========&lt;br /&gt;
    The &amp;quot;+&amp;quot; or required operator requires that the term after the &amp;quot;+&amp;quot; symbol&lt;br /&gt;
    exist somewhere in a the field of a single document.&lt;br /&gt;
&lt;br /&gt;
    To search for documents that must contain &amp;quot;rdp&amp;quot; and may contain &amp;quot;rmif&amp;quot; use&lt;br /&gt;
    the query: &amp;quot;+rdp OR rmif&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    NOT (!) Operator&lt;br /&gt;
    ============&lt;br /&gt;
    The NOT operator excludes documents that contain the term after NOT. This&lt;br /&gt;
    is equivalent to a difference using sets. The symbol ! can be used in place&lt;br /&gt;
    of the word NOT.&lt;br /&gt;
&lt;br /&gt;
    - Operator&lt;br /&gt;
    ==========&lt;br /&gt;
    The &amp;quot;-&amp;quot; or prohibit operator excludes documents that contain the term after&lt;br /&gt;
    the &amp;quot;-&amp;quot; symbol.&lt;br /&gt;
&lt;br /&gt;
  Grouping&lt;br /&gt;
  ========&lt;br /&gt;
  Help search supports using parentheses to group clauses to form sub queries.&lt;br /&gt;
  This can be very useful if you want to control the boolean logic for a query.&lt;br /&gt;
&lt;br /&gt;
  To search for either &amp;quot;rmif&amp;quot; or &amp;quot;network&amp;quot; and &amp;quot;server&amp;quot; use the query:&lt;br /&gt;
  (rmif OR network) AND server&lt;br /&gt;
&lt;br /&gt;
Refer to $NMROOT/htdocs/search.html for additional query syntax or&lt;br /&gt;
$NMROOT/htdocs/queryparsersyntax.html for advanced syntax.&lt;br /&gt;
&lt;br /&gt;
The /BUILD switch is used to create all of the supporting files for the legacy&lt;br /&gt;
command line based help and search. If a mainhelp.cnf file is found in the hlp&lt;br /&gt;
subdirectory of an option tree, this and the .hlp files it references are used&lt;br /&gt;
to create the mainhelp.hlp search index.  If not found, the mainhelp.hlp is&lt;br /&gt;
assumed to have been created by hand. If neither is found, a default&lt;br /&gt;
mainhelp.cnf is assumed. The files for all option trees are placed in&lt;br /&gt;
NMROOT/htdocs/help and the JavaDocs are in NMROOT/htdocs/api.  To place files in&lt;br /&gt;
the option tree itself, use /LOCAL. If &amp;lt;opt&amp;gt;=ALL, the default, help is built for&lt;br /&gt;
each option in the current path.&lt;br /&gt;
&lt;br /&gt;
The /INDEX switch is used to create the help index/database for HELP/GUI and the&lt;br /&gt;
browser based help/search applet (via the &amp;quot;Show Search Frame&amp;quot; link on the&lt;br /&gt;
NeXtMidas Master Help Index page at NMROOT/htdocs/index.html or search.html).&lt;br /&gt;
To use the help HELP/GUI index on the command-line, set the /LEGACY switch to&lt;br /&gt;
false.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
  1. Search help for 'confidence'&lt;br /&gt;
  nM&amp;gt; help confidence&lt;br /&gt;
&lt;br /&gt;
  2. Start the NeXtMidas Search in graphical mode to search and view it results.&lt;br /&gt;
  nM&amp;gt; help/gui&lt;br /&gt;
&lt;br /&gt;
  3. Use new help index to search for documents containing both 'rmif' AND&lt;br /&gt;
     either 'rdp' OR 'tcp'. Note: &amp;quot;AND&amp;quot; and &amp;quot;OR&amp;quot; has to be all upper case.&lt;br /&gt;
  nM&amp;gt; help/legacy=false &amp;quot;rmif AND (rdp OR tcp)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Switches:&lt;br /&gt;
  /BUILD       Build the supporting files from existing hlp,exp, and java files&lt;br /&gt;
  /CLEAN       Remove all of the generated files for an option tree (or all&lt;br /&gt;
               option trees). Not implemented yet.&lt;br /&gt;
  /DEBUG       Turn on debugging&lt;br /&gt;
  /FILTER      Optional override of the filename filter of files to index when&lt;br /&gt;
               used with the /INDEX switch. Since NeXtMidas 2.5.0.&lt;br /&gt;
  /GUI         Run the graphical NeXtMidas help with search capabilities.&lt;br /&gt;
  /HOMEPAGE    Address of homepage link for this option&lt;br /&gt;
  /INDEX       Build help index for searches on the HELP/GUI, HELP/LEGACY=false,&lt;br /&gt;
               and $NMROOT/htdocs/search.html Since NeXtMidas 2.5.0.&lt;br /&gt;
  /JAVADOC=0   Deprecated since NeXtMidas 2.5.0: this is no longer supported.&lt;br /&gt;
  /LEGACY=true Legacy text mode search functionality prior to NeXtMidas 2.5.0.&lt;br /&gt;
               Set this to false to use the new search syntax in the terminal.&lt;br /&gt;
               In the new text search mode, the OPT= parameter is ignored and&lt;br /&gt;
               the NAME= parameter is used as the search term. Multiple&lt;br /&gt;
               terms must be quoted.&lt;br /&gt;
  /LOCAL       Place help files in OPTxxx/docs/* instead of NMROOT/htdocs/*.&lt;br /&gt;
  /MOREDIRS    '|' separated list of additional directories to include in the&lt;br /&gt;
               list of locations (specified in build.props) to index documents&lt;br /&gt;
               when used with the /INDEX switch. Since NeXtMidas 2.5.4.&lt;br /&gt;
  /SHOWPATH    Show path to files for query results from $NMROOT.&lt;br /&gt;
               Since NeXtMidas 2.5.0, this applies to the command-line search&lt;br /&gt;
               when /LEGACY=false.                                   [DEF=FALSE]&lt;br /&gt;
&lt;br /&gt;
SEE ALSO:  EXPLAIN, MENU, $NMROOT/htdocs/search.html, nxm.sys.libg.MJHelp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:NXM_Explain]]&lt;/div&gt;</summary>
		<author><name>ConvertBot</name></author>
		
	</entry>
</feed>