nicolaken 2003/04/02 00:17:16
Modified: src/documentation skinconf.xml
Log:
Update to latest Forrest features; it's backward compatible, as the extra tags
are ignored by older forrest versions.
Revision Changes Path
1.3 +45 -7 incubator-site/src/documentation/skinconf.xml
Index: skinconf.xml
===================================================================
RCS file: /home/cvs/incubator-site/src/documentation/skinconf.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- skinconf.xml 28 Nov 2002 21:45:37 -0000 1.2
+++ skinconf.xml 2 Apr 2003 08:17:16 -0000 1.3
@@ -3,24 +3,35 @@
<!--
Skin configuration file. This file contains details of your project, which
will
be used to configure the chosen Forrest skin.
-
[EMAIL PROTECTED]
-->
<!DOCTYPE skinconfig [
<!ENTITY % links.att 'name CDATA #REQUIRED'>
<!ENTITY % link.att 'name CDATA #REQUIRED href CDATA #REQUIRED'>
- <!ELEMENT skinconfig (disable-search?, project-name, project-url,
project-logo, group-name?, group-url?, group-logo?, host-logo?, year?, vendor?,
trail?, credits?)*>
+ <!ELEMENT skinconfig (disable-search?, disable-print-link?,
disable-pdf-link?,
+ disable-xml-link?, 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 credits (credit*)>
- <!ELEMENT credit (name, url, image, width?, height?)>
+ <!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-search (#PCDATA)>
+ <!ELEMENT disable-print-link (#PCDATA)>
+ <!ELEMENT disable-pdf-link (#PCDATA)>
+ <!ELEMENT disable-xml-link (#PCDATA)>
+ <!ELEMENT disable-compliance-links (#PCDATA)>
+ <!ELEMENT searchsite-domain (#PCDATA)>
+ <!ELEMENT searchsite-name (#PCDATA)>
<!ELEMENT project-name (#PCDATA)>
<!ELEMENT project-url (#PCDATA)>
<!ELEMENT project-logo (#PCDATA)>
<!ELEMENT group-name (#PCDATA)>
<!ELEMENT group-url (#PCDATA)>
<!ELEMENT group-logo (#PCDATA)>
+ <!ELEMENT host-url (#PCDATA)>
<!ELEMENT host-logo (#PCDATA)>
<!ELEMENT year (#PCDATA)>
<!ELEMENT vendor (#PCDATA)>
@@ -40,22 +51,39 @@
]>
<skinconfig>
- <!-- Do we want the Google search box? -->
+ <!-- Do we want to disable the Google search box? -->
<disable-search>false</disable-search>
+ <!-- Do we want to disable the print link? -->
+ <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>
+
+ <searchsite-domain>incubator.apache.org</searchsite-domain>
+ <searchsite-name>Incubator</searchsite-name>
+ <!-- mandatory project logo
+ skin: forrest-site renders it at the top -->
<project-name>Apache Incubator</project-name>
<project-url>http://incubator.apache.org/</project-url>
<project-logo>images/project-logo.gif</project-logo>
+ <!-- optional group logo
+ skin: forrest-site renders it at the top-left corner -->
<group-name>Apache</group-name>
<group-url>http://www.apache.org</group-url>
<group-logo>images/group-logo.gif</group-logo>
- <!-- Eg, a sourceforge logo. forrest-site renders it to the bottom-left
corner -->
+ <!-- optional host logo (e.g. sourceforge logo)
+ skin: forrest-site renders it at the bottom-left corner -->
+ <host-url></host-url>
<host-logo></host-logo>
<!-- The following used to construct a copyright statement -->
- <year>2002</year>
+ <year>2002-2003</year>
<vendor>The Apache Software Foundation.</vendor>
<!-- Some skins use this to form a 'breadcrumb trail' of links. If you
don't
@@ -70,5 +98,15 @@
<!-- Credits are typically rendered as a set of small clickable images in
the
page footer -->
<credits>
+ <credit>
+ <name>Built with Apache Forrest</name>
+ <url>http://xml.apache.org/forrest/</url>
+ <image>images/built-with-forrest-button.png</image>
+ <width>88</width>
+ <height>31</height>
+ </credit>
+ <!-- A credit with @role='pdf' will have its name and url displayed in
the
+ PDF page's footer. -->
</credits>
+
</skinconfig>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]