home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2002 October / VPR0210A.ISO / OPENOFFICE / f_0207 / dtypes.mod
Text File  |  2001-07-24  |  6KB  |  172 lines

  1. <!--
  2.     $Id: dtypes.mod,v 1.15 2001/07/24 11:23:13 cl Exp $
  3.  
  4.    The Contents of this file are made available subject to the terms of
  5.    either of the following licenses
  6.  
  7.           - GNU Lesser General Public License Version 2.1
  8.           - Sun Industry Standards Source License Version 1.1
  9.  
  10.    Sun Microsystems Inc., October, 2000
  11.  
  12.    GNU Lesser General Public License Version 2.1
  13.    =============================================
  14.    Copyright 2000 by Sun Microsystems, Inc.
  15.    901 San Antonio Road, Palo Alto, CA 94303, USA
  16.  
  17.    This library is free software; you can redistribute it and/or
  18.    modify it under the terms of the GNU Lesser General Public
  19.    License version 2.1, as published by the Free Software Foundation.
  20.  
  21.    This library is distributed in the hope that it will be useful,
  22.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  24.    Lesser General Public License for more details.
  25.  
  26.    You should have received a copy of the GNU Lesser General Public
  27.    License along with this library; if not, write to the Free Software
  28.    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  29.    MA  02111-1307  USA
  30.  
  31.  
  32.    Sun Industry Standards Source License Version 1.1
  33.    =================================================
  34.    The contents of this file are subject to the Sun Industry Standards
  35.    Source License Version 1.1 (the "License"); You may not use this file
  36.    except in compliance with the License. You may obtain a copy of the
  37.    License at http://www.openoffice.org/license.html.
  38.  
  39.    Software provided under this License is provided on an "AS IS" basis,
  40.    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
  41.    WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
  42.    MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
  43.    See the License for the specific provisions governing your rights and
  44.    obligations concerning the Software.
  45.  
  46.    The Initial Developer of the Original Code is: Sun Microsystems, Inc.
  47.  
  48.    Copyright: 2000 by Sun Microsystems, Inc.
  49.  
  50.    All Rights Reserved.
  51.  
  52.    Contributor(s): _______________________________________
  53.  
  54. -->
  55.  
  56. <!-- datatypes corresponding to XML Schema Part 2 W3C Working draft of    -->
  57. <!-- 07 April 2000                                                        -->
  58.  
  59. <!-- string -->
  60. <!ENTITY % string                "CDATA">
  61. <!ENTITY % cString                "#PCDATA">
  62.  
  63. <!-- boolean (values are "true" and "false" -->
  64. <!ENTITY % boolean                "CDATA">
  65.  
  66. <!-- integer ( ..., -2, -1, 0, 1, 2, ...) -->
  67. <!ENTITY % integer                "CDATA">
  68.  
  69. <!-- non negative integer ( 0, 1, 2, ...) -->
  70. <!ENTITY % nonNegativeInteger    "CDATA">
  71.  
  72. <!-- positive integer ( 1, 2, ...) -->
  73. <!ENTITY % positiveInteger        "CDATA">
  74. <!ENTITY % cPositiveInteger        "#PCDATA">
  75.  
  76. <!ENTITY % positiveNumberOrDefault "CDATA">
  77.  
  78. <!-- time duration as specified by ISO8601, section 5.5.3.2 -->
  79. <!ENTITY % timeDuration            "CDATA">
  80. <!ENTITY % cTimeDuration        "#PCDATA">
  81.  
  82. <!-- time instance as specified by ISO8601, section 5.4 -->
  83. <!ENTITY % timeInstance            "CDATA">
  84. <!ENTITY % cTimeInstance        "#PCDATA">
  85.  
  86. <!-- date instance as specified by ISO8601, section 5.2.1.1, extended format-->
  87. <!ENTITY % date                    "CDATA">
  88. <!ENTITY % cDate                "#PCDATA">
  89.  
  90. <!-- date duration, like timDuration but truncated to full dates -->
  91. <!ENTITY % dateDuration            "CDATA">
  92. <!ENTITY % cDateDuration        "#PCDATA">
  93.  
  94. <!-- URI reference -->
  95. <!ENTITY % uriReference            "CDATA">
  96.  
  97. <!-- language code as specified by RFC1766 -->
  98. <!ENTITY % language                "CDATA">
  99. <!ENTITY % cLanguage            "#PCDATA">
  100.  
  101. <!-- float -->
  102. <!ENTITY % float "CDATA">
  103.  
  104. <!-- Some other common used data types -->
  105.  
  106. <!-- a single UNICODE character -->
  107. <!ENTITY % character            "CDATA">
  108.  
  109. <!-- a style name -->
  110. <!ENTITY % styleName            "CDATA">
  111.  
  112. <!-- a target frame mame -->
  113. <!ENTITY % targetFrameName            "CDATA">
  114.  
  115. <!-- a language without a country as specified by ISO639 -->
  116. <!ENTITY % languageOnly            "CDATA">
  117.  
  118. <!-- a country as specified by ISO3166 -->
  119. <!ENTITY % country                "CDATA">
  120.  
  121. <!-- a color value having the format #rrggbb -->
  122. <!ENTITY % color                "CDATA">
  123. <!-- a color value having the format #rrggbb or "transparent" -->
  124. <!ENTITY % transparentOrColor            "CDATA">
  125.  
  126. <!-- a percentage -->
  127. <!ENTITY % percentage             "CDATA">
  128.  
  129. <!-- a length (i.e. 1cm or .6inch) -->
  130. <!ENTITY % length                "CDATA">
  131. <!ENTITY % positiveLength        "CDATA">
  132. <!ENTITY % nonNegativeLength    "CDATA">
  133. <!ENTITY % lengthOrNoLimit "CDATA">
  134.  
  135. <!-- a length or a percentage -->
  136. <!ENTITY % lengthOrPercentage    "CDATA">
  137. <!ENTITY % positiveLengthOrPercentage    "CDATA">
  138.  
  139. <!-- a pixel length (i.e. 2px) -->
  140. <!ENTITY % nonNegativePixelLength    "CDATA">
  141.  
  142. <!-- a float or a percentage -->
  143. <!ENTITY % floatOrPercentage    "CDATA">
  144.  
  145. <!-- a text encoding -->
  146. <!ENTITY % textEncoding    "CDATA">
  147.  
  148. <!-- cell address and cell range address -->
  149. <!ENTITY % cell-address "CDATA">
  150. <!ENTITY % cell-range-address "CDATA">
  151. <!ENTITY % cell-range-address-list "CDATA">
  152.  
  153. <!-- value types -->
  154. <!ENTITY % valueType "(float|time|date|percentage|currency|boolean|string)">
  155.  
  156. <!-- an svg coordinate in different distance formats -->
  157. <!ENTITY % coordinate "CDATA">
  158.  
  159. <!ENTITY % coordinateOrPercentage    "CDATA">
  160.  
  161. <!ENTITY % shape "draw:rect|draw:line|draw:polyline|draw:polygon|draw:path|
  162.                    draw:circle|draw:ellipse|draw:g|draw:page-thumbnail|
  163.                    draw:text-box|draw:image|draw:object|draw:object-ole|
  164.                    draw:applet|draw:floating-frame|draw:plugin|
  165.                    draw:measure|draw:caption|draw:connector|chart:chart|
  166.                    dr3d:scene|draw:control" >
  167. <!ENTITY % shapes "(%shape;)" >
  168.  
  169. <!ENTITY % anchorType "(page|frame|paragraph|char|as-char)">
  170.  
  171. <!ENTITY % control-id "form:id CDATA #REQUIRED">
  172.