├── .gitignore ├── .project ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dim.xpr ├── doc └── doc.html ├── frameworks └── dim │ ├── css │ └── rules.css │ ├── dim.framework │ ├── dim2sch.xsl │ ├── images │ ├── AddBusinessRule24.png │ ├── AddBusinessRule24@2x.png │ ├── AddBusinessRule24_dark.png │ ├── AddBusinessRule24_dark@2x.png │ ├── LinkStyleGuide24.png │ ├── LinkStyleGuide24@2x.png │ ├── LinkStyleGuide24_dark.png │ └── LinkStyleGuide24_dark@2x.png │ ├── oxygen-gim-extensions.jar │ └── pagedown │ ├── LICENSE.txt │ ├── Markdown.Converter.js │ ├── Markdown.Editor.js │ ├── Markdown.Sanitizer.js │ ├── README.txt │ ├── demo │ ├── browser │ │ ├── demo.css │ │ └── demo.html │ └── node │ │ └── demo.js │ ├── local │ └── Markdown.local.fr.js │ ├── node-pagedown.js │ ├── package.json │ ├── resources │ └── wmd-buttons.psd │ └── wmd-buttons.png ├── gen-rules ├── dim2sch.xsl ├── gen-mappings.xsl ├── gen-rules.xsl └── pagedown │ ├── LICENSE.txt │ ├── Markdown.Converter.js │ ├── Markdown.Editor.js │ ├── Markdown.Sanitizer.js │ ├── README.txt │ ├── demo │ ├── browser │ │ ├── demo.css │ │ └── demo.html │ └── node │ │ └── demo.js │ ├── local │ └── Markdown.local.fr.js │ ├── node-pagedown.js │ ├── package.json │ ├── resources │ └── wmd-buttons.psd │ └── wmd-buttons.png ├── info-model ├── c_Attributes.dita ├── c_BeginningATopic.dita ├── c_BlockElements.dita ├── c_CollectionFiles.dita ├── c_CommonContentOverview.dita ├── c_ConceptAuthoringGuidelines.dita ├── c_CreatingLists.dita ├── c_CreatingMaps.dita ├── c_DisplayAttributes.dita ├── c_InformationTypes.dita ├── c_LinkingStrategies.dita ├── c_MapAttributes.dita ├── c_MapElements.dita ├── c_MapStructure.dita ├── c_Maps.dita ├── c_MapsAndBookmaps.dita ├── c_NamingConvention.dita ├── c_NormalizingContent.dita ├── c_RelationshipTables.dita ├── c_ReuseStrategy.dita ├── c_TaskAuthoringGuidelines.dita ├── c_TaskElements.dita ├── c_TaskInformationType.dita ├── c_TaskStructure.dita ├── c_TitlingTopics.dita ├── c_UserInterface.dita ├── c_UsingInlineElements.dita ├── c_WritingShortDescriptions.dita ├── dita.list ├── dita.xml.properties ├── excludeRules.ditaval ├── graphics │ ├── NOTE.jpg │ ├── Thumbs.db │ ├── attribute.jpg │ ├── bookmap.jpg │ ├── booktitles.jpg │ ├── caution.jpg │ ├── ce86.jpg │ ├── chapterwrapper_heading.jpg │ ├── chapterwrapper_toc.jpg │ ├── concept_sample.jpg │ ├── container.jpg │ ├── dita_components.jpg │ ├── dl_sample.jpg │ ├── element_tag_view.jpg │ ├── fig_block.jpg │ ├── fig_callout.jpg │ ├── fig_inline.jpg │ ├── folderStructure_sample.jpg │ ├── frontcover.jpg │ ├── frontcover_callouts.jpg │ ├── index_sample.jpg │ ├── iso3485.jpg │ ├── ol_sample.jpg │ ├── process_existingdoc.jpg │ ├── process_newdoc.jpg │ ├── reference_sample.jpg │ ├── sl_sample.jpg │ ├── table_sample.jpg │ ├── task_sample.jpg │ ├── tip.jpg │ ├── ul_sample.jpg │ ├── warning.jpg │ ├── xref_fig.jpg │ ├── xref_page.jpg │ └── xref_topic.jpg ├── rules │ ├── blockElements.xml │ ├── catalog.xml │ ├── contentCompletionElementsMap.xml │ ├── contentFilter.xsl │ ├── descriptions │ │ ├── DITAArchVersion-attr.html │ │ ├── abbreviated-form.html │ │ ├── abbrevlist.html │ │ ├── abstract.html │ │ ├── addressdetails.html │ │ ├── administrativearea.html │ │ ├── alt.html │ │ ├── amendments.html │ │ ├── anchor.html │ │ ├── anchorid.html │ │ ├── anchorkey.html │ │ ├── anchorref.html │ │ ├── apiname.html │ │ ├── appendices.html │ │ ├── appendix.html │ │ ├── approved.html │ │ ├── area.html │ │ ├── attributedef.html │ │ ├── audience-attr.html │ │ ├── audience.html │ │ ├── author.html │ │ ├── authorinformation.html │ │ ├── b.html │ │ ├── backmatter.html │ │ ├── base-attr.html │ │ ├── bibliolist.html │ │ ├── body.html │ │ ├── bodydiv.html │ │ ├── bookabstract.html │ │ ├── bookchangehistory.html │ │ ├── bookevent.html │ │ ├── bookeventtype.html │ │ ├── bookid.html │ │ ├── booklibrary.html │ │ ├── booklist.html │ │ ├── booklists.html │ │ ├── bookmap.html │ │ ├── bookmeta.html │ │ ├── booknumber.html │ │ ├── bookowner.html │ │ ├── bookpartno.html │ │ ├── bookrestriction.html │ │ ├── bookrights.html │ │ ├── booktitle.html │ │ ├── booktitlealt.html │ │ ├── boolean.html │ │ ├── brand.html │ │ ├── cascade-attr.html │ │ ├── category.html │ │ ├── cause.html │ │ ├── change-completed.html │ │ ├── change-historylist.html │ │ ├── change-item.html │ │ ├── change-organization.html │ │ ├── change-person.html │ │ ├── change-request-id.html │ │ ├── change-request-reference.html │ │ ├── change-request-system.html │ │ ├── change-revisionid.html │ │ ├── change-started.html │ │ ├── change-summary.html │ │ ├── chapter.html │ │ ├── chdesc.html │ │ ├── chdeschd.html │ │ ├── chhead.html │ │ ├── choice.html │ │ ├── choices.html │ │ ├── choicetable.html │ │ ├── choption.html │ │ ├── choptionhd.html │ │ ├── chrow.html │ │ ├── chunk-attr.html │ │ ├── cite.html │ │ ├── class-attr.html │ │ ├── closereqs.html │ │ ├── cmd.html │ │ ├── cmdname.html │ │ ├── codeblock.html │ │ ├── codeph.html │ │ ├── coderef.html │ │ ├── collection-type-attr.html │ │ ├── colophon.html │ │ ├── colspec.html │ │ ├── completed.html │ │ ├── component.html │ │ ├── conaction-attr.html │ │ ├── conbody.html │ │ ├── conbodydiv.html │ │ ├── concept.html │ │ ├── condition.html │ │ ├── conkeyref-attr.html │ │ ├── conref-attr.html │ │ ├── conrefend-attr.html │ │ ├── consequence.html │ │ ├── contactnumber.html │ │ ├── contactnumbers.html │ │ ├── context.html │ │ ├── coords.html │ │ ├── copy-to-attr.html │ │ ├── copyrfirst.html │ │ ├── copyrholder.html │ │ ├── copyright.html │ │ ├── copyrlast.html │ │ ├── copyryear.html │ │ ├── country.html │ │ ├── created.html │ │ ├── critdates.html │ │ ├── data-about.html │ │ ├── data.html │ │ ├── day.html │ │ ├── dd.html │ │ ├── ddhd.html │ │ ├── dedication.html │ │ ├── defaultSubject.html │ │ ├── delim.html │ │ ├── deliveryTarget-attr.html │ │ ├── desc.html │ │ ├── dir-attr.html │ │ ├── dita.html │ │ ├── ditavalmeta.html │ │ ├── ditavalref.html │ │ ├── div.html │ │ ├── dl.html │ │ ├── dlentry.html │ │ ├── dlhead.html │ │ ├── domains-attr.html │ │ ├── draft-comment.html │ │ ├── draftintro.html │ │ ├── dt.html │ │ ├── dthd.html │ │ ├── dvrKeyscopePrefix.html │ │ ├── dvrKeyscopeSuffix.html │ │ ├── dvrResourcePrefix.html │ │ ├── dvrResourceSuffix.html │ │ ├── edited.html │ │ ├── edition.html │ │ ├── elementdef.html │ │ ├── emailaddress.html │ │ ├── emailaddresses.html │ │ ├── entry.html │ │ ├── enumerationdef.html │ │ ├── equation-block.html │ │ ├── equation-figure.html │ │ ├── equation-inline.html │ │ ├── equation-number.html │ │ ├── esttime.html │ │ ├── example.html │ │ ├── expanse-attr.html │ │ ├── exportanchors.html │ │ ├── featnum.html │ │ ├── fig.html │ │ ├── figgroup.html │ │ ├── figurelist.html │ │ ├── filepath.html │ │ ├── firstname.html │ │ ├── fn.html │ │ ├── foreign.html │ │ ├── format-attr.html │ │ ├── fragment.html │ │ ├── fragref.html │ │ ├── frame-attr.html │ │ ├── frontmatter.html │ │ ├── generationidentifier.html │ │ ├── glossAbbreviation.html │ │ ├── glossAcronym.html │ │ ├── glossAlt.html │ │ ├── glossAlternateFor.html │ │ ├── glossBody.html │ │ ├── glossPartOfSpeech.html │ │ ├── glossProperty.html │ │ ├── glossScopeNote.html │ │ ├── glossShortForm.html │ │ ├── glossStatus.html │ │ ├── glossSurfaceForm.html │ │ ├── glossSymbol.html │ │ ├── glossSynonym.html │ │ ├── glossUsage.html │ │ ├── glossarylist.html │ │ ├── glossdef.html │ │ ├── glossentry.html │ │ ├── glossgroup.html │ │ ├── glossref.html │ │ ├── glossterm.html │ │ ├── groupchoice.html │ │ ├── groupcomp.html │ │ ├── groupseq.html │ │ ├── hasInstance.html │ │ ├── hasKind.html │ │ ├── hasNarrower.html │ │ ├── hasPart.html │ │ ├── hasRelated.html │ │ ├── hazardstatement.html │ │ ├── hazardsymbol.html │ │ ├── height-attr.html │ │ ├── honorific.html │ │ ├── howtoavoid.html │ │ ├── href-attr.html │ │ ├── i.html │ │ ├── id-attr.html │ │ ├── image.html │ │ ├── imagemap.html │ │ ├── importance-attr.html │ │ ├── index-base.html │ │ ├── index-see-also.html │ │ ├── index-see.html │ │ ├── index-sort-as.html │ │ ├── indexlist.html │ │ ├── indexterm.html │ │ ├── indextermref.html │ │ ├── info.html │ │ ├── isbn.html │ │ ├── itemgroup.html │ │ ├── keycol-attr.html │ │ ├── keydef.html │ │ ├── keyref-attr.html │ │ ├── keys-attr.html │ │ ├── keyscope-attr.html │ │ ├── keyword.html │ │ ├── keywords.html │ │ ├── kwd.html │ │ ├── lang-attr.html │ │ ├── lastname.html │ │ ├── lcAge.html │ │ ├── lcAnswerContent.html │ │ ├── lcAnswerContent2.html │ │ ├── lcAnswerOption.html │ │ ├── lcAnswerOption2.html │ │ ├── lcAnswerOptionGroup.html │ │ ├── lcAnswerOptionGroup2.html │ │ ├── lcArea.html │ │ ├── lcArea2.html │ │ ├── lcAreaCoords.html │ │ ├── lcAreaCoords2.html │ │ ├── lcAreaShape.html │ │ ├── lcAreaShape2.html │ │ ├── lcAssessment.html │ │ ├── lcAsset.html │ │ ├── lcAttitude.html │ │ ├── lcAudience.html │ │ ├── lcBackground.html │ │ ├── lcCIN.html │ │ ├── lcChallenge.html │ │ ├── lcClassroom.html │ │ ├── lcClient.html │ │ ├── lcConstraints.html │ │ ├── lcCorrectResponse.html │ │ ├── lcCorrectResponse2.html │ │ ├── lcDelivDate.html │ │ ├── lcDelivery.html │ │ ├── lcDownloadTime.html │ │ ├── lcDuration.html │ │ ├── lcEdLevel.html │ │ ├── lcFeedback.html │ │ ├── lcFeedback2.html │ │ ├── lcFeedbackCorrect.html │ │ ├── lcFeedbackCorrect2.html │ │ ├── lcFeedbackIncorrect.html │ │ ├── lcFeedbackIncorrect2.html │ │ ├── lcFileSizeLimitations.html │ │ ├── lcGapAnalysis.html │ │ ├── lcGapItem.html │ │ ├── lcGapItemDelta.html │ │ ├── lcGeneralDescription.html │ │ ├── lcGoals.html │ │ ├── lcGraphics.html │ │ ├── lcHandouts.html │ │ ├── lcHotspot.html │ │ ├── lcHotspot2.html │ │ ├── lcHotspotMap.html │ │ ├── lcHotspotMap2.html │ │ ├── lcInstruction.html │ │ ├── lcInstructorNote2.html │ │ ├── lcInstructornote.html │ │ ├── lcInteraction.html │ │ ├── lcInteractionBase.html │ │ ├── lcInteractionBase2.html │ │ ├── lcIntervention.html │ │ ├── lcInterventionItem.html │ │ ├── lcIntro.html │ │ ├── lcItem.html │ │ ├── lcItem2.html │ │ ├── lcJtaItem.html │ │ ├── lcKnowledge.html │ │ ├── lcLMS.html │ │ ├── lcLearnStrat.html │ │ ├── lcLom.html │ │ ├── lcMatchTable.html │ │ ├── lcMatchTable2.html │ │ ├── lcMatching.html │ │ ├── lcMatching2.html │ │ ├── lcMatchingHeader.html │ │ ├── lcMatchingItem.html │ │ ├── lcMatchingItem2.html │ │ ├── lcMatchingItemFeedback.html │ │ ├── lcMatchingItemFeedback2.html │ │ ├── lcMatchingPair.html │ │ ├── lcMatchingPair2.html │ │ ├── lcModDate.html │ │ ├── lcMotivation.html │ │ ├── lcMultipleSelect.html │ │ ├── lcMultipleSelect2.html │ │ ├── lcNeeds.html │ │ ├── lcNeedsAnalysis.html │ │ ├── lcNextSteps.html │ │ ├── lcNoLMS.html │ │ ├── lcOJT.html │ │ ├── lcObjective.html │ │ ├── lcObjectives.html │ │ ├── lcObjectivesGroup.html │ │ ├── lcObjectivesStem.html │ │ ├── lcOpenAnswer.html │ │ ├── lcOpenAnswer2.html │ │ ├── lcOpenQuestion.html │ │ ├── lcOpenQuestion2.html │ │ ├── lcOrgConstraints.html │ │ ├── lcOrganizational.html │ │ ├── lcPlanAudience.html │ │ ├── lcPlanDescrip.html │ │ ├── lcPlanObjective.html │ │ ├── lcPlanPrereqs.html │ │ ├── lcPlanResources.html │ │ ├── lcPlanSubject.html │ │ ├── lcPlanTitle.html │ │ ├── lcPlayers.html │ │ ├── lcPrereqs.html │ │ ├── lcProcesses.html │ │ ├── lcProject.html │ │ ├── lcQuestion.html │ │ ├── lcQuestion2.html │ │ ├── lcQuestionBase.html │ │ ├── lcQuestionBase2.html │ │ ├── lcResolution.html │ │ ├── lcResources.html │ │ ├── lcReview.html │ │ ├── lcSecurity.html │ │ ├── lcSequence.html │ │ ├── lcSequence2.html │ │ ├── lcSequenceOption.html │ │ ├── lcSequenceOption2.html │ │ ├── lcSequenceOptionGroup.html │ │ ├── lcSequenceOptionGroup2.html │ │ ├── lcSequencing.html │ │ ├── lcSequencing2.html │ │ ├── lcSingleSelect.html │ │ ├── lcSingleSelect2.html │ │ ├── lcSkills.html │ │ ├── lcSpecChars.html │ │ ├── lcSummary.html │ │ ├── lcTask.html │ │ ├── lcTaskItem.html │ │ ├── lcTechnical.html │ │ ├── lcTime.html │ │ ├── lcTrueFalse.html │ │ ├── lcTrueFalse2.html │ │ ├── lcValues.html │ │ ├── lcViewers.html │ │ ├── lcW3C.html │ │ ├── lcWorkEnv.html │ │ ├── lcWorkEnvDescription.html │ │ ├── learningAssessment.html │ │ ├── learningAssessmentbody.html │ │ ├── learningBase.html │ │ ├── learningBasebody.html │ │ ├── learningContent.html │ │ ├── learningContentComponentRef.html │ │ ├── learningContentRef.html │ │ ├── learningContentbody.html │ │ ├── learningGroup.html │ │ ├── learningGroupMap.html │ │ ├── learningGroupMapRef.html │ │ ├── learningObject.html │ │ ├── learningObjectMap.html │ │ ├── learningObjectMapRef.html │ │ ├── learningOverview.html │ │ ├── learningOverviewRef.html │ │ ├── learningOverviewbody.html │ │ ├── learningPlan.html │ │ ├── learningPlanRef.html │ │ ├── learningPlanbody.html │ │ ├── learningPostAssessmentRef.html │ │ ├── learningPreAssessmentRef.html │ │ ├── learningSummary.html │ │ ├── learningSummaryRef.html │ │ ├── learningSummarybody.html │ │ ├── li.html │ │ ├── line-through.html │ │ ├── lines.html │ │ ├── link.html │ │ ├── linkinfo.html │ │ ├── linking-attr.html │ │ ├── linklist.html │ │ ├── linkpool.html │ │ ├── linktext.html │ │ ├── locality.html │ │ ├── localityname.html │ │ ├── locktitle-attr.html │ │ ├── lomAggregationLevel.html │ │ ├── lomContext.html │ │ ├── lomCoverage.html │ │ ├── lomDifficulty.html │ │ ├── lomInstallationRemarks.html │ │ ├── lomIntendedUserRole.html │ │ ├── lomInteractivityLevel.html │ │ ├── lomInteractivityType.html │ │ ├── lomLearningResourceType.html │ │ ├── lomOtherPlatformRequirements.html │ │ ├── lomSemanticDensity.html │ │ ├── lomStructure.html │ │ ├── lomTechRequirement.html │ │ ├── lomTypicalAgeRange.html │ │ ├── lomTypicalLearningTime.html │ │ ├── longdescref.html │ │ ├── longquoteref.html │ │ ├── lq.html │ │ ├── mainbooktitle.html │ │ ├── maintainer.html │ │ ├── map.html │ │ ├── mapref.html │ │ ├── markupname.html │ │ ├── mathml.html │ │ ├── mathmlref.html │ │ ├── menucascade.html │ │ ├── messagepanel.html │ │ ├── metadata.html │ │ ├── middlename.html │ │ ├── month.html │ │ ├── msgblock.html │ │ ├── msgnum.html │ │ ├── msgph.html │ │ ├── namedetails.html │ │ ├── navref.html │ │ ├── navtitle-attr.html │ │ ├── navtitle.html │ │ ├── no-topic-nesting.html │ │ ├── noconds.html │ │ ├── nosafety.html │ │ ├── nospares.html │ │ ├── nosupeq.html │ │ ├── nosupply.html │ │ ├── note.html │ │ ├── notices.html │ │ ├── numcharref.html │ │ ├── object.html │ │ ├── ol.html │ │ ├── oper.html │ │ ├── option.html │ │ ├── organization.html │ │ ├── organizationinfo.html │ │ ├── organizationname.html │ │ ├── organizationnamedetails.html │ │ ├── otherinfo.html │ │ ├── othermeta.html │ │ ├── otherprops-attr.html │ │ ├── otherrole-attr.html │ │ ├── outputclass-attr.html │ │ ├── overline.html │ │ ├── p.html │ │ ├── param.html │ │ ├── parameterentity.html │ │ ├── parml.html │ │ ├── parmname.html │ │ ├── part.html │ │ ├── pd.html │ │ ├── permissions.html │ │ ├── perscat.html │ │ ├── perskill.html │ │ ├── person.html │ │ ├── personinfo.html │ │ ├── personname.html │ │ ├── personnel.html │ │ ├── ph.html │ │ ├── placement-attr.html │ │ ├── platform-attr.html │ │ ├── platform.html │ │ ├── plentry.html │ │ ├── postalcode.html │ │ ├── postreq.html │ │ ├── pre.html │ │ ├── preface.html │ │ ├── prelreqs.html │ │ ├── prereq.html │ │ ├── print-attr.html │ │ ├── printlocation.html │ │ ├── processing-role-attr.html │ │ ├── prodinfo.html │ │ ├── prodname.html │ │ ├── product-attr.html │ │ ├── prognum.html │ │ ├── prolog.html │ │ ├── propdesc.html │ │ ├── propdeschd.html │ │ ├── properties.html │ │ ├── property.html │ │ ├── prophead.html │ │ ├── props-attr.html │ │ ├── proptype.html │ │ ├── proptypehd.html │ │ ├── propvalue.html │ │ ├── propvaluehd.html │ │ ├── pt.html │ │ ├── published.html │ │ ├── publisher.html │ │ ├── publisherinformation.html │ │ ├── publishtype.html │ │ ├── q.html │ │ ├── refbody.html │ │ ├── refbodydiv.html │ │ ├── reference.html │ │ ├── refsyn.html │ │ ├── related-links.html │ │ ├── relatedSubjects.html │ │ ├── relcell.html │ │ ├── relcolspec.html │ │ ├── relheader.html │ │ ├── relrow.html │ │ ├── reltable.html │ │ ├── remedy.html │ │ ├── repsep.html │ │ ├── reqcond.html │ │ ├── reqconds.html │ │ ├── reqcontp.html │ │ ├── reqpers.html │ │ ├── required-cleanup.html │ │ ├── resourceid.html │ │ ├── responsibleParty.html │ │ ├── result.html │ │ ├── rev-attr.html │ │ ├── reviewed.html │ │ ├── revised.html │ │ ├── revisionid.html │ │ ├── role-attr.html │ │ ├── row.html │ │ ├── rowheader-attr.html │ │ ├── safecond.html │ │ ├── safety.html │ │ ├── scale-attr.html │ │ ├── scalefit-attr.html │ │ ├── schemeref.html │ │ ├── scope-attr.html │ │ ├── screen.html │ │ ├── search-attr.html │ │ ├── searchtitle.html │ │ ├── section.html │ │ ├── sectiondiv.html │ │ ├── sep.html │ │ ├── series.html │ │ ├── shape.html │ │ ├── shortcut.html │ │ ├── shortdesc.html │ │ ├── simpletable.html │ │ ├── sl.html │ │ ├── sli.html │ │ ├── sort-as.html │ │ ├── source.html │ │ ├── spare.html │ │ ├── spares.html │ │ ├── sparesli.html │ │ ├── started.html │ │ ├── state.html │ │ ├── status-attr.html │ │ ├── stentry.html │ │ ├── step.html │ │ ├── stepresult.html │ │ ├── steps-informal.html │ │ ├── steps-unordered.html │ │ ├── steps.html │ │ ├── stepsection.html │ │ ├── steptroubleshooting.html │ │ ├── stepxmp.html │ │ ├── sthead.html │ │ ├── strow.html │ │ ├── sub.html │ │ ├── subjectCell.html │ │ ├── subjectHead.html │ │ ├── subjectHeadMeta.html │ │ ├── subjectRel.html │ │ ├── subjectRelHeader.html │ │ ├── subjectRelTable.html │ │ ├── subjectRole.html │ │ ├── subjectScheme.html │ │ ├── subjectdef.html │ │ ├── subjectref.html │ │ ├── substep.html │ │ ├── substeps.html │ │ ├── summary.html │ │ ├── sup.html │ │ ├── supeqli.html │ │ ├── supequi.html │ │ ├── supequip.html │ │ ├── supplies.html │ │ ├── supply.html │ │ ├── supplyli.html │ │ ├── svg-container.html │ │ ├── svgref.html │ │ ├── synblk.html │ │ ├── synnote.html │ │ ├── synnoteref.html │ │ ├── synph.html │ │ ├── syntaxdiagram.html │ │ ├── systemoutput.html │ │ ├── table.html │ │ ├── tablelist.html │ │ ├── task.html │ │ ├── taskbody.html │ │ ├── tasktroubleshooting.html │ │ ├── tbody.html │ │ ├── term.html │ │ ├── tested.html │ │ ├── text.html │ │ ├── textentity.html │ │ ├── tgroup.html │ │ ├── thead.html │ │ ├── thoroughfare.html │ │ ├── title.html │ │ ├── titlealts.html │ │ ├── tm.html │ │ ├── toc-attr.html │ │ ├── toc.html │ │ ├── topic.html │ │ ├── topicCell.html │ │ ├── topicSubjectHeader.html │ │ ├── topicSubjectRow.html │ │ ├── topicSubjectTable.html │ │ ├── topicapply.html │ │ ├── topicgroup.html │ │ ├── topichead.html │ │ ├── topicmeta.html │ │ ├── topicref.html │ │ ├── topicset.html │ │ ├── topicsetref.html │ │ ├── topicsubject.html │ │ ├── trademarklist.html │ │ ├── translate-attr.html │ │ ├── troubleSolution.html │ │ ├── troublebody.html │ │ ├── troubleshooting.html │ │ ├── tt.html │ │ ├── tutorialinfo.html │ │ ├── type-attr.html │ │ ├── typeofhazard.html │ │ ├── u.html │ │ ├── uicontrol.html │ │ ├── ul.html │ │ ├── unknown.html │ │ ├── url.html │ │ ├── urls.html │ │ ├── userinput.html │ │ ├── ux-window.html │ │ ├── var.html │ │ ├── varname.html │ │ ├── volume.html │ │ ├── vrm.html │ │ ├── vrmlist.html │ │ ├── width-attr.html │ │ ├── wintitle.html │ │ ├── xmlatt.html │ │ ├── xmlelement.html │ │ ├── xmlnsname.html │ │ ├── xmlpi.html │ │ ├── xref.html │ │ ├── xtrc-attr.html │ │ ├── xtrf-attr.html │ │ └── year.html │ ├── ditaContentCompletionElementsMap.xml │ ├── library.sch │ ├── quickFix-library.xml │ ├── rules.sch │ └── styleguide │ │ └── webhelp │ │ ├── c_Attributes.html │ │ ├── c_BeginningATopic.html │ │ ├── c_BlockElements.html │ │ ├── c_CollectionFiles.html │ │ ├── c_CommonContentOverview.html │ │ ├── c_CreatingLists.html │ │ ├── c_CreatingMaps.html │ │ ├── c_DisplayAttributes.html │ │ ├── c_InformationTypes.html │ │ ├── c_LinkingStrategies.html │ │ ├── c_MapAttributes.html │ │ ├── c_MapElements.html │ │ ├── c_MapStructure.html │ │ ├── c_Maps.html │ │ ├── c_MapsAndBookMaps.html │ │ ├── c_NamingConvention.html │ │ ├── c_NormalizingContent.html │ │ ├── c_RelationshipTables.html │ │ ├── c_ReuseStrategy.html │ │ ├── c_TaskAuthoringGuidelines.html │ │ ├── c_TaskElements.html │ │ ├── c_TaskInformationType.html │ │ ├── c_TaskStructure.html │ │ ├── c_TitlingTopics.html │ │ ├── c_UserInterface.html │ │ ├── c_UsingInlineElements.html │ │ ├── c_WritingShortDescriptions.html │ │ ├── commonltr.css │ │ ├── commonrtl.css │ │ ├── context-help-map.js │ │ ├── context-help-map.xml │ │ ├── dita.list │ │ ├── dita.xml.properties │ │ ├── index.html │ │ ├── index_frames.html │ │ ├── license-3rd-party.txt │ │ ├── overview.html │ │ ├── oxygen-webhelp │ │ ├── check.html │ │ ├── index.html │ │ ├── indexterms.html │ │ ├── indexterms.js │ │ ├── noScript.html │ │ ├── resources │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── css │ │ │ │ ├── admin.css │ │ │ │ ├── comments.css │ │ │ │ ├── commonltr.css │ │ │ │ ├── commonrtl.css │ │ │ │ ├── fonts.css │ │ │ │ ├── index.html │ │ │ │ ├── install.css │ │ │ │ ├── jquery.cleditor.css │ │ │ │ ├── jquery.realperson.css │ │ │ │ ├── p-side-notes.css │ │ │ │ ├── print.css │ │ │ │ ├── style.css │ │ │ │ ├── toc.css │ │ │ │ ├── webhelp_responsive_topic.css │ │ │ │ ├── webhelp_topic.css │ │ │ │ └── webhelp_topic_elements_styles.css │ │ │ ├── img │ │ │ │ ├── CollapseAll16.png │ │ │ │ ├── ExpandAll16.png │ │ │ │ ├── LogoOxygen100x22.png │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── book_closed16.png │ │ │ │ ├── book_opened16.png │ │ │ │ ├── buttons.gif │ │ │ │ ├── caution.png │ │ │ │ ├── caution.svg │ │ │ │ ├── close.png │ │ │ │ ├── close_hover.png │ │ │ │ ├── danger.png │ │ │ │ ├── danger.svg │ │ │ │ ├── dot.png │ │ │ │ ├── draft.png │ │ │ │ ├── expand.png │ │ │ │ ├── frames.png │ │ │ │ ├── icon_comment24x24.png │ │ │ │ ├── icons.png │ │ │ │ ├── important.png │ │ │ │ ├── important.svg │ │ │ │ ├── index.html │ │ │ │ ├── link.png │ │ │ │ ├── loading.gif │ │ │ │ ├── loadingSmall.gif │ │ │ │ ├── nav_left16.png │ │ │ │ ├── nav_right16.png │ │ │ │ ├── nav_up16.png │ │ │ │ ├── note.png │ │ │ │ ├── note.svg │ │ │ │ ├── print.png │ │ │ │ ├── remember.png │ │ │ │ ├── remember.svg │ │ │ │ ├── restriction.png │ │ │ │ ├── restriction.svg │ │ │ │ ├── rss.gif │ │ │ │ ├── spinner.gif │ │ │ │ ├── splitter.png │ │ │ │ ├── star.png │ │ │ │ ├── starsSmall.png │ │ │ │ ├── timeLine.png │ │ │ │ ├── timeVersion.png │ │ │ │ ├── tip.png │ │ │ │ ├── tip.svg │ │ │ │ ├── toolbar.gif │ │ │ │ ├── topic16.png │ │ │ │ ├── troubleshooting.png │ │ │ │ ├── troubleshooting.svg │ │ │ │ ├── version.png │ │ │ │ ├── warning.png │ │ │ │ └── warning.svg │ │ │ ├── js │ │ │ │ ├── Creative-Commons-License.txt │ │ │ │ ├── MIT-License.txt │ │ │ │ ├── base64.Creative-Commons-License.txt │ │ │ │ ├── base64.js │ │ │ │ ├── browserDetect.js │ │ │ │ ├── index.html │ │ │ │ ├── jquery-1.11.3.min.js │ │ │ │ ├── jquery-1.8.2.min.js │ │ │ │ ├── jquery-3.1.1.min.js │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.custom.min.js │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery.MIT-License.txt │ │ │ │ ├── jquery.ba-hashchange.min.js │ │ │ │ ├── jquery.bootpag.LICENSE.txt │ │ │ │ ├── jquery.bootpag.js │ │ │ │ ├── jquery.bootpag.min.js │ │ │ │ ├── jquery.cleditor.min.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.highlight-3.js │ │ │ │ ├── jquery.plugin.min.js │ │ │ │ ├── jquery.quicksearch.js │ │ │ │ ├── jquery.realperson.min.js │ │ │ │ ├── localization.js │ │ │ │ ├── log.js │ │ │ │ ├── parseuri.js │ │ │ │ ├── splitter.js │ │ │ │ ├── toc.js │ │ │ │ └── webhelp_topic.js │ │ │ ├── localization │ │ │ │ ├── strings.js │ │ │ │ └── strings.php │ │ │ └── skins │ │ │ │ ├── desktop-frames │ │ │ │ ├── toc_custom.css │ │ │ │ └── toc_driver.js │ │ │ │ ├── desktop │ │ │ │ ├── toc_custom.css │ │ │ │ └── toc_driver.js │ │ │ │ └── skin.css │ │ ├── search │ │ │ ├── classic │ │ │ │ └── search.js │ │ │ ├── htmlFileInfoList.js │ │ │ ├── htmlFileList.js │ │ │ ├── index-1.js │ │ │ ├── index-2.js │ │ │ ├── index-3.js │ │ │ ├── index.html │ │ │ ├── keywords.js │ │ │ ├── nwSearchFnt.LICENSE.txt │ │ │ ├── nwSearchFnt.js │ │ │ ├── responsive │ │ │ │ └── search.js │ │ │ ├── search-excludes.txt │ │ │ ├── searchAutocomplete.js │ │ │ ├── searchCommon.js │ │ │ ├── searchHistoryItems.js │ │ │ └── stemmers │ │ │ │ ├── de_stemmer.js │ │ │ │ ├── en_stemmer.js │ │ │ │ ├── fr_stemmer.js │ │ │ │ └── index.html │ │ └── template │ │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── fonts.css │ │ │ │ ├── wt_default.css │ │ │ │ ├── wt_expand.css │ │ │ │ └── wt_index.css │ │ │ ├── fonts │ │ │ │ └── OxygenWebhelp.ttf │ │ │ ├── images │ │ │ │ ├── Collapse16.png │ │ │ │ ├── Expand16.png │ │ │ │ ├── IndexTermHeader.png │ │ │ │ ├── LogoOxygen100x22.png │ │ │ │ ├── Search24.png │ │ │ │ ├── left_bg.png │ │ │ │ ├── right_bg.png │ │ │ │ ├── search_left.png │ │ │ │ ├── search_right.png │ │ │ │ ├── star.png │ │ │ │ ├── starsSmall.png │ │ │ │ └── svg │ │ │ │ │ ├── Branch.svg │ │ │ │ │ ├── CollapseCircle.svg │ │ │ │ │ ├── CollapseGreaterThan.svg │ │ │ │ │ ├── CollapseRectangle.svg │ │ │ │ │ ├── Down.svg │ │ │ │ │ ├── ExpandCircle.svg │ │ │ │ │ ├── ExpandGreaterThan.svg │ │ │ │ │ ├── ExpandRectangle.svg │ │ │ │ │ ├── Home.svg │ │ │ │ │ ├── IndexTerm.svg │ │ │ │ │ ├── Leaf.svg │ │ │ │ │ ├── Next.svg │ │ │ │ │ ├── Previous.svg │ │ │ │ │ ├── Print.svg │ │ │ │ │ ├── Search.svg │ │ │ │ │ └── Up.svg │ │ │ └── js │ │ │ │ ├── wt_default.js │ │ │ │ ├── wt_expand.js │ │ │ │ └── wt_search.js │ │ │ └── variants │ │ │ └── tiles │ │ │ └── oxygen │ │ │ ├── resources │ │ │ └── images │ │ │ │ ├── bgr_right.png │ │ │ │ └── bgr_right_small.png │ │ │ └── skin.css │ │ ├── shortdescriptions.html │ │ ├── toc.html │ │ └── toc.xml └── styleguide.ditamap ├── oxygen-sdk-workspace └── sdkExtensions │ ├── .project │ ├── README.html │ ├── oxygen-gim-extensions │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── EULA_OXYGEN_SDK.txt │ ├── README.html │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── oxygenxml │ │ │ │ └── gim │ │ │ │ ├── BusinessRule.java │ │ │ │ ├── BusinessRuleLibrary.java │ │ │ │ ├── BusinessRuleParam.java │ │ │ │ ├── BusinessRuleRepository.java │ │ │ │ ├── DocHandler.java │ │ │ │ ├── operations │ │ │ │ ├── AddBusinessRuleOperation.java │ │ │ │ └── BusinessRuleSelector.java │ │ │ │ └── ui │ │ │ │ ├── ec │ │ │ │ ├── ECBusinessRuleSelectDialog.java │ │ │ │ └── ECFilterText.java │ │ │ │ └── sa │ │ │ │ └── SABusinessRuleSelectDialog.java │ │ └── resources │ │ │ └── extractRules.xsl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── oxygenxml │ │ │ └── gim │ │ │ └── JAXBLadingTest.java │ │ └── resources │ │ └── library.sch │ └── pom.xml └── test ├── concept.dita ├── map.ditamap ├── project ├── dimTest.xpr └── task.dita ├── reference.dita ├── task.dita ├── taskConvert.dita └── troubleshooting.dita /.gitignore: -------------------------------------------------------------------------------- 1 | oxygen-sdk-workspace/sdkExtensions/oxygen-gim-extensions/doc/ 2 | runtime-New_configuration/.metadata/ 3 | oxygen-sdk-workspace/sdkExtensions/oxygen-gim-extensions/samples/ 4 | runtime-New_configuration/ 5 | oxygen-sdk-workspace/.metadata/ 6 | oxygen-sdk-workspace/RemoteSystemsTempFiles/ 7 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | dim 4 | 5 | 6 | 7 | 8 | 9 | com.oxygenxml.editor.xmlbuilder 10 | 11 | 12 | 13 | 14 | 15 | com.oxygenxml.editor.xmlnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /doc/doc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Doc 5 | 6 | 7 | ReadMe.md 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /frameworks/dim/images/AddBusinessRule24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/AddBusinessRule24.png -------------------------------------------------------------------------------- /frameworks/dim/images/AddBusinessRule24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/AddBusinessRule24@2x.png -------------------------------------------------------------------------------- /frameworks/dim/images/AddBusinessRule24_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/AddBusinessRule24_dark.png -------------------------------------------------------------------------------- /frameworks/dim/images/AddBusinessRule24_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/AddBusinessRule24_dark@2x.png -------------------------------------------------------------------------------- /frameworks/dim/images/LinkStyleGuide24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/LinkStyleGuide24.png -------------------------------------------------------------------------------- /frameworks/dim/images/LinkStyleGuide24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/LinkStyleGuide24@2x.png -------------------------------------------------------------------------------- /frameworks/dim/images/LinkStyleGuide24_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/LinkStyleGuide24_dark.png -------------------------------------------------------------------------------- /frameworks/dim/images/LinkStyleGuide24_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/images/LinkStyleGuide24_dark@2x.png -------------------------------------------------------------------------------- /frameworks/dim/oxygen-gim-extensions.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/oxygen-gim-extensions.jar -------------------------------------------------------------------------------- /frameworks/dim/pagedown/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/pagedown/README.txt -------------------------------------------------------------------------------- /frameworks/dim/pagedown/node-pagedown.js: -------------------------------------------------------------------------------- 1 | exports.Converter = require("./Markdown.Converter").Converter; 2 | exports.getSanitizingConverter = require("./Markdown.Sanitizer").getSanitizingConverter; 3 | -------------------------------------------------------------------------------- /frameworks/dim/pagedown/resources/wmd-buttons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/pagedown/resources/wmd-buttons.psd -------------------------------------------------------------------------------- /frameworks/dim/pagedown/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/frameworks/dim/pagedown/wmd-buttons.png -------------------------------------------------------------------------------- /gen-rules/pagedown/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/gen-rules/pagedown/README.txt -------------------------------------------------------------------------------- /gen-rules/pagedown/node-pagedown.js: -------------------------------------------------------------------------------- 1 | exports.Converter = require("./Markdown.Converter").Converter; 2 | exports.getSanitizingConverter = require("./Markdown.Sanitizer").getSanitizingConverter; 3 | -------------------------------------------------------------------------------- /gen-rules/pagedown/resources/wmd-buttons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/gen-rules/pagedown/resources/wmd-buttons.psd -------------------------------------------------------------------------------- /gen-rules/pagedown/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/gen-rules/pagedown/wmd-buttons.png -------------------------------------------------------------------------------- /info-model/dita.list: -------------------------------------------------------------------------------- 1 | #Mon Nov 17 00:14:37 CET 2014 2 | relflagimagelist= 3 | user.input.dir=/Users/dawnstevens/Documents/Information models/DIM example 4 | copytotarget2sourcemaplist= 5 | uplevels= 6 | user.input.file=bm_InformationModelBookmap.ditamap 7 | user.input.file.listfile=usr.input.file.list 8 | tempdirToinputmapdir.relative.value= 9 | relflagimagefile=relflagimage.list 10 | -------------------------------------------------------------------------------- /info-model/excludeRules.ditaval: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /info-model/graphics/NOTE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/NOTE.jpg -------------------------------------------------------------------------------- /info-model/graphics/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/Thumbs.db -------------------------------------------------------------------------------- /info-model/graphics/attribute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/attribute.jpg -------------------------------------------------------------------------------- /info-model/graphics/bookmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/bookmap.jpg -------------------------------------------------------------------------------- /info-model/graphics/booktitles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/booktitles.jpg -------------------------------------------------------------------------------- /info-model/graphics/caution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/caution.jpg -------------------------------------------------------------------------------- /info-model/graphics/ce86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/ce86.jpg -------------------------------------------------------------------------------- /info-model/graphics/chapterwrapper_heading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/chapterwrapper_heading.jpg -------------------------------------------------------------------------------- /info-model/graphics/chapterwrapper_toc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/chapterwrapper_toc.jpg -------------------------------------------------------------------------------- /info-model/graphics/concept_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/concept_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/container.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/container.jpg -------------------------------------------------------------------------------- /info-model/graphics/dita_components.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/dita_components.jpg -------------------------------------------------------------------------------- /info-model/graphics/dl_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/dl_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/element_tag_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/element_tag_view.jpg -------------------------------------------------------------------------------- /info-model/graphics/fig_block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/fig_block.jpg -------------------------------------------------------------------------------- /info-model/graphics/fig_callout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/fig_callout.jpg -------------------------------------------------------------------------------- /info-model/graphics/fig_inline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/fig_inline.jpg -------------------------------------------------------------------------------- /info-model/graphics/folderStructure_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/folderStructure_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/frontcover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/frontcover.jpg -------------------------------------------------------------------------------- /info-model/graphics/frontcover_callouts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/frontcover_callouts.jpg -------------------------------------------------------------------------------- /info-model/graphics/index_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/index_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/iso3485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/iso3485.jpg -------------------------------------------------------------------------------- /info-model/graphics/ol_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/ol_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/process_existingdoc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/process_existingdoc.jpg -------------------------------------------------------------------------------- /info-model/graphics/process_newdoc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/process_newdoc.jpg -------------------------------------------------------------------------------- /info-model/graphics/reference_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/reference_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/sl_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/sl_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/table_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/table_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/task_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/task_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/tip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/tip.jpg -------------------------------------------------------------------------------- /info-model/graphics/ul_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/ul_sample.jpg -------------------------------------------------------------------------------- /info-model/graphics/warning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/warning.jpg -------------------------------------------------------------------------------- /info-model/graphics/xref_fig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/xref_fig.jpg -------------------------------------------------------------------------------- /info-model/graphics/xref_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/xref_page.jpg -------------------------------------------------------------------------------- /info-model/graphics/xref_topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/graphics/xref_topic.jpg -------------------------------------------------------------------------------- /info-model/rules/descriptions/DITAArchVersion-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Designates the version of the architecture that is in use. The default value will increase with each release of DITA.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/abbrevlist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<abbrevlist>

