image.dtd 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. * This file is part of the LibreOffice project.
  4. *
  5. * This Source Code Form is subject to the terms of the Mozilla Public
  6. * License, v. 2.0. If a copy of the MPL was not distributed with this
  7. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  8. *
  9. * This file incorporates work covered by the following license notice:
  10. *
  11. * Licensed to the Apache Software Foundation (ASF) under one or more
  12. * contributor license agreements. See the NOTICE file distributed
  13. * with this work for additional information regarding copyright
  14. * ownership. The ASF licenses this file to you under the Apache
  15. * License, Version 2.0 (the "License"); you may not use this file
  16. * except in compliance with the License. You may obtain a copy of
  17. * the License at http://www.apache.org/licenses/LICENSE-2.0 .
  18. -->
  19. <!ENTITY % url "CDATA">
  20. <!-- URI reference -->
  21. <!ENTITY % uriReference "CDATA">
  22. <!-- a color value having the format #rrggbb -->
  23. <!ENTITY % color "CDATA">
  24. <!-- determine the mask mode of the image bitmap -->
  25. <!ENTITY % maskMode "(maskcolor|maskbitmap)">
  26. <!ELEMENT image:entry EMPTY>
  27. <!ATTLIST image:entry
  28. image:command %url; #REQUIRED
  29. image:bitmap-index CDATA
  30. >
  31. <!ELEMENT image:externalentry EMPTY>
  32. <!ATTLIST image:externalentry
  33. image:command %url; #REQUIRED
  34. xlink:href %uriReference;
  35. xlink:type CDATA #FIXED "simple"
  36. >
  37. <!ELEMENT image:externalimages (image:externalentry*)>
  38. <!ELEMENT image:images (image:entry*)>
  39. <!ATTLIST image:images
  40. xlink:href %uriReference; #REQUIRED
  41. xlink:type CDATA #FIXED "simple"
  42. image:maskmode %maskMode; "maskcolor"
  43. image:maskcolor %color; "#000000"
  44. image:maskurl %url; #IMPLIED
  45. >
  46. <!ELEMENT image:imagescontainer (image:images*, image:externalimages?)>
  47. <!ATTLIST image:imagescontainer
  48. xmlns:image CDATA #FIXED "http://openoffice.org/2001/image"
  49. xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink"
  50. >