aboutsummaryrefslogtreecommitdiffstats
path: root/src/documentation/skinconf.xml
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2002-10-28 08:41:01 +0000
committerKeiron Liddle <keiron@apache.org>2002-10-28 08:41:01 +0000
commit06a4ad36f67612273f489f1b6468805b9d5871c7 (patch)
tree8276cf2a0b1bdd63fdee0574d09fced83f48655b /src/documentation/skinconf.xml
parentf4277e55a8810a0badd3a0dbb233178b678d0119 (diff)
downloadxmlgraphics-fop-06a4ad36f67612273f489f1b6468805b9d5871c7.tar.gz
xmlgraphics-fop-06a4ad36f67612273f489f1b6468805b9d5871c7.zip
updated docs for dev version
using new forrest docs git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195365 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/skinconf.xml')
-rw-r--r--src/documentation/skinconf.xml93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/documentation/skinconf.xml b/src/documentation/skinconf.xml
new file mode 100644
index 000000000..82d35a62f
--- /dev/null
+++ b/src/documentation/skinconf.xml
@@ -0,0 +1,93 @@
+<?xml version="1.0"?>
+
+<!--
+Skin configuration file. This file contains details of your project, which will
+be used to configure the chosen Forrest skin.
+
+jefft@apache.org
+-->
+
+<!DOCTYPE skinconfig [
+
+ <!ENTITY % links.att 'name CDATA #REQUIRED'>
+ <!ENTITY % link.att 'name CDATA #REQUIRED href CDATA #REQUIRED'>
+ <!ELEMENT skinconfig (disable-search?, searchsite-domain?, searchsite-name?, project-name, project-url, project-logo, group-name?, group-url?, group-logo?, host-logo?, year?, vendor?, trail?, credits?)*>
+ <!ELEMENT credits (credit*)>
+ <!ELEMENT credit (name, url, image, width?, height?)>
+ <!ELEMENT disable-search (#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-logo (#PCDATA)>
+ <!ELEMENT year (#PCDATA)>
+ <!ELEMENT vendor (#PCDATA)>
+ <!ELEMENT trail (link1, link2, link3)>
+ <!ELEMENT link1 EMPTY>
+ <!-- Seems we can't use param entity refs until this is DTDified -->
+ <!ATTLIST link1 name CDATA #REQUIRED href CDATA #IMPLIED>
+ <!ELEMENT link2 EMPTY>
+ <!ATTLIST link2 name CDATA #REQUIRED href CDATA #IMPLIED>
+ <!ELEMENT link3 EMPTY>
+ <!ATTLIST link3 name CDATA #REQUIRED href CDATA #IMPLIED>
+ <!ELEMENT name (#PCDATA)>
+ <!ELEMENT url (#PCDATA)>
+ <!ELEMENT image (#PCDATA)>
+ <!ELEMENT width (#PCDATA)>
+ <!ELEMENT height (#PCDATA)>
+ ]>
+
+<skinconfig>
+ <!-- Do we want the Google search box? -->
+ <disable-search>false</disable-search>
+ <searchsite-domain>xml.apache.org</searchsite-domain>
+ <searchsite-name>Apache XML</searchsite-name>
+
+
+ <project-name>FOP</project-name>
+ <project-url>http://xml.apache.org/fop/</project-url>
+ <project-logo>images/logo.jpg</project-logo>
+
+ <group-name>Apache XML</group-name>
+ <group-url>http://xml.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 -->
+ <host-logo></host-logo>
+
+ <!-- The following used to construct a copyright statement -->
+ <year>1999-2002</year>
+ <vendor>The Apache Software Foundation.</vendor>
+
+ <!-- Some skins use this to form a 'breadcrumb trail' of links. If you don't
+ want these, set the attributes to blank. The DTD purposefully requires them.
+ -->
+ <trail>
+ <link1 name="apache" href="http://www.apache.org/"/>
+ <link2 name="xml.apache" href="http://xml.apache.org/"/>
+ <link3 name="" href=""/>
+ </trail>
+
+ <!-- Credits are typically rendered as a set of small clickable images in the
+ page footer -->
+ <credits>
+ <credit>
+ <name>Built with Cocoon</name>
+ <url>http://xml.apache.org/cocoon/</url>
+ <image>skin/images/built-with-cocoon.gif</image>
+ <width>88</width>
+ <height>31</height>
+ </credit>
+ <credit>
+ <name>Krysalis Centipede</name>
+ <url>http://www.krysalis.org/centipede/</url>
+ <image>skin/images/centipede-logo-small.gif</image>
+ <width>138</width>
+ <height>31</height>
+ </credit>
+ </credits>
+</skinconfig>