5 |

The <abbrevlist> element references a list of abbreviations. It 6 | indicates to the processing software that the author wants an abbreviation list generated 7 | at the particular location.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/addressdetails.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<addressdetails>

5 |

The <addressdetails> element contains information about the address of 6 | the author or authoring group.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/administrativearea.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<administrativearea>

5 |

The <administrativearea> element contains information about a county, 6 | state, or province.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/amendments.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<amendments>

5 |

The <amendments> element references a list of amendments or updates to 6 | the book. It indicates to the processing software that the author wants an amendments list 7 | generated at the particular location.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/appendices.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<appendices>

5 |

The <appendices> element is an optional wrapper for 6 | <appendix> elements within a bookmap.

7 |

Category: Bookmap content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/appendix.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<appendix>

5 |

The <appendix> element references a topic as a appendix within a book.

6 |

Category: Bookmap content elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/approved.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<approved>

5 |

The <approved> element contains information about when and by whom the 6 | book was approved during its publication history.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/area.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<area>

5 |

The <area> element describes a linkable area within an 6 | <imagemap>. It allows the author to specify a shape within the image, 7 | the coordinates of that shape, and a link target for the area.

8 |

Category: Utilities elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/attributedef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<attributedef>

5 |

The <attributedef> element specifies the attribute that is bound to a 6 | set of controlled values. This binding restricts the permissible values for the attribute 7 | to those that are contained in the set of controlled values.

