1*cabbd591SAndrew Rist<!--*********************************************************** 2*cabbd591SAndrew Rist * 3*cabbd591SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*cabbd591SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*cabbd591SAndrew Rist * distributed with this work for additional information 6*cabbd591SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*cabbd591SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*cabbd591SAndrew Rist * "License"); you may not use this file except in compliance 9*cabbd591SAndrew Rist * with the License. You may obtain a copy of the License at 10*cabbd591SAndrew Rist * 11*cabbd591SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*cabbd591SAndrew Rist * 13*cabbd591SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*cabbd591SAndrew Rist * software distributed under the License is distributed on an 15*cabbd591SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*cabbd591SAndrew Rist * KIND, either express or implied. See the License for the 17*cabbd591SAndrew Rist * specific language governing permissions and limitations 18*cabbd591SAndrew Rist * under the License. 19*cabbd591SAndrew Rist * 20*cabbd591SAndrew Rist ***********************************************************--> 21cdf0e10cSrcweir 22cdf0e10cSrcweir 23cdf0e10cSrcweir 24cdf0e10cSrcweir 25cdf0e10cSrcweir<!ELEMENT meta:generator (%cString;)> 26cdf0e10cSrcweir 27cdf0e10cSrcweir<!ELEMENT dc:title (%cString;)> 28cdf0e10cSrcweir 29cdf0e10cSrcweir<!ELEMENT dc:description (%cString;)> 30cdf0e10cSrcweir 31cdf0e10cSrcweir<!ELEMENT dc:subject (%cString;)> 32cdf0e10cSrcweir 33cdf0e10cSrcweir<!ELEMENT meta:keywords (meta:keyword)*> 34cdf0e10cSrcweir<!ELEMENT meta:keyword (%cString;)> 35cdf0e10cSrcweir 36cdf0e10cSrcweir<!ELEMENT meta:initial-creator (%cString;)> 37cdf0e10cSrcweir 38cdf0e10cSrcweir<!ELEMENT dc:creator (%cString;)> 39cdf0e10cSrcweir 40cdf0e10cSrcweir<!ELEMENT meta:printed-by (%cString;)> 41cdf0e10cSrcweir 42cdf0e10cSrcweir<!ELEMENT meta:creation-date (%cTimeInstance;)> 43cdf0e10cSrcweir 44cdf0e10cSrcweir<!ELEMENT dc:date (%cTimeInstance;)> 45cdf0e10cSrcweir 46cdf0e10cSrcweir<!ELEMENT meta:print-date (%cTimeInstance;)> 47cdf0e10cSrcweir 48cdf0e10cSrcweir<!ELEMENT meta:template EMPTY> 49cdf0e10cSrcweir<!ATTLIST meta:template xlink:type (simple) #FIXED "simple"> 50cdf0e10cSrcweir<!ATTLIST meta:template xlink:actuate (onRequest) "onRequest"> 51cdf0e10cSrcweir<!ATTLIST meta:template xlink:href %uriReference; #REQUIRED> 52cdf0e10cSrcweir<!ATTLIST meta:template xlink:title %string; #IMPLIED> 53cdf0e10cSrcweir<!ATTLIST meta:template meta:date %timeInstance; #IMPLIED> 54cdf0e10cSrcweir 55cdf0e10cSrcweir<!ELEMENT meta:auto-reload EMPTY> 56cdf0e10cSrcweir<!ATTLIST meta:auto-reload xlink:type (simple) #IMPLIED> 57cdf0e10cSrcweir<!ATTLIST meta:auto-reload xlink:show (replace) #IMPLIED> 58cdf0e10cSrcweir<!ATTLIST meta:auto-reload xlink:actuate (onLoad) #IMPLIED> 59cdf0e10cSrcweir<!ATTLIST meta:auto-reload xlink:href %uriReference; #IMPLIED> 60cdf0e10cSrcweir<!ATTLIST meta:auto-reload meta:delay %timeDuration; "P0S"> 61cdf0e10cSrcweir 62cdf0e10cSrcweir<!ELEMENT meta:hyperlink-behaviour EMPTY> 63cdf0e10cSrcweir<!ATTLIST meta:hyperlink-behaviour office:target-frame-name %targetFrameName; #IMPLIED> 64cdf0e10cSrcweir<!ATTLIST meta:hyperlink-behaviour xlink:show (new|replace) #IMPLIED> 65cdf0e10cSrcweir 66cdf0e10cSrcweir<!ELEMENT dc:language (%cLanguage;)> 67cdf0e10cSrcweir 68cdf0e10cSrcweir<!ELEMENT meta:editing-cycles (%cPositiveInteger;)> 69cdf0e10cSrcweir 70cdf0e10cSrcweir<!ELEMENT meta:editing-duration (%cTimeDuration;)> 71cdf0e10cSrcweir 72cdf0e10cSrcweir<!ELEMENT meta:user-defined (%cString;)> 73cdf0e10cSrcweir<!ATTLIST meta:user-defined meta:name %string; #REQUIRED> 74cdf0e10cSrcweir 75cdf0e10cSrcweir<!ELEMENT meta:document-statistic EMPTY> 76cdf0e10cSrcweir<!ATTLIST meta:document-statistic meta:page-count %positiveInteger; #IMPLIED 77cdf0e10cSrcweir meta:table-count %nonNegativeInteger; #IMPLIED 78cdf0e10cSrcweir meta:draw-count %nonNegativeInteger; #IMPLIED 79cdf0e10cSrcweir meta:image-count %nonNegativeInteger; #IMPLIED 80cdf0e10cSrcweir meta:ole-object-count %nonNegativeInteger; #IMPLIED 81cdf0e10cSrcweir meta:paragraph-count %nonNegativeInteger; #IMPLIED 82cdf0e10cSrcweir meta:word-count %nonNegativeInteger; #IMPLIED 83cdf0e10cSrcweir meta:character-count %nonNegativeInteger; #IMPLIED 84cdf0e10cSrcweir meta:row-count %nonNegativeInteger; #IMPLIED 85cdf0e10cSrcweir meta:cell-count %nonNegativeInteger; #IMPLIED 86cdf0e10cSrcweir meta:object-count %positiveInteger; #IMPLIED> 87