You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

skinconf.xml 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?xml version="1.0"?>
  2. <!--
  3. Skin configuration file. This file contains details of your project, which will
  4. be used to configure the chosen Forrest skin.
  5. -->
  6. <!DOCTYPE skinconfig [
  7. <!ENTITY % links.att 'name CDATA #REQUIRED'>
  8. <!ENTITY % link.att 'name CDATA #REQUIRED href CDATA #REQUIRED'>
  9. <!ELEMENT skinconfig (disable-search?, disable-compliance-links?, searchsite-domain?, searchsite-name?,
  10. project-name, project-url, project-logo, group-name?, group-url?, group-logo?,
  11. host-url?, host-logo?, year?, vendor?, trail?, credits?)*>
  12. <!ELEMENT credits (credit*)>
  13. <!ELEMENT credit (name, url, image?, width?, height?)>
  14. <!-- id uniquely identifies the tool, and role indicates its function -->
  15. <!ATTLIST credit id CDATA #IMPLIED
  16. role CDATA #IMPLIED>
  17. <!ELEMENT disable-search (#PCDATA)>
  18. <!ELEMENT disable-compliance-links (#PCDATA)>
  19. <!ELEMENT searchsite-domain (#PCDATA)>
  20. <!ELEMENT searchsite-name (#PCDATA)>
  21. <!ELEMENT project-name (#PCDATA)>
  22. <!ELEMENT project-url (#PCDATA)>
  23. <!ELEMENT project-logo (#PCDATA)>
  24. <!ELEMENT group-name (#PCDATA)>
  25. <!ELEMENT group-url (#PCDATA)>
  26. <!ELEMENT group-logo (#PCDATA)>
  27. <!ELEMENT host-url (#PCDATA)>
  28. <!ELEMENT host-logo (#PCDATA)>
  29. <!ELEMENT year (#PCDATA)>
  30. <!ELEMENT vendor (#PCDATA)>
  31. <!ELEMENT trail (link1, link2, link3)>
  32. <!ELEMENT link1 EMPTY>
  33. <!-- Seems we can't use param entity refs until this is DTDified -->
  34. <!ATTLIST link1 name CDATA #REQUIRED href CDATA #IMPLIED>
  35. <!ELEMENT link2 EMPTY>
  36. <!ATTLIST link2 name CDATA #REQUIRED href CDATA #IMPLIED>
  37. <!ELEMENT link3 EMPTY>
  38. <!ATTLIST link3 name CDATA #REQUIRED href CDATA #IMPLIED>
  39. <!ELEMENT name (#PCDATA)>
  40. <!ELEMENT url (#PCDATA)>
  41. <!ELEMENT image (#PCDATA)>
  42. <!ELEMENT width (#PCDATA)>
  43. <!ELEMENT height (#PCDATA)>
  44. ]>
  45. <skinconfig>
  46. <!-- Do we want to disable the Google search box? -->
  47. <disable-search>false</disable-search>
  48. <disable-compliance-links>false</disable-compliance-links>
  49. <searchsite-domain>jakarta.apache.org</searchsite-domain>
  50. <searchsite-name>jakarta</searchsite-name>
  51. <!-- mandatory project logo
  52. skin: forrest-site renders it at the top -->
  53. <project-name>POI</project-name>
  54. <project-url>http://jakarta.apache.org/poi/</project-url>
  55. <project-logo>resources/images/project-logo.gif</project-logo>
  56. <!-- optional group logo
  57. skin: forrest-site renders it at the top-left corner -->
  58. <group-name>Jakarta</group-name>
  59. <group-url>http://jakarta.apache.org</group-url>
  60. <group-logo>resources/images/group-logo.gif</group-logo>
  61. <!-- optional host logo (e.g. sourceforge logo)
  62. skin: forrest-site renders it at the bottom-left corner -->
  63. <host-url></host-url>
  64. <host-logo></host-logo>
  65. <!-- The following are used to construct a copyright statement -->
  66. <year>2003</year>
  67. <vendor>The Apache Software Foundation.</vendor>
  68. <!-- Some skins use this to form a 'breadcrumb trail' of links. If you don't
  69. want these, set the attributes to blank. The DTD purposefully requires them.
  70. -->
  71. <trail>
  72. <link1 name="Apache" href="http://www.apache.org/"/>
  73. <link2 name="Jakarta" href="http://jakarta.apache.org/"/>
  74. <link3 name="POI" href="http://jakarta.apache.org/poi/"/>
  75. </trail>
  76. <!-- Credits are typically rendered as a set of small clickable images in the
  77. page footer -->
  78. <credits>
  79. <credit>
  80. <name>Built with Apache Forrest</name>
  81. <url>http://xml.apache.org/forrest/</url>
  82. <image>images/built-with-forrest-button.png</image>
  83. <width>88</width>
  84. <height>31</height>
  85. </credit>
  86. <!-- A credit with @role='pdf' will have its name and url displayed in the
  87. PDF page's footer. -->
  88. </credits>
  89. </skinconfig>