8 |

Category: Subject scheme elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/audience.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<audience>

5 |

The <audience> metadata element indicates, through the value of its 6 | @type attribute, the intended audience for a topic.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/author.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<author>

5 |

The <author> metadata element contains the name of the topic's author.

6 |

Category: Prolog (metadata) elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/authorinformation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<authorinformation>

5 |

The <authorinformation> element contains detailed information about the 6 | author or authoring organization.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/backmatter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<backmatter>

5 |

The <backmatter> element contains the material that follows the main 6 | body of a document and any appendices. It may include items such as a colophon, legal 7 | notices, and various types of book lists such as a glossary or an index.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<body>

5 |

The <body> element is the container for the main content of a 6 | <topic>.

7 |

Category: Basic topic elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/bookabstract.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<bookabstract>

5 |

The <bookabstract> element references a topic used within a bookmap as a 6 | brief summary of book content, generally output as part of the book's front matter. It is 7 | used to help the reader quickly evaluate the book's purpose.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/bookeventtype.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<bookeventtype>

5 |

The <bookeventtype> element indicates the specific nature of a 6 | <bookevent>, such as updated, indexed, or deprecated. The required 7 | @name attribute indicates the event's type.

8 |

Category: Bookmap metadata elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/bookid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<bookid>

5 |

