<application>

<application> proporciona información sobre la aplicación que ha actuado sobre el documento.
Módulo header — 2 The TEI Header
Además de los atributos globales att.typed (@type, @subtype) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso))
ident proporciona un identificador para la aplicación, independientemente de su número de versión o el nombre de la visualización.
Estado Necesario
Tipo de datos

<rng:ref name="data.name"/>
data.name
version Suministra un número de versión para la aplicación, independientemente de su identificador o el nombre de la visualización.
Estado Necesario
Tipo de datos

<rng:data type="token">
 <rng:param name="pattern">[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}</rng:param>
</rng:data>
token { pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" }
Usado por
Puede contener
core: desc label p ptr ref
linking: ab
Declaración

<rng:element name="application">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:ref name="att.datable.w3c.attributes"/>
 <rng:ref name="att.datable.iso.attributes"/>
 <rng:attribute name="ident">
  <rng:ref name="data.name"/>
 </rng:attribute>
 <rng:attribute name="version">
  <rng:data type="token">
   <rng:param name="pattern">[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}</rng:param>
  </rng:data>
 </rng:attribute>
 <rng:group>
  <rng:oneOrMore>
   <rng:ref name="model.labelLike"/>
  </rng:oneOrMore>
  <rng:choice>
   <rng:zeroOrMore>
    <rng:ref name="model.ptrLike"/>
   </rng:zeroOrMore>
   <rng:zeroOrMore>
    <rng:ref name="model.pLike"/>
   </rng:zeroOrMore>
  </rng:choice>
 </rng:group>
</rng:element>
element application
{
   att.global.attributes,
   att.typed.attributes,
   att.datable.w3c.attributes,
   att.datable.iso.attributes,
   attribute ident { data.name },
   attribute version
   {
      token { pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" }
   },
   ( model.labelLike+, ( model.ptrLike* | model.pLike* ) )
}
Ejemplo
<appInfo>
 <application version="1.5" ident="ImageMarkupTool1" notAfter="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.