<application>

<application> provides information about an application which has acted upon the document. [2.3.11. The Application Information Element]
Moduleheader
Attributes
calendarindicates one or more systems or calendars to which the date represented by the content of this element belongs.
Deprecatedwill be removed on 2024-11-11
Status Optional
Datatype 1–∞ occurrences of teidata.pointer separated by whitespace
Schematron

<sch:rule context="tei:*[@calendar]">
<sch:assert test="string-length( normalize-space(.) ) gt 0"> @calendar indicates one or more
systems or calendars to which the date represented by the content of this element belongs,
but this <sch:name/> element has no textual content.</sch:assert>
</sch:rule>
identsupplies an identifier for the application, independent of its version number or display name.
Status Required
Datatype teidata.name
versionsupplies a version number for the application, independent of its identifier or display name.
Status Required
Datatype teidata.versionNumber
Contained by
May contain
linking: ab
Example
<appInfo>
 <application version="1.5"
  ident="ImageMarkupTool1notAfter="2006-06-01">

  <label>Image Markup Tool</label>
  <ptr target="#P1"/>
  <ptr target="#P2"/>
 </application>
</appInfo>

This example shows an appInfo element documenting the fact that version 1.5 of the Image Markup Tool1 application has an interest in two parts of a document which was last saved on June 6 2006. The parts concerned are accessible at the URLs given as target for the two ptr elements.

Content model
<content>
 <sequence>
  <classRef key="model.labelLike"
   minOccurs="1maxOccurs="unbounded"/>

  <alternate>
   <classRef key="model.ptrLike"
    minOccurs="0maxOccurs="unbounded"/>

   <classRef key="model.pLike"
    minOccurs="0maxOccurs="unbounded"/>

  </alternate>
 </sequence>
</content>
Schema Declaration
element application
{
   tei_att.global.attributes,
   tei_att.typed.attributes,
   tei_att.datable.attributes,
   attribute calendar { list { teidata.pointer+ } }?,
   attribute ident { teidata.name },
   attribute version { teidata.versionNumber },
   ( tei_model.labelLike+, ( tei_model.ptrLike* | tei_model.pLike* ) )
}