The <bookid> element contains the publisher's identification information 6 | for the book, such as part number, edition number and ISBN number.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/booklibrary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<booklibrary>

5 |

The <booklibrary> element contains the library information for a book. 6 | Library entries contain information about the series, library, or collection of documents 7 | to which the book belongs.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/bookmeta.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<bookmeta>

5 |

The <bookmeta> element contains information about the book that is not 6 | considered book content, such as copyright information, author information, and any 7 | classifications.

8 |

Category: Bookmap metadata elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/booknumber.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<booknumber>

5 |

The <booknumber> element contains the book's form number, such as 6 | SC21-1920.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/bookpartno.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<bookpartno>

5 |

The <bookpartno> element contains the book's part number, such as 6 | 99F1234. A publisher may use a number like this one to identify a book for tracking 7 | purposes.

8 |

Category: Bookmap metadata elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/bookrights.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<bookrights>

5 |

The <bookrights> element contains the information about the legal rights 6 | associated with the book, including copyright dates and owners.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/booktitle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<booktitle>

5 |

The <booktitle> element contains the title information for a book, 6 | including the library title, main title, subtitle, and other titles (as required).

7 |

Category: Bookmap content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/booktitlealt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<booktitlealt>

5 |

The <booktitlealt> element contains the alternative title, subtitle, or 6 | short title for a book. It may be specialized into a specific element for those or other 7 | purposes.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/boolean.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<boolean>

5 |

The <boolean> element was deprecated in DITA version 1.1. It was 6 | originally intended to express one of two opposite values, such as yes / no or on / off.

7 |

Category: Specialization elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/brand.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<brand>

5 |

The <brand> element indicates the manufacturer or brand associated with 6 | the product described by the parent <prodinfo> element.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/cascade-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The @cascade attribute can be used to modify the additive nature of attribute cascading 5 | (though it does not turn off cascading altogether).

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-completed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-completed>

5 |

Use the <change-completed> element to indicate the date on which the 6 | change was completed.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-item.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-item>

5 |

Use the <change-item> element to represent a record of a single change 6 | to a DITA topic or map.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-organization.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-organization>

5 |

Use the <change-organization> element to specify the name of an 6 | organization that required the change.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-person.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-person>

5 |

Use the <change-person> element to specify the name of the person who 6 | made the change.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-request-id.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-request-id>

5 |

Use the <change-request-id> element to specify an identifier associated 6 | with the change request, such as an issue ID or ticket number.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-request-reference.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-request-reference>

5 |

Use the <change-request-reference> element to provide information that 6 | links the change to an external tracking system.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-request-system.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-request-system>

5 |

Use the <change-request-system> element to specify the name of an 6 | information system that manages or serves the referenced change request, for example, an 7 | issue tracking system.

8 |

Category: Release-management domain elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-revisionid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-revisionid>

5 |

Use the <change-revisionid> element to specify a revision ID string that 6 | can identify the change.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-started.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-started>

5 |

Use the <change-started> element to specify the date on which the change 6 | was initiated.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/change-summary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<change-summary>

5 |

Use the <change-summary> element to summarize the change. It is the 6 | portion of the release note that might appear in a document.

7 |

Category: Release-management domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/chapter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<chapter>

5 |

The <chapter> element references a topic or map as a chapter within a 6 | book.

7 |

Category: Bookmap content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/chdesc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<chdesc>

5 |

The <chdesc> element is a description of an option that a user chooses 6 | while performing a step to accomplish a task. It explains why the user would choose that 7 | option and might explain the result of the choice when it is not immediately obvious.

8 |

Category: Task elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/choices.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<choices>

5 |

The <choices> element contains a list of <choice> 6 | elements. It is used when the user will need to choose one of several actions while 7 | performing the steps of a task.

8 |

Category: Task elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/choicetable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<choicetable>

5 |

