The following DTD (Document Type Definition) summary.dtd models the Digester XML format. Each Digester XML file needs to fully comply with the shown structure to enable applications to process the contained data properly. A detailed description of the Digester XML format can be found in section Supported File Formats. You can reference this file with the following Internet address:
https://www.leisenfels.com/dl/dtd/summary-1.1.dtd
<!--
Copyright (c) 2005-2026 Leisenfels GmbH. All rights reserved.
Use is subject to license terms.
-->
<!ELEMENT summary ( comment?, target* )>
<!ATTLIST summary
version (1.1) #REQUIRED
date CDATA #IMPLIED
targets CDATA #REQUIRED>
<!ELEMENT comment ( #PCDATA )>
<!ELEMENT target ( url*, digest*, pgpsig* )>
<!ATTLIST target
abspath CDATA #IMPLIED
relpath CDATA #REQUIRED
length CDATA #REQUIRED
modified CDATA #REQUIRED
digests CDATA #REQUIRED
pgpsigs CDATA #REQUIRED>
<!ELEMENT url ( #PCDATA )>
<!ELEMENT digest ( #PCDATA )>
<!ATTLIST digest
algorithm CDATA #REQUIRED
size CDATA #IMPLIED
pos CDATA #IMPLIED
format (hex | base64) #REQUIRED>
<!ELEMENT pgpsig ( #PCDATA )>
<!ATTLIST pgpsig
keyid CDATA #IMPLIED
keyname CDATA #IMPLIED
keyemail CDATA #IMPLIED
keyurl CDATA #IMPLIED
size CDATA #IMPLIED
format (ascii) #REQUIRED>
|