category
element define one category to add in the chapter. <chapter name="first chapter"> <category name="general" /> </chapter>It is possible to use a list of categories for the attribute rather than only one. In this case, it means that only articles belonging to all the listed categories will be added to the chapter.
<chapter name="first chapter"> <category name="general general2" /> </chapter>
excludeCategory
element define categories which will be excluded from a chapter even if they belong to one of the categories defined for the chapter.<chapter name="first chapter"> <category name="general" /> <excludeCategory name="general4" /> </chapter>It is possible to use a list of categories for the attribute rather than only one. In this case, it means that only articles belonging to all the listed categories will not be added to the chapter.
<chapter name="first chapter"> <category name="general" /> <excludeCategory name="general2 general4" /> </chapter>
article
element define an article whcih will be added in the chapter. For example:<chapter name="first chapter"> <article name="first article" /> <article name="second article" package="thePackage"/> </chapter>
excludeArticle
element define an article which will not be added in the chapter. <chapter name="first chapter"> <category name="general" /> <excludeArticle name="first article"/> </chapter>
>helpContent> <chapters> <chapter name="first chapter"> <category name="general" /> <category name="general4" /> </chapter> <chapter name="second chapter" priority="1" > <category name="general4" /> </chapter> </chapters> >/helpContent>
keepOrder
attribute for the root helpContent
element allows to keep the order of articles which are specifically specified for each chapter. For example:<helpContent keepOrder="true"> <chapters> <chapter name="first chapter"> <article name="article d" /> <article name="article b" /> <category name="general" /> </chapter> <chapter name="second chapter"> <category name="general2" /> </chapter> </chapters> </helpContent>In that case "article d" will be the first article in the first chapter, and "article b" the second article in the chapter.
ref
element have the following attributes:id
: the ID which will allow to make the link between the GUI components and the help contentarticle
: The name of the article. Note that the references to article names have the same rules as in the wiki. See naming constraintsarticlePackage
: optional, specifies the article packagetitle
: Optionally the title or anchor in the article<helpContent> <ref id="button1" article="button 1" /> <ref id="button2" article="button 2" /> <ref id="button3" article="several components" title="button 3" /> <ref id="textfield" article="several components" title="text field" /> <ref id="panel" article="several components" title="panel"/> </helpContent>
<helpContent> <styleSheets> <styleSheetTheme id="black" url="themeBlack.css"/> </styleSheets> </helpContent>
<helpContent> <chapters> <chapter name="first chapter"> <chapter name="child chapter"> <category name="general2" /> </chapter> <category name="general" /> <category name="general4" /> </chapter> <chapter name="second chapter"> <category name="general2" /> <category name="general3" /> </chapter> </chapters> </helpContent>Here we have the following specification for the help content:
docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.