The <choicetable> element contains a series of optional choices 6 | available within a step of a task.

7 |

Category: Task elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/choption.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<choption>

5 |

The <choption> element describes an option that a user could choose to 6 | accomplish a step of a task. In a user interface, for example, this might be the name of 7 | radio button.

8 |

Category: Task elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/choptionhd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<choptionhd>

5 |

The <choptionhd> element provides a specific label for the list of 6 | options from which a user chooses in order to accomplish a step. The default label for the 7 | list of options could be a localized translation of Option.

8 |

Category: Task elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/chrow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<chrow>

5 |

The <chrow> element is a container inside the 6 | <choicetable> element. The <chrow> element 7 | contains both a <choption> and <chdesc> element as a 8 | pair.

9 |

Category: Task elements

10 | 11 | 12 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/cite.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<cite>

5 |

The <cite> element is used when you need a bibliographic citation. It 6 | specifically identifies the title of the resource.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/closereqs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<closereqs>

5 |

The <closereqs> element contains information about closing requirements 6 | – steps or tasks that the user should perform after completing a task, for example, "Check 7 | around the vehicle for any drips or leaks."

8 |

Category: Task requirements domain

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/colspec.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<colspec>

5 |

The <colspec> element contains a column specification for a table, 6 | including assigning a column name and number, cell content alignment, and column width.

7 |

Category: Table elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/completed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<completed>

5 |

The <completed> element indicates a completion date for some type of 6 | book event, such as a review, editing, or testing.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/conaction-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

This attribute enables users to push content into a new location.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/conbody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<conbody>

5 |

The <conbody> element is the main body-level element for a concept.

6 |

Category: Concept elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/conkeyref-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Allows conref to operate using a key instead of a URI.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/conref-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

This attribute is used to reference an ID on content that can be reused.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/conrefend-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The conrefend attribute is used when reusing a range of elements through conref.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/consequence.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<consequence>

5 |

The <consequence> element specifies the consequence of failing to avoid 6 | a hazard, for example, "Contact may cause burn."

7 |

Category: Hazard statement elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/contactnumber.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<contactnumber>

5 |

A <contactnumber> element contains the contact number of a person or 6 | organization, such as a telephone number, mobile phone number, or fax number.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/contactnumbers.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<contactnumbers>

5 |

The <contactnumbers> element contains a list of telephone and fax 6 | numbers.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/coords.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<coords>

5 |

The <coords> element specifies the coordinates of a linkable region in 6 | an <imagemap>.

7 |

Category: Utilities elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/copyrfirst.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<copyrfirst>

5 |

The <copyrfirst> element contains the copyright year, or the first 6 | copyright year within a multiyear copyright statement.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/copyrholder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<copyrholder>

5 |

The <copyrholder> element names the copyright holder that holds legal 6 | rights to the material contained in the topic.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/copyright.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<copyright>

5 |

The <copyright> element specifies legal ownership of the content.

6 |

Category: Prolog (metadata) elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/copyrlast.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<copyrlast>

5 |

The <copyrlast> element contains the last copyright year within a 6 | multiyear copyright statement.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/copyryear.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<copyryear>

5 |

The <copyryear> element contains the copyright year as specified by the 6 | @year attribute.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/created.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<created>

5 |

The <created> element specifies the document creation date using the 6 | @date attribute.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/critdates.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<critdates>

5 |

The <critdates> element contains the critical dates in a document life 6 | cycle, such as the creation date and multiple revision dates.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/day.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<day>

5 |

The <day> element denotes a day of 6 | the month.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/dd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<dd>

5 |

The <dd> element contains the description of a term in a definition list 6 | entry (<dlentry>).

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/ddhd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<ddhd>

5 |

The <ddhd> element provides an optional heading or title for a column of 6 | descriptions or definitions in a definition list (<dl>).

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/dedication.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<dedication>

5 |

The <dedication> element references a topic containing a dedication for 6 | the book, such as to a person or group.

7 |

Category: Bookmap content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/deliveryTarget-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The intended delivery target of the content, for example "html", "pdf", or "epub". This 5 | attribute is a replacement for the now deprecated @print attribute.

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/desc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<desc>

5 |

The <desc> element contains the description of the current element.

6 |

Category: Body elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/dir-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Specifies the directionality of text: left-to-right (ltr, the processing default) or 5 | right-to-left (rtl). The value lro indicates an override of normal bidi text presentation, 6 | forcing the element into left-to-right mode; rlo overrides normal rules to force 7 | right-to-left presentation.

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/ditavalmeta.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<ditavalmeta>

5 |

The <ditavalmeta> element defines metadata that is associated with a 6 | DITAVAL document used for one branch of a map.

7 |

Category: DITAVAL reference domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/div.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<div>

5 |

The <div> element is used to organize subsets of content into logical 6 | groups that are not intended to be or should not be contained as a topic.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/draftintro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<draftintro>

5 |

The <draftintro> element references a topic used as an introduction to 6 | the draft of this book.

7 |

Category: Bookmap content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/dt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<dt>

5 |

The <dt> element contains a term in a definition list entry 6 | (<dlentry>).

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/dthd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<dthd>

5 |

The <dthd> element provides an optional heading for the column of terms 6 | in a definition list (<dl>).

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/dvrKeyscopePrefix.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<dvrKeyscopePrefix>

5 |

The <dvrKeyscopePrefix> element specifies the prefix to use when 6 | constructing the effective key scope names for the map branch that is implied by the 7 | ancestor <ditavalref> element.

8 |

Category: DITAVAL reference domain

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/dvrKeyscopeSuffix.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<dvrKeyscopeSuffix>

5 |

The <dvrKeyscopeSuffix> element specifies the suffix to use when 6 | constructing the effective key scope names for the map branch that is implied by the 7 | ancestor <ditavalref> element.

8 |

Category: DITAVAL reference domain

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/edited.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<edited>

5 |

The <edited> element contains information about when and by whom the 6 | book was edited during its publication history.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/edition.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<edition>

5 |

The <edition> element contains the edition number information, such as 6 | First Edition, or Third Edition, used by a publisher to identify a book.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/emailaddresses.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<emailaddresses>

5 |

The <emailaddresses> element contains a list of e-mail addresses.

6 |

Category: xNAL domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/entry.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<entry>

5 |

The <entry> element defines a single cell in a table.

6 |

Category: Table elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/enumerationdef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<enumerationdef>

5 |

The <enumerationdef> element identifies one attribute and one or more 6 | categories that contain the controlled values for the enumeration. The @type 7 | attribute has a default value of "keys".

8 |

Category: Subject scheme elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/equation-block.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<equation-block>

5 |

Use the <equation-block> element to represent an equation that is 6 | presented as a separate block within a text flow. Block equations can be numbered.

7 |

Category: Equation domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/equation-figure.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<equation-figure>

5 |

Use the <equation-figure> element to represent an equation that 6 | functions as form of figure or display. Display equations are intended to be numbered when 7 | numbering is desired.

8 |

Category: Equation domain elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/equation-inline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<equation-inline>

5 |

Use the <equation-inline> element to represent an equation that is 6 | presented inline within a paragraph or similar context. Inline equations are not intended 7 | to be numbered.

8 |

Category: Equation domain elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/equation-number.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<equation-number>

5 |

Use the <equation-number> element to indicate that a block equation is 6 | numbered and, optionally, to specify the number to use for the block equation.

7 |

Category: Equation domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/esttime.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<esttime>

5 |

The <esttime> element provides an estimate of the time that is required 6 | to perform a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/example.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<example>

5 |

The <example> element is a section that contains examples that 6 | illustrate or support the current topic.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/expanse-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Determines the horizontal placement of the element.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/featnum.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<featnum>

5 |

The <featnum> element contains the feature number of a product in the 6 | metadata.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/firstname.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<firstname>

5 |

The <firstname> element contains the person's first name.

6 |

Category: xNAL domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/fn.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<fn>

5 |

The <fn> element is a footnote used to annotate text with notes that are 6 | inappropriate for inline inclusion. It is also used to indicate the source for facts or 7 | other material used in the text.

8 |

Category: Body elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/format-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The format attribute identifies the format of the resource being referenced.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/frame-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Specifies which portion of a border should surround the element.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/generationidentifier.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<generationidentifier>

5 |

The <generationidentifier> element contains information about the 6 | person's generation, such as: Jr, III, or VIII.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossAbbreviation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossAbbreviation>

5 |

The <glossAbbreviation> element provides an abbreviated form of the term 6 | that is contained in a <glossterm> element.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossAcronym.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossAcronym>

5 |

The <glossAcronym> element defines an acronym for the term that is 6 | defined in the <glossterm> element.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossAlternateFor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossAlternateFor>

5 |

The <glossAlternateFor> element indicates when a variant term has a 6 | relationship to another variant term in addition to the preferred term.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossBody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossBody>

5 |

The <glossBody> element is used to provide details about a glossary term 6 | (such as part of speech or additional forms of the term).

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossProperty.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossProperty>

5 |

The <glossProperty> element is a specialization of the 6 | <data> element. You can use it to specify additional details about 7 | the preferred term or its subject, for example, the gender of a noun.

8 |

Category: Glossentry elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossShortForm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossShortForm>

5 |

The <glossShortForm> element provides a shorter alternative to the 6 | primary term that is specified in the <glossterm> element.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossSurfaceForm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossSurfaceForm>

5 |

The <glossSurfaceForm> element specifies an unambiguous presentation of 6 | the <glossterm> that may combine multiple forms. The surface form is 7 | suitable to introduce the term in new contexts.

8 |

Category: Glossentry elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossSymbol.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossSymbol>

5 |

The <glossSymbol> element identifies a standard image that is associated 6 | with the subject of the <glossterm> element.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossSynonym.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossSynonym>

5 |

The <glossSynonym> element provides a term that is a synonym of the 6 | primary value in the <glossterm> element.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossUsage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossUsage>

5 |

The <glossUsage> element provides information about the correct use of a 6 | term, such as where or how it can be used.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossarylist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossarylist>

5 |

The <glossarylist> element references a list of glossary entries within 6 | the book. It indicates to the processing software that the author wants a glossary list 7 | generated at the particular location.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossdef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossdef>

5 |

The <glossdef> element specifies the definition of one sense of a term. 6 | If a term has multiple senses, create a separate <glossentry> topic to 7 | define each sense.

8 |

Category: Glossentry elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossentry.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossentry>

5 |

The <glossentry> element defines a single sense of a glossary term. 6 | Glossary entries for different term senses can be reused independently of one another.

7 |

Category: Glossentry elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossgroup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossgroup>

5 |

The <glossgroup> is a specialized topic that can contain multiple 6 | <glossentry> topics within a single document.

7 |

Category: Glossary related elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/glossterm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<glossterm>

5 |

The <glossterm> element specifies the preferred term that is associated 6 | with a definition of a sense. If the same term has multiple senses, create a separate 7 | <glossentry> topic for each sense.

8 |

Category: Glossentry elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/hasKind.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<hasKind>

5 |

The <hasKind> element specifies that the contained hierarchy expresses 6 | KIND-OF relationships between subjects.

7 |

Category: Subject scheme elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/hasPart.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<hasPart>

5 |

The <hasPart> element specifies that the contained hierarchy expresses 6 | PART-OF relationships between subjects.

7 |

Category: Subject scheme elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/hasRelated.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<hasRelated>

5 |

The <hasRelated> element identifies an associative relationship between 6 | the container subject and each of the contained subjects.

7 |

Category: Subject scheme elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/hazardsymbol.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<hazardsymbol>

5 |

The <hazardsymbol> element specifies a graphic. The graphic might 6 | represent a hazard, a hazardous situation, a result of not avoiding a hazard, or any 7 | combination of these messages.

8 |

Category: Hazard statement elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/honorific.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<honorific>

5 |

The <honorific> element contains the person's title, such as: Dr., Mr., 6 | Ms., or HRH.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/howtoavoid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<howtoavoid>

5 |

The <howtoavoid> element contains information about how a user can avoid 6 | a hazard, for example, "Do not use solvents to clean the drum surface."

7 |

Category: Hazard statement elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/href-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The href attribute is used by many elements to provide a reference to another DITA topic or 5 | map, to a specific element inside a DITA topic or map, or to an external Web page or other 6 | non-DITA resource. The references may be to DITA topics or elements within DITA topics or 7 | maps in the same document or in another document.

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/id-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

An anchor point. This ID is the target for references by href and conref attributes and for 5 | external applications that refer to DITA content.

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/image.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<image>

5 |

Use the <image> element to include artwork or images in a DITA topic.

6 |

Category: Body elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/importance-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

