diff options
author | tetsuya <tetsuya@unknown> | 2003-10-26 09:09:20 +0000 |
---|---|---|
committer | tetsuya <tetsuya@unknown> | 2003-10-26 09:09:20 +0000 |
commit | b71cd5dd34691527cfac37310fd64bf265f86a7e (patch) | |
tree | b25e5937a5f615888bfaf9c2dc3beea15dcb0911 /src | |
parent | cf49dd2385cb7782f35de50e53d5c3a5f3c15d56 (diff) | |
download | poi-b71cd5dd34691527cfac37310fd64bf265f86a7e.tar.gz poi-b71cd5dd34691527cfac37310fd64bf265f86a7e.zip |
Updated skinconf to be fit to Apache Forrest 0.5.1
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353411 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/documentation/skinconf.xml | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/src/documentation/skinconf.xml b/src/documentation/skinconf.xml index 968260c9c5..f75f317a35 100644 --- a/src/documentation/skinconf.xml +++ b/src/documentation/skinconf.xml @@ -9,22 +9,30 @@ be used to configure the chosen Forrest skin. <!ENTITY % links.att 'name CDATA #REQUIRED'> <!ENTITY % link.att 'name CDATA #REQUIRED href CDATA #REQUIRED'> - <!ELEMENT skinconfig (disable-search?, disable-compliance-links?, searchsite-domain?, searchsite-name?, - project-name, project-url, project-logo, group-name?, group-url?, group-logo?, - host-url?, host-logo?, year?, vendor?, trail?, credits?)*> + <!ELEMENT skinconfig (disable-lucene?, disable-search?, disable-print-link?, disable-pdf-link?, + disable-xml-link?, disable-compliance-links?, obfuscate-mail-links?, searchsite-domain?, searchsite-name?, + project-name, project-description?, project-url, project-logo, group-name?, group-description?, group-url?, group-logo?, + host-url?, host-logo?, year?, vendor?, trail?, toc?, credits?)*> <!ELEMENT credits (credit*)> <!ELEMENT credit (name, url, image?, width?, height?)> <!-- id uniquely identifies the tool, and role indicates its function --> <!ATTLIST credit id CDATA #IMPLIED role CDATA #IMPLIED> + <!ELEMENT disable-lucene (#PCDATA)> <!ELEMENT disable-search (#PCDATA)> + <!ELEMENT disable-print-link (#PCDATA)> + <!ELEMENT disable-pdf-link (#PCDATA)> + <!ELEMENT disable-xml-link (#PCDATA)> <!ELEMENT disable-compliance-links (#PCDATA)> + <!ELEMENT obfuscate-mail-links (#PCDATA)> <!ELEMENT searchsite-domain (#PCDATA)> <!ELEMENT searchsite-name (#PCDATA)> <!ELEMENT project-name (#PCDATA)> + <!ELEMENT project-description (#PCDATA)> <!ELEMENT project-url (#PCDATA)> <!ELEMENT project-logo (#PCDATA)> <!ELEMENT group-name (#PCDATA)> + <!ELEMENT group-description (#PCDATA)> <!ELEMENT group-url (#PCDATA)> <!ELEMENT group-logo (#PCDATA)> <!ELEMENT host-url (#PCDATA)> @@ -44,9 +52,26 @@ be used to configure the chosen Forrest skin. <!ELEMENT image (#PCDATA)> <!ELEMENT width (#PCDATA)> <!ELEMENT height (#PCDATA)> + <!ELEMENT toc EMPTY> + <!ATTLIST toc level CDATA #IMPLIED> ]> <skinconfig> + <!-- Do we want to disable the Lucene search box? --> + <disable-lucene>true</disable-lucene> + <!-- Do we want to disable the Google search box? --> + <disable-search>false</disable-search> + <!-- Do we want to disable the print link? If enabled, invalid HTML 4.0.1 --> + <disable-print-link>false</disable-print-link> + <!-- Do we want to disable the PDF link? --> + <disable-pdf-link>false</disable-pdf-link> + <!-- Do we want to disable the xml source link? --> + <disable-xml-link>true</disable-xml-link> + <!-- Do we want to disable w3c compliance links? --> + <disable-compliance-links>false</disable-compliance-links> + <!-- Whether to render mailto: links unrecognisable by spam harvesters --> + <obfuscate-mail-links>true</obfuscate-mail-links> + <!-- Do we want to disable the Google search box? --> <disable-search>false</disable-search> <!-- Do we want to disable w3c compliance links? --> |