A range of values that describe an importance or priority attributed to an element. For 5 | example, in steps of a task, the attribute indicates whether a step is optional or 6 | required. This attribute is not used for DITAVAL-based filtering or flagging; applications 7 | may (but need not) use the importance value to highlight elements.

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/index-base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<index-base>

5 |

The <index-base> element allows indexing extensions to be added by 6 | specializing this element.

7 |

Category: Specialization elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/index-see-also.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<index-see-also>

5 |

An <index-see-also> element within an <indexterm> 6 | redirects the reader to another index entry that the reader should reference in addition to 7 | the current one.

8 |

Category: Indexing group elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/index-see.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<index-see>

5 |

An <index-see> element within an <indexterm> element 6 | redirects the reader to another index entry that the reader should reference instead of the 7 | current one.

8 |

Category: Indexing group elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/index-sort-as.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<index-sort-as>

5 |

The <index-sort-as> element specifies a sort phrase under which an index 6 | entry would be sorted.

7 |

Category: Indexing group elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/indextermref.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<indextermref>

5 |

This element is not completely defined; it is reserved for future use.

6 |

Category: Indexing group elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<info>

5 |

The <info> element occurs inside a <step> element to 6 | provide additional information about the step.

7 |

Category: Task elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/isbn.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<isbn>

5 |

The <isbn> element contains the book's International Standard Book 6 | Number (ISBN).

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/itemgroup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<itemgroup>

5 |

The <itemgroup> element can be used to sub-divide or organize elements 6 | that occur inside a list item, definition, or parameter definition.

7 |

Category: Specialization elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/keycol-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The @keycol attribute can be used to indicate which column represents the "key" or 5 | term-like column of your structure.

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/keyword.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<keyword>

5 |

The <keyword> element identifies a keyword or token, such as a single 6 | value from an enumerated list, the name of a command or parameter, product name, or a 7 | lookup key for a message.

8 |

Category: Body elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lang-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Specifies the language of the element content.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lastname.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lastname>

5 |

The <lastname> element contains the person's last name.

6 |

Category: xNAL domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcAge.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcAge>

5 |

The <lcAge> provides the age range of the intended learner audience, for 6 | use by curriculum developers and course planners.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcArea2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcArea2>

5 |

A <lcArea2> defines an area of a hotspot image that contains a correct 6 | or incorrect choice in a hotspot assessment interaction. This element replaces the 7 | <lcArea> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcAreaCoords2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcAreaCoords2>

5 |

The <lcAreaCoords2> element specifies the coordinates of a linkable 6 | hotspot in a learning image. This element replaces the <lcAreaCoords> 7 | element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcAreaShape2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcAreaShape2>

5 |

The <lcAreaShape2> element defines the shape of a linkable hotspot in a 6 | learning image. This element replaces the <lcAreaShape> element in DITA 7 | 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcAsset.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcAsset>

5 |

The <lcAsset> element was deprecated in DITA version 1.3. It was 6 | replaced with the <lcAsset2> element. It was originally intended to 7 | provide the images or other graphic assets to support the interaction.

8 |

Category: Interactions domain content elements (DEPRECATED)

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcBackground.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcBackground>

5 |

The <lcBackground> provides the learners' professional background and 6 | the relevancy to the learning plan.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcCIN.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcCIN>

5 |

The <lcCIN> provides a course identification number or other alternate 6 | identifier for the project title.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcConstraints.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcConstraints>

5 |

The <lcConstraints> describes the organizational or technical aspects 6 | that may limit the organization's ability to effectively use the instruction to meet its 7 | goals.

8 |

Category: Learning and training: common content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcCorrectResponse2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcCorrectResponse2>

5 |

The <lcCorrectResponse2> element in an assessment interaction indicates 6 | a correct response. This element replaces the <lcCorrectResponse> 7 | element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcEdLevel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcEdLevel>

5 |

The <lcEdLevel> provides the range of learners' education level and the 6 | relevancy to the learning plan.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcFeedback2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcFeedback2>

5 |

The <lcFeedback2> element in an assessment interaction provides 6 | information to the learner about a correct or incorrect response. This element replaces 7 | the <lcFeedback> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcFeedbackCorrect2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcFeedbackCorrect2>

5 |

The <lcFeedbackCorrect2> element in an assessment interaction provides 6 | feedback to the learner about a correct response. This element replaces the 7 | <lcFeedbackCorrect> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcGapItem.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcGapItem>

5 |

The <lcGapItem> describes gaps between existing training objectives and 6 | related job-task-analysis content.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcGeneralDescription.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcGeneralDescription>

5 |

The <lcGeneralDescription> provides a space to develop a general 6 | description about the organization's training needs.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcGraphics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcGraphics>

5 |

The <lcGraphics> describes standards and system requirements for 6 | displaying graphics and other related content types.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcHandouts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcHandouts>

5 |

The <lcHandouts> provides aspects of the course that are provided by the 6 | instructor in support of the course learning objectives.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcHotspot2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcHotspot2>

5 |

In a <lcHotspot2> interaction, the learner clicks on a region of the 6 | screen to indicate a choice. This element replaces the <lcHotspot> 7 | element in DITA 1.2.

8 |

Category: Top level interactions elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcInstruction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcInstruction>

5 |

The <lcInstruction> describes the specifics of a learning activity.

6 |

Category: Learning and training: common content elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcInteractionBase2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcInteractionBase2>

5 |

Use <lcInteractionBase2> as the base for more specialized assessment 6 | types. This element replaces the <lcInteractionBase> element in DITA 7 | 1.2.

8 |

Category: Top level interactions elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcIntervention.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcIntervention>

5 |

The <lcIntervention> describes the approach and strategies to building 6 | the learning materials, based on the needs analysis.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcIntro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcIntro>

5 |

The <lcIntro> provides a detailed introduction and description of the 6 | content to be delivered, in cases where the <shortdesc> is not 7 | adequate to fully describe the content. It may also include instructor notes.

8 |

Category: Learning and training: common content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcItem2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcItem2>

5 |

The <lcItem2> element in an assessment interaction provides the content 6 | for an item that matches the match item in a match table. This element replaces the 7 | <lcItem> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcJtaItem.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcJtaItem>

5 |

The <lcJtaItem> provides description of job task analysis (JTA) as 6 | related to a particular learning objective.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcKnowledge.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcKnowledge>

5 |

The <lcKnowledge> element describes the learner's current knowledge and 6 | the relevancy to the broader plan audience or a specific task in the plan.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcLMS.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcLMS>

5 |

The <lcLMS> provides the LMS name and version number used in the 6 | learning event.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcLearnStrat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcLearnStrat>

5 |

The <lcLearnStrat> describes the manner in which the learning content 6 | will be instructed. This should be a high level design that applies instructional-design 7 | theories and models.

8 |

Category: Learning and training: common content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcLom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcLom>

5 |

The <lcLom> provides a set of specialized data elements to use to 6 | specify metadata in the learning topics and learning map domain.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcMatchTable2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcMatchTable2>

5 |

The <lcMatchTable2> element in an assessment interaction provides a 6 | format for matching items. This element replaces the <lcMatchTable> 7 | element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcMultipleSelect2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcMultipleSelect2>

5 |

In a <lcMultipleSelect2> interaction, the learner must indicate two or 6 | more correct answers from a list of choices.This element replaces the 7 | <lcMultipleSelect> element in DITA 1.2.

8 |

Category: Top level interactions elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcNoLMS.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcNoLMS>

5 |

Use <lcNoLMS> when you plan to deliver the content as a standalone 6 | package, without a learning management system (LMS).

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcOJT.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcOJT>

5 |

The <lcOJT> is "the on-the-job training" and describes aspects of the 6 | course taking place in the work environment.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcOpenAnswer2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcOpenAnswer2>

5 |

Use <lcOpenAnswer2> to provide a suggested answer for an 6 | <lcOpenQuestion2> interaction. This element replaces the 7 | <lcOpenAnswer> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcOpenQuestion2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcOpenQuestion2>

5 |

Use <lcOpenQuestion2> to pose an open-ended question in an assessment 6 | interaction. This element replaces the <lcOpenQuestion> element in DITA 7 | 1.2.

8 |

Category: Top level interactions elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcOrgConstraints.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcOrgConstraints>

5 |

The <lcOrgConstraints> provides organizational aspects that may limit 6 | the organization's ability to effectively use the instruction to meet its goals.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcPlanPrereqs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcPlanPrereqs>

5 |

The <lcPlanPrereqs> element provides the knowledge, skills, abilities, 6 | courses and other activities learners must have satisfied to take the instruction.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcPlanTitle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcPlanTitle>

5 |

The <lcPlanTitle> provides a title for a specific module, lesson, or 6 | section of the course that this plan describes.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcPrereqs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcPrereqs>

5 |

The <lcPrereqs> describes the knowledge, experience, or other 6 | prerequisites needed to complete the content.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcQuestion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcQuestion>

5 |

The <lcQuestion> element was deprecated in DITA version 1.3. It was 6 | replaced with the <lcQuestion2> element. It was originally intended 7 | to ask the question in an interaction.

8 |

Category: Interactions domain content elements (DEPRECATED)

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcQuestion2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcQuestion2>

5 |

Use the <lcQuestion2> element in an interaction to ask the question. 6 | This element replaces the <lcQuestion> element in DITA 1.2.

7 |

Category: Interactions domain content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcResources.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcResources>

5 |

The <lcResources> provides a list of related resources and information 6 | about them, such as related articles or samples on the web.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcSequence2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcSequence2>

5 |

The <lcSequence2> element in an assessment interaction provides the 6 | position of a sequence option in a sequence. This element replaces the 7 | <lcSequence> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcSequenceOption2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcSequenceOption2>

5 |

The <lcSequenceOption2> element in an assessment interaction provides 6 | the contents of an item in a sequence interaction. This element replaces the 7 | <lcSequenceOption> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcSequenceOptionGroup2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcSequenceOptionGroup2>

5 |

The <lcSequenceOptionGroup2> element provides the options for an 6 | assessment sequence interaction. This element replaces the 7 | <lcSequenceOptionGroup> element in DITA 1.2.

8 |

Category: Interactions domain content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcSequencing2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcSequencing2>

5 |

A <lcSequencing2> interaction asks the learner to arrange a list of 6 | choices into a predefined order, such as small to large. This element replaces the 7 | <lcSequencing> element in DITA 1.2.

8 |

Category: Top level interactions elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcSingleSelect2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcSingleSelect2>

5 |

A <lcSingleSelect2> interaction presents three or more choices, only one 6 | of which is correct. This element replaces the <lcSingleSelect> element 7 | in DITA 1.2.

8 |

Category: Top level interactions elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcSkills.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcSkills>

5 |

The <lcSkills> describes the learners' current skill set and the 6 | relevancy to the broader plan audience or a specific task in the plan.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcSpecChars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcSpecChars>

5 |

The <lcSpecChars> provides learner characteristics specific to the 6 | population that will influence the design, including learning disabilities, physical 7 | handicaps, and so forth.

8 |

Category: Learning and training: common content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcTask.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcTask>

5 |

The <lcTask> captures a work item to be performed, as part of the 6 | learning plan.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcTechnical.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcTechnical>

5 |

The <lcTechnical> describes the technical requirements to the learning 6 | content and how those requirements are supported by the instructional design.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcTime.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcTime>

5 |

The <lcTime> specifies the time expected to complete an activity. You 6 | can specify the time both as text to display to the user and as an attribute value that 7 | follows a specific time format.

8 |

Category: Learning and training: common content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lcW3C.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lcW3C>

5 |

The <lcW3C> provides requirements for use of world wide web consortium 6 | standards.

7 |

Category: Learning and training: common content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningAssessmentbody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningAssessmentbody>

5 |

The <learningAssessmentbody> element is the main body-level element in a 6 | <learningAssessment> topic.

7 |

Category: Learning and training: topic elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningContentComponentRef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningContentComponentRef>

5 |

Use a <learningContentComponentRef> element to include a topic reference 6 | to a topic that acts as a subtopic of a <learningContent> topic.

7 |

Category: Learning and training: map domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningContentRef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningContentRef>

5 |

Use a <learningContentRef> element to include a topic reference to a 6 | learning content topic as part of a DITA <learningObject> element.

7 |

Category: Learning and training: map domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningContentbody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningContentbody>

5 |

The <learningContentbody> element is the main body-level element in a 6 | <learningContent> topic.

7 |

Category: Learning and training: topic elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningGroup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningGroup>

5 |

Use a <learningGroup> to structure learning objects into higher-level 6 | organizations, such as course-level, module-level, or lesson-level.

7 |

Category: Learning and training: map domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningObject.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningObject>

5 |

learningObject organizes topic references to DITA learning topics as a learning object.

6 |

Category: Learning and training: map domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningObjectMapRef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningObjectMapRef>

5 |

Use a <learningObjectMapRef> element to include a map reference to a 6 | learning object map as part of a DITA learning map, learning bookmap, or learning group 7 | map.

8 |

Category: Learning and training: map domain elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningOverviewRef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningOverviewRef>

5 |

Use a <learningOverviewRef> element to include a topic reference to a 6 | learning overview topic as part of a <learningObject> element.

7 |

Category: Learning and training: map domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningPlan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningPlan>

5 |

A Learning Plan topic describes learning needs and goals, instructional design models, task 6 | analyses, learning taxonomies, and other information necessary to the lesson planning 7 | process.

8 |

Category: Learning and training: topic elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningPlanRef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningPlanRef>

5 |

Use a <learningPlanRef> element to include a topic reference to a 6 | learning plan topic as part of a <learningObject>.

7 |

Category: Learning and training: map domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningPlanbody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningPlanbody>

5 |

The <learningPlanbody> element is the main body-level element in a 6 | <learningPlan> topic.

7 |

Category: Learning and training: topic elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningPostAssessmentRef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningPostAssessmentRef>

5 |

Use a <learningPostAssessmentRef> element to include a topic reference 6 | to a learning assessment topic as part of a DITA <learningObject>.

7 |

Category: Learning and training: map domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningPreAssessmentRef.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningPreAssessmentRef>

5 |

Use a <learningPreAssessmentRef> element to include a topic reference 6 | to a learning assessment topic as part of a DITA <learningObject>.

7 |

Category: Learning and training: map domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/learningSummarybody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<learningSummarybody>

5 |

The <learningSummarybody> element is the main body-level element in a 6 | <learningSummary> topic.

7 |

Category: Learning and training: topic elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/link.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<link>

5 |

The <link> element defines a relationship to another topic or non-DITA 6 | resource. When displayed, links are typically sorted based on their attributes, which 7 | define the type or role of the link's target in relation to the current topic.

8 |

Category: Related links elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/linkinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<linkinfo>

5 |

The <linkinfo> element allows you to place a descriptive paragraph after 6 | the links that are contained in a <linklist> element.

7 |

Category: Related links elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/linking-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The @linking attribute, which enables an author or information architect to specify how a 5 | topic should participate in a relationship.

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/linklist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<linklist>

5 |

The <linklist> element defines an author-arranged group of links. When 6 | rendering the links, processors SHOULD preserve the order of links specified 7 | within a <linklist> element.

8 |

Category: Related links elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/locality.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<locality>

5 |

The <locality> element contains information about the city and postal or 6 | ZIP code. It can contain the information directly, or by acting as a wrapper for 7 | <localityname> and <postalcode>.

8 |

Category: xNAL domain elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/localityname.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<localityname>

5 |

The <localityname> element contains the name of the locality or city.

6 |

Category: xNAL domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/locktitle-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

If locktitle is set to "yes", the <navtitle> element or @navtitle attribute is used if 5 | it is present. Otherwise, the navtitle is ignored and the navigation title is retrieved 6 | from the referenced file.

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomAggregationLevel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomAggregationLevel>

5 |

The <lomAggregationLevel> describes the functional size of the learning 6 | resource.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomContext.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomContext>

5 |

The <lomContext> describes the typical learning environment where use of 6 | the learning object is intended to take place.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomCoverage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomCoverage>

5 |

The <lomCoverage> provides learning metadata about the temporal or 6 | spatial characteristics of the content, such as historical context.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomDifficulty.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomDifficulty>

5 |

The <lomDifficulty> provides learning metadata about how hard it is to 6 | work through the resource for the typical target audience.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomInteractivityLevel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomInteractivityLevel>

5 |

The <lomInteractivityLevel> provides learning metadata about the level 6 | of interactivity between an end user and the learning object.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomInteractivityType.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomInteractivityType>

5 |

The <lomInteractivityType> provides learning metadata about the the type 6 | of interactivity supported by the resource.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomLearningResourceType.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomLearningResourceType>

5 |

The <lomLearningResourceType> provides learning metadata about the 6 | specific kind of resource used, most dominant kind first.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomSemanticDensity.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomSemanticDensity>

5 |

The <lomSemanticDensity> provides learning metadata about a subjective 6 | measure of the learning object's usefulness as compared to its size or duration.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomStructure.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomStructure>

5 |

The <lomStructure> provides learning metadata about the underlying 6 | organizational structure of the resource.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomTechRequirement.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomTechRequirement>

5 |

The <lomTechRequirement> provides learning metadata about the operating 6 | system(s) under which the learning resource can run.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomTypicalAgeRange.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomTypicalAgeRange>

5 |

The <lomTypicalAgeRange> provides learning metadata about the age of the 6 | typical intended user.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/lomTypicalLearningTime.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<lomTypicalLearningTime>

5 |

The <lomTypicalLearningTime> provides learning metadata about the 6 | approximate or typical time it takes to work with the resource.

7 |

Category: Learning and training: metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/longquoteref.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<longquoteref>

5 |

The <longquoteref> element provides a reference to the source of a long 6 | quote.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/mainbooktitle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<mainbooktitle>

5 |

The <mainbooktitle> element contains the primary title information for a 6 | book.

7 |

Category: Bookmap content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/maintainer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<maintainer>

5 |

The <maintainer> element contains information about who maintains the 6 | document; the maintainer may be an organization or a person.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/mathmlref.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<mathmlref>

5 |

Use the <mathmlref> element to reference a non-DITA XML document that 6 | contains MathML markup. This element enables you to use the markup by reference.

7 |

Category: MathML domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/middlename.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<middlename>

5 |

The <middlename> element contains the person's middle name or initial.

6 |

Category: xNAL domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/namedetails.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<namedetails>

5 |

The <namedetails> element contains information about the name of the 6 | author or the authoring organization.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/navtitle-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Specifies a navigation title. This is a shorter version of the title that is used in the 5 | navigation only. By default, the @navtitle attribute is ignored; it serves only to help the 6 | DITA map author keep track of the title of the topic.

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/noconds.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<noconds>

5 |

The <noconds> element specifies that there are no conditions to be 6 | fulfilled before performing a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/nosafety.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<nosafety>

5 |

The <nosafety> element specifies that there are no safety conditions 6 | that must be considered.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/nospares.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<nospares>

5 |

The <nospares> element specifies that no spare parts are needed to 6 | perform a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/nosupeq.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<nosupeq>

5 |

The <nosupeq> element indicates that there is no support equipment 6 | required to perform a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/nosupply.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<nosupply>

5 |

The <nosupply> element specifies that no supplies are needed to perform 6 | a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/note.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<note>

5 |

A <note> element contains information that expands on or calls attention 6 | to a particular point. This information is typically differentiated from the main text.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/notices.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<notices>

5 |

The <notices> element references a topic containing special notice 6 | information, for example, legal notices about supplementary copyrights and trademarks 7 | associated with the book.

8 |

Category: Bookmap content elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/ol.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<ol>

5 |

The <ol> element includes a list of items sorted by sequence or order of 6 | importance.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/organizationinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<organizationinfo>

5 |

The <organizationinfo> element contains detailed information about an 6 | authoring organization.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/organizationname.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<organizationname>

5 |

The <organizationname> element contains name information about the 6 | authoring organization.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/organizationnamedetails.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<organizationnamedetails>

5 |

The <organizationnamedetails> element contains information about the 6 | name of an authoring organization.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/otherinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<otherinfo>

5 |

The <otherinfo> element contains other name information about the author 6 | or authoring organization.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/otherrole-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Indicates an alternate role. This value is used when the role attribute is set to other.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/outputclass-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Names a role that the element is playing. The role must be consistent with the basic 5 | semantic and expectations for the element. In particular, the outputclass attribute can be 6 | used for styling during output processing; HTML output will typically preserve outputclass 7 | for CSS processing.

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/overline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<overline>

5 |

The <overline>element indicates content that should be rendered with a 6 | line above it. This element is part of the highlighting domain. Use this element only when 7 | a more semantically appropriate element is not available.

8 |

Category: Highlighting elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/p.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<p>

5 |

The <p> element is a single paragraph containing a single main idea.

6 |

Category: Body elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/pd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<pd>

5 |

The <pd> element specifies a parameter definition within a parameter 6 | list entry. This element is part of the DITA programming domain, a special set of DITA 7 | elements designed to document programming tasks, concepts, and reference information.

8 |

Category: Programming elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/permissions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<permissions>

5 |

The <permissions> element in a topic's metadata specifies the level of 6 | entitlement needed to access the content.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/perscat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<perscat>

5 |

The <perscat> element specifies the type or category of workers that is 6 | required by a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/perskill.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<perskill>

5 |

The <perskill> element specifies the skill level of the workers who must 6 | perform the task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/personinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<personinfo>

5 |

The <personinfo> element is a wrapper containing all relevant data about 6 | a person, including name, address, and contact information.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/personname.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<personname>

5 |

The <personname> element contains name information about the author.

6 |

Category: xNAL domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/personnel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<personnel>

5 |

The <personnel> element specifies the minimum number of workers who are 6 | required to perform a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/placement-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Indicates whether an image should be displayed inline or separated from the surrounding 5 | text. The processing default is inline. Allowable values are: inline or break.

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/postalcode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<postalcode>

5 |

The <postalcode> element contains information about the postal code or 6 | the ZIP code.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/postreq.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<postreq>

5 |

The <postreq> element describes steps or tasks that the user should do 6 | after the successful completion of the current task. It is often supported by links to the 7 | next task or tasks in the <related-links> section.

8 |

Category: Task elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/preface.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<preface>

5 |

The <preface> element references a topic or map containing introductory 6 | information about a book, such as the purpose and structure of the document.

7 |

Category: Bookmap content elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/print-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Specifies whether the topic should be included in printed output.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/printlocation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<printlocation>

5 |

The <printlocation> element indicates the location where the book was 6 | printed. Customarily, the content is restricted to the name of the country.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/prodname.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<prodname>

5 |

The <prodname> metadata element contains the name of the product that is 6 | supported by the information in this topic.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/propdesc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<propdesc>

5 |

The <propdesc> element is used to provide a short description of the 6 | property type and its listed values.

7 |

Category: Reference elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/propdeschd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<propdeschd>

5 |

The <propdeschd> element supports headings for the description column of 6 | a properties table.

7 |

Category: Reference elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/prophead.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<prophead>

5 |

The <prophead> element supports headings for the 6 | <properties> element.

7 |

Category: Reference elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/proptypehd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<proptypehd>

5 |

The <proptypehd> element supports headings for the type column of a 6 | properties table.

7 |

Category: Reference elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/propvaluehd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<propvaluehd>

5 |

The <propvaluehd> element supports headings for the value column of a 6 | properties table.

7 |

Category: Reference elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/pt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<pt>

5 |

The <pt> element specifies a parameter term within a parameter list 6 | entry. This element is part of the DITA programming domain, a special set of DITA elements 7 | designed to document programming tasks, concepts, and reference information.

8 |

Category: Programming elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/published.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<published>

5 |

The <published> element contains information about the person or 6 | organization publishing the book, the dates when it was started and completed, and any 7 | special restrictions associated with it.

8 |

Category: Bookmap metadata elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/publisher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<publisher>

5 |

The <publisher> metadata element contains the name of the person, 6 | company, or organization responsible for making the content or subject of the topic 7 | available.

8 |

Category: Prolog (metadata) elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/relcolspec.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<relcolspec>

5 |

The <relcolspec> element is used to define a column in a relationship 6 | table. The <relcolspec> element may be used to set default attribute 7 | values for the <topicref> elements in the column.

8 |

Category: Basic map elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/relheader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<relheader>

5 |

The <relheader> element is a row in a relationship table that contains 6 | column definitions (<relcolspec> elements). Each table can have only one 7 | set of column definitions.

8 |

Category: Basic map elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/reqcond.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<reqcond>

5 |

The <reqcond> element specifies a condition that must be fulfilled 6 | before performing a task, for example, "Rear Oil Seal replacement."

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/reqconds.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<reqconds>

5 |

The <reqconds> element contains information about conditions that must 6 | be fulfilled before performing a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/resourceid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<resourceid>

5 |

The <resourceid> element provides an identifier for applications that 6 | must use their own identifier scheme, such as context-sensitive help systems and 7 | databases.

8 |

Category: Prolog (metadata) elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/responsibleParty.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<responsibleParty>

5 |

Use the <responsibleParty> element to identify the party who is 6 | responsible for performing a remedy procedure.

7 |

Category: Troubleshooting elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/result.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<result>

5 |

The <result> element describes the expected outcome for the task as a 6 | whole.

7 |

Category: Task elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/reviewed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<reviewed>

5 |

The <reviewed> element contains information about when and by whom the 6 | book was reviewed during its publication history.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/revised.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<revised>

5 |

The <revised> metadata element is used to maintain tracking dates that 6 | are important in a topic development cycle, such as the last modification date, the 7 | original availability date, and the expiration date.

8 |

Category: Prolog (metadata) elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/row.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<row>

5 |

The <row> element contains a single 6 | row in a table.

7 |

Category: Table elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/rowheader-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Indicates whether the entries in the respective column SHOULD be considered row headers.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/safecond.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<safecond>

5 |

The <safecond> element specifies a safety condition that must be 6 | considered prior to completing a task. It may also contain a complete hazard statement.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/scale-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Specifies a percentage, selected from an enumerated list, that is used to resize fonts 4 | in relation to the normal text size. This attribute is primarily useful for print-oriented 5 | display.

6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/scope-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The scope attribute identifies the closeness of the relationship between the current 5 | document and the target resource.

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/screen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<screen>

5 |

The <screen> element contains or refers to a textual representation of a 6 | computer screen or user interface panel (window).

7 |

Category: User interface elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/search-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Specifies whether the topic should be included in search indexes.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/series.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<series>

5 |

The <series> metadata element contains information about the product 6 | series that the topic supports.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/shape.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<shape>

5 |

The <shape> element defines the shape of a linkable area in an 6 | <imagemap>.

7 |

Category: Utilities elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/sl.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<sl>

5 |

The <sl> element contains a simple list of items of short, phrase-like 6 | content, such as a list of materials in a kit or package.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/source.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<source>

5 |

The <source> element identifies a resource from which the present topic 6 | is derived, either completely or in part.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/spare.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<spare>

5 |

The <spare> element specifies a particular spare part that is required 6 | to perform a task, for example, a "dipstick."

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/spares.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<spares>

5 |

The <spares> element contains information about the spare parts that are 6 | needed for a task. This information might specify particular spare parts or it might state 7 | that no spare parts are required.

8 |

Category: Task requirements domain

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/sparesli.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<sparesli>

5 |

The <sparesli> element contains information about the spare parts that 6 | are required to perform a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/started.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<started>

5 |

The <started> element indicates a start date for some type of book 6 | event, such as a review, editing, or testing.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/status-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

The modification status of the current element.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/stepxmp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<stepxmp>

5 |

The <stepxmp> element is used to illustrate a step of a task. The step 6 | example can be a couple of words, or an entire paragraph.

7 |

Category: Task elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/sthead.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<sthead>

5 |

The <sthead> element contains an optional header row for a 6 | <simpletable> element.

7 |

Category: Table elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/strow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<strow>

5 |

The <strow> element contains a single row inside of a 6 | <simpletable> element.

7 |

Category: Table elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/subjectHeadMeta.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<subjectHeadMeta>

5 |

The <subjectHeadMeta> element allows a navigation title and short 6 | description to be associated with a subject heading.

7 |

Category: Subject scheme elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/subjectRelHeader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<subjectRelHeader>

5 |

The <subjectRelHeader> element specifies the roles played by subjects in 6 | associations.

7 |

Category: Subject scheme elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/subjectScheme.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<subjectScheme>

5 |

The <subjectScheme> element is a specialization of 6 | <map>; it defines taxonomic subjects and controlled values.

7 |

Category: Subject scheme elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/substep.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<substep>

5 |

A <substep> element has the same structure as a 6 | <step>, except that it does not allow lists of choices or sub-steps 7 | within it, in order to prevent unlimited nesting of steps.

8 |

Category: Task elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/summary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<summary>

5 |

The <summary> element contains a text summary associated with a book 6 | event (such as <approved> or <reviewed>) or with the 7 | list of copyrights for the book.

8 |

Category: Bookmap metadata elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/supeqli.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<supeqli>

5 |

The <supeqli> element contains a list of the tools, support equipment, 6 | or monitoring equipment that is required to perform a task. These pieces of support 7 | equipment need to be assembled prior to beginning the task.

8 |

Category: Task requirements domain

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/supequi.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<supequi>

5 |

The <supequi> element specifies a tool, a piece of support equipment, or 6 | a piece of monitoring equipment that is needed to perform a task, such as a slide hammer.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/supply.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<supply>

5 |

The <supply> element contains information about a single supply in a 6 | list of supplies that are needed to perform a task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/supplyli.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<supplyli>

5 |

The <supplyli> element specifies a list of supplies needed to perform a 6 | task.

7 |

Category: Task requirements domain

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/svgref.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<svgref>

5 |

Use the <svgref> element to reference a non-DITA XML document that 6 | contains scalable vector graphic (SVG) markup. This element enables you to use the markup 7 | by reference.

8 |

Category: SVG elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/tbody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<tbody>

5 |

The <tbody> element contains the 6 | rows in a table.

7 |

Category: Table elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/term.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<term>

5 |

The <term> element identifies words that may have or require extended 6 | definitions or explanations.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/tested.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<tested>

5 |

The <tested> element contains information about when and by whom the 6 | book was tested during its publication history.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<text>

5 |

The <text> element associates no semantics with its content. It exists 6 | to serve as a container for text where a container is needed (for example, as a target for 7 | content references, or for use within restricted content models in specializations).

8 |

Category: Body elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/tgroup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<tgroup>

5 |

The <tgroup> element in a table contains the header and body rows of a 6 | table.

7 |

Category: Table elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/thead.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<thead>

5 |

The <thead> element is a table header that precedes the table body 6 | (<tbody>) element in a complex table.

7 |

Category: Table elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/thoroughfare.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<thoroughfare>

5 |

The <thoroughfare> element contains information about the thoroughfare - 6 | for example, the street, avenue, or boulevard - on which an address is located.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/tm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<tm>

5 |

The <tm> element identifies a term or phrase that is trademarked. 6 | Trademarks include registered trademarks, service marks, slogans, and logos.

7 |

Category: Body elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/toc-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Specifies whether topics are excluded from navigation output, such as a Web site map or an 5 | online table of contents. By default, <topicref> hierarchies are included in navigation 6 | output; relationship tables are excluded

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/topicCell.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<topicCell>

5 |

The <topicCell> element contains topics that will be associated with 6 | subjects in each following column of the current row in the 7 | <topicSubjectTable>.

8 |

Category: Classification domain elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/topicSubjectHeader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<topicSubjectHeader>

5 |

The <topicSubjectHeader> element specifies constraints on the subjects 6 | used in classifications.

7 |

Category: Classification domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/topicSubjectRow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<topicSubjectRow>

5 |

The <topicSubjectRow> is a grouping element that contains one row of a 6 | subject table. It contains topic references in the first column, and relates those 7 | references to the subjects in each following column.

8 |

Category: Classification domain elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/topicsetref.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<topicsetref>

5 |

The <topicsetref> element references a <topicset> 6 | element. The referenced <topicset> element can be defined in the current 7 | map or in another map.

8 |

Category: Map group elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/topicsubject.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<topicsubject>

5 |

The <topicsubject> element identifies the subjects covered by a topic or 6 | map.

7 |

Category: Classification domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/translate-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Indicates whether the content of the element should be translated or not. The DITA 5 | architectural specification contains a list of each OASIS DITA element and its common 6 | processing default for the translate value.

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/troublebody.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<troublebody>

5 |

The <troublebody> element is a container for the main content of the 6 | troubleshooting topic.

7 |

Category: Troubleshooting elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/tutorialinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<tutorialinfo>

5 |

The <tutorialinfo> element contains additional information that is 6 | useful when the task is part of a tutorial.

7 |

Category: Task elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/type-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Describes the target of a reference.

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/typeofhazard.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<typeofhazard>

5 |

The <typeofhazard> element contains a description of the type of hazard, 6 | for example, "Hot surfaces inside."

7 |

Category: Hazard statement elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/ul.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<ul>

5 |

The <ul> element is a list of items in which the order of list items is 6 | not significant. List items are typically styled on output with a "bullet" character, 7 | depending on nesting level.

8 |

Category: Body elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/url.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<url>

5 |

The <url> element contains a Uniform Resource Locator (URL), such as a 6 | person's or company's internet address.

7 |

Category: xNAL domain elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/urls.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<urls>

5 |

The <urls> element contains a list of Uniform Resource Locators (URLs).

6 |

Category: xNAL domain elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/volume.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<volume>

5 |

The <volume> element contains the book's volume number, such as "2" to 6 | represent Volume 2.

7 |

Category: Bookmap metadata elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/vrm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<vrm>

5 |

The <vrm> element contains information about a single product's version, 6 | modification, and release, to which the current topic applies.

7 |

Category: Prolog (metadata) elements

8 | 9 | 10 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/vrmlist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<vrmlist>

5 |

The <vrmlist> element contains a set of <vrm> 6 | elements for logging the version, release, and modification information for multiple 7 | products or versions of products to which the topic applies.

8 |

Category: Prolog (metadata) elements

9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/xtrc-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

This attribute is intended to store debugging information during intermediate processing.

5 |

xml-trace-counter, an element counter for repositioning editors at a known edit location

6 | 7 | 8 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/xtrf-attr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

xml-trace-filename, the original filename

5 | 6 | 7 | -------------------------------------------------------------------------------- /info-model/rules/descriptions/year.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

<year>

5 |

The <year> element denotes a year.

6 |

Category: Bookmap metadata elements

7 | 8 | 9 | -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/dita.list: -------------------------------------------------------------------------------- 1 | #Wed Jun 10 11:47:52 EEST 2015 2 | relflagimagelist= 3 | user.input.dir=/Users/george/Documents/workspace/dim-public/info-model 4 | copytotarget2sourcemaplist= 5 | uplevels= 6 | user.input.file=bm_InformationModelBookmap.ditamap 7 | user.input.file.listfile=usr.input.file.list 8 | tempdirToinputmapdir.relative.value= 9 | relflagimagefile=relflagimage.list 10 | -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/CollapseAll16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/CollapseAll16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/ExpandAll16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/ExpandAll16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/LogoOxygen100x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/LogoOxygen100x22.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/ajax-loader.gif -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/book_closed16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/book_closed16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/book_opened16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/book_opened16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/buttons.gif -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/caution.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/close.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/close_hover.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/danger.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/dot.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/draft.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/expand.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/frames.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/icon_comment24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/icon_comment24x24.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/icons.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/important.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/link.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/loading.gif -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/loadingSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/loadingSmall.gif -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/nav_left16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/nav_left16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/nav_right16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/nav_right16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/nav_up16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/nav_up16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/note.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/print.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/remember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/remember.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/restriction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/restriction.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/rss.gif -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/spinner.gif -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/splitter.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/star.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/starsSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/starsSmall.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/timeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/timeLine.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/timeVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/timeVersion.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/tip.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/toolbar.gif -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/topic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/topic16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/troubleshooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/troubleshooting.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/version.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/img/warning.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/js/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/resources/js/base64.js -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/search/nwSearchFnt.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/search/nwSearchFnt.LICENSE.txt -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/search/search-excludes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/search/search-excludes.txt -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/fonts/OxygenWebhelp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/fonts/OxygenWebhelp.ttf -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/Collapse16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/Collapse16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/Expand16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/Expand16.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/IndexTermHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/IndexTermHeader.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/LogoOxygen100x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/LogoOxygen100x22.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/Search24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/Search24.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/left_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/left_bg.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/right_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/right_bg.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/search_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/search_left.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/search_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/search_right.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/star.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/starsSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/starsSmall.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/svg/CollapseCircle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/svg/CollapseRectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/svg/ExpandCircle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/resources/images/svg/ExpandRectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/variants/tiles/oxygen/resources/images/bgr_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/variants/tiles/oxygen/resources/images/bgr_right.png -------------------------------------------------------------------------------- /info-model/rules/styleguide/webhelp/oxygen-webhelp/template/variants/tiles/oxygen/resources/images/bgr_right_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygenxml/dim/7dbf248465fea8893469e756aa9fd4fd6bb67cd7/info-model/rules/styleguide/webhelp/oxygen-webhelp/template/variants/tiles/oxygen/resources/images/bgr_right_small.png -------------------------------------------------------------------------------- /oxygen-sdk-workspace/sdkExtensions/oxygen-gim-extensions/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /test/concept.dita: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

9 |
10 |
11 | -------------------------------------------------------------------------------- /test/map.ditamap: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DITA Topic Map 6 | 7 | -------------------------------------------------------------------------------- /test/project/task.dita: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

9 |
10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 | -------------------------------------------------------------------------------- /test/reference.dita: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | --------------------------------------------------------------------------------