JBoss Tools SVN: r6432 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2008-02-19 11:00:51 -0500 (Tue, 19 Feb 2008)
New Revision: 6432
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/ElVarSearcher.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java
Log:
JBIDE-999 Added handling nested vars
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/ElVarSearcher.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/ElVarSearcher.java 2008-02-19 15:16:27 UTC (rev 6431)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/ElVarSearcher.java 2008-02-19 16:00:51 UTC (rev 6432)
@@ -74,13 +74,50 @@
}
/**
+ * Finds var in list of vars that is used in given EL.
+ * @param el EL without brackets.
+ * @param vars
+ * @return
+ */
+ public static Var findVarForEl(String el, List<Var> vars) {
+ if(vars!=null) {
+ ArrayList<Var> parentVars = new ArrayList<Var>();
+ for (Var var : vars) {
+ ELToken token = var.getElToken();
+ if(token!=null && !token.getText().endsWith(".")) {
+ String varName = var.getName();
+ if(el.equals(varName) || el.startsWith(varName + ".")) {
+ if(var.getElToken()!=null) {
+ Var parentVar = findVarForEl(var.getElToken().getText(), parentVars);
+ if(parentVar!=null) {
+ ELToken resolvedToken = parentVar.getResolvedElToken();
+ if(resolvedToken!=null) {
+ String oldText = var.getElToken().getText();
+ String newValue = "#{" + resolvedToken.getText() + oldText.substring(parentVar.getName().length()) + "}";
+ var.value = newValue;
+ var.elToken = var.parseEl(newValue);
+ }
+ }
+ }
+ return var;
+ }
+ }
+ parentVars.add(var);
+ }
+ }
+ return null;
+ }
+
+ /**
* Represents "var"/"value" attributes.
* @author Alexey Kazakov
*/
public static class Var {
- private String name;
- private String value;
- private ELToken elToken;
+ String name;
+ String value;
+ ELToken elToken;
+ String resolvedValue;
+ ELToken resolvedElToken;
/**
* Constructor
@@ -91,20 +128,42 @@
super();
this.name = name;
this.value = value;
- if(value.length()>3 && value.startsWith("#{") && value.endsWith("}")) {
- String elBody = value.substring(0, value.length()-1).substring(2);
+ elToken = parseEl(value);
+ }
+
+ private ELToken parseEl(String el) {
+ if(el.length()>3 && el.startsWith("#{") && el.endsWith("}")) {
+ String elBody = el.substring(0, el.length()-1).substring(2);
SeamELTokenizer elTokenizer = new SeamELTokenizer(elBody);
List<ELToken> tokens = elTokenizer.getTokens();
for (ELToken token : tokens) {
if(token.getType()==ELToken.EL_VARIABLE_TOKEN) {
- elToken = token;
- break;
+ return token;
}
}
}
+ return null;
}
/**
+ * Sets value to new resolved EL which we got as result of parsing value.
+ * For example:
+ * <h:datatable value="#{list}" var="item">
+ * <h:dataTable value="#{item.anotherList}" var="innerItem">
+ * ...
+ * </h:dataTable>
+ * </h:dataTable>
+ * Original El is #{item.anotherList}
+ * Resolved El is #{list.iterator().next().anotherList}
+ * It's very useful for nested vars.
+ * @param newEl
+ */
+ public void resolveValue(String newEl) {
+ resolvedValue = newEl;
+ resolvedElToken = parseEl(newEl);
+ }
+
+ /**
* @return parsed EL from "value" attribute. Returns null if EL is not valid.
*/
public ELToken getElToken() {
@@ -112,6 +171,13 @@
}
/**
+ * @return parsed resolved EL from "value" attribute. May be null.
+ */
+ public ELToken getResolvedElToken() {
+ return resolvedElToken;
+ }
+
+ /**
* @return name of variable.
*/
public String getName() {
@@ -124,5 +190,12 @@
public String getValue() {
return value;
}
+
+ /**
+ * @return resolved value of variable. It's EL. May be null.
+ */
+ public String getResolvedValue() {
+ return resolvedValue;
+ }
}
}
\ No newline at end of file
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java 2008-02-19 15:16:27 UTC (rev 6431)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java 2008-02-19 16:00:51 UTC (rev 6432)
@@ -211,8 +211,9 @@
public SeamELOperandResolveStatus resolveSeamELOperand(ISeamProject project, IFile file, String documentContent, CharSequence prefix,
int position, boolean returnEqualedVariablesOnly, List<Var> vars) throws BadLocationException, StringIndexOutOfBoundsException {
String oldEl = prefix.toString();
- Var var = findVarForEl(oldEl, vars);
+ Var var = ElVarSearcher.findVarForEl(oldEl, vars);
String suffix = "";
+ String newEl = oldEl;
if(var!=null) {
TypeInfoCollector.MemberInfo member = resolveSeamEL(project, file, var.getElToken().getText());
if(member!=null && !member.getType().isArray()) {
@@ -229,8 +230,10 @@
}
}
}
+ if(var.getElToken()!=null) {
+ newEl = var.getElToken().getText() + suffix + oldEl.substring(var.getName().length());
+ }
}
- String newEl = replacePrefixByVar(oldEl, var, suffix);
String newDocumentContent = documentContent;
boolean prefixWasChanged = newEl!=oldEl;
if(prefixWasChanged) {
@@ -262,24 +265,13 @@
}
}
+ if(prefixWasChanged) {
+ var.resolveValue("#{" + var.getElToken().getText() + suffix + "}");
+ }
+
return status;
}
- private Var findVarForEl(String el, List<Var> vars) {
- if(vars!=null) {
- for (Var var : vars) {
- ELToken token = var.getElToken();
- if(token!=null && !token.getText().endsWith(".")) {
- String varName = var.getName();
- if(el.equals(varName) || el.startsWith(varName + ".")) {
- return var;
- }
- }
- }
- }
- return null;
- }
-
/**
* Replace all el variables by variables from found "var" attributes.
* @param el
18 years, 1 month
JBoss Tools SVN: r6431 - in trunk/documentation: jbosstools-documentation and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2008-02-19 10:16:27 -0500 (Tue, 19 Feb 2008)
New Revision: 6431
Added:
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/xhtml-common.xsl
trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/dirty.css
trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/docnav.css
trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/documentation.css
trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/jbossorg.css
trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/reports.css
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/bkg_gradient.gif
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/callout.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/caution.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/caution.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/community_doc.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/documentation.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/dot.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/dot2.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/filterball.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/important.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/important.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jboss-logo.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jbossorglogo.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jbossorglogo_jira.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/note.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/note.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/red-bg.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/redhat-logo.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/rhlogo.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/shine.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-back.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-forward.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-up.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-home.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/tip.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/tip.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/title_hdr.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/warning.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/warning.svg
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-alpha1.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-alpha2.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-beta1.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-beta2.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-pre-release-candidate.png
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-release-candidate.png
Removed:
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/collapsing-navigation.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/eclipse.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fo-images-scaling.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fopdf.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/highlight.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html_chunk.xsl
trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/html.css
trunk/documentation/jbosstools-jdocbook-style/src/main/css/script/
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/bg_table.gif
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/ico_important.gif
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/ico_note.gif
trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/ico_tip.gif
Modified:
trunk/documentation/jbosstools-documentation/pom.xml
Log:
http://jira.jboss.com/jira/browse/JBIDE-1703 jboss.org styles added.
Deleted: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/collapsing-navigation.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/collapsing-navigation.xsl 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/collapsing-navigation.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,199 +0,0 @@
-<!DOCTYPE xsl:stylesheet>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0" xmlns="http://www.w3.org/TR/xhtml1/transitional"
- exclude-result-prefixes="#default">
-
- <xsl:template name="subtoc">
- <xsl:param name="toc-context" select="." />
- <xsl:param name="nodes" select="NOT-AN-ELEMENT" />
-
- <xsl:variable name="toc.mark">
- <xsl:apply-templates mode="toc.mark" select="." />
- </xsl:variable>
-
- <xsl:variable name="should.collapse.list"
- select="string-length(string($toc.mark)) > 0">
- </xsl:variable>
-
- <xsl:variable name="toc.on.plus.mark">
- <xsl:choose>
- <xsl:when test="$should.collapse.list">
- <xsl:copy-of select="$toc.mark"></xsl:copy-of>
- </xsl:when>
- <xsl:otherwise>
- <span class="expand_collapse_toc" style="visibility:hidden;">  </span>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="nodes.plus" select="$nodes | qandaset" />
-
- <xsl:variable name="subtoc">
- <xsl:element name="{$toc.list.type}">
- <xsl:choose>
- <xsl:when test="$qanda.in.toc != 0">
- <xsl:apply-templates mode="toc"
- select="$nodes.plus">
- <xsl:with-param name="toc-context"
- select="$toc-context" />
- </xsl:apply-templates>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-templates mode="toc"
- select="$nodes">
- <xsl:with-param name="toc-context"
- select="$toc-context" />
- </xsl:apply-templates>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:element>
- </xsl:variable>
-
- <xsl:variable name="depth">
- <xsl:choose>
- <xsl:when test="local-name(.) = 'section'">
- <xsl:value-of select="count(ancestor::section) + 1" />
- </xsl:when>
- <xsl:when test="local-name(.) = 'sect1'">1</xsl:when>
- <xsl:when test="local-name(.) = 'sect2'">2</xsl:when>
- <xsl:when test="local-name(.) = 'sect3'">3</xsl:when>
- <xsl:when test="local-name(.) = 'sect4'">4</xsl:when>
- <xsl:when test="local-name(.) = 'sect5'">5</xsl:when>
- <xsl:when test="local-name(.) = 'refsect1'">1</xsl:when>
- <xsl:when test="local-name(.) = 'refsect2'">2</xsl:when>
- <xsl:when test="local-name(.) = 'refsect3'">3</xsl:when>
- <xsl:when test="local-name(.) = 'simplesect'">
- <!-- sigh... -->
- <xsl:choose>
- <xsl:when test="local-name(..) = 'section'">
- <xsl:value-of
- select="count(ancestor::section)" />
- </xsl:when>
- <xsl:when test="local-name(..) = 'sect1'">
- 2
- </xsl:when>
- <xsl:when test="local-name(..) = 'sect2'">
- 3
- </xsl:when>
- <xsl:when test="local-name(..) = 'sect3'">
- 4
- </xsl:when>
- <xsl:when test="local-name(..) = 'sect4'">
- 5
- </xsl:when>
- <xsl:when test="local-name(..) = 'sect5'">
- 6
- </xsl:when>
- <xsl:when test="local-name(..) = 'refsect1'">
- 2
- </xsl:when>
- <xsl:when test="local-name(..) = 'refsect2'">
- 3
- </xsl:when>
- <xsl:when test="local-name(..) = 'refsect3'">
- 4
- </xsl:when>
- <xsl:otherwise>1</xsl:otherwise>
- </xsl:choose>
- </xsl:when>
- <xsl:otherwise>0</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="depth.from.context"
- select="count(ancestor::*)-count($toc-context/ancestor::*)" />
-
- <xsl:variable name="subtoc.list">
- <xsl:choose>
- <xsl:when test="$toc.dd.type = ''">
- <xsl:copy-of select="$subtoc" />
- </xsl:when>
- <xsl:otherwise>
- <xsl:element name="{$toc.dd.type}">
- <xsl:if test="$should.collapse.list">
- <xsl:attribute name="style">display:none;</xsl:attribute>
- </xsl:if>
- <xsl:copy-of select="$subtoc" />
- </xsl:element>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
-
- <xsl:element name="{$toc.listitem.type}">
-
- <xsl:copy-of select="$toc.on.plus.mark"></xsl:copy-of>
- <xsl:call-template name="toc.line">
- <xsl:with-param name="toc-context"
- select="$toc-context" />
- </xsl:call-template>
-
- <xsl:if
- test="$toc.listitem.type = 'li'
- and $toc.section.depth > $depth and
- ( ($qanda.in.toc = 0 and count($nodes)>0) or
- ($qanda.in.toc != 0 and count($nodes.plus)>0) )
- and $toc.max.depth > $depth.from.context">
- <xsl:copy-of select="$subtoc.list" />
- </xsl:if>
- </xsl:element>
- <xsl:if
- test="$toc.listitem.type != 'li'
- and $toc.section.depth > $depth and
- ( ($qanda.in.toc = 0 and count($nodes)>0) or
- ($qanda.in.toc != 0 and count($nodes.plus)>0) )
- and $toc.max.depth > $depth.from.context">
- <xsl:copy-of select="$subtoc.list" />
- </xsl:if>
- </xsl:template>
-
- <xsl:template match="section|chapter" mode="toc.mark">
- <xsl:variable name="subchapters">
- <xsl:apply-templates select="child::section" mode="toc" />
- </xsl:variable>
-
- <xsl:if test="string-length(string($subchapters))">
- <xsl:call-template name="toggle.expand.mark" />
- <xsl:call-template name="toggle.collapse.mark" />
- </xsl:if>
-
- </xsl:template>
-
- <xsl:template match="*" mode="toc.mark">
-
- </xsl:template>
-
- <xsl:template name="user.head.content">
- <xsl:param name="node" select="." />
- <script type="text/javascript" src="script/toggle.js"></script>
- </xsl:template>
-
- <xsl:template name="toggle.expand.mark">
- <xsl:param name="visible" select="true()"/>
- <span onclick="toc.expand(this)" class="expand_collapse_toc">
- <xsl:call-template name="render.display">
- <xsl:with-param name="visible" select="$visible" />
- </xsl:call-template>
- <xsl:text>+</xsl:text>
- </span>
- </xsl:template>
-
- <xsl:template name="toggle.collapse.mark">
- <xsl:param name="visible" select="false()"/>
- <span onclick="toc.collapse(this)" class="expand_collapse_toc">
- <xsl:call-template name="render.display">
- <xsl:with-param name="visible" select="$visible" />
- </xsl:call-template>
- <xsl:text>-</xsl:text>
- </span>
- </xsl:template>
-
- <xsl:template name="render.display">
- <xsl:param name="visible" select="false()"/>
- <xsl:attribute name="style">
- <xsl:if test="not($visible)">display:none;</xsl:if>
- </xsl:attribute>
- </xsl:template>
-
-
-</xsl:stylesheet>
Deleted: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/eclipse.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/eclipse.xsl 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/eclipse.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,185 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE xsl:stylesheet [
-<!ENTITY db_xsl_path "../../support/docbook-xsl/">
-]>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0"
- xmlns="http://www.w3.org/TR/xhtml1/transitional"
- exclude-result-prefixes="#default">
-
-
-
-
- <!-- Import of the original stylesheet which "just" creates
- a bunch of HTML files from any valid DocBook instance -->
- <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/html/chunk.xsl"/>
- <xsl:include href="./highlight.xsl"></xsl:include>
-
- <!--START HTML_CHUNK -->
-
- <!--###################################################
- HTML Settings
- ################################################### -->
-
- <xsl:param name="chunk.section.depth">'5'</xsl:param>
- <xsl:param name="use.id.as.filename">'1'</xsl:param>
- <xsl:param name="html.stylesheet">css/html.css</xsl:param>
-
- <!-- These extensions are required for table printing and other stuff -->
- <xsl:param name="use.extensions">1</xsl:param>
- <xsl:param name="tablecolumns.extension">0</xsl:param>
- <xsl:param name="callout.extensions">1</xsl:param>
- <xsl:param name="graphicsize.extension">0</xsl:param>
-
- <!--###################################################
- Table Of Contents
- ################################################### -->
-
- <!-- Generate the TOCs for named components only -->
- <xsl:param name="generate.toc">
- book toc
- </xsl:param>
-
- <!-- Show only Sections up to level 5 in the TOCs -->
- <xsl:param name="toc.section.depth">5</xsl:param>
-
- <!--###################################################
- Labels
- ################################################### -->
-
- <!-- Label Chapters and Sections (numbering) -->
- <xsl:param name="chapter.autolabel">1</xsl:param>
- <xsl:param name="section.autolabel" select="1"/>
- <xsl:param name="section.label.includes.component.label" select="1"/>
-
- <!--###################################################
- Callouts
- ################################################### -->
-
- <!-- Don't use graphics, use a simple number style -->
- <xsl:param name="callout.graphics">0</xsl:param>
-
- <!-- Place callout marks at this column in annotated areas -->
- <xsl:param name="callout.defaultcolumn">90</xsl:param>
-
- <!--###################################################
- Misc
- ################################################### -->
-
- <!-- Placement of titles -->
- <xsl:param name="formal.title.placement">
- figure after
- example before
- equation before
- table before
- procedure before
- </xsl:param>
- <xsl:template match="section[@role = 'NotInToc']//*" mode="toc" />
- <xsl:template match="chapter[@role = 'NotInToc']//section//*" mode="toc" />
-
- <xsl:param name="ignore.image.scaling" select="1"/>
-
-
-<!--END HTML_CHUNK -->
-
- <!-- You must plug-in your custom templates here -->
- <xsl:template match="/">
- <!-- Call original code from the imported stylesheet -->
- <xsl:apply-imports/>
-
- <!-- Call custom templates for the ToC and the manifest -->
- <xsl:call-template name="etoc"/>
- <xsl:call-template name="plugin.xml"/>
- </xsl:template>
-
- <!-- Template for creating auxiliary ToC file -->
- <xsl:template name="etoc">
- <xsl:call-template name="write.chunk">
- <xsl:with-param name="filename" select="'target/docbook/eclipse/toc.xml'"/>
- <xsl:with-param name="method" select="'xml'"/>
- <xsl:with-param name="encoding" select="'utf-8'"/>
- <xsl:with-param name="indent" select="'yes'"/>
- <xsl:with-param name="content">
-
- <!-- Get the title of the root element -->
- <xsl:variable name="title">
- <xsl:apply-templates select="/*" mode="title.markup"/>
- </xsl:variable>
-
- <!-- Get HTML filename for the root element -->
- <xsl:variable name="href">
- <xsl:call-template name="href.target.with.base.dir">
- <xsl:with-param name="object" select="/*"/>
- </xsl:call-template>
- </xsl:variable>
-
- <!-- Create root element of ToC file -->
- <toc label="{$title}" topic="{$href}">
- <!-- Get ToC for all children of the root element -->
- <xsl:apply-templates select="/*/*" mode="etoc"/>
- </toc>
-
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
- <!-- Template which converts all DocBook containers into
- one entry in the ToC file -->
- <xsl:template match="book|part|reference|preface|chapter|
- bibliography|appendix|article|glossary|
- section|sect1|sect2|sect3|sect4|sect5|
- refentry|colophon|bibliodiv|index"
- mode="etoc">
- <!-- Get the title of the current element -->
- <xsl:variable name="title">
- <xsl:apply-templates select="." mode="title.markup"/>
- </xsl:variable>
-
- <!-- Get HTML filename for the current element -->
- <xsl:variable name="href">
- <xsl:call-template name="href.target.with.base.dir"/>
- </xsl:variable>
-
- <!-- Create ToC entry for the current node and process its
- container-type children further -->
- <topic label="{$title}" href="{$href}">
- <xsl:apply-templates select="part|reference|preface|chapter|
- bibliography|appendix|article|
- glossary|section|sect1|sect2|
- sect3|sect4|sect5|refentry|
- colophon|bibliodiv|index"
- mode="etoc"/>
- </topic>
-
- </xsl:template>
-
- <!-- Default processing in the etoc mode is no processing -->
- <xsl:template match="text()" mode="etoc"/>
-
- <!-- Template for generating the manifest file -->
- <xsl:template name="plugin.xml">
- <xsl:call-template name="write.chunk">
- <xsl:with-param name="filename" select="'target/docbook/eclipse/plugin.xml'"/>
- <xsl:with-param name="method" select="'xml'"/>
- <xsl:with-param name="encoding" select="'utf-8'"/>
- <xsl:with-param name="indent" select="'yes'"/>
- <xsl:with-param name="content">
- <plugin name="{$eclipse.plugin.name}"
- id="{$eclipse.plugin.id}"
- version="1.0"
- provider-name="{$eclipse.plugin.provider}">
- <extension point="org.eclipse.help.toc">
- <toc file="toc.xml" primary="true"/>
- </extension>
- </plugin>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
- <!-- Customization parameters for the manifest file -->
- <xsl:param name="eclipse.plugin.name">DocBook Online Help Sample</xsl:param>
- <xsl:param name="eclipse.plugin.id">com.example.help</xsl:param>
- <xsl:param name="eclipse.plugin.provider">Example provider</xsl:param>
-
-</xsl:stylesheet>
Deleted: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fo-images-scaling.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fo-images-scaling.xsl 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fo-images-scaling.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,213 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE xsl:stylesheet [
-<!ENTITY lowercase "'abcdefghijklmnopqrstuvwxyz'">
-<!ENTITY uppercase "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'">
- ]>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:fo="http://www.w3.org/1999/XSL/Format"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:stext="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.TextFactory"
- xmlns:xtext="com.nwalsh.xalan.Text"
- xmlns:lxslt="http://xml.apache.org/xslt"
- exclude-result-prefixes="xlink stext xtext lxslt"
- extension-element-prefixes="stext xtext"
- version='1.0'>
-
-
-<!-- ==================================================================== -->
-<!-- Override these templates for FO -->
-<!-- ==================================================================== -->
-
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/lib/lib.xsl"/>
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/graphics.xsl"/>
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/pi.xsl"/>
-
-<xsl:template name="process.image">
- <!-- When this template is called, the current node should be -->
- <!-- a graphic, inlinegraphic, imagedata, or videodata. All -->
- <!-- those elements have the same set of attributes, so we can -->
- <!-- handle them all in one place. -->
-
- <xsl:variable name="scalefit">
- <xsl:choose>
- <xsl:when test="$ignore.image.scaling != 0">0</xsl:when>
- <xsl:when test="@contentwidth">0</xsl:when>
- <xsl:when test="@contentdepth and
- @contentdepth != '100%'">0</xsl:when>
- <xsl:when test="@scale">0</xsl:when>
- <xsl:when test="@scalefit"><xsl:value-of select="@scalefit"/></xsl:when>
- <xsl:when test="@width or @depth">1</xsl:when>
- <xsl:otherwise>1</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="scale">
- <xsl:choose>
- <xsl:when test="$ignore.image.scaling != 0">0</xsl:when>
- <xsl:when test="@contentwidth or @contentdepth">1.0</xsl:when>
- <xsl:when test="@scale">
- <xsl:value-of select="@scale div 100.0"/>
- </xsl:when>
- <xsl:otherwise>1.0</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="filename">
- <xsl:choose>
- <xsl:when test="local-name(.) = 'graphic'
- or local-name(.) = 'inlinegraphic'">
- <!-- handle legacy graphic and inlinegraphic by new template -->
- <xsl:call-template name="mediaobject.filename">
- <xsl:with-param name="object" select="."/>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <!-- imagedata, videodata, audiodata -->
- <xsl:call-template name="mediaobject.filename">
- <xsl:with-param name="object" select=".."/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="content-type">
- <xsl:if test="@format">
- <xsl:call-template name="graphic.format.content-type">
- <xsl:with-param name="format" select="@format"/>
- </xsl:call-template>
- </xsl:if>
- </xsl:variable>
-
- <xsl:variable name="bgcolor">
-
- <xsl:call-template name="pi.dbfo_background-color">
- <xsl:with-param name="node" select=".."/>
- </xsl:call-template>
- </xsl:variable>
-
- <fo:external-graphic>
- <xsl:attribute name="src">
- <xsl:call-template name="fo-external-image">
- <xsl:with-param name="filename">
- <xsl:if test="$img.src.path != '' and
- not(starts-with($filename, '/')) and
- not(contains($filename, '://'))">
- <xsl:value-of select="$img.src.path"/>
- </xsl:if>
- <xsl:value-of select="$filename"/>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:attribute>
-
- <xsl:attribute name="width">
- <xsl:choose>
- <xsl:when test="$ignore.image.scaling != 0">auto</xsl:when>
- <xsl:when test="contains(@width,'%')">
- <xsl:value-of select="@width"/>
- </xsl:when>
- <xsl:when test="@width and not(@width = '')">
- <xsl:call-template name="length-spec">
- <xsl:with-param name="length" select="@width"/>
- <xsl:with-param name="default.units" select="'px'"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:when test="not(@depth) and $default.image.width != ''">
- <xsl:call-template name="length-spec">
- <xsl:with-param name="length" select="$default.image.width"/>
- <xsl:with-param name="default.units" select="'px'"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>auto</xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
-
- <xsl:attribute name="height">
- <xsl:choose>
- <xsl:when test="$ignore.image.scaling != 0">auto</xsl:when>
- <xsl:when test="contains(@depth,'%')">
- <xsl:value-of select="@depth"/>
- </xsl:when>
- <xsl:when test="@depth">
- <xsl:call-template name="length-spec">
- <xsl:with-param name="length" select="@depth"/>
- <xsl:with-param name="default.units" select="'px'"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>auto</xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
-
- <xsl:attribute name="content-width">
- <xsl:choose>
- <xsl:when test="$ignore.image.scaling != 0">auto</xsl:when>
- <xsl:when test="contains(@contentwidth,'%')">
- <xsl:value-of select="@contentwidth"/>
- </xsl:when>
- <xsl:when test="@contentwidth">
- <xsl:call-template name="length-spec">
- <xsl:with-param name="length" select="@contentwidth"/>
- <xsl:with-param name="default.units" select="'px'"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:when test="number($scale) != 1.0">
- <xsl:value-of select="$scale * 100"/>
- <xsl:text>%</xsl:text>
- </xsl:when>
- <xsl:when test="$scalefit = 1">scale-to-fit</xsl:when>
- <xsl:otherwise>auto</xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
-
- <xsl:attribute name="content-height">
- <xsl:choose>
- <xsl:when test="$ignore.image.scaling != 0">auto</xsl:when>
- <xsl:when test="contains(@contentdepth,'%')">
- <xsl:value-of select="@contentdepth"/>
- </xsl:when>
- <xsl:when test="@contentdepth">
- <xsl:call-template name="length-spec">
- <xsl:with-param name="length" select="@contentdepth"/>
- <xsl:with-param name="default.units" select="'px'"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:when test="number($scale) != 1.0">
- <xsl:value-of select="$scale * 100"/>
- <xsl:text>%</xsl:text>
- </xsl:when>
- <xsl:when test="$scalefit = 1">scale-to-fit</xsl:when>
- <xsl:otherwise>auto</xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
-
- <xsl:if test="$content-type != ''">
- <xsl:attribute name="content-type">
- <xsl:value-of select="concat('content-type:',$content-type)"/>
- </xsl:attribute>
- </xsl:if>
-
- <xsl:if test="$bgcolor != ''">
- <xsl:attribute name="background-color">
- <xsl:value-of select="$bgcolor"/>
- </xsl:attribute>
- </xsl:if>
-
- <xsl:if test="@align">
- <xsl:attribute name="text-align">
- <xsl:value-of select="@align"/>
- </xsl:attribute>
- </xsl:if>
-
- <xsl:if test="@valign">
- <xsl:attribute name="display-align">
- <xsl:choose>
- <xsl:when test="@valign = 'top'">before</xsl:when>
- <xsl:when test="@valign = 'middle'">center</xsl:when>
- <xsl:when test="@valign = 'bottom'">after</xsl:when>
- <xsl:otherwise>auto</xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
- </xsl:if>
- </fo:external-graphic>
-</xsl:template>
-
-</xsl:stylesheet>
Deleted: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fopdf.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fopdf.xsl 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/fopdf.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,543 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
- This was originally the XSL FO configuration file for the Hibernate
- Reference Documentation. It defines a custom titlepage and
- the parameters for the A4 sized PDF printable output. It is released
- under the LGPL.
-
- Modifications were made to better suit the needs of the JBoss documentation.
--->
-
-<!DOCTYPE xsl:stylesheet [
- <!ENTITY db_xsl_path "../../support/docbook-xsl/">
-]>
-
-<xsl:stylesheet version="1.0" xmlns="http://www.w3.org/TR/xhtml1/transitional"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:fo="http://www.w3.org/1999/XSL/Format" exclude-result-prefixes="#default">
-
-
- <!-- import the main docbook.xsl before we apply our overrides -->
- <!--<xsl:import href="&db_xsl_path;/fo/docbook.xsl"/>-->
- <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/fo/docbook.xsl"/>
-
- <!-- ########## XRef -->
- <!-- this controls whether xrefs have the title in it. We
- don't want that -->
- <xsl:param name="xref.with.number.and.title" select="0"/>
-
- <xsl:template match="processing-instruction('lb')">
- <fo:block>
- <xsl:text> </xsl:text>
- </fo:block>
- </xsl:template>
-
- <!--########## Custom Title Page -->
- <xsl:template name="book.titlepage.recto">
- <fo:block>
- <fo:table table-layout="fixed" width="175mm">
- <fo:table-column column-width="175mm"/>
- <fo:table-body>
- <fo:table-row>
- <fo:table-cell text-align="center">
- <xsl:if test="bookinfo/mediaobject">
- <fo:block>
- <fo:external-graphic>
- <xsl:attribute name="src">
- FILE:<xsl:value-of
- select="bookinfo/mediaobject/imageobject/imagedata/@fileref" />
- </xsl:attribute>
- </fo:external-graphic>
- </fo:block>
- </xsl:if>
- <xsl:if test="bookinfo/title">
- <fo:block font-family="Helvetica" font-size="22pt" padding-before="10mm">
- <xsl:value-of select="bookinfo/title"/>
- </fo:block>
- </xsl:if>
- <xsl:if test="bookinfo/subtitle">
- <fo:block font-family="Helvetica" font-size="18pt" padding-before="10mm">
- <xsl:value-of select="bookinfo/subtitle"/>
- </fo:block>
- </xsl:if>
- <xsl:if test="bookinfo/releaseinfo">
- <fo:block font-family="Helvetica" font-size="12pt"
- padding="10mm"><xsl:value-of select="bookinfo/releaseinfo"/>
- </fo:block>
- </xsl:if>
- <xsl:if test="bookinfo/copyright">
- <fo:block font-family="Helvetica" font-size="12pt"
- padding="10mm">
-
- <xsl:apply-templates select="bookinfo/copyright"
- mode="titlepage.mode"/>
- </fo:block>
- </xsl:if>
- </fo:table-cell>
- </fo:table-row>
- </fo:table-body>
- </fo:table>
- </fo:block>
- </xsl:template>
-
- <!-- Prevent blank pages in output -->
- <xsl:template name="book.titlepage.before.verso"/>
- <xsl:template name="book.titlepage.verso"/>
- <xsl:template name="book.titlepage.separator"/>
-
-
- <!--###################################################
- Header
- ################################################### -->
- <!-- More space in the center header for long text -->
- <xsl:attribute-set name="header.content.properties">
- <xsl:attribute name="font-family">
- <xsl:value-of select="$body.font.family"/>
- </xsl:attribute>
- <xsl:attribute name="margin-left">-5em</xsl:attribute>
- <xsl:attribute name="margin-right">-5em</xsl:attribute>
- </xsl:attribute-set>
-
-
- <!--###################################################
- Custom Footer
- ################################################### -->
- <!-- This footer prints the Hibernate version number on the left side -->
- <xsl:template name="footer.content">
- <xsl:param name="pageclass" select="''"/>
- <xsl:param name="sequence" select="''"/>
- <xsl:param name="position" select="''"/>
- <xsl:param name="gentext-key" select="''"/>
- <xsl:variable name="Version">
- <xsl:choose>
- <xsl:when test="//releaseinfo">
- <xsl:text></xsl:text>
- <xsl:value-of select="//releaseinfo"/>
- </xsl:when>
- <xsl:otherwise>
- <!-- nop -->
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:choose>
- <xsl:when test="$sequence='blank'">
- <xsl:choose>
- <xsl:when test="$double.sided != 0 and $position = 'left'">
- <xsl:value-of select="$Version"/>
- </xsl:when>
- <xsl:when test="$double.sided = 0 and $position = 'center'">
- <!-- nop -->
- </xsl:when>
- <xsl:otherwise>
- <fo:page-number/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:when>
- <xsl:when test="$pageclass='titlepage'">
- <!-- nop: other titlepage sequences have no footer -->
- </xsl:when>
- <xsl:when test="$double.sided != 0 and $sequence = 'even' and $position='left'">
- <fo:page-number/>
- </xsl:when>
- <xsl:when test="$double.sided != 0 and $sequence = 'odd' and $position='right'">
- <fo:page-number/>
- </xsl:when>
- <xsl:when test="$double.sided = 0 and $position='right'">
- <fo:page-number/>
- </xsl:when>
- <xsl:when test="$double.sided != 0 and $sequence = 'odd' and $position='left'">
- <xsl:value-of select="$Version"/>
- </xsl:when>
- <xsl:when test="$double.sided != 0 and $sequence = 'even' and $position='right'">
- <xsl:value-of select="$Version"/>
- </xsl:when>
- <xsl:when test="$double.sided = 0 and $position='left'">
- <xsl:value-of select="$Version"/>
- </xsl:when>
- <xsl:otherwise>
- <!-- nop -->
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
-
-
- <!--###################################################
- Custom Toc Line
- ################################################### -->
- <!-- Improve the TOC. -->
- <xsl:template name="toc.trt">
- <xsl:variable name="id">
- <xsl:call-template name="object.id"/>
- </xsl:variable>
- <xsl:variable name="label">
- <xsl:apply-templates select="." mode="label.markup"/>
- </xsl:variable>
- <fo:block text-align-last="justify" end-indent="{$toc.indent.width}pt" last-line-end-indent="-{$toc.indent.width}pt">
- <fo:inline keep-with-next.within-line="always">
- <fo:basic-link internal-destination="{$id}">
- <!-- Chapter titles should be bold. -->
- <xsl:choose>
- <xsl:when test="local-name(.) = 'chapter'">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:when>
- </xsl:choose>
- <xsl:if test="$label != ''">
- <xsl:copy-of select="$label"/>
- <xsl:value-of select="$autotoc.label.separator"/>
- </xsl:if>
- <xsl:apply-templates select="." mode="titleabbrev.markup"/>
- </fo:basic-link>
- </fo:inline>
- <fo:inline keep-together.within-line="always">
- <xsl:text/>
- <fo:leader leader-pattern="dots" leader-pattern-width="3pt"
- leader-alignment="reference-area" keep-with-next.within-line="always"/>
- <xsl:text/>
- <fo:basic-link internal-destination="{$id}">
- <fo:page-number-citation ref-id="{$id}"/>
- </fo:basic-link>
- </fo:inline>
- </fo:block>
- </xsl:template>
-
-
- <!--###################################################
- Extensions
- ################################################### -->
- <!-- These extensions are required for table printing and other stuff -->
- <xsl:param name="use.extensions">1</xsl:param>
-
- <xsl:param name="linenumbering.extension">1</xsl:param>
- <xsl:param name="linenumbering.everyNth">1</xsl:param>
- <xsl:param name="linenumbering.separator">: </xsl:param>
-
- <xsl:param name="tablecolumns.extension">0</xsl:param>
- <!-- FOP provide only PDF Bookmarks at the moment -->
- <xsl:param name="fop1.extensions">1</xsl:param>
-
-
-
- <!--###################################################
- Table Of Contents
- ################################################### -->
- <!-- Generate the TOCs for named components only -->
- <xsl:param name="generate.toc"> book toc,title</xsl:param>
- <!-- ,figure,table,equation -->
- <!-- Show only Sections up to level 5 in the TOCs -->
- <xsl:param name="toc.section.depth">5</xsl:param>
- <!-- Dot and Whitespace as separator in TOC between Label and Title-->
- <xsl:param name="autotoc.label.separator" select="'. '"/>
-
-
- <!--###################################################
- Paper & Page Size
- ################################################### -->
- <!-- Paper type, no headers on blank pages, no double sided printing -->
-<!-- <xsl:param name="paper.type" select="'A4'"/>-->
- <xsl:param name="double.sided">0</xsl:param>
- <xsl:param name="headers.on.blank.pages">0</xsl:param>
- <xsl:param name="footers.on.blank.pages">0</xsl:param>
- <!-- Space between paper border and content (chaotic stuff, don't touch) -->
- <xsl:param name="page.margin.top">5mm</xsl:param>
- <xsl:param name="region.before.extent">10mm</xsl:param>
- <xsl:param name="body.margin.top">10mm</xsl:param>
- <xsl:param name="body.margin.bottom">15mm</xsl:param>
- <xsl:param name="region.after.extent">10mm</xsl:param>
- <xsl:param name="page.margin.bottom">0mm</xsl:param>
- <xsl:param name="page.margin.outer">18mm</xsl:param>
- <xsl:param name="page.margin.inner">18mm</xsl:param>
- <!-- No intendation of Titles -->
- <xsl:param name="title.margin.left">0pc</xsl:param>
-
-
- <!--###################################################
- Fonts & Styles
- ################################################### -->
- <!-- Default Font size -->
- <xsl:param name="body.font.master">11</xsl:param>
- <!-- Line height in body text -->
- <xsl:param name="line-height">1.4</xsl:param>
- <!-- Monospaced fonts are smaller than regular text -->
- <xsl:attribute-set name="monospace.properties">
- <xsl:attribute name="font-family">
- <xsl:value-of select="$monospace.font.family"/>
- </xsl:attribute>
- <xsl:attribute name="font-size">0.8em</xsl:attribute>
- </xsl:attribute-set>
-
-
- <!--###################################################
- Tables
- ################################################### -->
- <!-- The table width should be adapted to the paper size -->
- <xsl:param name="default.table.width">17.4cm</xsl:param>
- <!-- Some padding inside tables -->
- <xsl:attribute-set name="table.cell.padding">
- <xsl:attribute name="padding-left">4pt</xsl:attribute>
- <xsl:attribute name="padding-right">4pt</xsl:attribute>
- <xsl:attribute name="padding-top">4pt</xsl:attribute>
- <xsl:attribute name="padding-bottom">4pt</xsl:attribute>
- </xsl:attribute-set>
- <!-- Only hairlines as frame and cell borders in tables -->
- <xsl:param name="table.frame.border.thickness">0.1pt</xsl:param>
- <xsl:param name="table.cell.border.thickness">0.1pt</xsl:param>
-
-
-
- <!--###################################################
- Labels
- ################################################### -->
- <!-- Label Chapters and Sections (numbering) -->
- <xsl:param name="chapter.autolabel">1</xsl:param>
- <xsl:param name="section.autolabel" select="1"/>
- <xsl:param name="section.label.includes.component.label" select="1"/>
-
-
- <!--###################################################
- Titles
- ################################################### -->
-
- <xsl:attribute-set name="chapter.titlepage.recto.style">
- <xsl:attribute name="text-align">right</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="font-size">
- <xsl:value-of select="$body.font.master * 1.8"/>
- <xsl:text>pt</xsl:text>
- </xsl:attribute>
- </xsl:attribute-set>
-
-
- <xsl:attribute-set name="appendix.titlepage.recto.style">
- <xsl:attribute name="text-align">right</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="font-size">
- <xsl:value-of select="$body.font.master * 1.8"/>
- <xsl:text>pt</xsl:text>
- </xsl:attribute>
- </xsl:attribute-set>
-
- <xsl:template name="appendix.titlepage.before.recto">
- <xsl:param name="node" select="ancestor-or-self::appendix[1]"/>
- <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"
- text-align="right"
- font-size="72pt" font-weight="bold">
- <xsl:number from="book" format="A"/>
- </fo:block>
- </xsl:template>
-
- <xsl:template name="chapter.titlepage.before.recto">
- <xsl:param name="node" select="ancestor-or-self::chapter[1]"/>
- <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"
- text-align="right"
- font-size="72pt" font-weight="bold">
- <xsl:number from="book" format="1"/>
- </fo:block>
- </xsl:template>
-
- <xsl:template match="title" mode="appendix.titlepage.recto.auto.mode">
- <xsl:variable name="titleabbrev">
- <xsl:apply-templates select="ancestor-or-self::appendix[1]"
- mode="titleabbrev.markup"/>
- </xsl:variable>
-
- <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"
- xsl:use-attribute-sets="appendix.titlepage.recto.style">
- <xsl:value-of select="$titleabbrev" />
- </fo:block>
- </xsl:template>
-
- <xsl:template match="title" mode="chapter.titlepage.recto.auto.mode">
- <xsl:variable name="titleabbrev">
- <xsl:apply-templates select="ancestor-or-self::chapter[1]"
- mode="titleabbrev.markup"/>
- </xsl:variable>
-
- <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"
- xsl:use-attribute-sets="chapter.titlepage.recto.style">
- <xsl:value-of select="$titleabbrev" />
- </fo:block>
- </xsl:template>
-
-
- <!-- Sections 1, 2 and 3 titles have a small bump factor and padding -->
- <xsl:attribute-set name="section.title.level1.properties">
- <xsl:attribute name="space-before.optimum">0.8em</xsl:attribute>
- <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute>
- <xsl:attribute name="space-before.maximum">0.8em</xsl:attribute>
- <xsl:attribute name="font-size">
- <xsl:value-of select="$body.font.master * 1.5"/>
- <xsl:text>pt</xsl:text>
- </xsl:attribute>
- <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="section.title.level2.properties">
- <xsl:attribute name="space-before.optimum">0.6em</xsl:attribute>
- <xsl:attribute name="space-before.minimum">0.6em</xsl:attribute>
- <xsl:attribute name="space-before.maximum">0.6em</xsl:attribute>
- <xsl:attribute name="font-size">
- <xsl:value-of select="$body.font.master * 1.25"/>
- <xsl:text>pt</xsl:text>
- </xsl:attribute>
- <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="section.title.level3.properties">
- <xsl:attribute name="space-before.optimum">0.4em</xsl:attribute>
- <xsl:attribute name="space-before.minimum">0.4em</xsl:attribute>
- <xsl:attribute name="space-before.maximum">0.4em</xsl:attribute>
- <xsl:attribute name="font-size">
- <xsl:value-of select="$body.font.master * 1.0"/>
- <xsl:text>pt</xsl:text>
- </xsl:attribute>
- <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
- </xsl:attribute-set>
-
- <!-- Titles of formal objects (tables, examples, ...) -->
- <xsl:attribute-set name="formal.title.properties"
- use-attribute-sets="normal.para.spacing">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="font-size">
- <xsl:value-of select="$body.font.master"/>
- <xsl:text>pt</xsl:text>
- </xsl:attribute>
- <xsl:attribute name="hyphenate">false</xsl:attribute>
- <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute>
- <xsl:attribute name="space-after.optimum">0.6em</xsl:attribute>
- <xsl:attribute name="space-after.maximum">0.8em</xsl:attribute>
- </xsl:attribute-set>
-
-
-
- <!-- ########## blockquote -->
- <xsl:attribute-set name="blockquote.properties">
- <xsl:attribute name="space-before.minimum">1em</xsl:attribute>
- <xsl:attribute name="space-before.optimum">1em</xsl:attribute>
- <xsl:attribute name="space-before.maximum">1em</xsl:attribute>
- <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
- <xsl:attribute name="border-color">#444444</xsl:attribute>
- <xsl:attribute name="border-style">solid</xsl:attribute>
- <xsl:attribute name="border-width">0.1pt</xsl:attribute>
- <xsl:attribute name="padding-top">0.5em</xsl:attribute>
- <xsl:attribute name="padding-left">0.5em</xsl:attribute>
- <xsl:attribute name="padding-right">0.5em</xsl:attribute>
- <xsl:attribute name="padding-bottom">0.5em</xsl:attribute>
- <xsl:attribute name="margin-left">0.5em</xsl:attribute>
- <xsl:attribute name="margin-right">0.5em</xsl:attribute>
- <xsl:attribute name="background-color">#F0F0F0</xsl:attribute>
- </xsl:attribute-set>
-
-
-
- <!--###################################################
- Programlistings
- ################################################### -->
- <!-- Verbatim text formatting (programlistings) -->
- <xsl:attribute-set name="verbatim.properties">
- <xsl:attribute name="space-before.minimum">1em</xsl:attribute>
- <xsl:attribute name="space-before.optimum">1em</xsl:attribute>
- <xsl:attribute name="space-before.maximum">1em</xsl:attribute>
- <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
- <xsl:attribute name="border-color">#444444</xsl:attribute>
- <xsl:attribute name="border-style">solid</xsl:attribute>
- <xsl:attribute name="border-width">0.1pt</xsl:attribute>
- <xsl:attribute name="padding-top">0.5em</xsl:attribute>
- <xsl:attribute name="padding-left">0.5em</xsl:attribute>
- <xsl:attribute name="padding-right">0.5em</xsl:attribute>
- <xsl:attribute name="padding-bottom">0.5em</xsl:attribute>
- <xsl:attribute name="margin-left">0.5em</xsl:attribute>
- <xsl:attribute name="margin-right">0.5em</xsl:attribute>
- </xsl:attribute-set>
- <!-- Shade (background) programlistings -->
- <xsl:param name="shade.verbatim">1</xsl:param>
- <xsl:attribute-set name="shade.verbatim.style">
- <xsl:attribute name="background-color">#F0F0F0</xsl:attribute>
- </xsl:attribute-set>
-
-
-
- <!--###################################################
- Callouts
- ################################################### -->
- <!-- We want to use callouts... -->
- <xsl:param name="callout.extensions">1</xsl:param>
- <!-- Place callout bullets at this column in programmlisting.-->
- <xsl:param name="callout.defaultcolumn">90</xsl:param>
- <!--
- No, don't use crappy graphics for the callout bullets. This setting
- enables some weird Unicode rendering for some fancy bullet points
- in callouts. By default, this can only count to 10 and produces
- strange results if you ever have more than 10 callouts for one
- programlisting. We will fix that next.
- -->
- <xsl:param name="callout.graphics">0</xsl:param>
- <!--
- Again, fun with DocBook XSL: The callout bullets are rendered in
- two places: In the programlisting itself and in the list below
- the listing, with the actual callout text. The rendering in the
- programlisting is some XSL transformer extension (e.g. a Saxon
- extension), so we can't change that without messing with the
- extensions. We only can turn it off by setting this limit to
- zero, then, a simple bracket style like "(3)" and "(4)" will
- be used in the programlisting.
- -->
- <xsl:param name="callout.unicode.number.limit" select="'0'"/>
- <!--
- The callout bullets in the actual callout list will be rendered
- with an XSL FO template. The default template is broken: limited to 10
- nice looking Unicode bullet points and then it doesn't print anything,
- the fallback doesn't work. We implement our own template, which is not
- as complicated, more ugly, but works. As always, function is more
- important than form.
- -->
- <xsl:template name="callout-bug">
- <xsl:param name="conum" select="1"/>
- <fo:inline color="black" padding-top="0.1em" padding-bottom="0.1em"
- padding-start="0.2em" padding-end="0.2em" baseline-shift="0.1em"
- font-family="{$monospace.font.family}" font-weight="bold" font-size="75%">
- <xsl:text>(</xsl:text>
- <xsl:value-of select="$conum"/>
- <xsl:text>)</xsl:text>
- </fo:inline>
- </xsl:template>
-
-
-
- <!--###################################################
- Misc
- ################################################### -->
- <!-- Correct placement of titles for figures and examples. -->
- <xsl:param name="formal.title.placement"> figure after example before
- equation before table before procedure before </xsl:param>
- <!-- Format Variable Lists as Blocks (prevents horizontal overflow). -->
- <xsl:param name="variablelist.as.blocks">1</xsl:param>
- <!-- The horrible list spacing problems, this is much better. -->
- <xsl:attribute-set name="list.block.spacing">
- <xsl:attribute name="space-before.optimum">0.8em</xsl:attribute>
- <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute>
- <xsl:attribute name="space-before.maximum">0.8em</xsl:attribute>
- <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
- <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
- </xsl:attribute-set>
- <!-- Newer DocBook XSL apparently thinks that some sections are by
- default "draft" status, and this idiotic thing is by default
- also set to "maybe", so it spits out a lot of errors with the
- latest FOP as the XSL/FO styles have references to some draft
- watermarks, which you actually don't want in the first place.
- Turn this crap off. If you have to work with the "status"
- attribute, don't.
- -->
- <xsl:param name="draft.mode" select="'no'"/>
-
-</xsl:stylesheet>
Deleted: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/highlight.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/highlight.xsl 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/highlight.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,18 +0,0 @@
-<!DOCTYPE xsl:stylesheet>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0" xmlns="http://www.w3.org/TR/xhtml1/transitional"
- exclude-result-prefixes="#default">
-
- <xsl:template match="programlisting[@role='XML']|programlisting[@role='JAVA']|programlisting[@role='XHTML']|programlisting[@role='JSP']">
- <xsl:variable name="kidz">
- <xsl:apply-templates></xsl:apply-templates>
- </xsl:variable>
- <pre class="{@role}">
- <xsl:value-of
- select="javahl:highlight(string($kidz), attribute::role)"
- xmlns:javahl="java:com.exadel.docbook.colorer.HighLighter"
- disable-output-escaping="yes"/>
- </pre>
- </xsl:template>
-
-</xsl:stylesheet>
Deleted: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html.xsl 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,90 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
-
- This is the XSL HTML configuration file for the Hibernate
- Reference Documentation.
-
- It took me days to figure out this stuff and fix most of
- the obvious bugs in the DocBook XSL distribution. Some of
- the workarounds might not be appropriate with a newer version
- of DocBook XSL. This file is released as part of Hibernate,
- hence LGPL licensed.
-
- christian(a)hibernate.org
--->
-
-<!DOCTYPE xsl:stylesheet [
- <!ENTITY db_xsl_path "../../support/docbook-xsl">
-]>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0"
- xmlns="http://www.w3.org/TR/xhtml1/transitional"
- exclude-result-prefixes="#default">
-
-<!--<xsl:import href="&db_xsl_path;/html/docbook.xsl"/>-->
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/html/docbook.xsl"/>
-<xsl:include href="./collapsing-navigation.xsl"></xsl:include>
-<xsl:include href="./highlight.xsl"></xsl:include>
-
-
-<!--###################################################
- HTML Settings
- ################################################### -->
-
- <xsl:param name="html.stylesheet">css/html.css</xsl:param>
-
- <!-- These extensions are required for table printing and other stuff -->
- <xsl:param name="use.extensions">1</xsl:param>
- <xsl:param name="tablecolumns.extension">0</xsl:param>
- <xsl:param name="callout.extensions">1</xsl:param>
- <xsl:param name="graphicsize.extension">0</xsl:param>
-
-<!--###################################################
- Table Of Contents
- ################################################### -->
-
- <!-- Generate the TOCs for named components only -->
- <xsl:param name="generate.toc">
- book toc
- </xsl:param>
-
- <!-- Show only Sections up to level 5 in the TOCs -->
- <xsl:param name="toc.section.depth">5</xsl:param>
-
-<!--###################################################
- Labels
- ################################################### -->
-
- <!-- Label Chapters and Sections (numbering) -->
- <xsl:param name="chapter.autolabel">1</xsl:param>
- <xsl:param name="section.autolabel" select="1"/>
- <xsl:param name="section.label.includes.component.label" select="1"/>
-
-<!--###################################################
- Callouts
- ################################################### -->
-
- <!-- Don't use graphics, use a simple number style -->
- <xsl:param name="callout.graphics">0</xsl:param>
-
- <!-- Place callout marks at this column in annotated areas -->
- <xsl:param name="callout.defaultcolumn">90</xsl:param>
-
-<!--###################################################
- Misc
- ################################################### -->
-
- <!-- Placement of titles -->
- <xsl:param name="formal.title.placement">
- figure after
- example before
- equation before
- table before
- procedure before
- </xsl:param>
- <xsl:template match="section[@role = 'NotInToc']//*" mode="toc" />
- <xsl:template match="chapter[@role = 'NotInToc']//section//*" mode="toc" />
-
-</xsl:stylesheet>
Deleted: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html_chunk.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html_chunk.xsl 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/html_chunk.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,93 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
-
- This is the XSL HTML configuration file for the Hibernate
- Reference Documentation.
-
- It took me days to figure out this stuff and fix most of
- the obvious bugs in the DocBook XSL distribution. Some of
- the workarounds might not be appropriate with a newer version
- of DocBook XSL. This file is released as part of Hibernate,
- hence LGPL licensed.
-
- christian(a)hibernate.org
--->
-
-<!DOCTYPE xsl:stylesheet [
- <!ENTITY db_xsl_path "../../support/docbook-xsl/">
-]>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0"
- xmlns="http://www.w3.org/TR/xhtml1/transitional"
- exclude-result-prefixes="#default">
-
-<!--<xsl:import href="&db_xsl_path;/html/chunk.xsl"/>-->
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/html/chunk.xsl"/>
-
-<xsl:include href="./collapsing-navigation.xsl"></xsl:include>
-<xsl:include href="./highlight.xsl"></xsl:include>
-
-
-<!--###################################################
- HTML Settings
- ################################################### -->
-
- <xsl:param name="chunk.section.depth">'5'</xsl:param>
- <xsl:param name="use.id.as.filename">'1'</xsl:param>
- <xsl:param name="html.stylesheet">css/html.css</xsl:param>
-
- <!-- These extensions are required for table printing and other stuff -->
- <xsl:param name="use.extensions">1</xsl:param>
- <xsl:param name="tablecolumns.extension">0</xsl:param>
- <xsl:param name="callout.extensions">1</xsl:param>
- <xsl:param name="graphicsize.extension">0</xsl:param>
-
-<!--###################################################
- Table Of Contents
- ################################################### -->
-
- <!-- Generate the TOCs for named components only -->
- <xsl:param name="generate.toc">
- book toc
- </xsl:param>
-
- <!-- Show only Sections up to level 5 in the TOCs -->
- <xsl:param name="toc.section.depth">5</xsl:param>
-
-<!--###################################################
- Labels
- ################################################### -->
-
- <!-- Label Chapters and Sections (numbering) -->
- <xsl:param name="chapter.autolabel">1</xsl:param>
- <xsl:param name="section.autolabel" select="1"/>
- <xsl:param name="section.label.includes.component.label" select="1"/>
-
-<!--###################################################
- Callouts
- ################################################### -->
-
- <!-- Don't use graphics, use a simple number style -->
- <xsl:param name="callout.graphics">0</xsl:param>
-
- <!-- Place callout marks at this column in annotated areas -->
- <xsl:param name="callout.defaultcolumn">90</xsl:param>
-
-<!--###################################################
- Misc
- ################################################### -->
-
- <!-- Placement of titles -->
- <xsl:param name="formal.title.placement">
- figure after
- example before
- equation before
- table before
- procedure before
- </xsl:param>
- <xsl:template match="section[@role = 'NotInToc']//*" mode="toc" />
- <xsl:template match="chapter[@role = 'NotInToc']//section//*" mode="toc" />
-
-</xsl:stylesheet>
Added: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl (rev 0)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,293 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Jeff Fearn <jfearn(a)redhat.com>
+ Author: Tammy Fox <tfox(a)redhat.com>
+ Author: Andy Fitzsimon <afitzsim(a)redhat.com>
+ Author: Mark Newton <mark.newton(a)jboss.org>
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:exsl="http://exslt.org/common"
+ version="1.0"
+ exclude-result-prefixes="exsl">
+
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/eclipse/eclipse.xsl"/>
+
+<!-- We need to override the imported html/chunk.xsl from eclipse/eclipse.xsl to generate valid XHTML -->
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/chunk.xsl"/>
+
+<xsl:include href="redhat.xsl"/>
+<xsl:include href="xhtml-common.xsl"/>
+
+<!-- This is needed to generate the correct xhtml-strict DOCTYPE on the front page -->
+<xsl:output method="xml"
+ encoding="UTF-8"
+ indent="yes"
+ doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
+ doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
+ standalone="no"/>
+
+<!-- We need to add this as it's needed later for a check -->
+<xsl:param name="confidential" select="0"/>
+
+<xsl:param name="generate.legalnotice.link" select="1"/>
+<xsl:param name="generate.revhistory.link" select="0"/>
+
+<xsl:param name="chunk.section.depth" select="4"/>
+<xsl:param name="chunk.first.sections" select="1"/>
+<xsl:param name="chunk.toc" select="''"/>
+
+<!-- We don't want to display titles in the header navigation as there are already breadcrumbs -->
+<xsl:param name="navig.showtitles" select="0"/>
+
+<!--
+From: xhtml/chunk-common.xsl
+Reason: need to add class attributes so we can style the pages using icons
+Version: 1.72.0
+-->
+<xsl:template name="header.navigation">
+ <xsl:param name="prev" select="/foo"/>
+ <xsl:param name="next" select="/foo"/>
+ <xsl:param name="nav.context"/>
+
+ <xsl:variable name="home" select="/*[1]"/>
+ <xsl:variable name="up" select="parent::*"/>
+
+ <xsl:variable name="row1" select="$navig.showtitles != 0"/>
+ <xsl:variable name="row2" select="count($prev) > 0 or (count($up) > 0 and generate-id($up) != generate-id($home) and $navig.showtitles != 0) or count($next) > 0"/>
+
+ <xsl:if test="$suppress.navigation = '0' and $suppress.header.navigation = '0'">
+ <div class="navheader">
+ <xsl:if test="$row1 or $row2">
+ <table width="100%" summary="Navigation header">
+ <xsl:if test="$row1">
+ <tr>
+ <th colspan="3" align="center">
+ <xsl:apply-templates select="." mode="object.title.markup"/>
+ </th>
+ </tr>
+ </xsl:if>
+
+ <xsl:if test="$row2">
+ <tr>
+ <td width="20%" align="left" class="previous">
+ <xsl:if test="count($prev)>0">
+ <a accesskey="p">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$prev"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'prev'"/>
+ </xsl:call-template>
+ </a>
+ </xsl:if>
+ <xsl:text> </xsl:text>
+ </td>
+ <td width="60%" align="center">
+ <xsl:choose>
+ <xsl:when test="count($up) > 0 and generate-id($up) != generate-id($home) and $navig.showtitles != 0">
+ <xsl:apply-templates select="$up" mode="object.title.markup"/>
+ </xsl:when>
+ <xsl:otherwise> </xsl:otherwise>
+ </xsl:choose>
+ </td>
+ <td width="20%" align="right" class="next">
+ <xsl:text> </xsl:text>
+ <xsl:if test="count($next)>0">
+ <a accesskey="n">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$next"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'next'"/>
+ </xsl:call-template>
+ </a>
+ </xsl:if>
+ </td>
+ </tr>
+ </xsl:if>
+ </table>
+ </xsl:if>
+ <xsl:if test="$header.rule != 0">
+ <hr/>
+ </xsl:if>
+ </div>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: xhtml/chunk-common.xsl
+Reason: need to add class attributes so we can style the page using icons. Also changed the footer table to one row
+ so that the 'Top of page' and 'Front page' links are next to each other and correctly spaced.
+Version: 1.72.0
+-->
+<xsl:template name="footer.navigation">
+ <xsl:param name="prev" select="/foo"/>
+ <xsl:param name="next" select="/foo"/>
+ <xsl:param name="nav.context"/>
+
+ <xsl:variable name="home" select="/*[1]"/>
+ <xsl:variable name="up" select="parent::*"/>
+
+ <xsl:variable name="row1" select="count($prev) > 0 or count($up) > 0 or count($next) > 0"/>
+
+ <xsl:variable name="row2" select="($prev and $navig.showtitles != 0) or (generate-id($home) != generate-id(.) or $nav.context = 'toc') or ($chunk.tocs.and.lots != 0 and $nav.context != 'toc') or ($next and $navig.showtitles != 0)"/>
+
+ <xsl:if test="$suppress.navigation = '0' and $suppress.footer.navigation = '0'">
+ <div class="navfooter">
+ <xsl:if test="$footer.rule != 0">
+ <hr/>
+ </xsl:if>
+
+ <xsl:if test="$row1 or $row2">
+ <table width="100%" summary="Navigation footer">
+ <xsl:if test="$row1">
+ <tr>
+ <td width="25%" align="left" class="previous">
+ <xsl:if test="count($prev)>0">
+ <a accesskey="p">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$prev"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'prev'"/>
+ </xsl:call-template>
+ </a>
+ </xsl:if>
+ <xsl:text> </xsl:text>
+ </td>
+ <td width="25%" align="right" class="up">
+ <xsl:choose>
+ <xsl:when test="count($up)>0 and generate-id($up) != generate-id($home)">
+ <a accesskey="u">
+ <xsl:attribute name="href">
+ <xsl:text>#</xsl:text>
+ <!--<xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$up"/>
+ </xsl:call-template>-->
+ </xsl:attribute>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'up'"/>
+ </xsl:call-template>
+ </a>
+ </xsl:when>
+ <xsl:otherwise> </xsl:otherwise>
+ </xsl:choose>
+ </td>
+ <td width="25%" align="left" class="home">
+ <xsl:choose>
+ <xsl:when test="$home != . or $nav.context = 'toc'">
+ <a accesskey="h">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$home"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'home'"/>
+ </xsl:call-template>
+ </a>
+ <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'">
+ <xsl:text> | </xsl:text>
+ </xsl:if>
+ </xsl:when>
+ <xsl:otherwise> </xsl:otherwise>
+ </xsl:choose>
+
+ <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'">
+ <a accesskey="t">
+ <xsl:attribute name="href">
+ <xsl:apply-templates select="/*[1]" mode="recursive-chunk-filename">
+ <xsl:with-param name="recursive" select="true()"/>
+ </xsl:apply-templates>
+ <xsl:text>-toc</xsl:text>
+ <xsl:value-of select="$html.ext"/>
+ </xsl:attribute>
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key" select="'nav-toc'"/>
+ </xsl:call-template>
+ </a>
+ </xsl:if>
+ </td>
+ <td width="25%" align="right" class="next">
+ <xsl:text> </xsl:text>
+ <xsl:if test="count($next)>0">
+ <a accesskey="n">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$next"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'next'"/>
+ </xsl:call-template>
+ </a>
+ </xsl:if>
+ </td>
+ </tr>
+ </xsl:if>
+
+ <xsl:if test="$row2">
+ <tr>
+ <td align="left" valign="top">
+ <xsl:if test="$navig.showtitles != 0">
+ <xsl:apply-templates select="$prev" mode="object.title.markup"/>
+ </xsl:if>
+ <xsl:text> </xsl:text>
+ </td>
+
+ <td align="right" valign="top">
+ <xsl:text> </xsl:text>
+ <xsl:if test="$navig.showtitles != 0">
+ <xsl:apply-templates select="$next" mode="object.title.markup"/>
+ </xsl:if>
+ </td>
+ </tr>
+ </xsl:if>
+ </table>
+ </xsl:if>
+ </div>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: xhtml/footnote.xsl
+Reason: remove inline css from hr
+Version: 1.72.0
+-->
+<xsl:template name="process.footnotes">
+ <xsl:variable name="footnotes" select=".//footnote"/>
+ <xsl:variable name="table.footnotes" select=".//tgroup//footnote"/>
+
+ <!-- Only bother to do this if there's at least one non-table footnote -->
+ <xsl:if test="count($footnotes)>count($table.footnotes)">
+ <div class="footnotes">
+ <br/>
+ <hr/>
+ <xsl:apply-templates select="$footnotes" mode="process.footnote.mode"/>
+ </div>
+ </xsl:if>
+
+ <xsl:if test="$annotation.support != 0 and //annotation">
+ <div class="annotation-list">
+ <div class="annotation-nocss">
+ <p>The following annotations are from this essay. You are seeing
+ them here because your browser doesn’t support the user-interface
+ techniques used to make them appear as ‘popups’ on modern browsers.</p>
+ </div>
+
+ <xsl:apply-templates select="//annotation" mode="annotation-popup"/>
+ </div>
+ </xsl:if>
+</xsl:template>
+
+</xsl:stylesheet>
Added: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl (rev 0)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,274 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Jeff Fearn <jfearn(a)redhat.com>
+ Author: Tammy Fox <tfox(a)redhat.com>
+ Author: Andy Fitzsimon <afitzsim(a)redhat.com>
+ Author: Mark Newton <mark.newton(a)jboss.org>
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:exsl="http://exslt.org/common"
+ version="1.0"
+ exclude-result-prefixes="exsl">
+
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/docbook.xsl"/>
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/chunk-common.xsl"/>
+<xsl:include href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/chunk-code.xsl"/>
+<xsl:include href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/manifest.xsl"/>
+
+<xsl:include href="redhat.xsl"/>
+<xsl:include href="xhtml-common.xsl"/>
+<xsl:param name="confidential" select="0"/>
+
+<xsl:param name="generate.legalnotice.link" select="1"/>
+<xsl:param name="generate.revhistory.link" select="0"/>
+
+<xsl:param name="chunk.section.depth" select="4"/>
+<xsl:param name="chunk.first.sections" select="1"/>
+<xsl:param name="chunk.toc" select="''"/>
+
+<!-- This is needed to generate the correct xhtml-strict DOCTYPE on the front page -->
+<xsl:output method="xml"
+ encoding="UTF-8"
+ indent="yes"
+ doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
+ doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
+ standalone="no"/>
+
+<!--
+From: xhtml/footnote.xsl
+Reason: remove inline css from hr
+Version: 1.72.0
+-->
+<xsl:template name="process.footnotes">
+ <xsl:variable name="footnotes" select=".//footnote"/>
+ <xsl:variable name="table.footnotes" select=".//tgroup//footnote"/>
+
+ <!-- Only bother to do this if there's at least one non-table footnote -->
+ <xsl:if test="count($footnotes)>count($table.footnotes)">
+ <div class="footnotes">
+ <br/>
+ <hr/>
+ <xsl:apply-templates select="$footnotes" mode="process.footnote.mode"/>
+ </div>
+ </xsl:if>
+
+ <xsl:if test="$annotation.support != 0 and //annotation">
+ <div class="annotation-list">
+ <div class="annotation-nocss">
+ <p>The following annotations are from this essay. You are seeing
+ them here because your browser doesn’t support the user-interface
+ techniques used to make them appear as ‘popups’ on modern browsers.</p>
+ </div>
+
+ <xsl:apply-templates select="//annotation" mode="annotation-popup"/>
+ </div>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: xhtml/chunk-common.xsl
+Reason: remove tables, truncate link text
+Version:
+-->
+<xsl:template name="header.navigation">
+ <xsl:param name="prev" select="/foo"/>
+ <xsl:param name="next" select="/foo"/>
+ <xsl:param name="nav.context"/>
+ <xsl:variable name="home" select="/*[1]"/>
+ <xsl:variable name="up" select="parent::*"/>
+ <xsl:variable name="row1" select="$navig.showtitles != 0"/>
+ <xsl:variable name="row2" select="count($prev) > 0 or (count($up) > 0 and generate-id($up) != generate-id($home) and $navig.showtitles != 0) or count($next) > 0"/>
+ <xsl:if test="$suppress.navigation = '0' and $suppress.header.navigation = '0'">
+ <xsl:if test="$row1 or $row2">
+ <xsl:if test="$row1">
+ <p xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:attribute name="id">
+ <xsl:text>title</xsl:text>
+ </xsl:attribute>
+ <a>
+ <xsl:attribute name="href">
+ <xsl:text>http://www.jboss.org</xsl:text>
+ </xsl:attribute>
+ <xsl:attribute name="class">
+ <xsl:text>jbossOrg_href</xsl:text>
+ </xsl:attribute>
+ <strong>
+ JBoss.org
+ </strong>
+ </a>
+ <a>
+ <xsl:attribute name="href">
+ <xsl:text>http://labs.jboss.com/projects/docs</xsl:text>
+ </xsl:attribute>
+ <xsl:attribute name="class">
+ <xsl:text>commDoc_href</xsl:text>
+ </xsl:attribute>
+ <strong>
+ Community Documentation
+ </strong>
+ </a>
+ </p>
+ </xsl:if>
+ <xsl:if test="$row2">
+ <ul class="docnav" xmlns="http://www.w3.org/1999/xhtml">
+ <li class="previous">
+ <xsl:if test="count($prev)>0">
+ <a accesskey="p">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$prev"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <strong>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'prev'"/>
+ </xsl:call-template>
+ </strong>
+ </a>
+ </xsl:if>
+ </li>
+ <li class="next">
+ <xsl:if test="count($next)>0">
+ <a accesskey="n">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$next"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <strong>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'next'"/>
+ </xsl:call-template>
+ </strong>
+ </a>
+ </xsl:if>
+ </li>
+ </ul>
+ </xsl:if>
+ </xsl:if>
+ <xsl:if test="$header.rule != 0">
+ <hr/>
+ </xsl:if>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: xhtml/chunk-common.xsl
+Reason: remove tables, truncate link text
+Version:
+-->
+<xsl:template name="footer.navigation">
+ <xsl:param name="prev" select="/foo"/>
+ <xsl:param name="next" select="/foo"/>
+ <xsl:param name="nav.context"/>
+ <xsl:param name="title-limit" select="'50'"/>
+ <xsl:variable name="home" select="/*[1]"/>
+ <xsl:variable name="up" select="parent::*"/>
+ <xsl:variable name="row1" select="count($prev) > 0 or count($up) > 0 or count($next) > 0"/>
+ <xsl:variable name="row2" select="($prev and $navig.showtitles != 0) or (generate-id($home) != generate-id(.) or $nav.context = 'toc') or ($chunk.tocs.and.lots != 0 and $nav.context != 'toc') or ($next and $navig.showtitles != 0)"/>
+
+ <xsl:if test="$suppress.navigation = '0' and $suppress.footer.navigation = '0'">
+ <xsl:if test="$footer.rule != 0">
+ <hr/>
+ </xsl:if>
+ <xsl:if test="$row1 or $row2">
+ <ul class="docnav" xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:if test="$row1">
+ <li class="previous">
+ <xsl:if test="count($prev) > 0">
+ <a accesskey="p">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$prev"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <strong>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'prev'"/>
+ </xsl:call-template>
+ </strong>
+ <xsl:variable name="text">
+ <xsl:apply-templates select="$prev" mode="object.title.markup"/>
+ </xsl:variable>
+ <xsl:choose>
+ <xsl:when test="string-length($text) > $title-limit">
+ <xsl:value-of select="concat(substring($text, 0, $title-limit), '...')"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </a>
+ </xsl:if>
+ </li>
+ <xsl:if test="count($up) > 0">
+ <li class="up">
+ <a accesskey="u">
+ <xsl:attribute name="href">
+ <xsl:text>#</xsl:text>
+ </xsl:attribute>
+ <strong>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'up'"/>
+ </xsl:call-template>
+ </strong>
+ </a>
+ </li>
+ </xsl:if>
+ <xsl:if test="$home != . or $nav.context = 'toc'">
+ <li class="home">
+ <a accesskey="h">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$home"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <strong>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'home'"/>
+ </xsl:call-template>
+ </strong>
+ </a>
+ </li>
+ </xsl:if>
+ <xsl:if test="count($next)>0">
+ <li class="next">
+ <a accesskey="n">
+ <xsl:attribute name="href">
+ <xsl:call-template name="href.target">
+ <xsl:with-param name="object" select="$next"/>
+ </xsl:call-template>
+ </xsl:attribute>
+ <strong>
+ <xsl:call-template name="navig.content">
+ <xsl:with-param name="direction" select="'next'"/>
+ </xsl:call-template>
+ </strong>
+ <xsl:variable name="text">
+ <xsl:apply-templates select="$next" mode="object.title.markup"/>
+ </xsl:variable>
+ <xsl:choose>
+ <xsl:when test="string-length($text) > $title-limit">
+ <xsl:value-of select="concat(substring($text, 0, $title-limit),'...')"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </a>
+ </li>
+ </xsl:if>
+ </xsl:if>
+ </ul>
+ </xsl:if>
+ </xsl:if>
+</xsl:template>
+
+ <!-- Ignore image scaling in html version -->
+ <xsl:param name="ignore.image.scaling" select="1"/>
+
+</xsl:stylesheet>
Added: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl (rev 0)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,1204 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Jeff Fearn <jfearn(a)redhat.com>
+ Author: Tammy Fox <tfox(a)redhat.com>
+ Author: Andy Fitzsimon <afitzsim(a)redhat.com>
+-->
+
+<!DOCTYPE xsl:stylesheet [
+<!ENTITY lowercase "'abcdefghijklmnopqrstuvwxyz'">
+<!ENTITY uppercase "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'">
+ ]>
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version='1.0'
+ xmlns="http://www.w3.org/TR/xhtml1/transitional"
+ xmlns:fo="http://www.w3.org/1999/XSL/Format"
+ exclude-result-prefixes="#default">
+
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/fo/docbook.xsl"/>
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/fo/graphics.xsl"/>
+<xsl:import href="redhat.xsl"/>
+<xsl:param name="alignment">left</xsl:param>
+<xsl:param name="use.extensions" select="0"/>
+<xsl:param name="tablecolumns.extensions" select="0"/>
+<xsl:param name="fop.extensions" select="1"/>
+<xsl:param name="fop1.extensions" select="0"/>
+<xsl:param name="img.src.path"/>
+<xsl:param name="confidential" select="0"/>
+<xsl:param name="qandadiv.autolabel" select="0"/>
+
+<xsl:param name="hyphenation-character">-</xsl:param>
+
+<!--xsl:param name="hyphenate.verbatim" select="0"/-->
+<xsl:param name="hyphenate">false</xsl:param>
+<!--xsl:param name="ulink.hyphenate" select="1"/-->
+
+<xsl:param name="line-height" select="1.5"/>
+
+<xsl:attribute-set name="xref.properties">
+ <xsl:attribute name="font-style">italic</xsl:attribute>
+ <xsl:attribute name="color">
+ <xsl:choose>
+ <xsl:when test="ancestor::note or ancestor::caution or ancestor::important or ancestor::warning or ancestor::tip">
+ <xsl:text>#aee6ff</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>#0066cc</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="monospace.properties">
+ <xsl:attribute name="font-size">9pt</xsl:attribute>
+ <xsl:attribute name="font-family">
+ <xsl:value-of select="$monospace.font.family"/>
+ </xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="monospace.verbatim.properties" use-attribute-sets="verbatim.properties monospace.properties">
+ <xsl:attribute name="text-align">start</xsl:attribute>
+ <xsl:attribute name="wrap-option">wrap</xsl:attribute>
+ <xsl:attribute name="hyphenation-character">►</xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:param name="shade.verbatim" select="1"/>
+<xsl:attribute-set name="shade.verbatim.style">
+ <xsl:attribute name="wrap-option">wrap</xsl:attribute>
+ <xsl:attribute name="background-color">
+ <xsl:choose>
+ <xsl:when test="ancestor::note or ancestor::caution or ancestor::important or ancestor::warning or ancestor::tip">
+ <xsl:text>#333333</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>#e9e3cc</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:attribute>
+ <xsl:attribute name="color">
+ <xsl:choose>
+ <xsl:when test="ancestor::note or ancestor::caution or ancestor::important or ancestor::warning or ancestor::tip">
+ <xsl:text>white</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>black</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:attribute>
+ <xsl:attribute name="padding-left">12pt</xsl:attribute>
+ <xsl:attribute name="padding-right">12pt</xsl:attribute>
+ <xsl:attribute name="padding-top">6pt</xsl:attribute>
+ <xsl:attribute name="padding-bottom">6pt</xsl:attribute>
+ <xsl:attribute name="margin-left">
+ <xsl:value-of select="$title.margin.left"/>
+ </xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="verbatim.properties">
+ <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute>
+ <xsl:attribute name="space-before.optimum">1em</xsl:attribute>
+ <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute>
+ <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute>
+ <xsl:attribute name="space-after.optimum">1em</xsl:attribute>
+ <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute>
+ <xsl:attribute name="hyphenate">false</xsl:attribute>
+ <xsl:attribute name="wrap-option">wrap</xsl:attribute>
+ <xsl:attribute name="white-space-collapse">false</xsl:attribute>
+ <xsl:attribute name="white-space-treatment">preserve</xsl:attribute>
+ <xsl:attribute name="linefeed-treatment">preserve</xsl:attribute>
+ <xsl:attribute name="text-align">start</xsl:attribute>
+</xsl:attribute-set>
+
+<!-- Admonitions -->
+<xsl:param name="admon.graphics" select="1"/>
+<xsl:param name="admon.graphics.path">
+ <xsl:if test="$img.src.path != ''"><xsl:value-of select="$img.src.path"/></xsl:if><xsl:text>images/</xsl:text>
+</xsl:param>
+<xsl:param name="admon.graphics.extension" select="'.svg'"/>
+<xsl:attribute-set name="admonition.title.properties">
+ <xsl:attribute name="font-size">13pt</xsl:attribute>
+ <xsl:attribute name="color">white</xsl:attribute>
+ <xsl:attribute name="font-weight">bold</xsl:attribute>
+ <xsl:attribute name="hyphenate">false</xsl:attribute>
+ <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
+
+</xsl:attribute-set>
+
+<!--xsl:attribute-set name="admonition.properties"></xsl:attribute-set-->
+
+<xsl:attribute-set name="graphical.admonition.properties">
+ <xsl:attribute name="color">white</xsl:attribute>
+ <xsl:attribute name="background-color">#404040</xsl:attribute>
+ <xsl:attribute name="space-before.optimum">1em</xsl:attribute>
+ <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute>
+ <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute>
+ <xsl:attribute name="space-after.optimum">1em</xsl:attribute>
+ <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute>
+ <xsl:attribute name="space-after.maximum">1em</xsl:attribute>
+ <xsl:attribute name="padding-bottom">12pt</xsl:attribute>
+ <xsl:attribute name="padding-top">12pt</xsl:attribute>
+ <xsl:attribute name="padding-right">12pt</xsl:attribute>
+ <xsl:attribute name="padding-left">12pt</xsl:attribute>
+ <xsl:attribute name="margin-left">
+ <xsl:value-of select="$title.margin.left"/>
+ </xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:param name="generate.toc">
+set toc
+book toc
+article toc
+</xsl:param>
+
+<xsl:param name="toc.section.depth">3</xsl:param>
+<xsl:param name="section.autolabel" select="1"/>
+
+<xsl:param name="callout.graphics.path">
+ <xsl:if test="$img.src.path != ''"><xsl:value-of select="$img.src.path"/></xsl:if><xsl:text>images/</xsl:text>
+</xsl:param>
+
+<!-- Format Variable Lists as Blocks (prevents horizontal overflow). -->
+<xsl:param name="variablelist.as.blocks">1</xsl:param>
+
+<!-- The horrible list spacing problems, this is much better. -->
+<xsl:attribute-set name="list.block.spacing">
+ <xsl:attribute name="space-before.optimum">2em</xsl:attribute>
+ <xsl:attribute name="space-before.minimum">1em</xsl:attribute>
+ <xsl:attribute name="space-before.maximum">3em</xsl:attribute>
+ <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
+ <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
+ <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
+</xsl:attribute-set>
+
+<!-- Some padding inside tables -->
+<xsl:attribute-set name="table.cell.padding">
+<xsl:attribute name="padding-left">4pt</xsl:attribute>
+<xsl:attribute name="padding-right">4pt</xsl:attribute>
+<xsl:attribute name="padding-top">2pt</xsl:attribute>
+<xsl:attribute name="padding-bottom">2pt</xsl:attribute>
+</xsl:attribute-set>
+
+<!-- Only hairlines as frame and cell borders in tables -->
+<xsl:param name="table.frame.border.thickness">0.3pt</xsl:param>
+<xsl:param name="table.cell.border.thickness">0.15pt</xsl:param>
+<xsl:param name="table.cell.border.color">#5c5c4f</xsl:param>
+<xsl:param name="table.frame.border.color">#5c5c4f</xsl:param>
+<xsl:param name="table.cell.border.right.color">white</xsl:param>
+<xsl:param name="table.cell.border.left.color">white</xsl:param>
+<xsl:param name="table.frame.border.right.color">white</xsl:param>
+<xsl:param name="table.frame.border.left.color">white</xsl:param>
+<!-- Paper type, no headers on blank pages, no double sided printing -->
+<xsl:param name="paper.type" select="'A4'"/>
+<xsl:param name="double.sided">1</xsl:param>
+<xsl:param name="headers.on.blank.pages">1</xsl:param>
+<xsl:param name="footers.on.blank.pages">1</xsl:param>
+<!--xsl:param name="header.column.widths" select="'1 4 1'"/-->
+<xsl:param name="header.column.widths" select="'1 0 1'"/>
+<xsl:param name="footer.column.widths" select="'1 1 1'"/>
+<xsl:param name="header.rule" select="1"/>
+
+<!-- Space between paper border and content (chaotic stuff, don't touch) -->
+<xsl:param name="page.margin.top">15mm</xsl:param>
+<xsl:param name="region.before.extent">10mm</xsl:param>
+<xsl:param name="body.margin.top">15mm</xsl:param>
+
+<xsl:param name="body.margin.bottom">15mm</xsl:param>
+<xsl:param name="region.after.extent">10mm</xsl:param>
+<xsl:param name="page.margin.bottom">15mm</xsl:param>
+
+<xsl:param name="page.margin.outer">30mm</xsl:param>
+<xsl:param name="page.margin.inner">30mm</xsl:param>
+
+<!-- No intendation of Titles -->
+<xsl:param name="title.margin.left">0pc</xsl:param>
+
+<xsl:param name="title.color">#4a5d75</xsl:param>
+
+<xsl:attribute-set name="section.title.level1.properties">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="font-size">
+ <xsl:value-of select="$body.font.master * 1.6"/>
+ <xsl:text>pt</xsl:text>
+ </xsl:attribute>
+</xsl:attribute-set>
+<xsl:attribute-set name="section.title.level2.properties">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="font-size">
+ <xsl:value-of select="$body.font.master * 1.4"/>
+ <xsl:text>pt</xsl:text>
+ </xsl:attribute>
+</xsl:attribute-set>
+<xsl:attribute-set name="section.title.level3.properties">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="font-size">
+ <xsl:value-of select="$body.font.master * 1.3"/>
+ <xsl:text>pt</xsl:text>
+ </xsl:attribute>
+</xsl:attribute-set>
+<xsl:attribute-set name="section.title.level4.properties">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="font-size">
+ <xsl:value-of select="$body.font.master * 1.2"/>
+ <xsl:text>pt</xsl:text>
+ </xsl:attribute>
+</xsl:attribute-set>
+<xsl:attribute-set name="section.title.level5.properties">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="font-size">
+ <xsl:value-of select="$body.font.master * 1.1"/>
+ <xsl:text>pt</xsl:text>
+ </xsl:attribute>
+</xsl:attribute-set>
+<xsl:attribute-set name="section.title.level6.properties">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="font-size">
+ <xsl:value-of select="$body.font.master"/>
+ <xsl:text>pt</xsl:text>
+ </xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="section.title.properties">
+ <xsl:attribute name="font-family">
+ <xsl:value-of select="$title.font.family"/>
+ </xsl:attribute>
+ <xsl:attribute name="font-weight">bold</xsl:attribute>
+ <!-- font size is calculated dynamically by section.heading template -->
+ <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
+ <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute>
+ <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute>
+ <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute>
+ <xsl:attribute name="text-align">left</xsl:attribute>
+ <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"/></xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="book.titlepage.recto.style">
+ <xsl:attribute name="font-family">
+ <xsl:value-of select="$title.fontset"/>
+ </xsl:attribute>
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="font-weight">bold</xsl:attribute>
+ <xsl:attribute name="font-size">12pt</xsl:attribute>
+ <xsl:attribute name="text-align">center</xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="component.title.properties">
+ <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
+ <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"/></xsl:attribute>
+ <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt')"/></xsl:attribute>
+ <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt')"/></xsl:attribute>
+ <xsl:attribute name="hyphenate">false</xsl:attribute>
+ <xsl:attribute name="color">
+ <xsl:choose>
+ <xsl:when test="not(parent::chapter | parent::article | parent::appendix)"><xsl:value-of select="$title.color"/></xsl:when>
+ </xsl:choose>
+ </xsl:attribute>
+ <xsl:attribute name="text-align">
+ <xsl:choose>
+ <xsl:when test="((parent::article | parent::articleinfo) and not(ancestor::book) and not(self::bibliography)) or (parent::slides | parent::slidesinfo)">center</xsl:when>
+ <xsl:otherwise>left</xsl:otherwise>
+ </xsl:choose>
+ </xsl:attribute>
+ <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"/></xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="chapter.titlepage.recto.style">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="background-color">white</xsl:attribute>
+ <xsl:attribute name="font-size">
+ <xsl:choose>
+ <xsl:when test="$l10n.gentext.language = 'ja-JP'">
+ <xsl:value-of select="$body.font.master * 1.7"/>
+ <xsl:text>pt</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>24pt</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:attribute>
+ <xsl:attribute name="font-weight">bold</xsl:attribute>
+ <xsl:attribute name="text-align">left</xsl:attribute>
+ <!--xsl:attribute name="wrap-option">no-wrap</xsl:attribute-->
+ <xsl:attribute name="padding-left">1em</xsl:attribute>
+ <xsl:attribute name="padding-right">1em</xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="preface.titlepage.recto.style">
+ <xsl:attribute name="font-family">
+ <xsl:value-of select="$title.fontset"/>
+ </xsl:attribute>
+ <xsl:attribute name="color">#4a5d75</xsl:attribute>
+ <xsl:attribute name="font-size">12pt</xsl:attribute>
+ <xsl:attribute name="font-weight">bold</xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:attribute-set name="part.titlepage.recto.style">
+ <xsl:attribute name="color"><xsl:value-of select="$title.color"/></xsl:attribute>
+ <xsl:attribute name="text-align">center</xsl:attribute>
+</xsl:attribute-set>
+
+
+<!--
+From: fo/table.xsl
+Reason: Table Header format
+Version:1.72
+-->
+<xsl:template name="table.cell.block.properties">
+ <!-- highlight this entry? -->
+ <xsl:if test="ancestor::thead or ancestor::tfoot">
+ <xsl:attribute name="font-weight">bold</xsl:attribute>
+ <xsl:attribute name="background-color">#4a5d75</xsl:attribute>
+ <xsl:attribute name="color">white</xsl:attribute>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: fo/table.xsl
+Reason: Table Header format
+Version:1.72
+-->
+<!-- customize this template to add row properties -->
+<xsl:template name="table.row.properties">
+ <xsl:variable name="bgcolor">
+ <xsl:call-template name="dbfo-attribute">
+ <xsl:with-param name="pis" select="processing-instruction('dbfo')"/>
+ <xsl:with-param name="attribute" select="'bgcolor'"/>
+ </xsl:call-template>
+ </xsl:variable>
+ <xsl:if test="$bgcolor != ''">
+ <xsl:attribute name="background-color">
+ <xsl:value-of select="$bgcolor"/>
+ </xsl:attribute>
+ </xsl:if>
+ <xsl:if test="ancestor::thead or ancestor::tfoot">
+ <xsl:attribute name="background-color">#4a5d75</xsl:attribute>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: fo/titlepage.templates.xsl
+Reason: Switch to using chapter.titlepage.recto.style
+Version:1.72
+-->
+<xsl:template match="title" mode="appendix.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style">
+<xsl:call-template name="component.title.nomarkup">
+<xsl:with-param name="node" select="ancestor-or-self::appendix[1]"/>
+</xsl:call-template>
+</fo:block>
+</xsl:template>
+
+<!--
+From: fo/titlepage.templates.xsl
+Reason: Remove font size and weight overrides
+Version:1.72
+-->
+<xsl:template match="title" mode="chapter.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style">
+<xsl:value-of select="."/>
+</fo:block>
+</xsl:template>
+
+<!--
+From: fo/titlepage.templates.xsl
+Reason: Remove font family, size and weight overrides
+Version:1.72
+-->
+<xsl:template name="preface.titlepage.recto">
+ <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style" margin-left="{$title.margin.left}">
+<xsl:call-template name="component.title.nomarkup">
+<xsl:with-param name="node" select="ancestor-or-self::preface[1]"/>
+</xsl:call-template></fo:block>
+ <xsl:choose>
+ <xsl:when test="prefaceinfo/subtitle">
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/subtitle"/>
+ </xsl:when>
+ <xsl:when test="docinfo/subtitle">
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/subtitle"/>
+ </xsl:when>
+ <xsl:when test="info/subtitle">
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/subtitle"/>
+ </xsl:when>
+ <xsl:when test="subtitle">
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="subtitle"/>
+ </xsl:when>
+ </xsl:choose>
+
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/corpauthor"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/corpauthor"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/corpauthor"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/authorgroup"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/authorgroup"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/authorgroup"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/author"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/author"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/author"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/othercredit"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/othercredit"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/othercredit"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/releaseinfo"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/releaseinfo"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/copyright"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/copyright"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/copyright"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/legalnotice"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/legalnotice"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/legalnotice"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/pubdate"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/pubdate"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/pubdate"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revision"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revision"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revision"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revhistory"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revhistory"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revhistory"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/abstract"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/abstract"/>
+ <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/abstract"/>
+</xsl:template>
+
+
+<xsl:template name="pickfont-sans">
+ <xsl:variable name="font">
+ <xsl:choose>
+ <xsl:when test="$l10n.gentext.language = 'ja-JP'">
+ <xsl:text>KochiMincho,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'ko-KR'">
+ <xsl:text>BaekmukBatang,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'zh-CN'">
+ <xsl:text>ARPLKaitiMGB,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'bn-IN'">
+ <xsl:text>LohitBengali,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'ta-IN'">
+ <xsl:text>LohitTamil,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'pa-IN'">
+ <xsl:text>LohitPunjabi,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'hi-IN'">
+ <xsl:text>LohitHindi,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'gu-IN'">
+ <xsl:text>LohitGujarati,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'zh-TW'">
+ <xsl:text>ARPLMingti2LBig5,</xsl:text>
+ </xsl:when>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:choose>
+ <xsl:when test="$fop1.extensions != 0">
+ <xsl:copy-of select="$font"/><xsl:text>DejaVuLGCSans,sans-serif</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:copy-of select="$font"/><xsl:text>sans-serif</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+
+<xsl:template name="pickfont-serif">
+ <xsl:variable name="font">
+ <xsl:choose>
+ <xsl:when test="$l10n.gentext.language = 'ja-JP'">
+ <xsl:text>KochiMincho,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'ko-KR'">
+ <xsl:text>BaekmukBatang,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'zh-CN'">
+ <xsl:text>ARPLKaitiMGB,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'bn-IN'">
+ <xsl:text>LohitBengali,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'ta-IN'">
+ <xsl:text>LohitTamil,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'pa-IN'">
+ <xsl:text>LohitPunjabi,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'hi-IN'">
+ <xsl:text>LohitHindi,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'gu-IN'">
+ <xsl:text>LohitGujarati,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'zh-TW'">
+ <xsl:text>ARPLMingti2LBig5,</xsl:text>
+ </xsl:when>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:choose>
+ <xsl:when test="$fop1.extensions != 0">
+ <xsl:copy-of select="$font"/><xsl:text>DejaVuLGCSans,serif</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:copy-of select="$font"/><xsl:text>serif</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+
+<xsl:template name="pickfont-mono">
+ <xsl:variable name="font">
+ <xsl:choose>
+ <xsl:when test="$l10n.gentext.language = 'ja-JP'">
+ <xsl:text>KochiMincho,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'ko-KR'">
+ <xsl:text>BaekmukBatang,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'zh-CN'">
+ <xsl:text>ARPLKaitiMGB,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'bn-IN'">
+ <xsl:text>LohitBengali,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'ta-IN'">
+ <xsl:text>LohitTamil,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'pa-IN'">
+ <xsl:text>LohitPunjabi,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'hi-IN'">
+ <xsl:text>LohitHindi,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'gu-IN'">
+ <xsl:text>LohitGujarati,</xsl:text>
+ </xsl:when>
+ <xsl:when test="$l10n.gentext.language = 'zh-TW'">
+ <xsl:text>ARPLMingti2LBig5,</xsl:text>
+ </xsl:when>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:choose>
+ <xsl:when test="$fop1.extensions != 0">
+ <xsl:copy-of select="$font"/><xsl:text>DejaVuLGCSans,monospace</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:copy-of select="$font"/><xsl:text>monospace</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+
+<!--xsl:param name="symbol.font.family">
+ <xsl:choose>
+ <xsl:when test="$l10n.gentext.language = 'ja-JP'">
+ <xsl:text>Symbol,ZapfDingbats</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>Symbol,ZapfDingbats</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:param-->
+
+<xsl:param name="title.font.family">
+ <xsl:call-template name="pickfont-sans"/>
+</xsl:param>
+
+<xsl:param name="body.font.family">
+ <xsl:call-template name="pickfont-sans"/>
+</xsl:param>
+
+<xsl:param name="monospace.font.family">
+ <xsl:call-template name="pickfont-mono"/>
+</xsl:param>
+
+<xsl:param name="sans.font.family">
+ <xsl:call-template name="pickfont-sans"/>
+</xsl:param>
+
+<!--xsl:param name="callout.unicode.font">
+ <xsl:call-template name="pickfont-sans"/>
+</xsl:param-->
+
+<!--
+From: fo/verbatim.xsl
+Reason: Left align address
+Version: 1.72
+-->
+
+<xsl:template match="address">
+ <xsl:param name="suppress-numbers" select="'0'"/>
+
+ <xsl:variable name="content">
+ <xsl:choose>
+ <xsl:when test="$suppress-numbers = '0'
+ and @linenumbering = 'numbered'
+ and $use.extensions != '0'
+ and $linenumbering.extension != '0'">
+ <xsl:call-template name="number.rtf.lines">
+ <xsl:with-param name="rtf">
+ <xsl:apply-templates/>
+ </xsl:with-param>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:apply-templates/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+
+ <fo:block wrap-option='no-wrap'
+ white-space-collapse='false'
+ white-space-treatment='preserve'
+ linefeed-treatment="preserve"
+ text-align="start"
+ xsl:use-attribute-sets="verbatim.properties">
+ <xsl:copy-of select="$content"/>
+ </fo:block>
+</xsl:template>
+
+<xsl:template name="component.title.nomarkup">
+ <xsl:param name="node" select="."/>
+
+ <xsl:variable name="id">
+ <xsl:call-template name="object.id">
+ <xsl:with-param name="object" select="$node"/>
+ </xsl:call-template>
+ </xsl:variable>
+
+ <xsl:variable name="title">
+ <xsl:apply-templates select="$node" mode="object.title.markup">
+ <xsl:with-param name="allow-anchors" select="1"/>
+ </xsl:apply-templates>
+ </xsl:variable>
+ <xsl:copy-of select="$title"/>
+</xsl:template>
+
+<!--
+From: fo/pagesetup.xsl
+Reason: Custom Header
+Version: 1.72
+-->
+<xsl:template name="header.content">
+ <xsl:param name="pageclass" select="''"/>
+ <xsl:param name="sequence" select="''"/>
+ <xsl:param name="position" select="''"/>
+ <xsl:param name="gentext-key" select="''"/>
+ <xsl:param name="title-limit" select="'30'"/>
+<!--
+ <fo:block>
+ <xsl:value-of select="$pageclass"/>
+ <xsl:text>, </xsl:text>
+ <xsl:value-of select="$sequence"/>
+ <xsl:text>, </xsl:text>
+ <xsl:value-of select="$position"/>
+ <xsl:text>, </xsl:text>
+ <xsl:value-of select="$gentext-key"/>
+ </fo:block>
+body, blank, left, chapter
+-->
+ <!-- sequence can be odd, even, first, blank -->
+ <!-- position can be left, center, right -->
+ <xsl:choose>
+ <!--xsl:when test="($sequence='blank' and $position='left' and $gentext-key='chapter')">
+ <xsl:variable name="text">
+ <xsl:call-template name="component.title.nomarkup"/>
+ </xsl:variable>
+ <fo:inline keep-together.within-line="always" font-weight="bold">
+ <xsl:choose>
+ <xsl:when test="string-length($text) > '33'">
+ <xsl:value-of select="concat(substring($text, 0, $title-limit), '...')"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </fo:inline>
+ </xsl:when-->
+ <xsl:when test="$confidential = 1 and (($sequence='odd' and $position='left') or ($sequence='even' and $position='right'))">
+ <fo:inline keep-together.within-line="always" font-weight="bold">
+ <xsl:text>RED HAT CONFIDENTIAL</xsl:text>
+ </fo:inline>
+ </xsl:when>
+ <xsl:when test="$sequence = 'blank'">
+ <!-- nothing -->
+ </xsl:when>
+ <!-- Extracting 'Chapter' + Chapter Number from the full Chapter title, with a dirty, dirty hack -->
+ <xsl:when test="($sequence='first' and $position='left' and $gentext-key='chapter')">
+ <xsl:variable name="text">
+ <xsl:call-template name="component.title.nomarkup"/>
+ </xsl:variable>
+ <xsl:variable name="chapt">
+ <xsl:value-of select="substring-before($text, ' ')"/>
+ </xsl:variable>
+ <xsl:variable name="remainder">
+ <xsl:value-of select="substring-after($text, ' ')"/>
+ </xsl:variable>
+ <xsl:variable name="chapt-num">
+ <xsl:value-of select="substring-before($remainder, ' ')"/>
+ </xsl:variable>
+ <xsl:variable name="text1">
+ <xsl:value-of select="concat($chapt, ' ', $chapt-num)"/>
+ </xsl:variable>
+ <fo:inline keep-together.within-line="always" font-weight="bold">
+ <xsl:value-of select="$text1"/>
+ </fo:inline>
+ </xsl:when>
+ <!--xsl:when test="($sequence='odd' or $sequence='even') and $position='center'"-->
+ <xsl:when test="($sequence='even' and $position='left')">
+ <!--xsl:if test="$pageclass != 'titlepage'"-->
+ <xsl:variable name="text">
+ <xsl:call-template name="component.title.nomarkup"/>
+ </xsl:variable>
+ <fo:inline keep-together.within-line="always" font-weight="bold">
+ <xsl:choose>
+ <xsl:when test="string-length($text) > '33'">
+ <xsl:value-of select="concat(substring($text, 0, $title-limit), '...')"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </fo:inline>
+ <!--xsl:if-->
+ </xsl:when>
+ <xsl:when test="($sequence='odd' and $position='right')">
+ <!--xsl:if test="$pageclass != 'titlepage'"-->
+ <fo:inline keep-together.within-line="always"><fo:retrieve-marker retrieve-class-name="section.head.marker" retrieve-position="first-including-carryover" retrieve-boundary="page-sequence"/></fo:inline>
+ <!--/xsl:if-->
+ </xsl:when>
+ <xsl:when test="$position='left'">
+ <!-- Same for odd, even, empty, and blank sequences -->
+ <xsl:call-template name="draft.text"/>
+ </xsl:when>
+ <xsl:when test="$position='center'">
+ <!-- nothing for empty and blank sequences -->
+ </xsl:when>
+ <xsl:when test="$position='right'">
+ <!-- Same for odd, even, empty, and blank sequences -->
+ <xsl:call-template name="draft.text"/>
+ </xsl:when>
+ <xsl:when test="$sequence = 'first'">
+ <!-- nothing for first pages -->
+ </xsl:when>
+ <xsl:when test="$sequence = 'blank'">
+ <!-- nothing for blank pages -->
+ </xsl:when>
+ </xsl:choose>
+</xsl:template>
+
+<!--
+From: fo/pagesetup.xsl
+Reason: Override colour
+Version: 1.72
+-->
+<xsl:template name="head.sep.rule">
+ <xsl:param name="pageclass"/>
+ <xsl:param name="sequence"/>
+ <xsl:param name="gentext-key"/>
+
+ <xsl:if test="$header.rule != 0">
+ <xsl:attribute name="border-bottom-width">0.5pt</xsl:attribute>
+ <xsl:attribute name="border-bottom-style">solid</xsl:attribute>
+ <xsl:attribute name="border-bottom-color">#4a5d75</xsl:attribute>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: fo/pagesetup.xsl
+Reason: Override colour
+Version: 1.72
+-->
+<xsl:template name="foot.sep.rule">
+ <xsl:param name="pageclass"/>
+ <xsl:param name="sequence"/>
+ <xsl:param name="gentext-key"/>
+
+ <xsl:if test="$footer.rule != 0">
+ <xsl:attribute name="border-top-width">0.5pt</xsl:attribute>
+ <xsl:attribute name="border-top-style">solid</xsl:attribute>
+ <xsl:attribute name="border-top-color">#4a5d75</xsl:attribute>
+ </xsl:if>
+</xsl:template>
+
+<xsl:param name="footnote.font.size">
+ <xsl:value-of select="$body.font.master * 0.8"/><xsl:text>pt</xsl:text>
+</xsl:param>
+<xsl:param name="footnote.number.format" select="'1'"/>
+<xsl:param name="footnote.number.symbols" select="''"/>
+<xsl:attribute-set name="footnote.mark.properties">
+ <xsl:attribute name="font-size">75%</xsl:attribute>
+ <xsl:attribute name="font-weight">normal</xsl:attribute>
+ <xsl:attribute name="font-style">normal</xsl:attribute>
+</xsl:attribute-set>
+<xsl:attribute-set name="footnote.properties">
+ <xsl:attribute name="padding-top">48pt</xsl:attribute>
+ <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"/></xsl:attribute>
+ <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"/></xsl:attribute>
+ <xsl:attribute name="font-weight">normal</xsl:attribute>
+ <xsl:attribute name="font-style">normal</xsl:attribute>
+ <xsl:attribute name="text-align"><xsl:value-of select="$alignment"/></xsl:attribute>
+ <xsl:attribute name="start-indent">0pt</xsl:attribute>
+</xsl:attribute-set>
+<xsl:attribute-set name="footnote.sep.leader.properties">
+ <xsl:attribute name="color">black</xsl:attribute>
+ <xsl:attribute name="leader-pattern">rule</xsl:attribute>
+ <xsl:attribute name="leader-length">1in</xsl:attribute>
+</xsl:attribute-set>
+
+<xsl:template match="author" mode="tablerow.titlepage.mode">
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key" select="'Author'"/>
+ </xsl:call-template>
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:call-template name="person.name">
+ <xsl:with-param name="node" select="."/>
+ </xsl:call-template>
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:apply-templates select="email"/>
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+</xsl:template>
+
+<xsl:template match="author" mode="titlepage.mode">
+ <fo:block>
+ <xsl:call-template name="person.name">
+ <xsl:with-param name="node" select="."/>
+ </xsl:call-template>
+ </fo:block>
+</xsl:template>
+
+<xsl:param name="editedby.enabled">0</xsl:param>
+
+<xsl:template match="editor" mode="tablerow.titlepage.mode">
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key" select="'Editor'"/>
+ </xsl:call-template>
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:call-template name="person.name">
+ <xsl:with-param name="node" select="."/>
+ </xsl:call-template>
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:apply-templates select="email"/>
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+</xsl:template>
+
+<xsl:template match="othercredit" mode="tablerow.titlepage.mode">
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key" select="'translator'"/>
+ </xsl:call-template>
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:call-template name="person.name">
+ <xsl:with-param name="node" select="."/>
+ </xsl:call-template>
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block>
+ <xsl:apply-templates select="email"/>
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </xsl:template>
+
+<!--
+From: fo/titlepage.xsl
+Reason:
+Version:1.72
+-->
+<!-- Omitted to get JBossOrg style working - TODO
+<xsl:template name="verso.authorgroup">
+ <fo:table table-layout="fixed" width="100%">
+ <fo:table-column column-number="1" column-width="proportional-column-width(1)"/>
+ <fo:table-column column-number="2" column-width="proportional-column-width(1)"/>
+ <fo:table-column column-number="3" column-width="proportional-column-width(1)"/>
+ <fo:table-body>
+ <xsl:apply-templates select="author" mode="tablerow.titlepage.mode"/>
+ <xsl:apply-templates select="editor" mode="tablerow.titlepage.mode"/>
+ <xsl:apply-templates select="othercredit" mode="tablerow.titlepage.mode"/>
+ </fo:table-body>
+ </fo:table>
+</xsl:template> -->
+
+<xsl:template match="title" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="20pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}">
+<xsl:call-template name="division.title">
+<xsl:with-param name="node" select="ancestor-or-self::book[1]"/>
+</xsl:call-template>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="subtitle" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="34pt" space-before="30pt" font-family="{$title.fontset}">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="issuenum" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="16pt" space-before="15.552pt" font-family="{$title.fontset}">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="author" mode="book.titlepage.recto.auto.mode">
+ <fo:block xsl:use-attribute-sets="book.titlepage.recto.style" font-size="14pt" space-before="15.552pt">
+ <xsl:call-template name="person.name">
+ <xsl:with-param name="node" select="."/>
+ </xsl:call-template>
+ </fo:block>
+</xsl:template>
+
+<xsl:template name="book.titlepage.recto">
+ <xsl:choose>
+ <xsl:when test="bookinfo/title">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/title"/>
+ </xsl:when>
+ <xsl:when test="info/title">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/title"/>
+ </xsl:when>
+ <xsl:when test="title">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="title"/>
+ </xsl:when>
+ </xsl:choose>
+
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/issuenum"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/issuenum"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="issuenum"/>
+
+ <xsl:choose>
+ <xsl:when test="bookinfo/subtitle">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/subtitle"/>
+ </xsl:when>
+ <xsl:when test="info/subtitle">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/subtitle"/>
+ </xsl:when>
+ <xsl:when test="subtitle">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="subtitle"/>
+ </xsl:when>
+ </xsl:choose>
+
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/corpauthor"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/corpauthor"/>
+
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/authorgroup/author"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/authorgroup/author"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/author"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/author"/>
+
+ <fo:block xsl:use-attribute-sets="book.titlepage.recto.style" color="black">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/invpartnumber"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/invpartnumber"/>
+ </fo:block>
+ <fo:block xsl:use-attribute-sets="book.titlepage.recto.style" color="black">
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key" select="'isbn'"/>
+ </xsl:call-template>
+ <xsl:text>: </xsl:text>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/isbn"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/isbn"/>
+ </fo:block>
+ <fo:block xsl:use-attribute-sets="book.titlepage.recto.style" color="black">
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key" select="'pubdate'"/>
+ </xsl:call-template>
+ <xsl:text>: </xsl:text>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/pubdate"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/pubdate"/>
+ </fo:block>
+</xsl:template>
+
+<xsl:template name="book.titlepage.verso">
+ <xsl:choose>
+ <xsl:when test="bookinfo/abstract">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/abstract"/>
+ </xsl:when>
+ <xsl:when test="info/abstract">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/abstract"/>
+ </xsl:when>
+ </xsl:choose>
+
+</xsl:template>
+
+<xsl:template name="book.titlepage3.recto">
+ <xsl:choose>
+ <xsl:when test="bookinfo/title">
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/title"/>
+ </xsl:when>
+ <xsl:when test="info/title">
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/title"/>
+ </xsl:when>
+ <xsl:when test="title">
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="title"/>
+ </xsl:when>
+ </xsl:choose>
+
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/authorgroup"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/authorgroup"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/author"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/author"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/othercredit"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/othercredit"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/copyright"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/copyright"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/legalnotice"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/legalnotice"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/publisher"/>
+ <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/publisher"/>
+</xsl:template>
+
+<xsl:template name="book.titlepage.separator"><fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" break-after="page"/>
+</xsl:template>
+
+<xsl:template name="book.titlepage.before.recto">
+</xsl:template>
+
+<xsl:template name="book.titlepage.before.verso"><fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" break-after="page"/>
+</xsl:template>
+
+<xsl:template name="book.titlepage">
+ <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">
+ <xsl:call-template name="book.titlepage.before.recto"/>
+ <fo:block><xsl:call-template name="book.titlepage.recto"/></fo:block>
+ <xsl:call-template name="book.titlepage.separator"/>
+ <fo:block><xsl:call-template name="book.titlepage.verso"/></fo:block>
+ <xsl:call-template name="book.titlepage.separator"/>
+ <fo:block><xsl:call-template name="book.titlepage3.recto"/></fo:block>
+ <xsl:call-template name="book.titlepage.separator"/>
+ </fo:block>
+</xsl:template>
+
+<!--
+From: fo/qandaset.xsl
+Reason: Id in list-item-label causes fop crash
+Version:1.72
+-->
+
+<xsl:template match="question">
+ <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
+
+ <xsl:variable name="entry.id">
+ <xsl:call-template name="object.id">
+ <xsl:with-param name="object" select="parent::*"/>
+ </xsl:call-template>
+ </xsl:variable>
+
+ <xsl:variable name="deflabel">
+ <xsl:choose>
+ <xsl:when test="ancestor-or-self::*[@defaultlabel]">
+ <xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
+ /@defaultlabel"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$qanda.defaultlabel"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+
+ <fo:list-item id="{$entry.id}" xsl:use-attribute-sets="list.item.spacing">
+ <fo:list-item-label end-indent="label-end()">
+ <xsl:choose>
+ <xsl:when test="$deflabel = 'none'">
+ <fo:block/>
+ </xsl:when>
+ <xsl:otherwise>
+ <fo:block>
+ <xsl:apply-templates select="." mode="label.markup"/>
+ <xsl:if test="$deflabel = 'number' and not(label)">
+ <xsl:apply-templates select="." mode="intralabel.punctuation"/>
+ </xsl:if>
+ </fo:block>
+ </xsl:otherwise>
+ </xsl:choose>
+ </fo:list-item-label>
+ <fo:list-item-body start-indent="body-start()">
+ <xsl:choose>
+ <xsl:when test="$deflabel = 'none'">
+ <fo:block font-weight="bold">
+ <xsl:apply-templates select="*[local-name(.)!='label']"/>
+ </fo:block>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:apply-templates select="*[local-name(.)!='label']"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ <!-- Uncomment this line to get revhistory output in the question -->
+ <!-- <xsl:apply-templates select="preceding-sibling::revhistory"/> -->
+ </fo:list-item-body>
+ </fo:list-item>
+</xsl:template>
+
+<!--
+From: fo/qandaset.xsl
+Reason: Id in list-item-label causes fop crash
+Version:1.72
+-->
+<xsl:template match="answer">
+ <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
+ <xsl:variable name="entry.id">
+ <xsl:call-template name="object.id">
+ <xsl:with-param name="object" select="parent::*"/>
+ </xsl:call-template>
+ </xsl:variable>
+
+ <xsl:variable name="deflabel">
+ <xsl:choose>
+ <xsl:when test="ancestor-or-self::*[@defaultlabel]">
+ <xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
+ /@defaultlabel"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$qanda.defaultlabel"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+
+ <fo:list-item xsl:use-attribute-sets="list.item.spacing">
+ <fo:list-item-label end-indent="label-end()">
+ <xsl:choose>
+ <xsl:when test="$deflabel = 'none'">
+ <fo:block/>
+ </xsl:when>
+ <xsl:otherwise>
+ <fo:block>
+ <xsl:variable name="answer.label">
+ <xsl:apply-templates select="." mode="label.markup"/>
+ </xsl:variable>
+ <xsl:copy-of select="$answer.label"/>
+ </fo:block>
+ </xsl:otherwise>
+ </xsl:choose>
+ </fo:list-item-label>
+ <fo:list-item-body start-indent="body-start()">
+ <xsl:apply-templates select="*[local-name(.)!='label']"/>
+ </fo:list-item-body>
+ </fo:list-item>
+</xsl:template>
+
+</xsl:stylesheet>
Added: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl (rev 0)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,116 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Jeff Fearn <jfearn(a)redhat.com>
+ Author: Tammy Fox <tfox(a)redhat.com>
+ Author: Andy Fitzsimon <afitzsim(a)redhat.com>
+ Author: Mark Newton <mark.newton(a)jboss.org>
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:exsl="http://exslt.org/common"
+ version="1.0"
+ exclude-result-prefixes="exsl">
+
+ <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/docbook.xsl"/>
+
+ <xsl:include href="redhat.xsl"/>
+ <xsl:include href="xhtml-common.xsl"/>
+ <xsl:param name="confidential" select="0"/>
+
+<!-- This is needed to generate the correct xhtml-strict DOCTYPE on the page -->
+<xsl:output method="xml"
+ encoding="UTF-8"
+ indent="yes"
+ doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
+ doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
+ standalone="no"/>
+
+<!--
+From: xhtml/titlepage-templates.xsl
+Reason: Needed to add JBoss.org and Community Documentation graphics to header
+Version: 1.72.0
+-->
+<xsl:template name="book.titlepage.recto">
+ <p xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:attribute name="id">
+ <xsl:text>title</xsl:text>
+ </xsl:attribute>
+ <a>
+ <xsl:attribute name="href">
+ <xsl:text>http://www.jboss.org</xsl:text>
+ </xsl:attribute>
+ <xsl:attribute name="class">
+ <xsl:text>jbossOrg_href</xsl:text>
+ </xsl:attribute>
+ <strong>
+ JBoss.org
+ </strong>
+ </a>
+ <a>
+ <xsl:attribute name="href">
+ <xsl:text>http://labs.jboss.com/projects/docs</xsl:text>
+ </xsl:attribute>
+ <xsl:attribute name="class">
+ <xsl:text>commDoc_href</xsl:text>
+ </xsl:attribute>
+ <strong>
+ Community Documentation
+ </strong>
+ </a>
+ </p>
+ <xsl:choose>
+ <xsl:when test="bookinfo/title">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/title"/>
+ </xsl:when>
+ <xsl:when test="info/title">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/title"/>
+ </xsl:when>
+ <xsl:when test="title">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="title"/>
+ </xsl:when>
+ </xsl:choose>
+
+ <xsl:choose>
+ <xsl:when test="bookinfo/subtitle">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/subtitle"/>
+ </xsl:when>
+ <xsl:when test="info/subtitle">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/subtitle"/>
+ </xsl:when>
+ <xsl:when test="subtitle">
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="subtitle"/>
+ </xsl:when>
+ </xsl:choose>
+
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/corpauthor"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/corpauthor"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/authorgroup"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/authorgroup"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/author"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/author"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/othercredit"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/othercredit"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/releaseinfo"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/releaseinfo"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/copyright"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/copyright"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/legalnotice"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/legalnotice"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/pubdate"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/pubdate"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revision"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revision"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revhistory"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revhistory"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/abstract"/>
+ <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/abstract"/>
+</xsl:template>
+
+
+ <!-- Ignore image scaling in html version -->
+ <xsl:param name="ignore.image.scaling" select="1"/>
+
+</xsl:stylesheet>
Added: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl (rev 0)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,86 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Jeff Fearn <jfearn(a)redhat.com>
+ Author: Tammy Fox <tfox(a)redhat.com>
+ Author: Andy Fitzsimon <afitzsim(a)redhat.com>
+ Author: Mark Newton <mark.newton(a)jboss.org>
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:exsl="http://exslt.org/common"
+ version="1.0"
+ exclude-result-prefixes="exsl">
+
+<!-- Modify the default navigation wording -->
+<xsl:param name="local.l10n.xml" select="document('')" />
+<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
+ <l:l10n language="en">
+ <l:gentext key="nav-home" text="Front page"/>
+ </l:l10n>
+</l:i18n>
+
+<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
+ <l:l10n language="en">
+ <l:gentext key="nav-up" text="Top of page"/>
+ </l:l10n>
+</l:i18n>
+
+<!-- titles after all elements -->
+<xsl:param name="formal.title.placement">
+figure after
+example after
+equation after
+table after
+procedure before
+</xsl:param>
+
+<!--
+Copied from fo/params.xsl
+-->
+<xsl:param name="l10n.gentext.default.language" select="'en'"/>
+
+<!-- This sets the filename based on the ID. -->
+<xsl:param name="use.id.as.filename" select="'1'"/>
+
+<xsl:template match="command">
+ <xsl:call-template name="inline.monoseq"/>
+</xsl:template>
+
+<xsl:template match="application">
+ <xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guibutton">
+ <xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guiicon">
+ <xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guilabel">
+ <xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guimenu">
+ <xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guimenuitem">
+ <xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guisubmenu">
+ <xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="filename">
+ <xsl:call-template name="inline.monoseq"/>
+</xsl:template>
+
+</xsl:stylesheet>
+
+
Added: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/xhtml-common.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/xhtml-common.xsl (rev 0)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/xhtml-common.xsl 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,356 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Jeff Fearn <jfearn(a)redhat.com>
+ Author: Tammy Fox <tfox(a)redhat.com>
+ Author: Andy Fitzsimon <afitzsim(a)redhat.com>
+ Author: Mark Newton <mark.newton(a)jboss.org>
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:exsl="http://exslt.org/common"
+ version="1.0"
+ exclude-result-prefixes="exsl">
+
+<!-- Admonition Graphics -->
+<xsl:param name="admon.graphics" select="1"/>
+<xsl:param name="admon.style" select="''"/>
+<xsl:param name="admon.graphics.path">images/</xsl:param>
+<xsl:param name="callout.graphics.path">images/</xsl:param>
+
+<xsl:param name="chunker.output.doctype-public" select="'-//W3C//DTD XHTML 1.0 Strict//EN'"/>
+<xsl:param name="chunker.output.doctype-system" select="'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'"/>
+<xsl:param name="chunker.output.encoding" select="'UTF-8'"/>
+<xsl:param name="chunker.output.indent" select="'yes'"/>
+
+<xsl:param name="html.stylesheet" select="'css/jbossorg.css'"/>
+<xsl:param name="html.stylesheet.type" select="'text/css'"/>
+<xsl:param name="html.cleanup" select="1"/>
+<xsl:param name="html.ext" select="'.html'"/>
+<xsl:output method="html" indent="yes"/>
+
+
+<!-- TOC -->
+<xsl:param name="section.autolabel" select="1"/>
+<xsl:param name="section.label.includes.component.label" select="1"/>
+
+<xsl:param name="generate.toc">
+set toc
+book toc
+article toc
+chapter toc
+qandadiv toc
+qandaset toc
+sect1 nop
+sect2 nop
+sect3 nop
+sect4 nop
+sect5 nop
+section toc
+part toc
+</xsl:param>
+
+<xsl:param name="suppress.navigation" select="0"/>
+<xsl:param name="suppress.header.navigation" select="0"/>
+<xsl:param name="suppress.footer.navigation" select="0"/>
+
+<xsl:param name="header.rule" select="0"/>
+<xsl:param name="footer.rule" select="0"/>
+<xsl:param name="css.decoration" select="0"/>
+<xsl:param name="ulink.target"/>
+<xsl:param name="table.cell.border.style"/>
+
+<!-- BUGBUG TODO
+
+ There is a bug where inserting elements in to the body level
+ of xhtml will add xmlns="" to the tag. This is invalid xhtml.
+ To overcome this I added:
+ xmlns="http://www.w3.org/1999/xhtml"
+ to the outer most tag. This gets stripped by the parser, resulting
+ in valid xhtml ... go figure.
+-->
+
+<!--
+From: xhtml/admon.xsl
+Reason: remove tables
+Version: 1.72.0
+-->
+<xsl:template name="graphical.admonition">
+ <xsl:variable name="admon.type">
+ <xsl:choose>
+ <xsl:when test="local-name(.)='note'">Note</xsl:when>
+ <xsl:when test="local-name(.)='warning'">Warning</xsl:when>
+ <xsl:when test="local-name(.)='caution'">Caution</xsl:when>
+ <xsl:when test="local-name(.)='tip'">Tip</xsl:when>
+ <xsl:when test="local-name(.)='important'">Important</xsl:when>
+ <xsl:otherwise>Note</xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+
+ <xsl:variable name="alt">
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key" select="$admon.type"/>
+ </xsl:call-template>
+ </xsl:variable>
+
+ <div xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:apply-templates select="." mode="class.attribute"/>
+ <xsl:if test="$admon.style != ''">
+ <xsl:attribute name="style">
+ <xsl:value-of select="$admon.style"/>
+ </xsl:attribute>
+ </xsl:if>
+
+ <xsl:call-template name="anchor"/>
+ <xsl:if test="$admon.textlabel != 0 or title">
+ <h2>
+ <xsl:apply-templates select="." mode="object.title.markup"/>
+ </h2>
+ </xsl:if>
+ <xsl:apply-templates/>
+ </div>
+</xsl:template>
+
+<!--
+From: xhtml/lists.xsl
+Reason: Remove invalid type attribute from ol
+Version: 1.72.0
+-->
+<xsl:template match="substeps">
+ <xsl:variable name="numeration">
+ <xsl:call-template name="procedure.step.numeration"/>
+ </xsl:variable>
+ <xsl:call-template name="anchor"/>
+ <ol xmlns="http://www.w3.org/1999/xhtml" class="{$numeration}">
+ <xsl:apply-templates/>
+ </ol>
+</xsl:template>
+
+<!--
+From: xhtml/lists.xsl
+Reason: Remove invalid type, start & compact attributes from ol
+Version: 1.72.0
+-->
+<xsl:template match="orderedlist">
+ <div xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:apply-templates select="." mode="class.attribute"/>
+ <xsl:call-template name="anchor"/>
+ <xsl:if test="title">
+ <xsl:call-template name="formal.object.heading"/>
+ </xsl:if>
+<!-- Preserve order of PIs and comments -->
+ <xsl:apply-templates select="*[not(self::listitem or self::title or self::titleabbrev)] |comment()[not(preceding-sibling::listitem)] |processing-instruction()[not(preceding-sibling::listitem)]"/>
+ <ol>
+ <xsl:apply-templates select="listitem |comment()[preceding-sibling::listitem] |processing-instruction()[preceding-sibling::listitem]"/>
+ </ol>
+ </div>
+</xsl:template>
+
+<!--
+From: xhtml/lists.xsl
+Reason: Remove invalid type, start & compact attributes from ol
+Version: 1.72.0
+-->
+<xsl:template match="procedure">
+ <xsl:variable name="param.placement" select="substring-after(normalize-space($formal.title.placement), concat(local-name(.), ' '))"/>
+
+ <xsl:variable name="placement">
+ <xsl:choose>
+ <xsl:when test="contains($param.placement, ' ')">
+ <xsl:value-of select="substring-before($param.placement, ' ')"/>
+ </xsl:when>
+ <xsl:when test="$param.placement = ''">before</xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$param.placement"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+
+<!-- Preserve order of PIs and comments -->
+ <xsl:variable name="preamble" select="*[not(self::step or self::title or self::titleabbrev)] |comment()[not(preceding-sibling::step)] |processing-instruction()[not(preceding-sibling::step)]"/>
+ <div xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:apply-templates select="." mode="class.attribute"/>
+ <xsl:call-template name="anchor">
+ <xsl:with-param name="conditional">
+ <xsl:choose>
+ <xsl:when test="title">0</xsl:when>
+ <xsl:otherwise>1</xsl:otherwise>
+ </xsl:choose>
+ </xsl:with-param>
+ </xsl:call-template>
+ <xsl:if test="title and $placement = 'before'">
+ <xsl:call-template name="formal.object.heading"/>
+ </xsl:if>
+ <xsl:apply-templates select="$preamble"/>
+ <xsl:choose>
+ <xsl:when test="count(step) = 1">
+ <ul>
+ <xsl:apply-templates select="step |comment()[preceding-sibling::step] |processing-instruction()[preceding-sibling::step]"/>
+ </ul>
+ </xsl:when>
+ <xsl:otherwise>
+ <ol>
+ <xsl:attribute name="class">
+ <xsl:value-of select="substring($procedure.step.numeration.formats,1,1)"/>
+ </xsl:attribute>
+ <xsl:apply-templates select="step |comment()[preceding-sibling::step] |processing-instruction()[preceding-sibling::step]"/>
+ </ol>
+ </xsl:otherwise>
+ </xsl:choose>
+ <xsl:if test="title and $placement != 'before'">
+ <xsl:call-template name="formal.object.heading"/>
+ </xsl:if>
+ </div>
+</xsl:template>
+
+<!--
+From: xhtml/graphics.xsl
+Reason: Remove html markup (align)
+Version: 1.72.0
+-->
+<xsl:template name="longdesc.link">
+ <xsl:param name="longdesc.uri" select="''"/>
+
+ <xsl:variable name="this.uri">
+ <xsl:call-template name="make-relative-filename">
+ <xsl:with-param name="base.dir" select="$base.dir"/>
+ <xsl:with-param name="base.name">
+ <xsl:call-template name="href.target.uri"/>
+ </xsl:with-param>
+ </xsl:call-template>
+ </xsl:variable>
+ <xsl:variable name="href.to">
+ <xsl:call-template name="trim.common.uri.paths">
+ <xsl:with-param name="uriA" select="$longdesc.uri"/>
+ <xsl:with-param name="uriB" select="$this.uri"/>
+ <xsl:with-param name="return" select="'A'"/>
+ </xsl:call-template>
+ </xsl:variable>
+ <div xmlns="http://www.w3.org/1999/xhtml" class="longdesc-link">
+ <br/>
+ <span class="longdesc-link">
+ <xsl:text>[</xsl:text>
+ <a href="{$href.to}">D</a>
+ <xsl:text>]</xsl:text>
+ </span>
+ </div>
+</xsl:template>
+
+<!--
+From: xhtml/docbook.xsl
+Reason: Remove inline style for draft mode
+Version: 1.72.0
+-->
+<xsl:template name="head.content">
+ <xsl:param name="node" select="."/>
+ <xsl:param name="title">
+ <xsl:apply-templates select="$node" mode="object.title.markup.textonly"/>
+ </xsl:param>
+
+ <title xmlns="http://www.w3.org/1999/xhtml" >
+ <xsl:copy-of select="$title"/>
+ </title>
+
+ <xsl:if test="$html.stylesheet != ''">
+ <xsl:call-template name="output.html.stylesheets">
+ <xsl:with-param name="stylesheets" select="normalize-space($html.stylesheet)"/>
+ </xsl:call-template>
+ </xsl:if>
+
+ <xsl:if test="$link.mailto.url != ''">
+ <link rev="made" href="{$link.mailto.url}"/>
+ </xsl:if>
+
+ <xsl:if test="$html.base != ''">
+ <base href="{$html.base}"/>
+ </xsl:if>
+
+ <meta xmlns="http://www.w3.org/1999/xhtml" name="generator" content="DocBook {$DistroTitle} V{$VERSION}"/>
+
+ <xsl:if test="$generate.meta.abstract != 0">
+ <xsl:variable name="info" select="(articleinfo |bookinfo |prefaceinfo |chapterinfo |appendixinfo |sectioninfo |sect1info |sect2info |sect3info |sect4info |sect5info |referenceinfo |refentryinfo |partinfo |info |docinfo)[1]"/>
+ <xsl:if test="$info and $info/abstract">
+ <meta xmlns="http://www.w3.org/1999/xhtml" name="description">
+ <xsl:attribute name="content">
+ <xsl:for-each select="$info/abstract[1]/*">
+ <xsl:value-of select="normalize-space(.)"/>
+ <xsl:if test="position() < last()">
+ <xsl:text> </xsl:text>
+ </xsl:if>
+ </xsl:for-each>
+ </xsl:attribute>
+ </meta>
+ </xsl:if>
+ </xsl:if>
+
+ <xsl:apply-templates select="." mode="head.keywords.content"/>
+</xsl:template>
+
+<!--
+From: xhtml/docbook.xsl
+Reason: Add css class for draft mode
+Version: 1.72.0
+-->
+<xsl:template name="body.attributes">
+ <xsl:if test="($draft.mode = 'yes' or ($draft.mode = 'maybe' and ancestor-or-self::*[@status][1]/@status = 'draft'))">
+ <xsl:attribute name="class">
+ <xsl:value-of select="ancestor-or-self::*[@status][1]/@status"/>
+ </xsl:attribute>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: xhtml/docbook.xsl
+Reason: Add confidential to footer
+Version: 1.72.0
+-->
+<xsl:template name="user.footer.content">
+ <xsl:param name="node" select="."/>
+ <xsl:if test="$confidential = '1'">
+ <h1 xmlns="http://www.w3.org/1999/xhtml" class="confidential">
+ <xsl:text>Red Hat Confidential!</xsl:text>
+ </h1>
+ </xsl:if>
+</xsl:template>
+
+<!--
+From: xhtml/block.xsl
+Reason: default class (otherwise) to formalpara
+Version: 1.72.0
+-->
+<xsl:template match="formalpara">
+ <xsl:call-template name="paragraph">
+ <xsl:with-param name="class">
+ <xsl:choose>
+ <xsl:when test="@role and $para.propagates.style != 0">
+ <xsl:value-of select="@role"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>formalpara</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:with-param>
+ <xsl:with-param name="content">
+ <xsl:call-template name="anchor"/>
+ <xsl:apply-templates/>
+ </xsl:with-param>
+ </xsl:call-template>
+</xsl:template>
+
+<!--
+From: xhtml/block.xsl
+Reason: h5 instead of <b>, remove default title end punctuation
+Version: 1.72.0
+-->
+<xsl:template match="formalpara/title|formalpara/info/title">
+ <xsl:variable name="titleStr">
+ <xsl:apply-templates/>
+ </xsl:variable>
+ <h5 xmlns="http://www.w3.org/1999/xhtml" class="formalpara">
+ <xsl:copy-of select="$titleStr"/>
+ </h5>
+</xsl:template>
+
+</xsl:stylesheet>
Modified: trunk/documentation/jbosstools-documentation/pom.xml
===================================================================
--- trunk/documentation/jbosstools-documentation/pom.xml 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-documentation/pom.xml 2008-02-19 15:16:27 UTC (rev 6431)
@@ -73,22 +73,22 @@
<formats>
<format>
<formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/fopdf.xsl</stylesheetResource>
+ <stylesheetResource>classpath:/xslt/org/jboss/main-pdf.xsl</stylesheetResource>
<finalName>${pom.name}.pdf</finalName>
</format>
<format>
<formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/html_chunk.xsl</stylesheetResource>
+ <stylesheetResource>classpath:/xslt/org/jboss/main-html.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
<format>
<formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/html.xsl</stylesheetResource>
+ <stylesheetResource>classpath:/xslt/org/jboss/nochunk-html.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
<format>
<formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <stylesheetResource>classpath:/xslt/org/jboss/main-eclipse.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
</formats>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/dirty.css
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/dirty.css (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/dirty.css 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,3 @@
+pre{-moz-border-radius:11px;}
+
+/*div.note,div.tip ,div.important ,div.caution ,div.warning{-moz-border-radius:11px;}*/
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/docnav.css
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/docnav.css (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/docnav.css 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,53 @@
+/*document navigation*/
+.docnav a, .docnav strong{text-decoration:none;font-weight:normal;}
+.docnav{list-style:none;margin:0em;padding:0em;position:relative;width:100%;padding-bottom:2em;padding-top:1em;border-top:1px dotted #ccc;}
+.docnav li{list-style:none;margin:0em;padding:0em;display:inline;font-size:.8em;}
+.docnav li:before{content:" ";}
+.docnav li.previous, .docnav li.next{position:absolute;top:1em;}
+.docnav li.up, .docnav li.home{margin:0em 1.5em;}
+.docnav li.previous{left:0px;text-align:left;}
+.docnav li.next{right:0px;text-align:right;}
+.docnav li.previous strong, .docnav li.next strong{display:block;height:22px;}
+.docnav{margin:0 auto;text-align:center;}
+.docnav li.next a strong{background: url(../images/stock-go-forward.png) top right no-repeat;padding-top:10px; padding-bottom: 15px; height:40px; padding-right:60px;font-size:1.2em;}
+.docnav li.previous a strong{background: url(../images/stock-go-back.png) top left no-repeat;padding-top:10px; padding-bottom: 15px; height:40px; padding-left:60px;font-size:1.2em;}
+.docnav li.home a strong{background: url(../images/stock-home.png) top left no-repeat;padding-top:10px; padding-bottom: 15px;height:40px; padding-left:60px;font-size:1.2em;}
+.docnav li.up a strong{background: url(../images/stock-go-up.png) top left no-repeat;padding-top:10px; padding-bottom: 15px;height:40px; padding-left:60px;font-size:1.2em;}
+
+.docnav a:link, .docnav a:visited {color:#666 !important;}
+.docnav a:hover,.docnav a:focus, .docnav a:active{color:black !important;}
+.docnav a{max-width: 10em;overflow:hidden;}
+.docnav a:link strong{text-decoration:none;}
+
+.docnav{margin:0 auto;text-align:center;}
+
+.docnav { margin-bottom:16px;}
+
+/* Eclipse Help Navigation */
+
+.navheader {padding-top: 35px}
+
+.navheader table {border-style:none}
+.navheader a {text-decoration:none;font-weight:normal;font-size:.8em;}
+
+.navheader td.next a {background: url(../images/stock-go-forward.png) top right no-repeat;padding-top:10px; padding-bottom: 15px; height:40px; padding-right:60px;font-size:0.9em;}
+.navheader td.previous a {background: url(../images/stock-go-back.png) top left no-repeat;padding-top:10px; padding-bottom: 15px; height:40px; padding-left:60px;font-size:0.9em;}
+
+.navheader a:link, .navheader a:visited {color:#666 !important;}
+.navheader a:hover,.navheader a:focus, .navheader a:active{color:black !important;}
+.navheader a{max-width: 10em;overflow:hidden;}
+.navheader a:link {text-decoration:none;}
+
+.navfooter table {border-style:none}
+.navfooter a {text-decoration:none;font-weight:normal;font-size:.8em;}
+
+.navfooter td.next a {background: url(../images/stock-go-forward.png) top right no-repeat;padding-top:10px; padding-bottom: 15px; height:40px; padding-right:60px;font-size:0.9em;}
+.navfooter td.previous a {background: url(../images/stock-go-back.png) top left no-repeat;padding-top:10px; padding-bottom: 15px; height:40px; padding-left:60px;font-size:0.9em;}
+.navfooter td.home a {background: url(../images/stock-home.png) top left no-repeat;padding-top:10px; padding-bottom: 15px;height:40px; padding-left:60px;font-size:0.9em;}
+.navfooter td.up a {background: url(../images/stock-go-up.png) top left no-repeat;padding-top:10px; padding-bottom: 15px;height:40px; padding-left:60px;font-size:0.9em;}
+
+
+.navfooter a:link, .navfooter a:visited {color:#666 !important;}
+.navfooter a:hover,.navfooter a:focus, .navfooter a:active{color:black !important;}
+.navfooter a{max-width: 10em;overflow:hidden;}
+.navfooter a:link {text-decoration:none;}
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/documentation.css
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/documentation.css (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/documentation.css 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,209 @@
+
+
+
+/*Lists*/
+ol li ,ul li{padding-left:.2em;padding-bottom:.5em;margin:0em;}
+
+ul{padding-left:1.6em;list-style-image:url(../images/dot.png);list-style-type: circle;}
+ul ul{list-style-image:url(../images/dot2.png);list-style-type: circle;}
+dt {font-weight:bold;margin-bottom:0em;padding-bottom:0em;}
+dd{margin:0em;margin-left:2em;padding-top:0em;}
+li p:first-child, dd p:first-child{padding:0em;margin-top:.3em;}
+.variablelist,.itemizedlist{margin-top:.6em;}
+ul li p:first-child{margin:0em;}
+/*images*/
+img{display:block;margin:2em 0;}
+.inlinemediaobject,.inlinemediaobject img{display:inline !important;margin:0em;}
+
+/*document modes*/
+.confidential{background-color:#900; color:White; padding:.5em .5em; font-family:serif; text-transform:uppercase; text-align:center}
+
+dt a{font-weight: normal;}
+.longdesc-link{display:none;}
+.prompt{background-color:#ede7c8;padding:0em .3em;}
+
+/*user interface styles*/
+.screen .replaceable {color:#444;}
+.screen{background-color:#ede7c8;color:#333;padding:.5em 1em;margin:0em;}
+pre,code,.guibutton,.keycap,.guilabel{font-size:0.9em;font-family:"liberation mono", "Bitstream vera mono",monospace;}
+.guibutton,.keycap,.guilabel{font-weight:bold;white-space:nowrap;color:#444;font-family:'Lucida Grande', Geneva, Verdana, Arial, sans-serif;}
+.guibutton,.guilabel{}
+.keycap{padding: .1em .4em;}
+.example {background-color:#c8c5ac; padding:5px; margin-bottom:10px;}
+
+
+/*terminal/console text*/
+.command,
+.computeroutput,
+.filename,
+.citetitle,
+.replaceable,
+.option{font-weight:bold;}
+.command .replaceable{color:#555;}
+pre{display:block; background-color:#f9f3b0; color:#333; overflow:auto; padding: 10px 20px; }
+code{white-space:nowrap;}
+
+/*Notifications*/
+div.note,div.tip ,div.important ,div.caution ,div.warning{
+ background: #849092; color:white;padding:1em;padding-bottom:20px;border:1px solid #8a9195;margin-bottom:1.5em;background-repeat:no-repeat; background-position:10px 10px;
+}
+
+div.note pre,div.tip pre ,div.important pre ,div.caution pre ,div.warning pre {background-color:#d6dee0; color:#334558; border: 1px solid #e1e9eb;}
+div.note,div.tip ,div.important ,div.caution ,div.warning {margin-top:.5em;}
+div.note {background-image:url(../images/note.png);}
+div.tip {background-image:url(../images/tip.png);}
+div.important {background-image:url(../images/important.png);}
+div.caution {background-image:url(../images/caution.png);}
+div.warning {background-image:url(../images/warning.png);}
+div.note .replaceable,div.tip .replaceable,div.important .replaceable,div.caution .replaceable,div.warning .replaceable{
+ color:#e3dcc0;
+ }
+
+pre .replaceable, tt .replaceable{
+ color:#444 !important;
+ }
+div.note h2,div.tip h2,div.important h2,div.caution h2,div.warning h2{height:32px;font-size:1.3em;color:white;}
+
+div.note .guilabel,div.tip .guilabel,div.important .guilabel,div.caution .guilabel,div.warning .guilabel{color:white !important;}
+/*
+div.note h2,div.tip h2,div.important h2,div.caution h2,div.warning h2{
+ background-color:transparent;background-position:top left;background-repeat:no-repeat;height:48px;font-size:1.3em;color:#ede7c8;
+ }
+ */
+
+div.note li,div.tip li,div.caution li,div.warning li,div.important li{
+ padding-left:10px;margin:0em;
+ }
+
+div.note ul,div.tip ul,div.caution ul,div.warning ul,div.important ul{
+ padding-left:40px;margin:0em;
+ }
+
+div.note pre pre a:visited,div.tip pre pre a:visited,div.important pre pre a:visited,
+div.caution pre pre a:visited,div.warning pre pre a:visited,div.note pre a:link,
+.tip pre a:link,div.important pre a:link,div.caution pre a:link,div.warning pre a:link{
+ color:#0066cc !important;
+ }
+
+div.note a:visited,div.tip a:visited ,div.important a:visited ,div.caution a:visited ,
+div.warning a:visited,div.note a:link ,div.tip a:link ,div.important a:link ,div.caution a:link ,div.warning a:link{
+ color:#f7f2d0;
+ }
+
+/*notification icons*/
+div.note h2,div.note p,div.tip h2,div.tip p,div.caution h2,div.caution p,div.warning h2,div.warning p,div.important h2,.important p {padding:0em;margin:0em;padding-left:56px;}
+/*div.note h2{background-image:url(../images/note.png)}
+div.tip h2{background-image:url(../images/tip.png)}
+div.caution h2{background-image:url(../images/caution.png)}
+div.warning h2{background-image:url(../images/warning.png)}
+div.important h2{background-image:url(../images/important.png)}
+*/
+/*Page Title*/
+#title {padding:0px; margin: 0px;}
+#title strong{display:none;}
+#title a.jbossOrg_href{display:block;height:89px;width:310px;float:left; background: url(../images/jbossorglogo.png) top left no-repeat;}
+#title a.commDoc_href{display:block;height:89px;background:transparent url(../images/community_doc.png) top right no-repeat;}
+
+/*Table*/
+table{border:1px solid #aaa;width:100%;border-collapse:collapse;}
+table th{text-align:left;background-color:#4A5D75;padding:.3em .5em;color:white;}
+table td{padding:.15em .5em;}
+table tr.even td{background-color:#f5f5f5;}
+table th p:first-child,table td p:first-child,table li p:first-child{margin-top:0em;padding-top:0em;display:inline;}
+
+th, td{border-style:none;;}
+table table td{border-bottom:1px dotted #aaa !important;background-color:white;padding:.6em 0em;}
+table table{border:1px solid white !important;font-size:.9em;}
+
+
+td.remarkval{font-size:.9em;color:#444;}
+.defaultval{font-size:.8em}
+td.typeval{font-size:.8em}
+
+td.fieldval{font-weight:bold; font-size:.9em;}
+
+th.dbkey{font-size:.9em;}
+
+.lbname,.lbtype,.lbdescr,.lbdriver,.lbhost{color:white;font-weight:bold;background-color:#999;font-size:0.9em;width:120px;}
+td.remarkval{width:230px;}
+
+td.tname{font-weight:bold;font-size:1.1em;}
+h5{font-size:9pt;}
+h6{font-size:10pt;}
+th.dbfield{width:120px;}
+th.dbtype{width:70px;}
+th.dbdefault{width:70px;}
+th.dbnul{width:70px;}
+th.dbkey{width:70px;}
+
+span.book{margin-top:4em;display:block;}
+span.chapter{display:block;margin-top:0.5em;}
+
+/*Breadcrumbs*/
+#breadcrumbs ul li.first:before{content:" ";}
+#breadcrumbs{color:#900;padding:3px;margin-bottom:25px;}
+#breadcrumbs ul{margin-left:0;padding-left:0;display:inline;border:none;}
+#breadcrumbs ul li{margin-left:0;padding-left:2px;border:none;list-style:none;display:inline;}
+#breadcrumbs ul li:before{content:"\0020 \0020 \0020 \00BB \0020";color:#333;}
+
+/*status*/
+.alpha1{background: white url(../images/watermark-alpha1.png) top left repeat;}
+.alpha2{background: white url(../images/watermark-alpha2.png) top left repeat;}
+.beta1{background: white url(../images/watermark-beta1.png) top left repeat;}
+.beta2{background: white url(../images/watermark-beta2.png) top left repeat;}
+.pre-release-candidate{background: white url(../images/watermark-pre-release-candidate.png) top left repeat;}
+.release-candidate{background: white url(../images/watermark-release-candidate.png) top left repeat;}
+
+/*index*/
+.glossary h3,
+.index h3{font-size: 2em;color:#aaa;margin:0em;}
+.indexdiv{margin-bottom:1em;}
+.glossary dt,.index dt{font-size:.9em;color:#444;padding-top:.5em;}
+.glossary dl dl dt,
+.index dl dl dt{font-size:.85em;color:#777;line-height:1.2em;font-weight:normal;padding-top:0em;}
+.index dl dl dt:before{content:"- ";color:#ccc;}
+
+/*changes*/
+.footnotes{}
+.footnote {padding:.2em 1em;background-color:#c8c5ac;font-size: .9em;margin:0em;margin-bottom:.5em;color:#222;}
+table .footnote{margin:1em .5em;}
+sup{padding:0em .3em;padding-left:0em;}
+.footnote{position:relative;}
+.footnote sup {color:#e3dcc0;font-size:1.8em;position:absolute;left: .4em;}
+.footnote sup a:link,
+.footnote sup a:visited{color:#92917d;text-decoration:none;}
+.footnote:hover sup a{color:#fff;text-decoration:none;}
+.footnote p{padding-left:5em;}
+.footnote a:link,
+.footnote a:visited{color:#00537c;}
+.footnote a:hover{color:white;}
+
+li p:first-child{margin:0em !important; padding:0em !important;}
+
+/**/
+div.chapter, div.section {padding-top:2em;}
+
+.revhistory{font-size:}
+
+pre .replaceable,
+pre .keycap{color:white;}
+pre{font-family:"liberation mono", "bitstream vera mono", "dejavu mono" monospace;}
+
+div.note .replaceable,
+div.tip .replaceable,
+div.important .replaceable,
+div.caution .replaceable,
+div.warning .replaceable,
+div.note .keycap,
+div.tip .keycap,
+div.important .keycap,
+div.caution .keycap,
+div.warning .keycap,
+{color:white;}
+div.abstract{font-size:larger;}
+
+.authorgroup {}
+.authorgroup h4{padding:0em; margin:0em;margin-top:1em;}
+.author, .editor, .translator, .othercredit{display:block;}
+
+ul li p:last-child{margin-bottom:0em; padding-bottom:0em;}
Deleted: trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/html.css
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/html.css 2008-02-19 15:02:35 UTC (rev 6430)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/html.css 2008-02-19 15:16:27 UTC (rev 6431)
@@ -1,409 +0,0 @@
-* {
- LINE-HEIGHT: 20px; FONT-FAMILY: verdana, helvetica, sans-serif
-}
-DIV.navheader TABLE, DIV.navheader TABLE td, DIV.navfooter TABLE, DIV.navfooter TABLE td{
- BORDER-RIGHT: 0px; BORDER-TOP: 0px; MARGIN: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px; FONT-SIZE: 11px; padding : 0px;
-}
-A {
- COLOR: #2a7bd4; FONT-FAMILY: verdana, helvetica, sans-serif
-}
-A:hover {
- COLOR: #003399; FONT-FAMILY: verdana, helvetica, sans-serif
-}
-A:visited {
- COLOR: #888888; FONT-FAMILY: verdana, helvetica, sans-serif
-}
-P {
- FONT-SIZE: 12px; COLOR: #000000; margin : 5px 0px 5px 0px;
-}
-OL {
- FONT-SIZE: 12px; COLOR: #000000; margin-top : 5px; margin-bottom : 5px;
-}
-UL {
- FONT-SIZE: 12px; COLOR: #000000; margin-top : 5px; margin-bottom : 5px;
-}
-LI {
- FONT-SIZE: 12px; COLOR: #000000; margin-top : 5px; margin-bottom : 5px;
-}
-DL {
- FONT-SIZE: 12px; COLOR: #000000; margin-top : 5px; margin-bottom : 5px;
-}
-DT {
- FONT-SIZE: 12px; COLOR: #000000; margin-top : 5px; margin-bottom : 5px;
-}
-DD {
- FONT-SIZE: 12px; COLOR: #000000; margin-top : 5px; margin-bottom : 5px;
-}
-BLOCKQUOTE {
- FONT-SIZE: 12px; COLOR: #000000
-}
-TD {
- COLOR: #000000
-}
-TH {
- COLOR: #000000
-}
-SPAN {
- COLOR: #000000
-}
-SPAN.property {
- COLOR: #008cca;
-}
-SPAN.italic {
- FONT-STYLE: italic;
-}
-
-BLOCKQUOTE {
- MARGIN-RIGHT: 0px
-}
-
-P.title {
- MARGIN-BOTTOM: 5px;
- MARGIN-top: 20px;
-}
-
-div.book div.chapter .title {
- text-align: left;
-}
-
-
-div.book .title {
- text-align: center;
-}
-
-div.book .subtitle {
- text-align: center;
-}
-
-.mediaobject{
- padding : 5px 10px 5px 35px;
-}
-H1 {
- MARGIN: 0px; FONT-SIZE: 22px; COLOR: #ff6600; PADDING: 45px 0px 10px 0px;
-}
-H2 {
- MARGIN: 0px; FONT-SIZE: 18px; COLOR: #2a7bd4; PADDING: 25px 0px 10px 0px;
-}
-H3 {
- MARGIN: 0px; FONT-SIZE: 15px; COLOR: #000000; PADDING: 20px 0px 10px 0px;
-}
-H4 {
- MARGIN: 0px; FONT-SIZE: 12px; COLOR: #000000; PADDING: 15px 0px 10px 0px;
-}
-H5 {
- MARGIN: 0px; FONT-SIZE: 12px; COLOR: #000000; PADDING: 15px 0px 10px 0px;
-}
-H6 {
- MARGIN: 0px; FONT-SIZE: 11px; COLOR: #000000; PADDING: 5px 0px 0px 0px;
-}
-
-div.book div.section div.mediaobject{
-text-align:left;
-}
-
-
-div.book div.mediaobject{
-text-align:center;
-}
-
-div.mediaobject, div.mediaobject img *{
-text-align:left;
-
-}
-
-DIV.note{
- BORDER: #CECECE 1px solid; PADDING: 3px 10px 10px 50px; line-height : 14px; MARGIN: 10px 0px 10px 0px; FONT-SIZE: 11px; WIDTH: 500px; BACKGROUND-COLOR: #FFFDD3;
- background-image : url('images/ico_note.gif'); background-repeat : no-repeat; background-position :top left;
-}
-
-DIV.note *{
- line-height : 14px;
-}
-
-.note P {
- MARGIN-TOP: 0px; MARGIN-BOTTOM: 1em; PADDING-BOTTOM: 0px; PADDING-TOP: 0px
-}
-.important P {
- MARGIN-TOP: 0px; MARGIN-BOTTOM: 1em; PADDING-BOTTOM: 0px; PADDING-TOP: 0px
-}
-DIV.important {
- BORDER: #CECECE 1px solid; PADDING: 3px 10px 10px 50px; line-height : 14px; MARGIN: 10px 0px 10px 0px; FONT-SIZE: 11px; WIDTH: 500px; BACKGROUND-COLOR: #fee3d9;
- background-image : url('images/ico_important.gif'); background-repeat : no-repeat; background-position :top left;
-}
-
-DIV.important *{
- line-height : 14px;
-}
-
-.important pre.XML {
-PADDING: 1px 1px 1px 10px;
-
-}
-
-DIV.tip {
- BORDER: #CECECE 1px solid; PADDING: 3px 10px 10px 50px; line-height : 14px; MARGIN: 10px 0px 10px 0px; FONT-SIZE: 11px; WIDTH: 500px; BACKGROUND-COLOR: #CFE3FF; background-repeat : no-repeat; background-position :top left; background-image : url('images/ico_tip.gif');
-}
-
-DIV.tip *{
- line-height : 14px;
-}
-
-.tip pre.XML {
-PADDING: 1px 1px 1px 10px;
-
-}
-
-TABLE {
- BORDER: #cccccc 1px solid; FONT-SIZE: 11px; BORDER-COLLAPSE: collapse; border-spacing: 0; empty-cells: hide; margin-bottom : 10px;
-}
-
-table *{
- line-height : 14px;
-}
-
-
-.table TH {
- WHITE-SPACE: nowrap; BACKGROUND-COLOR: #EEF5FF; TEXT-ALIGN: center; BORDER-BOTTOM: #CAE1FF 2px solid; PADDING: 2px 8px 2px 8px;
- background-image : url('images/bg_table.gif'); background-repeat : repeat-x; background-position :top left;
-}
-TD {
- PADDING: 4px 8px 4px 8px; BORDER-BOTTOM: #cccccc 1px dotted; BORDER-right: #cccccc 1px dotted;
-}
-P.copyright {
- TEXT-ALIGN: center
-}
-TT {
- FONT-SIZE: 90%; COLOR: #000000; FONT-FAMILY: "Courier New", Courier, monospace
-}
-DL {
- MARGIN-BOTTOM: 6px; MARGIN-LEFT: 8px
-}
-DT {
- MARGIN-BOTTOM: 6px; MARGIN-LEFT: 8px
-}
-DD {
- MARGIN-BOTTOM: 6px; MARGIN-LEFT: 8px
-}
-PRE {
- BORDER: #cccccc 1px solid; PADDING: 5px 15px 5px 25px; FONT-SIZE: 11px; BACKGROUND-COLOR: #f5f5f5;
-}
-HR {
- BORDER-TOP-WIDTH: 0px; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; PADDING-BOTTOM: 0px; WIDTH: 100%; COLOR: #cccccc; PADDING-TOP: 0px; HEIGHT: 1px; BACKGROUND-COLOR: #cccccc; BORDER-RIGHT-WIDTH: 0px
-}
-.variablelist {
- PADDING-BOTTOM: 10px; MARGIN: 0px; PADDING-TOP: 10px
-}
-.itemizedlist {
- FONT-SIZE: 12px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px;TEXT-ALIGN: justify
-}
-.term {
- FONT-WEIGHT: bold
-}
-PRE.JAVA {
- LINE-HEIGHT: 0px
-}
-PRE.XML {
- LINE-HEIGHT: 0px
-}
-PRE.JSP {
- LINE-HEIGHT: 0px
-}
-PRE.XHTML {
- LINE-HEIGHT: 0px
-}
-.java_type {
- COLOR: #008cca
-}
-.java_keyword {
- FONT-WEIGHT: bold; COLOR: rgb(0,0,0)
-}
-.java_javadoc_comment {
- COLOR: rgb(147,147,147); FONT-STYLE: italic; BACKGROUND-COLOR: rgb(247,247,247)
-}
-.java_comment {
- COLOR: rgb(147,147,147); BACKGROUND-COLOR: rgb(247,247,247)
-}
-.java_operator {
- COLOR: #003399
-}
-.java_plain {
- COLOR: rgb(0,0,0)
-}
-.java_literal {
- COLOR: #ff6600
-}
-PRE CODE {
- FONT-SIZE: 12px; COLOR: rgb(0,0,0); FONT-FAMILY: monospace; WHITE-SPACE: nowrap
-}
-.java_javadoc_tag {
- FONT-WEIGHT: bold; COLOR: rgb(147,147,147); FONT-STYLE: italic; BACKGROUND-COLOR: rgb(247,247,247)
-}
-.java_separator {
- COLOR: #008cca
-}
-.xml_plain {
- COLOR: rgb(0,0,0)
-}
-.xml_tag_name {
- COLOR: #008cca
-}
-.xml_comment {
- COLOR: rgb(147,147,147); BACKGROUND-COLOR: rgb(247,247,247)
-}
-.xml_tag_symbols {
- COLOR: #008cca
-}
-.xml_rife_tag {
- COLOR: rgb(0,0,0); BACKGROUND-COLOR: rgb(228,230,160)
-}
-.xml_attribute_value {
- COLOR: #ff6600
-}
-.xml_attribute_name {
- FONT-WEIGHT: bold; COLOR: rgb(0,0,0)
-}
-.xml_char_data {
- COLOR: rgb(0,0,0)
-}
-.xml_rife_name {
- COLOR: #008cca; BACKGROUND-COLOR: rgb(228,230,160)
-}
-.xml_processing_instruction {
- FONT-WEIGHT: bold; COLOR: rgb(0,0,0); FONT-STYLE: italic
-}
-TD.java {
- VERTICAL-ALIGN: top; LINE-HEIGHT: 10px
-}
-TD.java-ln {
- VERTICAL-ALIGN: top; LINE-HEIGHT: 10px
-}
-TT.java {
- MARGIN-BOTTOM: 0em; LINE-HEIGHT: 10px
-}
-TT.java-ln {
- MARGIN-BOTTOM: 0em; LINE-HEIGHT: 10px
-}
-PRE.java {
- MARGIN-BOTTOM: 0em; LINE-HEIGHT: 10px
-}
-PRE.java-ln {
- MARGIN-BOTTOM: 0em; LINE-HEIGHT: 10px
-}
-TD.java-ln {
- LINE-HEIGHT: 10px; TEXT-ALIGN: right
-}
-TT.java-ln {
- COLOR: #888888; LINE-HEIGHT: 10px
-}
-PRE.java-ln {
- COLOR: #888888; LINE-HEIGHT: 10px
-}
-SPAN.java0 {
- FONT-SIZE: 8pt; COLOR: #ffffff; LINE-HEIGHT: 10px
-}
-SPAN.java1 {
- FONT-SIZE: 8pt; COLOR: #808080
-}
-SPAN.java2 {
- FONT-SIZE: 8pt; COLOR: #3f7f5f; LINE-HEIGHT: 10px
-}
-SPAN.java3 {
- FONT-SIZE: 8pt; COLOR: #3f7f5f; LINE-HEIGHT: 10px
-}
-SPAN.java4 {
- FONT-WEIGHT: bold; FONT-SIZE: 8pt; COLOR: #ff6600; LINE-HEIGHT: 10px
-}
-SPAN.java5 {
- FONT-SIZE: 8pt; COLOR: #2a00ff; LINE-HEIGHT: 10px
-}
-SPAN.java6 {
- FONT-SIZE: 8pt; COLOR: #990000; LINE-HEIGHT: 10px
-}
-SPAN.java7 {
- FONT-SIZE: 8pt; COLOR: #990000; LINE-HEIGHT: 10px
-}
-SPAN.java8 {
- FONT-SIZE: 8pt; COLOR: #000000; LINE-HEIGHT: 10px
-}
-SPAN.java9 {
- FONT-WEIGHT: bold; FONT-SIZE: 8pt; COLOR: #ff6600; LINE-HEIGHT: 10px
-}
-SPAN.java10 {
- FONT-SIZE: 8pt; COLOR: #000000; LINE-HEIGHT: 10px
-}
-SPAN.java11 {
- FONT-SIZE: 8pt; COLOR: #7f9fbf; LINE-HEIGHT: 10px
-}
-SPAN.java12 {
- FONT-SIZE: 8pt; COLOR: #7f7f9f; LINE-HEIGHT: 10px
-}
-SPAN.java13 {
- FONT-SIZE: 8pt; COLOR: #3f3fbf; LINE-HEIGHT: 10px
-}
-SPAN.java14 {
- FONT-SIZE: 8pt; COLOR: #3f5fbf; LINE-HEIGHT: 10px
-}
-SPAN.java15 {
- FONT-SIZE: 8pt; COLOR: #ff6100; LINE-HEIGHT: 10px
-}
-SPAN.java16 {
- FONT-SIZE: 8pt; COLOR: #646464; LINE-HEIGHT: 10px
-}
-
-.expand_collapse_toc {
- clear:both;
- float:left;
- font-family:monospace;
- width:20px;
- color: #2A7BD4;
- cursor: pointer;
-}
-
-pre.CSS, pre.css {
- line-height:0px;
- margin-bottom:0em;
-}
-.css_normal {
- line-height:0px;
- color:#000000;
-}
-.css_colon {
-color:#000000;
-}
-.css_semi_colon {
-color:#000000;
-}
-.css_curly_brace {
-color:#000000;
-}
-.css_comment {
-color:#939393;
-}
-.css_error {
-color:#BF3F3F;
-}
-.css_selector {
-color:#008cca;
-}
-.css_null {
-color:#008cca;
-}
-.css_property_name {
-color:#000000;
-font-weight:bold;
-}
-.css_property_value {
-color:#ff6600;
-}
-.css_uri {
-color:#2A00FF;
-}
-.css_atmark_rule {
-color:#3F7F7F;
-}
-.css_media {
-color:#336699;
-}
-.css_string {
-color:#336699;
-}
\ No newline at end of file
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/jbossorg.css
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/jbossorg.css (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/jbossorg.css 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,66 @@
+@import url(documentation.css);
+@import url(docnav.css);
+@import url(html/css/reports.css);
+
+@import url(html/css/dirty.css);
+
+body{
+ background-image:url(../images/bkg_gradient.gif);
+ background-repeat: repeat-x;
+ margin:0 auto;
+ font-family:'Lucida Grande', Geneva, Verdana, Arial, sans-serif;
+ font-size:12px;
+ max-width:55em;
+ padding:0em 2em;
+ color:#333;
+ line-height:150%;
+ }
+
+/*Links*/
+a:link{color:#0066cc;}
+a:visited{color:#6699cc;}
+div.longdesc-link{float:right;color:#999;}
+
+
+/*headings*/
+h1,h2,h3,h4,h5,h6{color:#4a5d75;
+ line-height:130%;
+ margin-top:0em;
+ font-family:'Lucida Grande', Geneva, Verdana, Arial, sans-serif;
+ background-color:transparent;
+ }
+
+h1{
+ /* background: #3B4E64 none repeat scroll 0% 50%; */
+ background-image:url(../images/title_hdr.png);
+ background-repeat:no-repeat;
+ border-top:1px dotted #CCCCCC;
+ line-height:1.2em;
+ color:#182737;
+ font-size:2em;
+ padding:1.5em;
+ }
+
+h2{font-size:1.6em;
+ }
+
+h3{font-size:1.3em;
+ padding-top:0em;
+ padding-bottom:0em;
+ }
+h4{font-size:1.1em;
+ padding-top:0em;
+ padding-bottom:0em;
+ }
+
+h5.formalpara {font-size:1em;
+ margin-top:2em;margin-bottom:.8em;
+ }
+
+
+/*element rules*/
+hr{border-collapse: collapse;border-style:none;border-top: 1px dotted #ccc;width:100% !important;}
+sup{color:#999;}
+
+/*supporting stylesheets*/
+
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/reports.css
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/reports.css (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/css/css/reports.css 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,55 @@
+
+/* Reports */
+.reports ul.locale{list-style:none;}
+.reports ul{padding:0em;margin:0em;}
+.reports ul.locale li{font-size:small;color:#000;display:block;border:1px solid #eee;float:left;padding-right:2em;margin-right:1em;margin-bottom:1em;}
+.reports ul.locale li a{font-size:1.2em;display:block;padding-top:.1em;padding-bottom:.5em;}
+.reports ul.locale strong{display:block;margin:0em;padding:0em;margin-bottom:-2.2em;}
+.reports ul.locale span.value{display:block;position:relative;text-align:right;margin-right:-1.5em;font-size:1.0em;color:#444;}
+.reports ul.locale li{width:12em;display:block;float:left;margin:0em;clear:none;}
+.reports ul.locale li div.progress{font-size:1em;width:13.2em;position:relative; left: 0em; top:0em; margin-bottom:0em;}
+.reports h2{font-size:1em;margin:0em;}
+.reports li{}
+.reports li:hover{background-color:#666;border-color:#444 !important;color:white !important;}
+.reports li:hover strong, .reports li:hover h2, .reports li:hover a, .reports li:hover span.value{color:white;}
+
+/*uniform*/
+body.results, body.reports{max-width:57em !important;padding:0em !important}
+/*Progress Bar*/
+div.progress{display:block;float:left;width:16em;background:#c00 url(../images/shine.png) top left repeat-x;height:1em;}
+div.progress span{height:1em; float:left;}
+div.progress span.translated{background:#6c3 url(../images/shine.png) top left repeat-x;}
+div.progress span.fuzzy{background:#ff9f00 url(../images/shine.png) top left repeat-x;}
+
+
+
+
+/*Results*/
+
+.results ul.locale{list-style:none;padding:0em;margin:0em;}
+.results .pofile{padding:0em !important;margin:0em;}
+.results ul.locale li{border-top:1px solid #eee;padding:0em; margin:0em;padding-left:32px;}
+.results ul.locale .pofile{font-size:1.2em;display:block;width:100%;color:#444;padding:0em;margin:0em;}
+.results span.value{color:#888;}
+.results strong{font-weight: normal;}
+.results .home a{display:block;margin:0 auto;width:5em;background: url(../images/stock-home.png) top left no-repeat;padding:5px;padding-left:28px;font-size:1.2em;}
+.results ul.locale li:hover, .results ul.locale li:hover span.pofile ,.results ul.locale li:hover strong, .results ul.locale li:hover span.value{background-color:#666 !important;color:white;}
+
+ul.locale{list-style:none;}
+ul.locale li.total{font-size:small;color:#777;width:31em;display:block;float:left;margin-right:2em;clear:none !important;}
+ul.locale li{clear:both;font-size:small;color:#777;display:block;}
+ul.locale strong, span.value {font-weight:normal;color:#888;font-size:.7em;}
+ul.locale li a{font-size:1.2em;display:block;padding-top:.2em;}
+ul.locale li.total div.progress{position:relative;left:0em;top:0em;margin-bottom:0em; }
+ul.locale li{width:100%;}
+ul.locale li div.progress{float:left;position:relative; left:30.5em; top:-2em; margin:0em;margin-bottom:-3em;}
+
+li.total{padding:0em !important;}
+li.total{float:right;max-width:16em;padding:.5em;margin:0 auto;padding-top: .5em;background-color:#f7f2d0;font-size: 1.3em !important;color:#ccc !important;margin-bottom:1em;min-height:9.5em;}
+li.total .value{color:#444;font-size:.8em;}
+li.total strong{display:block;color:black;font-weight:bold;}
+li.total span.value {position:relative;display:block;top:-1.25em;text-align:right;}
+
+
+.pofile{position:relative;}
+
Deleted: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/bg_table.gif
===================================================================
(Binary files differ)
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/bkg_gradient.gif
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/bkg_gradient.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/callout.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/callout.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/callout.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg viewBox="0 0 11 11" xmlns="http://www.w3.org/2000/svg" version="1.1">
+ <title>FDP Callout #FIXME</title>
+ <desc>The "FIXME" Callout.</desc>
+ <defs>
+ <filter id="MyFilter" filterUnits="userSpaceOnUse" x="0" y="0" width="11" height="11">
+ <feGaussianBlur in="SourceAlpha" stdDeviation="4" result="blur"/>
+ <feOffset dx="2" dy="2" height="7" in="blur" result="offsetBlur" width="7"/>
+ <feSpecularLighting in="blur" surfaceScale="1.3" specularConstant=".95"
+ specularExponent="20" lighting-color="rgb( 180, 180, 180 )"
+ result="specOut">
+ <fePointLight x="-5000" y="-10000" z="40000"/>
+ </feSpecularLighting>
+ <feComposite in="specOut" in2="SourceAlpha" operator="in" result="specOut"/>
+ <feComposite in="SourceGraphic" in2="specOut" operator="arithmetic"
+ k1="0" k2="1" k3="1" k4="0" result="litPaint"/>
+ <feMerge>
+ <feMergeNode in="offsetBlur"/>
+ <feMergeNode in="litPaint"/>
+ </feMerge>
+ </filter>
+ </defs>
+ <g filter="url( #MyFilter )">
+ <circle r="5" cx="5.5" cy="5.5" fill="rgb( 150, 50, 10 )" fill-opacity="0.8" stroke="rgb( 10, 10, 100 )" stroke-width="0.25"></circle>
+ <text fill="rgb( 255, 255, 10 )" fill-opacity="0.95" font-family="monospace sans" font-size="7" text-anchor="middle" x="5.25" y="7.9" stroke="none">FIXME</text>
+ </g>
+</svg>
+
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/caution.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/caution.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/caution.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/caution.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/caution.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48"
+ overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve">
+<linearGradient id="XMLID_3_" gradientUnits="userSpaceOnUse" x1="35.7529" y1="33.8691" x2="13.3137" y2="11.4299">
+ <stop offset="0.0169" style="stop-color:#4A5D75"/>
+ <stop offset="0.0488" style="stop-color:#42546B"/>
+ <stop offset="0.124" style="stop-color:#35465A"/>
+ <stop offset="0.2176" style="stop-color:#2B3C4F"/>
+ <stop offset="0.3489" style="stop-color:#263648"/>
+ <stop offset="0.7135" style="stop-color:#243446"/>
+ <stop offset="0.7671" style="stop-color:#27384A"/>
+ <stop offset="0.8176" style="stop-color:#324355"/>
+ <stop offset="0.8669" style="stop-color:#435667"/>
+ <stop offset="0.9154" style="stop-color:#5C7181"/>
+ <stop offset="0.9628" style="stop-color:#7B93A3"/>
+ <stop offset="0.9944" style="stop-color:#94AEBD"/>
+</linearGradient>
+<path fill="url(#XMLID_3_)" d="M43.075,19.076c2.035,2.036,2.035,5.337,0,7.37L28.331,41.191c-2.035,2.035-5.336,2.037-7.372,0
+ L6.217,26.449c-2.038-2.036-2.035-5.337,0-7.372L20.961,4.333c2.034-2.035,5.335-2.036,7.372,0L43.075,19.076z"/>
+<linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="15.2588" y1="13.3765" x2="38.2721" y2="36.3898">
+ <stop offset="0.0112" style="stop-color:#F3D99F"/>
+ <stop offset="0.0843" style="stop-color:#E9BB61"/>
+ <stop offset="0.7135" style="stop-color:#E3A835"/>
+ <stop offset="0.9944" style="stop-color:#FAF8ED"/>
+</linearGradient>
+<path fill="url(#XMLID_4_)" d="M40.31,19.999c1.527,1.525,1.525,4.002,0,5.528l-12.9,12.899c-1.527,1.526-4.002,1.528-5.529,0
+ L8.98,25.526c-1.527-1.525-1.527-4.002,0-5.527L21.88,7.098c1.526-1.526,4.002-1.527,5.529-0.001L40.31,19.999z"/>
+<g>
+ <path fill="#656565" d="M23.199,23.943l-5.117-0.973l1.37-4.179l4.789,2.379l-0.755-5.259h4.395l-0.723,5.185l4.687-2.305
+ l1.33,4.213l-5.185,0.903l3.672,3.71l-3.637,2.629l-2.414-4.648l-2.595,4.613l-3.529-2.559L23.199,23.943z"/>
+</g>
+<g>
+ <path fill="#FFFFFF" d="M22.037,22.709l-5.117-0.973l1.37-4.179l4.789,2.379l-0.755-5.259h4.395l-0.723,5.185l4.687-2.305
+ l1.33,4.213l-5.185,0.903l3.672,3.71l-3.637,2.629l-2.414-4.648l-2.595,4.613l-3.529-2.559L22.037,22.709z"/>
+</g>
+</svg>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/community_doc.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/community_doc.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/documentation.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/documentation.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/dot.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/dot.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/dot2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/dot2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/filterball.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/filterball.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/filterball.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,478 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="359"
+ height="287.19998"
+ id="svg2"
+ style="enable-background:new">
+ <defs
+ id="defs15">
+ <linearGradient
+ id="linearGradient7056">
+ <stop
+ id="stop7058"
+ style="stop-color:#373737;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop7060"
+ style="stop-color:#151515;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6928">
+ <stop
+ id="stop6930"
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop6932"
+ style="stop-color:#560000;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5731">
+ <stop
+ id="stop5733"
+ style="stop-color:#373737;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop5735"
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4499">
+ <stop
+ id="stop4501"
+ style="stop-color:#999999;stop-opacity:0"
+ offset="0" />
+ <stop
+ id="stop4503"
+ style="stop-color:#cccccc;stop-opacity:1"
+ offset="0.4672409" />
+ <stop
+ id="stop4505"
+ style="stop-color:#cccccc;stop-opacity:1"
+ offset="0.72421253" />
+ <stop
+ id="stop4507"
+ style="stop-color:#999999;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2381">
+ <stop
+ id="stop2383"
+ style="stop-color:#fa5b4e;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2385"
+ style="stop-color:#f95a4d;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4786">
+ <stop
+ id="stop4788"
+ style="stop-color:#830000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4790"
+ style="stop-color:#560000;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3358">
+ <stop
+ id="stop3360"
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3362"
+ style="stop-color:#8e8e8e;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6147">
+ <stop
+ id="stop6149"
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop6151"
+ style="stop-color:#560000;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6139">
+ <stop
+ id="stop6141"
+ style="stop-color:#ff6153;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop6143"
+ style="stop-color:#a70000;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4242">
+ <stop
+ id="stop4244"
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4246"
+ style="stop-color:#cc0000;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3359">
+ <stop
+ id="stop3361"
+ style="stop-color:#760000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3363"
+ style="stop-color:#220000;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3349">
+ <stop
+ id="stop3351"
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3355"
+ style="stop-color:#cc0000;stop-opacity:0.40444446"
+ offset="0.4186992" />
+ <stop
+ id="stop3353"
+ style="stop-color:#440000;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3205">
+ <stop
+ id="stop3207"
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3209"
+ style="stop-color:#a70000;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2290">
+ <stop
+ id="stop2292"
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2294"
+ style="stop-color:#640000;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <filter
+ id="filter3279">
+ <feGaussianBlur
+ id="feGaussianBlur3281"
+ stdDeviation="1.1357596"
+ inkscape:collect="always" />
+ </filter>
+ <radialGradient
+ cx="10.960155"
+ cy="43.136932"
+ r="12.313708"
+ fx="10.960155"
+ fy="34.332367"
+ id="radialGradient4070"
+ xlink:href="#linearGradient3349"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6025335,0,0,0.8893325,4.3562943,4.7738563)" />
+ <radialGradient
+ cx="9.0650082"
+ cy="2.3727291"
+ r="14"
+ fx="9.0650082"
+ fy="2.3727291"
+ id="radialGradient4072"
+ xlink:href="#linearGradient6147"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1.2942369,-1.5368604,1.5326769e-3,19.646553,-0.6748194)" />
+ <radialGradient
+ cx="28.716028"
+ cy="35.788155"
+ r="14"
+ fx="28.716028"
+ fy="35.788155"
+ id="radialGradient4082"
+ xlink:href="#linearGradient3205"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.8467759e-6,1.1158433,-1.2527659,0,60.834095,-2.0425911)" />
+ <filter
+ height="1.454476"
+ y="-0.22723798"
+ width="1.454476"
+ x="-0.22723798"
+ id="filter4230">
+ <feGaussianBlur
+ id="feGaussianBlur4232"
+ stdDeviation="2.6511097"
+ inkscape:collect="always" />
+ </filter>
+ <radialGradient
+ cx="363.13028"
+ cy="-9.4229288"
+ r="147.5"
+ fx="449.65244"
+ fy="-7.0531797"
+ id="radialGradient4252"
+ xlink:href="#linearGradient3359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-8.2895719e-3,-1.6248408,2.6577278,-1.3559454e-2,196.1971,869.31995)" />
+ <filter
+ id="filter4284">
+ <feGaussianBlur
+ id="feGaussianBlur4286"
+ stdDeviation="0.40215062"
+ inkscape:collect="always" />
+ </filter>
+ <radialGradient
+ cx="12.334593"
+ cy="2.3727295"
+ r="14"
+ fx="12.334593"
+ fy="2.3727295"
+ id="radialGradient4298"
+ xlink:href="#linearGradient2290"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.3401114e-3,1.1667596,-1.231452,0,18.938432,-8.8943528)" />
+ <radialGradient
+ cx="28.716028"
+ cy="35.788155"
+ r="14"
+ fx="28.716028"
+ fy="35.788155"
+ id="radialGradient6079"
+ xlink:href="#linearGradient3205"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.8467759e-6,1.1158433,-1.2527659,0,60.834095,-2.0425911)" />
+ <filter
+ id="filter6131">
+ <feGaussianBlur
+ id="feGaussianBlur6133"
+ stdDeviation="0.18166708"
+ inkscape:collect="always" />
+ </filter>
+ <radialGradient
+ cx="18.7052"
+ cy="30.000002"
+ r="14"
+ fx="18.7052"
+ fy="30.000002"
+ id="radialGradient6137"
+ xlink:href="#linearGradient6139"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.6634154,-2.6029611e-6,0,1.5560999,-33.81972,-16.682951)" />
+ <radialGradient
+ cx="28.716028"
+ cy="35.788155"
+ r="14"
+ fx="28.716028"
+ fy="35.788155"
+ id="radialGradient6157"
+ xlink:href="#linearGradient3205"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.8467759e-6,1.1158433,-1.2527659,0,60.834095,-2.0425911)" />
+ <radialGradient
+ cx="10.960155"
+ cy="43.136932"
+ r="12.313708"
+ fx="10.960155"
+ fy="34.332367"
+ id="radialGradient6421"
+ xlink:href="#linearGradient3349"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6025335,0,0,0.8893325,4.3562943,4.7738563)" />
+ <radialGradient
+ cx="16.866594"
+ cy="3.4371426"
+ r="14"
+ fx="16.866594"
+ fy="3.4371426"
+ id="radialGradient6423"
+ xlink:href="#linearGradient4242"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,0.6363255,-15.464074,0,70.018824,-7.2955014)" />
+ <filter
+ id="filter6435">
+ <feBlend
+ id="feBlend6437"
+ in2="BackgroundImage"
+ mode="multiply"
+ inkscape:collect="always" />
+ </filter>
+ <radialGradient
+ cx="2.0639055"
+ cy="2.3727288"
+ r="14"
+ fx="2.0639055"
+ fy="2.3727288"
+ id="radialGradient6926"
+ xlink:href="#linearGradient6928"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1.2942369,-1.5368604,1.5326769e-3,19.646553,-0.6748194)" />
+ <linearGradient
+ x1="299.42044"
+ y1="255.67314"
+ x2="300.24774"
+ y2="250.12782"
+ id="linearGradient7028"
+ xlink:href="#linearGradient3358"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.9919218,-1.4456281,2.3430567,3.3823051,-1340.9197,128.80841)" />
+ <linearGradient
+ x1="396.17938"
+ y1="553.5528"
+ x2="404.87613"
+ y2="576.61707"
+ id="linearGradient7030"
+ xlink:href="#linearGradient4786"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ x1="295.76202"
+ y1="190.10699"
+ x2="308.76151"
+ y2="205.90901"
+ id="linearGradient7032"
+ xlink:href="#linearGradient2381"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.0264567,-1.4581345,2.363327,3.4115661,-1300.6409,236.85047)" />
+ <linearGradient
+ x1="304.76111"
+ y1="267.15817"
+ x2="305.43723"
+ y2="255.9787"
+ id="linearGradient7036"
+ xlink:href="#linearGradient7056"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.9919218,-1.4456281,2.3430567,3.3823051,-1338.5565,124.08194)" />
+ <radialGradient
+ cx="484.35608"
+ cy="588.55164"
+ r="30.454796"
+ fx="484.35608"
+ fy="588.55164"
+ id="radialGradient7054"
+ xlink:href="#linearGradient5731"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.8095312,-0.7462678,3.3311313,3.6135221,-1868.288,-1183.4928)" />
+ <linearGradient
+ x1="578.2099"
+ y1="-2052.1367"
+ x2="638.72186"
+ y2="-2075.7217"
+ id="linearGradient7068"
+ xlink:href="#linearGradient4499"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.5063086,-1.736308e-8,3.099741e-8,1.5079028,-459.41531,3659.3741)" />
+ <linearGradient
+ x1="578.2099"
+ y1="-2052.1367"
+ x2="638.72186"
+ y2="-2075.7217"
+ id="linearGradient7074"
+ xlink:href="#linearGradient4499"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.5063086,-1.736308e-8,3.099741e-8,1.5079028,-459.41531,3661.3741)" />
+ <linearGradient
+ x1="578.2099"
+ y1="-2052.1367"
+ x2="638.72186"
+ y2="-2075.7217"
+ id="linearGradient7078"
+ xlink:href="#linearGradient4499"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.5063086,-1.736308e-8,3.099741e-8,1.5079028,-459.41531,3663.3741)" />
+ <linearGradient
+ x1="578.2099"
+ y1="-2052.1367"
+ x2="638.72186"
+ y2="-2075.7217"
+ id="linearGradient7082"
+ xlink:href="#linearGradient4499"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.5063086,-1.736308e-8,3.099741e-8,1.5079028,-459.41531,3657.3741)" />
+ <linearGradient
+ x1="578.2099"
+ y1="-2052.1367"
+ x2="638.72186"
+ y2="-2075.7217"
+ id="linearGradient7086"
+ xlink:href="#linearGradient4499"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.5063086,-1.736308e-8,3.099741e-8,1.5079028,-459.41531,3655.3741)" />
+ </defs>
+ <rect
+ width="357"
+ height="285.19998"
+ x="1"
+ y="1"
+ id="rect3357"
+ style="opacity:1;fill:url(#radialGradient4252);fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.5;stroke-opacity:0" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ transform="matrix(4.7939694,0,0,4.85037,92.852843,194.59406)"
+ id="use6913"
+ style="opacity:0.42290751;fill:url(#radialGradient6926);fill-opacity:1" />
+ <g
+ transform="matrix(1.4135396,0,0,1.4135396,10.453499,365.18901)"
+ id="g3412">
+ <path
+ d="M 22.273863,43.136932 A 11.313708,11.313708 0 1 1 -0.35355377,43.136932 A 11.313708,11.313708 0 1 1 22.273863,43.136932 z"
+ transform="matrix(10.812155,0,0,1.8701245,-5.9465421,-176.5882)"
+ id="path3221"
+ style="opacity:0.42731281;fill:url(#radialGradient4070);fill-opacity:1;stroke:#ffffff;stroke-width:0.31465212;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.5;stroke-opacity:0;filter:url(#filter4284)" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ transform="matrix(3.3914645,0,0,3.4313648,59.797547,-216.29409)"
+ id="circle4292"
+ style="fill:url(#radialGradient4072);fill-opacity:1" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ transform="matrix(2.8972786,0,0,2.9313648,67.704522,-220.29409)"
+ id="circle4180"
+ style="fill:url(#radialGradient6423);fill-opacity:1;filter:url(#filter4230)" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ transform="matrix(2.3324912,0,0,1.4904893,76.508887,-159.32012)"
+ id="circle3229"
+ style="opacity:0.83700442;fill:url(#radialGradient6157);fill-opacity:1;filter:url(#filter3279)" />
+ <circle
+ cx="16"
+ cy="16"
+ r="14"
+ transform="matrix(2.6032825,0,0,-2.1835748,72.408464,-142.78895)"
+ id="circle3227"
+ style="opacity:1;fill:url(#radialGradient6137);fill-opacity:1;filter:url(#filter6131)" />
+ <path
+ d="M 22.273863,43.136932 A 11.313708,11.313708 0 1 1 -0.35355377,43.136932 A 11.313708,11.313708 0 1 1 22.273863,43.136932 z"
+ transform="matrix(4.8901356,0,0,1.8701245,58.959706,-176.5882)"
+ id="path6419"
+ style="opacity:0.67841408;fill:url(#radialGradient6421);fill-opacity:1;stroke:#ffffff;stroke-width:0.46787122;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.5;stroke-opacity:0;filter:url(#filter4284)" />
+ </g>
+</svg>
Deleted: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/ico_important.gif
===================================================================
(Binary files differ)
Deleted: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/ico_note.gif
===================================================================
(Binary files differ)
Deleted: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/ico_tip.gif
===================================================================
(Binary files differ)
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/important.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/important.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/important.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/important.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/important.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48"
+ overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve">
+<linearGradient id="XMLID_5_" gradientUnits="userSpaceOnUse" x1="63.1689" y1="10.5625" x2="38.669" y2="-13.9374" gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -10.7369 61.7461)">
+ <stop offset="0.0169" style="stop-color:#4A5D75"/>
+ <stop offset="0.0488" style="stop-color:#42546B"/>
+ <stop offset="0.124" style="stop-color:#35465A"/>
+ <stop offset="0.2176" style="stop-color:#2B3C4F"/>
+ <stop offset="0.3489" style="stop-color:#263648"/>
+ <stop offset="0.7135" style="stop-color:#243446"/>
+ <stop offset="0.7671" style="stop-color:#27384A"/>
+ <stop offset="0.8176" style="stop-color:#324355"/>
+ <stop offset="0.8669" style="stop-color:#435667"/>
+ <stop offset="0.9154" style="stop-color:#5C7181"/>
+ <stop offset="0.9628" style="stop-color:#7B93A3"/>
+ <stop offset="0.9944" style="stop-color:#94AEBD"/>
+</linearGradient>
+<path fill="url(#XMLID_5_)" d="M35.623,7.474c3.145,0,5.691,2.549,5.691,5.691v22.766c0,3.143-2.547,5.691-5.691,5.691H12.859
+ c-3.145,0-5.691-2.549-5.69-5.691L7.168,13.165c0-3.143,2.547-5.691,5.691-5.691H35.623z"/>
+<linearGradient id="XMLID_6_" gradientUnits="userSpaceOnUse" x1="40.7939" y1="-11.8105" x2="65.919" y2="13.3145" gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -10.7369 61.7461)">
+ <stop offset="0.0112" style="stop-color:#F3D99F"/>
+ <stop offset="0.0843" style="stop-color:#E9BB61"/>
+ <stop offset="0.7135" style="stop-color:#E3A835"/>
+ <stop offset="0.9944" style="stop-color:#FAF8ED"/>
+</linearGradient>
+<path fill="url(#XMLID_6_)" d="M34.2,10.321c2.357-0.001,4.268,1.911,4.269,4.268v19.92c-0.001,2.356-1.91,4.268-4.268,4.268
+ l-19.92-0.001c-2.357,0.001-4.269-1.91-4.268-4.268V14.589c-0.001-2.355,1.91-4.269,4.268-4.269L34.2,10.321z"/>
+<linearGradient id="XMLID_7_" gradientUnits="userSpaceOnUse" x1="5.6143" y1="23.5635" x2="42.4814" y2="23.5635">
+ <stop offset="0.0337" style="stop-color:#FFFFFF"/>
+ <stop offset="0.1129" style="stop-color:#FFFFD8"/>
+ <stop offset="0.291" style="stop-color:#FFFF77"/>
+ <stop offset="0.4944" style="stop-color:#FFFF00"/>
+ <stop offset="0.5406" style="stop-color:#FFFF0E"/>
+ <stop offset="0.6275" style="stop-color:#FFFF32"/>
+ <stop offset="0.7459" style="stop-color:#FFFF6D"/>
+ <stop offset="0.8895" style="stop-color:#FFFFBD"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+</linearGradient>
+<polygon fill="url(#XMLID_7_)" stroke="#243446" stroke-width="1.9897" points="27.155,4.71 28.67,18.877 42.481,22.381
+ 29.476,28.199 30.412,42.416 20.858,31.846 7.627,37.13 14.729,24.777 5.614,13.826 19.557,16.762 "/>
+<linearGradient id="XMLID_8_" gradientUnits="userSpaceOnUse" x1="11.6602" y1="11.79" x2="31.5098" y2="38.189">
+ <stop offset="0" style="stop-color:#FFFFFF"/>
+ <stop offset="0.4831" style="stop-color:#FFFF66"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+</linearGradient>
+<polygon fill="url(#XMLID_8_)" enable-background="new " points="26.897,5.888 28.321,19.204 41.304,22.497 29.079,27.967
+ 29.96,41.33 20.979,31.395 8.542,36.361 15.217,24.75 6.649,14.457 19.755,17.217 "/>
+</svg>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jboss-logo.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jboss-logo.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jboss-logo.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="507pt" height="221pt" viewBox="0 0 507 221" id="JBoss-Logo">
+<g>
+<g id="color-swoosh">
+ <path d="M 159.52,200.07 C 159.52,211.47 150.27,220.72 138.88,220.72 C 127.48,220.72 118.23,211.47 118.23,200.07 C 118.23,188.67 127.48,179.42 138.88,179.42 C 150.27,179.42 159.52,188.67 159.52,200.07 z " transform="matrix(1.2260274,0,0,1.2260274,-33.086787,-49.605282)" style="fill:#cc0000;fill-opacity:1" id="path4330" />
+ <path d="M 95.46,188.05 C 95.46,200.3 85.51,210.25 73.26,210.25 C 61,210.25 51.05,200.3 51.05,188.05 C 51.05,175.79 61,165.85 73.26,165.85 C 85.51,165.85 95.46,175.79 95.46,188.05 z " style="fill:#ff850c;fill-opacity:1" id="path4333" />
+ <path d="M 45.25,147.74 C 45.25,158.83 36.26,167.83 25.17,167.83 C 14.09,167.83 5.09,158.83 5.09,147.74 C 5.09,136.66 14.09,127.66 25.17,127.66 C 36.26,127.66 45.25,136.66 45.25,147.74 z " style="fill:#fac521;fill-opacity:1" id="path4335" />
+ <path d="M 36.06,91.6 C 36.06,101.51 28.02,109.56 18.1,109.56 C 8.19,109.56 0.14,101.51 0.14,91.6 C 0.14,81.69 8.19,73.64 18.1,73.64 C 28.02,73.64 36.06,81.69 36.06,91.6 z " style="fill:#b5bd14;fill-opacity:1" id="path4337" />
+ <path d="M 61.09,41.11 C 61.09,49.54 54.25,56.39 45.82,56.39 C 37.39,56.39 30.55,49.54 30.55,41.11 C 30.55,32.68 37.39,25.84 45.82,25.84 C 54.25,25.84 61.09,32.68 61.09,41.11 z " style="fill:#007f91;fill-opacity:1" id="path4339" />
+ <path d="M 104.09,18.95 C 104.09,26.44 98,32.53 90.51,32.53 C 83.02,32.53 76.93,26.44 76.93,18.95 C 76.93,11.46 83.02,5.37 90.51,5.37 C 98,5.37 104.09,11.46 104.09,18.95 z " style="fill:#0099d7;fill-opacity:1" id="path4341" />
+ <path d="M 149.48,11.82 C 149.48,18.14 144.35,23.28 138.03,23.28 C 131.7,23.28 126.57,18.14 126.57,11.82 C 126.57,5.5 131.7,0.37 138.03,0.37 C 144.35,0.37 149.48,5.5 149.48,11.82 z " style="fill:#7a82ba;fill-opacity:1" id="path4343" />
+ </g>
+ <path d="M 236.85,124.1 C 245.93,124.1 248.81,115.13 248.81,107.53 C 248.81,99.93 245.93,90.85 236.85,90.85 C 227.76,90.85 224.99,99.93 224.99,107.53 C 224.99,115.13 227.76,124.1 236.85,124.1 M 236.85,75.88 C 255.37,75.88 268.38,89.58 268.38,107.53 C 268.38,125.48 255.37,139.06 236.85,139.06 C 218.32,139.06 205.42,125.48 205.42,107.53 C 205.42,89.58 218.32,75.88 236.85,75.88 z M 284.2,117.66 C 284.2,120.65 285.46,122.84 287.41,124.33 C 289.26,125.72 291.9,126.4 294.67,126.4 C 298.46,126.4 303.87,124.79 303.87,120.07 C 303.87,115.47 297.77,114.55 294.32,113.74 C 282.01,110.64 266.58,110.29 266.58,94.18 C 266.58,79.79 282.11,75.88 293.86,75.88 C 306.98,75.88 320.67,79.68 321.36,95.22 L 303.3,95.22 C 303.3,92.68 302.38,91.08 300.77,90.04 C 299.15,89 296.97,88.54 294.55,88.54 C 291.32,88.54 286.15,88.88 286.15,93.03 C 286.15,98.67 299.27,99.7 308.24,101.66 C 320.33,104.08 323.44,112.82 323.44,117.77 C 323.44,133.77 308.24,139.06 294.78,139.06 C 280.63,139.06 266.13,134.35 265!
.55,117.66 L 284.2,117.66 L 284.2,117.66 z M 341.39,117.66 C 341.39,120.65 342.66,122.84 344.62,124.33 C 346.46,125.72 349.11,126.4 351.87,126.4 C 355.66,126.4 361.07,124.79 361.07,120.07 C 361.07,115.47 354.97,114.55 351.52,113.74 C 339.21,110.64 323.79,110.29 323.79,94.18 C 323.79,79.79 339.33,75.88 351.06,75.88 C 364.18,75.88 377.88,79.68 378.57,95.22 L 360.5,95.22 C 360.5,92.68 359.58,91.08 357.97,90.04 C 356.35,89 354.17,88.54 351.75,88.54 C 348.53,88.54 343.36,88.88 343.36,93.03 C 343.36,98.67 356.47,99.7 365.45,101.66 C 377.53,104.08 380.64,112.82 380.64,117.77 C 380.64,133.77 365.45,139.06 351.99,139.06 C 337.83,139.06 323.33,134.35 322.75,117.66 L 341.39,117.66 L 341.39,117.66 z M 216.86,179.4 C 216.57,179.49 216.26,179.57 215.93,179.63 C 215.6,179.7 215.25,179.75 214.88,179.79 C 214.52,179.84 214.15,179.89 213.79,179.95 C 213.45,180.02 213.11,180.1 212.77,180.21 C 212.44,180.31 212.15,180.46 211.91,180.64 C 211.66,180.82 211.46,181.05 211.31,181.32 C 211.16,181.6 !
211.09,181.95 211.09,182.37 C 211.09,182.77 211.16,183.11 211.31,183.3
9 C 211.46,183.67 211.66,183.88 211.92,184.04 C 212.18,184.2 212.48,184.31 212.82,184.38 C 213.17,184.44 213.52,184.47 213.88,184.47 C 214.79,184.47 215.48,184.32 215.98,184.02 C 216.47,183.73 216.83,183.37 217.07,182.96 C 217.31,182.55 217.45,182.13 217.51,181.7 C 217.56,181.28 217.59,180.94 217.59,180.69 L 217.59,179 C 217.39,179.17 217.15,179.3 216.86,179.4 M 207.88,173.02 C 208.35,172.32 208.95,171.76 209.67,171.33 C 210.39,170.91 211.21,170.61 212.11,170.43 C 213.02,170.25 213.93,170.16 214.84,170.16 C 215.67,170.16 216.51,170.22 217.36,170.33 C 218.21,170.45 218.99,170.68 219.69,171.02 C 220.39,171.36 220.97,171.83 221.41,172.44 C 221.86,173.04 222.09,173.84 222.09,174.84 L 222.09,183.4 C 222.09,184.14 222.13,184.85 222.21,185.53 C 222.3,186.21 222.45,186.72 222.66,187.06 L 218.09,187.03 C 218.01,186.78 217.93,186.52 217.88,186.26 C 217.83,186 217.79,185.73 217.77,185.46 C 217.05,186.2 216.2,186.73 215.22,187.02 C 214.24,187.32 213.24,187.47 212.21,187.47 C 211.42,187.!
47 210.69,187.38 210.01,187.19 C 209.32,186.99 208.73,186.7 208.22,186.29 C 207.7,185.89 207.31,185.38 207.02,184.76 C 206.73,184.15 206.59,183.41 206.59,182.56 C 206.59,181.63 206.75,180.86 207.08,180.25 C 207.41,179.65 207.84,179.16 208.36,178.8 C 208.88,178.44 209.48,178.17 210.15,177.99 C 210.82,177.81 211.5,177.67 212.18,177.56 C 212.86,177.45 213.54,177.36 214.2,177.3 C 214.86,177.24 215.44,177.14 215.95,177.02 C 216.47,176.89 216.87,176.7 217.17,176.46 C 217.47,176.21 217.61,175.86 217.59,175.39 C 217.59,174.9 217.51,174.51 217.35,174.23 C 217.18,173.94 216.97,173.72 216.7,173.56 C 216.43,173.4 216.12,173.29 215.76,173.24 C 215.41,173.19 215.02,173.16 214.62,173.16 C 213.72,173.16 213.01,173.35 212.49,173.74 C 211.97,174.12 211.67,174.76 211.59,175.66 L 207.09,175.66 C 207.15,174.6 207.41,173.72 207.88,173.02 z M 244.6,176.8 C 244.47,176.18 244.25,175.62 243.94,175.15 C 243.63,174.67 243.24,174.28 242.75,173.98 C 242.26,173.68 241.65,173.53 240.9,173.53 C 240.16,173.!
53 239.53,173.68 239.02,173.98 C 238.51,174.28 238.1,174.67 237.79,175
.16 C 237.48,175.65 237.26,176.21 237.12,176.84 C 236.98,177.46 236.91,178.12 236.91,178.8 C 236.91,179.44 236.99,180.08 237.14,180.71 C 237.29,181.35 237.52,181.92 237.86,182.42 C 238.18,182.92 238.6,183.33 239.1,183.63 C 239.6,183.94 240.2,184.1 240.9,184.1 C 241.65,184.1 242.27,183.95 242.77,183.65 C 243.26,183.35 243.66,182.95 243.96,182.45 C 244.26,181.95 244.47,181.38 244.6,180.74 C 244.72,180.11 244.79,179.45 244.79,178.77 C 244.79,178.09 244.72,177.43 244.6,176.8 M 244.79,184.96 C 244.26,185.85 243.56,186.49 242.7,186.88 C 241.85,187.27 240.88,187.47 239.79,187.47 C 238.56,187.47 237.48,187.23 236.55,186.76 C 235.62,186.28 234.85,185.63 234.24,184.81 C 233.64,184 233.18,183.06 232.88,182 C 232.57,180.94 232.41,179.83 232.41,178.69 C 232.41,177.58 232.57,176.52 232.88,175.49 C 233.18,174.46 233.64,173.55 234.24,172.77 C 234.84,171.98 235.6,171.35 236.51,170.87 C 237.42,170.4 238.48,170.16 239.68,170.16 C 240.66,170.16 241.58,170.36 242.46,170.77 C 243.34,171.19 244.03!
,171.79 244.54,172.59 L 244.6,172.59 L 244.6,164.35 L 249.16,164.35 L 249.16,187.06 L 244.85,187.06 L 244.85,184.96 L 244.79,184.96 z M 256.11,170.59 L 256.11,187.03 L 251.61,187.03 L 251.61,170.59 L 256.11,170.59 M 251.61,168.03 L 251.61,164.28 L 256.11,164.28 L 256.11,168.03 L 251.61,168.03 z M 263.1,187.03 L 257.47,170.6 L 262.21,170.6 L 265.67,181.82 L 265.74,181.82 L 269.2,170.6 L 273.69,170.6 L 268.13,187.03 L 263.1,187.03 L 263.1,187.03 z M 279.59,170.59 L 279.59,187.03 L 275.09,187.03 L 275.09,170.59 L 279.59,170.59 M 275.09,168.03 L 275.09,164.28 L 279.59,164.28 L 279.59,168.03 L 275.09,168.03 z M 286.33,182.97 C 286.54,183.32 286.8,183.6 287.11,183.82 C 287.43,184.04 287.8,184.21 288.22,184.31 C 288.63,184.42 289.06,184.47 289.51,184.47 C 289.82,184.47 290.16,184.44 290.51,184.36 C 290.86,184.29 291.18,184.17 291.47,184.01 C 291.75,183.85 291.99,183.64 292.18,183.37 C 292.38,183.11 292.47,182.77 292.47,182.37 C 292.47,181.69 292.02,181.19 291.11,180.85 C 290.21,18!
0.51 288.95,180.17 287.33,179.83 C 286.67,179.68 286.02,179.51 285.4,1
79.3 C 284.77,179.1 284.21,178.84 283.72,178.51 C 283.23,178.18 282.84,177.77 282.54,177.27 C 282.24,176.77 282.1,176.16 282.1,175.44 C 282.1,174.38 282.3,173.51 282.72,172.83 C 283.13,172.15 283.68,171.62 284.36,171.22 C 285.04,170.83 285.8,170.56 286.65,170.4 C 287.5,170.24 288.37,170.16 289.27,170.16 C 290.16,170.16 291.02,170.24 291.86,170.41 C 292.7,170.58 293.45,170.87 294.11,171.27 C 294.77,171.67 295.31,172.21 295.75,172.88 C 296.18,173.55 296.45,174.39 296.53,175.41 L 292.22,175.41 C 292.15,174.53 291.82,173.94 291.23,173.63 C 290.63,173.31 289.93,173.16 289.12,173.16 C 288.86,173.16 288.59,173.17 288.29,173.2 C 287.99,173.24 287.72,173.31 287.47,173.41 C 287.23,173.52 287.02,173.67 286.85,173.88 C 286.68,174.08 286.6,174.35 286.6,174.69 C 286.6,175.09 286.74,175.42 287.04,175.68 C 287.34,175.93 287.73,176.14 288.2,176.3 C 288.68,176.46 289.23,176.6 289.85,176.73 C 290.47,176.86 291.1,176.99 291.74,177.14 C 292.39,177.29 293.04,177.47 293.66,177.69 C 294.29,177.9 29!
4.85,178.18 295.34,178.53 C 295.83,178.88 296.22,179.32 296.52,179.84 C 296.82,180.36 296.97,181 296.97,181.76 C 296.97,182.85 296.75,183.76 296.32,184.49 C 295.88,185.22 295.31,185.81 294.61,186.26 C 293.91,186.7 293.11,187.02 292.21,187.2 C 291.31,187.38 290.39,187.47 289.45,187.47 C 288.5,187.47 287.57,187.38 286.65,187.19 C 285.74,186.99 284.93,186.68 284.22,186.23 C 283.51,185.79 282.92,185.2 282.47,184.47 C 282.01,183.74 281.76,182.82 281.72,181.72 L 286.03,181.72 C 286.03,182.2 286.13,182.62 286.33,182.97 L 286.33,182.97 z M 303.6,170.59 L 303.6,187.03 L 299.1,187.03 L 299.1,170.59 L 303.6,170.59 M 299.1,168.03 L 299.1,164.28 L 303.6,164.28 L 303.6,168.03 L 299.1,168.03 z M 310.61,180.76 C 310.74,181.39 310.96,181.95 311.27,182.45 C 311.58,182.95 312,183.35 312.51,183.65 C 313.02,183.95 313.66,184.1 314.44,184.1 C 315.21,184.1 315.86,183.95 316.38,183.65 C 316.9,183.35 317.32,182.95 317.63,182.45 C 317.94,181.95 318.16,181.39 318.29,180.76 C 318.42,180.13 318.49,179.!
49 318.49,178.83 C 318.49,178.17 318.42,177.52 318.29,176.88 C 318.16,
176.25 317.94,175.68 317.63,175.19 C 317.32,174.7 316.9,174.31 316.38,174 C 315.86,173.69 315.21,173.53 314.44,173.53 C 313.66,173.53 313.02,173.69 312.51,174 C 312,174.31 311.58,174.7 311.27,175.19 C 310.96,175.68 310.74,176.25 310.61,176.88 C 310.49,177.52 310.42,178.17 310.42,178.83 C 310.42,179.49 310.49,180.13 310.61,180.76 M 306.53,175.27 C 306.93,174.2 307.51,173.28 308.25,172.53 C 308.99,171.77 309.89,171.19 310.93,170.78 C 311.97,170.36 313.14,170.16 314.44,170.16 C 315.74,170.16 316.91,170.36 317.96,170.78 C 319.01,171.19 319.91,171.77 320.66,172.53 C 321.4,173.28 321.97,174.2 322.38,175.27 C 322.78,176.34 322.99,177.53 322.99,178.85 C 322.99,180.16 322.78,181.35 322.38,182.41 C 321.97,183.47 321.4,184.38 320.66,185.13 C 319.91,185.88 319.01,186.46 317.96,186.86 C 316.91,187.27 315.74,187.47 314.44,187.47 C 313.14,187.47 311.97,187.27 310.93,186.86 C 309.89,186.46 308.99,185.88 308.25,185.13 C 307.51,184.38 306.93,183.47 306.53,182.41 C 306.12,181.35 305.92,180.16 !
305.92,178.85 C 305.92,177.53 306.12,176.34 306.53,175.27 z M 329.6,170.6 L 329.6,172.89 L 329.69,172.89 C 330.26,171.94 331.01,171.24 331.92,170.81 C 332.83,170.38 333.76,170.16 334.72,170.16 C 335.92,170.16 336.91,170.32 337.69,170.65 C 338.46,170.98 339.07,171.44 339.51,172.02 C 339.96,172.6 340.27,173.31 340.45,174.15 C 340.63,174.98 340.72,175.91 340.72,176.93 L 340.72,187.03 L 336.22,187.03 L 336.22,177.76 C 336.22,176.4 336.01,175.39 335.59,174.72 C 335.16,174.06 334.41,173.72 333.34,173.72 C 332.11,173.72 331.22,174.09 330.67,174.82 C 330.12,175.55 329.85,176.75 329.85,178.42 L 329.85,187.03 L 325.29,187.03 L 325.29,170.6 L 329.6,170.6 L 329.6,170.6 z M 355.91,180.76 C 356.04,181.39 356.26,181.95 356.57,182.45 C 356.88,182.95 357.29,183.35 357.81,183.65 C 358.32,183.95 358.96,184.1 359.74,184.1 C 360.51,184.1 361.15,183.95 361.68,183.65 C 362.2,183.35 362.62,182.95 362.93,182.45 C 363.24,181.95 363.46,181.39 363.59,180.76 C 363.72,180.13 363.78,179.49 363.78,178.83 !
C 363.78,178.17 363.72,177.52 363.59,176.88 C 363.46,176.25 363.24,175
.68 362.93,175.19 C 362.62,174.7 362.2,174.31 361.68,174 C 361.15,173.69 360.51,173.53 359.74,173.53 C 358.96,173.53 358.32,173.69 357.81,174 C 357.29,174.31 356.88,174.7 356.57,175.19 C 356.26,175.68 356.04,176.25 355.91,176.88 C 355.78,177.52 355.72,178.17 355.72,178.83 C 355.72,179.49 355.78,180.13 355.91,180.76 M 351.82,175.27 C 352.23,174.2 352.8,173.28 353.55,172.53 C 354.29,171.77 355.18,171.19 356.22,170.78 C 357.27,170.36 358.44,170.16 359.74,170.16 C 361.03,170.16 362.2,170.36 363.26,170.78 C 364.31,171.19 365.21,171.77 365.95,172.53 C 366.7,173.28 367.27,174.2 367.67,175.27 C 368.08,176.34 368.28,177.53 368.28,178.85 C 368.28,180.16 368.08,181.35 367.67,182.41 C 367.27,183.47 366.7,184.38 365.95,185.13 C 365.21,185.88 364.31,186.46 363.26,186.86 C 362.2,187.27 361.03,187.47 359.74,187.47 C 358.44,187.47 357.27,187.27 356.22,186.86 C 355.18,186.46 354.29,185.88 353.55,185.13 C 352.8,184.38 352.23,183.47 351.82,182.41 C 351.42,181.35 351.22,180.16 351.22,178.85 C 35!
1.22,177.53 351.42,176.34 351.82,175.27 z M 368.81,173.6 L 368.81,170.6 L 371.52,170.6 L 371.52,169.33 C 371.52,167.87 371.97,166.67 372.88,165.74 C 373.79,164.81 375.16,164.35 377.01,164.35 C 377.41,164.35 377.81,164.36 378.21,164.39 C 378.61,164.42 379.01,164.45 379.39,164.47 L 379.39,167.85 C 378.86,167.76 378.31,167.72 377.74,167.72 C 377.12,167.72 376.68,167.86 376.41,168.15 C 376.15,168.44 376.02,168.92 376.02,169.61 L 376.02,170.6 L 379.13,170.6 L 379.13,173.6 L 376.02,173.6 L 376.02,187.03 L 371.52,187.03 L 371.52,173.6 L 368.81,173.6 L 368.81,173.6 z " style="fill:#9ea3a6;fill-rule:nonzero;stroke:none" id="path2337" />
+ <path d="M 134.82,111.33 C 134.82,129.75 125.38,139.06 106.05,139.06 C 84.3,139.06 77.27,126.52 77.27,108.22 L 77.27,104.65 L 97.42,104.65 L 97.42,112.25 C 97.42,117.66 100.41,120.65 105.7,120.65 C 110.65,120.65 113.41,117.89 113.41,109.95 L 113.41,55.17 L 134.82,55.17 L 134.82,111.33 L 134.82,111.33 z M 156.02,120.19 L 173.16,120.19 C 179.95,120.19 184.67,117.77 184.67,110.98 C 184.67,103.74 179.61,101.31 173.16,101.31 L 156.02,101.31 L 156.02,120.19 M 156.02,87.51 L 172.59,87.51 C 176.27,87.51 181.34,85.55 181.34,79.68 C 181.34,73.7 177.07,71.74 172.59,71.74 L 156.02,71.74 L 156.02,87.51 M 134.61,55.17 L 173.05,55.17 C 187.2,54.93 202.74,58.62 202.74,75.77 C 202.74,83.13 198.36,89.12 191.92,92.34 C 200.66,94.87 206.07,102.46 206.07,111.79 C 206.07,131.35 191.69,137.34 174.08,137.34 L 134.61,137.34 L 134.61,55.17 z M 399.67,174.6 C 400.82,174.6 401.68,174.34 402.26,173.83 C 402.83,173.33 403.12,172.5 403.12,171.36 C 403.12,170.26 402.83,169.46 402.26,168.97 C 401.68,168.4!
7 400.82,168.22 399.67,168.22 L 394.18,168.22 L 394.18,174.6 L 399.67,174.6 M 401.45,164.35 C 402.47,164.35 403.4,164.51 404.21,164.84 C 405.03,165.17 405.73,165.61 406.32,166.19 C 406.9,166.76 407.35,167.42 407.65,168.17 C 407.96,168.92 408.12,169.73 408.12,170.6 C 408.12,171.93 407.84,173.09 407.27,174.06 C 406.71,175.03 405.79,175.77 404.52,176.28 L 404.52,176.35 C 405.13,176.51 405.64,176.77 406.04,177.13 C 406.45,177.47 406.78,177.89 407.03,178.36 C 407.29,178.84 407.47,179.37 407.59,179.94 C 407.7,180.51 407.79,181.08 407.83,181.66 C 407.85,182.02 407.87,182.44 407.89,182.93 C 407.91,183.42 407.95,183.92 408,184.42 C 408.06,184.94 408.14,185.42 408.26,185.87 C 408.38,186.33 408.55,186.72 408.78,187.03 L 403.79,187.03 C 403.51,186.31 403.34,185.45 403.28,184.46 C 403.22,183.46 403.12,182.51 402.99,181.6 C 402.82,180.41 402.46,179.54 401.91,178.99 C 401.35,178.44 400.45,178.16 399.19,178.16 L 394.18,178.16 L 394.18,187.03 L 389.18,187.03 L 389.18,164.35 L 401.45,164.35 !
z M 420.44,174.42 C 419.9,173.83 419.07,173.53 417.97,173.53 C 417.25,
173.53 416.65,173.65 416.18,173.9 C 415.7,174.14 415.32,174.45 415.03,174.81 C 414.74,175.17 414.54,175.55 414.43,175.95 C 414.31,176.35 414.24,176.72 414.22,177.03 L 421.57,177.03 C 421.36,175.89 420.98,175.02 420.44,174.42 M 415.33,183.11 C 416.01,183.77 416.99,184.1 418.26,184.1 C 419.17,184.1 419.95,183.87 420.61,183.42 C 421.27,182.96 421.67,182.48 421.82,181.97 L 425.8,181.97 C 425.16,183.94 424.19,185.35 422.87,186.2 C 421.56,187.05 419.97,187.47 418.1,187.47 C 416.81,187.47 415.64,187.26 414.6,186.85 C 413.56,186.44 412.69,185.85 411.97,185.08 C 411.25,184.32 410.7,183.41 410.31,182.35 C 409.91,181.29 409.72,180.12 409.72,178.85 C 409.72,177.61 409.92,176.47 410.32,175.41 C 410.72,174.35 411.29,173.43 412.03,172.66 C 412.77,171.88 413.66,171.27 414.68,170.83 C 415.71,170.38 416.85,170.16 418.1,170.16 C 419.5,170.16 420.72,170.43 421.76,170.97 C 422.8,171.51 423.65,172.23 424.32,173.14 C 424.99,174.05 425.47,175.09 425.77,176.26 C 426.06,177.42 426.17,178.64 426.09,17!
9.91 L 414.22,179.91 C 414.28,181.38 414.65,182.45 415.33,183.11 z M 440.57,176.8 C 440.45,176.18 440.23,175.62 439.92,175.15 C 439.61,174.67 439.21,174.28 438.72,173.98 C 438.24,173.68 437.62,173.53 436.88,173.53 C 436.13,173.53 435.51,173.68 434.99,173.98 C 434.49,174.28 434.07,174.67 433.77,175.16 C 433.46,175.65 433.24,176.21 433.1,176.84 C 432.96,177.46 432.89,178.12 432.89,178.8 C 432.89,179.44 432.97,180.08 433.11,180.71 C 433.26,181.35 433.5,181.92 433.83,182.42 C 434.16,182.92 434.57,183.33 435.07,183.63 C 435.57,183.94 436.17,184.1 436.88,184.1 C 437.62,184.1 438.24,183.95 438.74,183.65 C 439.24,183.35 439.64,182.95 439.93,182.45 C 440.23,181.95 440.45,181.38 440.57,180.74 C 440.7,180.11 440.77,179.45 440.77,178.77 C 440.77,178.09 440.7,177.43 440.57,176.8 M 440.77,184.96 C 440.24,185.85 439.54,186.49 438.68,186.88 C 437.82,187.27 436.85,187.47 435.77,187.47 C 434.54,187.47 433.46,187.23 432.52,186.76 C 431.59,186.28 430.82,185.63 430.22,184.81 C 429.61,184 429.16!
,183.06 428.85,182 C 428.54,180.94 428.39,179.83 428.39,178.69 C 428.3
9,177.58 428.54,176.52 428.85,175.49 C 429.16,174.46 429.61,173.55 430.22,172.77 C 430.82,171.98 431.57,171.35 432.49,170.87 C 433.4,170.4 434.45,170.16 435.66,170.16 C 436.63,170.16 437.56,170.36 438.43,170.77 C 439.31,171.19 440.01,171.79 440.52,172.59 L 440.58,172.59 L 440.58,164.35 L 445.14,164.35 L 445.14,187.06 L 440.83,187.06 L 440.83,184.96 L 440.77,184.96 z M 461.58,164.35 L 461.58,173.03 L 470.77,173.03 L 470.77,164.35 L 475.77,164.35 L 475.77,187.03 L 470.77,187.03 L 470.77,177.22 L 461.58,177.22 L 461.58,187.03 L 456.58,187.03 L 456.58,164.35 L 461.58,164.35 L 461.58,164.35 z M 488.61,179.4 C 488.32,179.49 488.01,179.57 487.67,179.63 C 487.34,179.7 486.99,179.75 486.63,179.79 C 486.26,179.84 485.9,179.89 485.53,179.95 C 485.19,180.02 484.85,180.1 484.52,180.21 C 484.19,180.31 483.9,180.46 483.65,180.64 C 483.4,180.82 483.2,181.05 483.06,181.32 C 482.9,181.6 482.83,181.95 482.83,182.37 C 482.83,182.77 482.9,183.11 483.06,183.39 C 483.2,183.67 483.41,183.88 483.67,!
184.04 C 483.92,184.2 484.22,184.31 484.57,184.38 C 484.91,184.44 485.27,184.47 485.63,184.47 C 486.53,184.47 487.23,184.32 487.72,184.02 C 488.22,183.73 488.58,183.37 488.81,182.96 C 489.05,182.55 489.2,182.13 489.25,181.7 C 489.3,181.28 489.33,180.94 489.33,180.69 L 489.33,179 C 489.14,179.17 488.9,179.3 488.61,179.4 M 479.63,173.02 C 480.1,172.32 480.69,171.76 481.41,171.33 C 482.14,170.91 482.95,170.61 483.86,170.43 C 484.76,170.25 485.67,170.16 486.59,170.16 C 487.41,170.16 488.26,170.22 489.11,170.33 C 489.96,170.45 490.74,170.68 491.43,171.02 C 492.14,171.36 492.71,171.83 493.16,172.44 C 493.61,173.04 493.83,173.84 493.83,174.84 L 493.83,183.4 C 493.83,184.14 493.87,184.85 493.96,185.53 C 494.04,186.21 494.19,186.72 494.4,187.06 L 489.84,187.03 C 489.75,186.78 489.68,186.52 489.63,186.26 C 489.57,186 489.54,185.73 489.52,185.46 C 488.79,186.2 487.94,186.73 486.96,187.02 C 485.98,187.32 484.98,187.47 483.96,187.47 C 483.17,187.47 482.43,187.38 481.75,187.19 C 481.07,1!
86.99 480.47,186.7 479.96,186.29 C 479.45,185.89 479.05,185.38 478.76,
184.76 C 478.47,184.15 478.33,183.41 478.33,182.56 C 478.33,181.63 478.5,180.86 478.82,180.25 C 479.16,179.65 479.58,179.16 480.11,178.8 C 480.63,178.44 481.22,178.17 481.9,177.99 C 482.57,177.81 483.24,177.67 483.93,177.56 C 484.61,177.45 485.28,177.36 485.94,177.3 C 486.6,177.24 487.19,177.14 487.7,177.02 C 488.21,176.89 488.61,176.7 488.91,176.46 C 489.21,176.21 489.35,175.86 489.33,175.39 C 489.33,174.9 489.25,174.51 489.09,174.23 C 488.93,173.94 488.71,173.72 488.44,173.56 C 488.17,173.4 487.86,173.29 487.51,173.24 C 487.15,173.19 486.77,173.16 486.36,173.16 C 485.46,173.16 484.75,173.35 484.24,173.74 C 483.72,174.12 483.42,174.76 483.33,175.66 L 478.83,175.66 C 478.9,174.6 479.16,173.72 479.63,173.02 z M 506.05,170.6 L 506.05,173.6 L 502.74,173.6 L 502.74,181.75 C 502.74,182.51 502.87,183.02 503.12,183.27 C 503.38,183.53 503.88,183.66 504.65,183.66 C 504.9,183.66 505.15,183.65 505.38,183.63 C 505.61,183.61 505.84,183.58 506.05,183.53 L 506.05,187.03 C 505.67,187.11 505!
.24,187.16 504.77,187.19 C 504.31,187.21 503.85,187.22 503.41,187.22 C 502.71,187.22 502.05,187.17 501.43,187.08 C 500.8,186.98 500.25,186.79 499.78,186.52 C 499.3,186.24 498.93,185.85 498.65,185.34 C 498.38,184.83 498.24,184.16 498.24,183.33 L 498.24,173.6 L 495.51,173.6 L 495.51,170.6 L 498.24,170.6 L 498.24,165.66 L 502.74,165.66 L 502.74,170.6 L 506.05,170.6 L 506.05,170.6 z " style="fill:#cc0000;fill-rule:nonzero;stroke:none" id="logotype" />
+ <path d="M 388.07,59.04 L 388.07,62 L 389.39,62 C 390.18,62 390.72,61.89 391.03,61.67 C 391.34,61.44 391.5,61.06 391.5,60.53 C 391.5,59.99 391.34,59.6 391.03,59.39 C 390.71,59.15 390.73,59.04 389.95,59.04 M 389.46,57.94 C 390.72,57.94 391.67,58.15 392.28,58.58 C 392.9,59 393.22,59.64 393.22,60.5 C 393.22,61.12 393.03,61.63 392.65,62.03 C 392.27,62.43 391.75,62.69 391.06,62.81 C 391.23,62.87 391.43,63.04 391.67,63.32 C 391.92,63.59 392.2,63.99 392.53,64.51 L 394,66.9 L 392.16,66.9 L 390.77,64.66 C 390.35,63.97 390.01,63.54 389.74,63.36 C 389.48,63.18 389.16,63.08 388.78,63.08 L 388.07,63.08 L 388.07,66.9 L 386.41,66.9 L 386.41,57.94 M 389.91,55.02 C 385.8,55.02 382.46,58.37 382.46,62.47 C 382.46,66.58 385.8,69.92 389.91,69.92 C 394.01,69.92 397.36,66.58 397.36,62.47 C 397.36,58.37 394.01,55.02 389.91,55.02 z M 389.91,56.4 C 393.27,56.4 396,59.11 396,62.47 C 396,65.83 393.27,68.57 389.91,68.57 C 386.55,68.57 383.83,65.83 383.83,62.47 C 383.83,59.11 386.55,56.4 389.91,56.4 z !
" style="font-size:31.38881302px;fill:#9ea3a6;fill-opacity:1;font-family:DejaVu Sans" id="registration" />
+ </g>
+</svg>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jbossorglogo.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jbossorglogo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jbossorglogo_jira.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/jbossorglogo_jira.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/note.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/note.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/note.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/note.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/note.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48"
+ overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve">
+<linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="38.6953" y1="39.5127" x2="10.665" y2="4.0423">
+ <stop offset="0.0169" style="stop-color:#4A5D75"/>
+ <stop offset="0.0488" style="stop-color:#42546B"/>
+ <stop offset="0.124" style="stop-color:#35465A"/>
+ <stop offset="0.2176" style="stop-color:#2B3C4F"/>
+ <stop offset="0.3489" style="stop-color:#263648"/>
+ <stop offset="0.7135" style="stop-color:#243446"/>
+ <stop offset="0.7671" style="stop-color:#27384A"/>
+ <stop offset="0.8176" style="stop-color:#324355"/>
+ <stop offset="0.8669" style="stop-color:#435667"/>
+ <stop offset="0.9154" style="stop-color:#5C7181"/>
+ <stop offset="0.9628" style="stop-color:#7B93A3"/>
+ <stop offset="0.9944" style="stop-color:#94AEBD"/>
+</linearGradient>
+<path fill="url(#XMLID_4_)" d="M41.066,32.29c0,3.143-2.549,5.691-5.691,5.691h-9.146l-0.549,8.217l-10.058-8.217H12.61
+ c-3.143,0-5.691-2.549-5.691-5.691V9.524c0-3.143,2.549-5.691,5.691-5.691h22.765c3.143,0,5.691,2.549,5.691,5.691V32.29z"/>
+<linearGradient id="XMLID_5_" gradientUnits="userSpaceOnUse" x1="27.7246" y1="29.2754" x2="16.1471" y2="3.3128">
+ <stop offset="0" style="stop-color:#D7EBD8"/>
+ <stop offset="0.7135" style="stop-color:#C5E2C7"/>
+ <stop offset="0.9944" style="stop-color:#FAF8ED"/>
+</linearGradient>
+<path fill="url(#XMLID_5_)" d="M38.221,30.866c0,2.357-1.912,4.27-4.27,4.27h-9.735l-0.183,7.039l-7.551-7.032l-2.45-0.007
+ c-2.357,0-4.269-1.912-4.269-4.27v-19.92c0-2.355,1.911-4.268,4.269-4.268h19.918c2.357,0,4.27,1.912,4.27,4.268V30.866z"/>
+<g enable-background="new ">
+ <path fill="#E6E7E8" d="M18.542,28.369v-0.828c0.843-0.061,1.325-0.125,1.446-0.197c0.12-0.07,0.195-0.204,0.226-0.398
+ c0.073-0.413,0.109-1.475,0.109-3.184c0-2.348-0.031-3.683-0.094-4.005c-0.03-0.15-0.079-0.247-0.147-0.293
+ c-0.15-0.097-0.664-0.149-1.54-0.157v-0.859c1.135-0.118,1.991-0.243,2.57-0.376c0.578-0.133,1.21-0.335,1.893-0.608l0.271,0.146
+ c-0.094,1.168-0.141,2.265-0.141,3.291v3.819c0,1.303,0.029,2.074,0.09,2.313c0.029,0.135,0.088,0.225,0.178,0.27
+ c0.201,0.098,0.691,0.162,1.467,0.191v0.875c-1.065-0.031-2.223-0.047-3.475-0.047C20.318,28.322,19.366,28.338,18.542,28.369z
+ M21.644,12.104c0.478,0,0.882,0.169,1.213,0.506c0.333,0.338,0.499,0.742,0.499,1.215c0,0.48-0.166,0.889-0.499,1.227
+ c-0.331,0.337-0.735,0.506-1.213,0.506c-0.47,0-0.872-0.169-1.208-0.506c-0.335-0.338-0.503-0.746-0.503-1.227
+ c0-0.473,0.166-0.877,0.497-1.215C20.762,12.272,21.166,12.104,21.644,12.104z"/>
+</g>
+<g enable-background="new ">
+ <linearGradient id="XMLID_6_" gradientUnits="userSpaceOnUse" x1="30.665" y1="16.4727" x2="22.2632" y2="20.1011">
+ <stop offset="0" style="stop-color:#96A1AF"/>
+ <stop offset="1" style="stop-color:#182028"/>
+ </linearGradient>
+ <path fill="url(#XMLID_6_)" d="M20.07,27.224v-0.828c0.843-0.061,1.325-0.125,1.446-0.197c0.12-0.07,0.195-0.204,0.226-0.398
+ c0.073-0.413,0.109-1.475,0.109-3.184c0-2.348-0.031-3.683-0.094-4.005c-0.03-0.15-0.079-0.247-0.147-0.293
+ c-0.15-0.097-0.664-0.149-1.54-0.157v-0.859c1.135-0.118,1.991-0.243,2.57-0.376c0.578-0.133,1.21-0.335,1.893-0.608l0.271,0.146
+ c-0.094,1.168-0.141,2.265-0.141,3.291v3.819c0,1.303,0.029,2.074,0.09,2.313c0.029,0.135,0.088,0.225,0.178,0.27
+ c0.201,0.098,0.691,0.162,1.467,0.191v0.875c-1.064-0.031-2.222-0.047-3.474-0.047C21.846,27.177,20.894,27.192,20.07,27.224z
+ M23.171,10.958c0.478,0,0.882,0.169,1.213,0.506c0.333,0.338,0.499,0.742,0.499,1.215c0,0.48-0.166,0.889-0.499,1.227
+ c-0.331,0.337-0.735,0.506-1.213,0.506c-0.47,0-0.872-0.169-1.208-0.506c-0.335-0.338-0.503-0.746-0.503-1.227
+ c0-0.473,0.166-0.877,0.497-1.215C22.29,11.127,22.694,10.958,23.171,10.958z"/>
+</g>
+</svg>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/red-bg.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/red-bg.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/redhat-logo.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/redhat-logo.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/redhat-logo.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="300"
+ height="140"
+ id="svg2812"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ version="1.0"
+ sodipodi:docname="redhat-logo.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <defs
+ id="defs3" />
+ <sodipodi:namedview
+ inkscape:document-units="mm"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="174.26394"
+ inkscape:cy="40.358463"
+ inkscape:current-layer="layer1"
+ inkscape:window-width="722"
+ inkscape:window-height="523"
+ inkscape:window-x="71"
+ inkscape:window-y="636"
+ width="300px"
+ height="140px" />
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-13.714282,-252.57246)">
+ <g
+ transform="matrix(2.1166666,0,0,2.1166666,-32.193429,187.76029)"
+ id="shadowman">
+ <path
+ d="M 55.68466,68.503937 C 55.68466,79.688581 46.617715,88.755526 35.433071,88.755526 C 24.248427,88.755526 15.181482,79.688581 15.181482,68.503937 C 15.181482,57.319293 24.248427,48.252348 35.433071,48.252348 C 46.617715,48.252348 55.68466,57.319293 55.68466,68.503937 z"
+ transform="matrix(1.10693,0,0,1.10693,5.005761,-12.00975)"
+ style="fill:#ffffff"
+ id="path4548" />
+ <path
+ d="M 147.81332,72.126073 C 147.81332,73.329962 147.86057,74.57586 148.03519,75.740362 L 146.64882,75.740362 L 146.42826,73.559712 L 146.35605,73.559712 C 145.61822,74.733404 143.92333,76.086957 141.50635,76.086957 C 138.4461,76.086957 137.02164,73.933874 137.02164,71.904202 C 137.02164,68.394942 140.11998,66.27862 146.30878,66.34295 L 146.30878,65.937278 C 146.30878,64.432747 146.01471,61.431561 142.41879,61.45388 C 141.08756,61.45388 139.70118,61.810976 138.5997,62.588186 L 138.1205,61.494579 C 139.51083,60.551948 141.20703,60.180411 142.58291,60.180411 C 146.97178,60.180411 147.81201,63.475677 147.81201,66.194597 L 147.81201,72.126073 L 147.81332,72.126073 z M 146.30878,67.609855 C 142.99645,67.514016 138.62333,68.015527 138.62333,71.667888 C 138.62333,73.853791 140.06616,74.835806 141.65077,74.835806 C 144.1859,74.835806 145.62742,73.266945 146.15124,71.786044 C 146.26152,71.460456 146.3101,71.134869 146.3101,70.874924 L 146.3101,67.609855 L 146.30878,67.609855 !
z M 153.80387,57.175286 L 153.80387,60.527004 L 158.13891,60.527004 L 158.13891,61.747959 L 153.80387,61.747959 L 153.80387,71.635066 C 153.80387,73.568902 154.40385,74.780665 156.03835,74.780665 C 156.82343,74.780665 157.37877,74.676951 157.76606,74.541727 L 157.94856,75.707542 C 157.45754,75.912347 156.76567,76.072514 155.84798,76.072514 C 154.73862,76.072514 153.81831,75.723296 153.22358,74.994662 C 152.53566,74.195133 152.29934,72.917726 152.29934,71.365932 L 152.29934,61.746646 L 149.7314,61.746646 L 149.7314,60.525692 L 152.29934,60.525692 L 152.29934,57.729312 L 153.80387,57.175286 z M 129.02767,60.179099 C 127.87105,60.179099 126.8339,60.512563 125.96348,61.052146 C 125.05891,61.581226 124.3224,62.399135 123.88522,63.247239 L 123.8222,63.247239 L 123.8222,55.719331 L 122.31767,55.309721 L 122.31767,75.740362 L 123.8222,75.740362 L 123.8222,66.437475 C 123.8222,65.819121 123.86947,65.39113 124.02832,64.938196 C 124.67818,63.046372 126.45974,61.493265 128.61545,61.493!
265 C 131.72953,61.493265 132.80739,63.990315 132.80739,66.730242 L 13
2.80739,75.73905 L 134.31191,75.73905 L 134.31191,66.564822 C 134.31191,60.899855 130.4692,60.179099 129.02767,60.179099 z"
+ id="path620" />
+ <path
+ d="M 78.208384,65.270348 C 78.208384,63.205228 78.16506,61.686255 78.08235,60.311696 L 81.460325,60.311696 L 81.604739,63.240675 L 81.713705,63.240675 C 82.473849,61.069213 84.273772,59.961164 85.938472,59.961164 C 86.319199,59.961164 86.541071,59.976918 86.853532,60.045187 L 86.853532,63.719867 C 86.488557,63.648972 86.147215,63.609587 85.677213,63.609587 C 83.819525,63.609587 82.528988,64.792469 82.181081,66.560884 C 82.115438,66.904852 82.079992,67.318401 82.079992,67.738514 L 82.079992,75.73905 L 78.176875,75.73905 L 78.208384,65.270348 z M 91.56274,69.076313 C 91.666455,71.871381 93.83004,73.093647 96.328402,73.093647 C 98.123074,73.093647 99.405732,72.814009 100.58599,72.379455 L 101.16365,75.064243 C 99.842914,75.623519 98.010169,76.042319 95.771752,76.042319 C 90.763211,76.042319 87.82767,72.949234 87.82767,68.220332 C 87.82767,63.961432 90.411366,59.933594 95.372644,59.933594 C 100.38906,59.933594 102.02225,64.059896 102.02225,67.436558 C 102.02225,68.1625!
66 101.95792,68.744161 101.88309,69.103883 L 91.56274,69.076313 z M 98.348885,66.358704 C 98.365952,64.929006 97.743659,62.59869 95.129766,62.59869 C 92.728556,62.59869 91.730785,64.778027 91.554863,66.358704 L 98.348885,66.358704 z M 118.82942,54.363153 L 114.93024,53.307617 L 114.93024,61.97377 L 114.8659,61.97377 C 114.17665,60.834212 112.65375,59.962477 110.54268,59.962477 C 106.83386,59.962477 103.60162,63.033244 103.62656,68.201952 C 103.62656,72.945296 106.54372,76.086957 110.22759,76.086957 C 112.45288,76.086957 114.31582,75.024857 115.23745,73.297141 L 115.30703,73.297141 L 115.48164,75.73905 L 118.95675,75.73905 C 118.88586,74.690078 118.82809,72.991246 118.82809,71.411881 L 118.82809,54.363153 L 118.82942,54.363153 z M 114.92893,69.050056 C 114.92893,69.459667 114.90136,69.840395 114.81077,70.189614 C 114.41823,71.877945 113.0371,72.966301 111.44198,72.966301 C 108.98563,72.966301 107.57957,70.894617 107.57957,68.060164 C 107.57957,65.198141 108.97382,62.983355 1!
11.48662,62.983355 C 113.2406,62.983355 114.49568,64.220064 114.84228,
65.72197 C 114.90922,66.038368 114.92893,66.428286 114.92893,66.738119 L 114.92893,69.050056 L 114.92893,69.050056 z"
+ id="path616" />
+ <path
+ d="M 161.80517,73.528501 C 160.90479,73.528501 160.18937,74.243893 160.18939,75.144292 C 160.18939,76.044668 160.90478,76.760094 161.80517,76.760081 C 162.70554,76.760081 163.42095,76.041202 163.42097,75.144292 C 163.42097,74.24046 162.70554,73.528501 161.80517,73.528501 z M 161.80517,73.803529 C 162.54687,73.803529 163.14594,74.402585 163.14593,75.144292 C 163.14593,75.882533 162.54342,76.485053 161.80517,76.485053 C 161.06348,76.485053 160.46441,75.882523 160.46441,75.144292 C 160.46441,74.402596 161.06346,73.80354 161.80517,73.803529 z M 161.25512,74.319207 L 161.25512,75.969376 L 161.49577,75.969376 L 161.49577,75.247426 L 161.80517,75.247426 L 162.2521,75.969376 L 162.52712,75.969376 L 162.04582,75.247426 C 162.29078,75.216382 162.49274,75.06625 162.49274,74.766128 C 162.49273,74.438393 162.30159,74.319207 161.90832,74.319207 L 161.25512,74.319207 z M 161.49577,74.525479 L 161.83955,74.525479 C 162.0155,74.525467 162.21771,74.562596 162.21771,74.766128 C 162.2!
1773,75.02142 162.01906,75.041156 161.80517,75.041156 L 161.49577,75.041156 L 161.49577,74.525479 z"
+ id="path650" />
+ <path
+ d="M 63.115808,76.090895 C 60.810796,75.504093 58.522203,75.797079 56.285026,76.486064 C 56.010655,76.526189 56.159301,76.830359 56.114355,76.953441 C 56.240389,77.319727 56.032958,77.717522 54.998429,77.944646 C 53.465014,78.282048 52.496128,79.864039 51.942103,80.389181 C 51.290927,81.007536 49.45293,81.388262 49.729943,81.01935 C 49.946565,80.730522 50.773662,79.83253 51.276485,78.861018 C 51.726795,77.99322 52.127215,77.746405 52.678614,76.919305 C 52.841408,76.676428 53.46764,75.824385 53.650127,75.149578 C 53.854932,74.490525 53.786663,73.663427 53.865435,73.323398 C 53.97834,72.83239 54.440465,71.767665 54.477226,71.166377 C 54.496918,70.825035 53.056716,71.650821 52.372719,71.650821 C 51.688722,71.650821 51.024417,71.242523 50.412627,71.21364 C 49.657736,71.17688 49.17198,71.795235 48.489295,71.68758 C 48.098065,71.625877 47.769852,71.281909 47.087167,71.255652 C 46.115654,71.220205 44.928834,71.795235 42.698294,71.724341 C 40.507139,71.653447 38.480092,68.!
952905 38.204394,68.523601 C 37.880118,68.019465 37.484949,68.019465 37.054333,68.414634 C 36.622404,68.809804 36.090697,68.498657 35.939718,68.234773 C 35.652203,67.73195 34.882871,66.258927 33.692111,65.951719 C 32.044479,65.523729 31.210817,66.864153 31.31847,67.928878 C 31.427438,69.010669 32.127189,69.31394 32.451465,69.887656 C 32.77574,70.462687 32.94116,70.834225 33.54901,71.088919 C 33.980939,71.267467 34.142421,71.53529 34.013762,71.888448 C 33.900856,72.198281 33.451859,72.269175 33.156467,72.282304 C 31.933813,72.291845 31.468231,71.67907 30.76576,70.807968 C 30.388969,70.188301 29.79556,69.919166 29.103685,69.919166 C 28.774159,69.919166 28.465638,70.005814 28.191252,70.147603 C 27.106833,70.710817 25.817611,71.045595 24.429922,71.045595 L 22.863688,71.045595 C 22.102232,68.784859 21.688683,66.365268 21.688683,63.847213 C 21.688683,51.409229 31.770093,41.32782 44.208077,41.32782 C 56.646061,41.32782 66.72747,51.410542 66.72747,63.847213 C 66.730097,68.36212 65.!
401488,72.565881 63.115808,76.090895 z M 49.170707,74.025807 C 49.2862
39,74.138712 49.485793,74.518127 49.241602,75.001258 C 49.105065,75.257265 48.956712,75.437126 48.694141,75.647183 C 48.37643,75.900564 47.758075,76.194643 46.908658,75.65506 C 46.451785,75.364919 46.424215,75.267768 45.794044,75.349165 C 45.343735,75.408243 45.163874,74.953995 45.326668,74.575893 C 45.488149,74.199104 46.152454,73.893208 46.980865,74.378965 C 47.353716,74.598211 47.932685,75.059024 48.44076,74.649413 C 48.65213,74.481367 48.778164,74.368462 49.069618,74.031058 C 49.082746,74.015304 49.101126,74.007427 49.122132,74.007427 C 49.140512,74.007427 49.157579,74.013991 49.170707,74.025807 z"
+ id="path632" />
+ <path
+ d="M 63.115853,76.089615 C 65.401534,72.564599 66.72883,68.36215 66.72883,63.849868 C 66.72883,51.411879 56.647417,41.330466 44.209428,41.330466 C 31.77144,41.330466 21.690027,51.413192 21.690027,63.849868 C 21.690027,66.367923 22.103576,68.787515 22.865032,71.046939 C 25.868844,79.95466 34.290809,86.367957 44.209428,86.367957 C 52.133821,86.367957 59.101143,82.275788 63.115853,76.089615 z"
+ style="fill:none"
+ id="path646" />
+ <path
+ d="M 56.917822,57.857972 C 56.694636,58.606299 56.378238,59.562056 54.970858,60.285439 C 54.766053,60.390468 54.687282,60.218483 54.781807,60.057003 C 55.313513,59.151133 55.409352,58.925322 55.562956,58.568226 C 55.779577,58.047022 55.892482,57.303946 55.463179,55.754779 C 54.615075,52.707643 52.849285,48.633855 51.564001,47.31181 C 50.32598,46.037029 48.079686,45.677306 46.050011,46.19851 C 45.302998,46.390186 43.839164,47.151642 41.126807,46.539852 C 36.433353,45.483004 35.738853,47.833013 35.468405,48.857041 C 35.197956,49.881066 34.552032,52.791666 34.552032,52.791666 C 34.33541,53.977174 34.05446,56.038354 41.342116,57.426043 C 44.737158,58.071966 44.910455,58.950266 45.060119,59.58175 C 45.329254,60.712117 45.761183,61.360667 46.245627,61.682316 C 46.731383,62.006591 46.245627,62.274414 45.707356,62.329554 C 44.260592,62.480532 38.917273,60.947118 35.754607,59.151133 C 33.168283,57.570457 33.124958,56.147322 33.717056,54.939495 C 29.808689,54.516756 26.87708!
4,55.304469 26.345378,57.155594 C 25.431631,60.330077 33.324513,65.752165 42.311003,68.473712 C 51.741236,71.329172 61.440606,69.336258 62.519772,63.40872 C 63.012093,60.71343 60.74348,58.721829 56.917822,57.857972 z M 42.458041,52.053841 C 39.857276,52.241579 39.586829,52.52253 39.099759,53.041108 C 38.411824,53.772368 37.507268,52.090601 37.507268,52.090601 C 36.965059,51.976382 36.306006,51.100708 36.661789,50.2828 C 37.012321,49.474082 37.658246,49.71696 37.860425,49.969029 C 38.107242,50.274923 38.633697,50.777747 39.315068,50.759366 C 39.997753,50.7423 40.785465,50.597886 41.884324,50.597886 C 42.998938,50.597886 43.745953,51.014061 43.789276,51.371156 C 43.823411,51.675739 43.698689,51.964567 42.458041,52.053841 z M 45.191406,47.754243 C 45.187466,47.754243 45.183528,47.755556 45.179589,47.755556 C 45.138891,47.755556 45.107383,47.72536 45.107383,47.687287 C 45.107383,47.659717 45.123137,47.636085 45.14808,47.625583 C 45.652218,47.359073 46.404482,47.147704 47.265715!
,47.059743 C 47.524347,47.032172 47.776416,47.019045 48.019294,47.0164
18 C 48.062617,47.016418 48.103316,47.016418 48.147954,47.017731 C 49.592094,47.04924 50.746092,47.622957 50.729025,48.299078 C 50.711958,48.973884 49.527763,49.495088 48.084936,49.46358 C 47.617561,49.453076 47.179067,49.384807 46.800965,49.275842 C 46.756328,49.264025 46.723506,49.225952 46.723506,49.181315 C 46.723506,49.135365 46.756328,49.097292 46.802278,49.08679 C 47.702895,48.878046 48.310747,48.538016 48.268737,48.215055 C 48.212283,47.788376 47.03334,47.557315 45.637776,47.696476 C 45.484171,47.713544 45.334507,47.733237 45.191406,47.754243 z"
+ style="fill:#cc0000"
+ id="path648" />
+ <use
+ transform="translate(-94.61853,1.913321)"
+ id="use4312"
+ x="0"
+ y="0"
+ width="744.09448"
+ height="1052.3622"
+ xlink:href="#path650" />
+ </g>
+ </g>
+</svg>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/rhlogo.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/rhlogo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/shine.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/shine.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-back.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-back.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-forward.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-forward.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-up.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-go-up.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-home.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/stock-home.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/tip.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/tip.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/tip.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/tip.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/tip.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48"
+ overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve">
+<polygon fill="#E3A835" points="23.829,1.919 25.042,8.157 27.447,2.274 27.418,8.629 30.924,3.33 29.656,9.557 34.129,5.042
+ 31.67,10.903 36.938,7.348 33.383,12.616 39.243,10.157 34.729,14.63 40.956,13.362 35.656,16.868 42.011,16.838 36.127,19.244
+ 42.367,20.456 36.127,21.667 42.011,24.073 35.656,24.043 40.956,27.55 34.729,26.281 39.243,30.754 33.383,28.297 36.938,33.563
+ 31.67,30.01 34.129,35.869 29.656,31.354 30.924,37.582 27.418,32.281 27.447,38.637 25.042,32.754 23.829,38.992 22.619,32.754
+ 20.213,38.637 20.243,32.281 16.735,37.582 18.005,31.354 13.532,35.869 15.99,30.01 10.723,33.563 14.277,28.297 8.417,30.754
+ 12.932,26.281 6.705,27.55 12.004,24.043 5.649,24.073 11.532,21.667 5.293,20.456 11.532,19.244 5.649,16.838 12.004,16.868
+ 6.705,13.362 12.932,14.63 8.417,10.157 14.277,12.616 10.723,7.348 15.99,10.903 13.532,5.042 18.005,9.557 16.735,3.33
+ 20.243,8.629 20.213,2.274 22.619,8.157 "/>
+<polygon stroke="#000000" stroke-width="0.4664" points="23.528,45.402 25.335,45.402 27.842,42.895 27.842,37.415 23.528,37.415
+ 19.213,37.415 19.213,42.895 21.72,45.402 "/>
+<path fill="#FFFFFF" d="M23.684,9.819c5.923,0,10.571,4.803,10.571,10.727c0,0.911-0.319,2.267-0.933,3.459
+ c-0.678,1.317-1.865,3.071-3.108,6.647c-1.244,3.576-1.244,4.663-1.244,4.663s0.038,1.556-0.7,1.556c-2.486,0-4.585,0-4.585,0
+ s-2.1,0-4.587,0c-0.739,0-0.7-1.556-0.7-1.556s0-1.087-1.243-4.663s-2.31-5.338-3.071-6.608c-0.817-1.359-0.973-2.587-0.973-3.498
+ C13.111,14.622,17.759,9.819,23.684,9.819z"/>
+<radialGradient id="XMLID_7_" cx="23.2544" cy="20.3462" r="6.0813" gradientUnits="userSpaceOnUse">
+ <stop offset="0" style="stop-color:#FFFF00"/>
+ <stop offset="1" style="stop-color:#FAF8ED"/>
+</radialGradient>
+<path fill="url(#XMLID_7_)" d="M23.684,9.819c5.923,0,10.571,4.803,10.571,10.727c0,0.911-0.319,2.267-0.933,3.459
+ c-0.678,1.317-1.865,3.071-3.108,6.647c-1.244,3.576-1.244,4.663-1.244,4.663s0.038,1.556-0.7,1.556c-2.486,0-4.585,0-4.585,0
+ s-2.1,0-4.587,0c-0.739,0-0.7-1.556-0.7-1.556s0-1.087-1.243-4.663s-2.31-5.338-3.071-6.608c-0.817-1.359-0.973-2.587-0.973-3.498
+ C13.111,14.622,17.759,9.819,23.684,9.819z"/>
+<g>
+ <path d="M22.478,45.402c0,0.322,0.262,0.584,0.583,0.584h0.934c0.322,0,0.583-0.262,0.583-0.584l0,0
+ c0-0.322-0.261-0.584-0.583-0.584h-0.934C22.739,44.818,22.478,45.08,22.478,45.402L22.478,45.402z"/>
+ <g>
+ <radialGradient id="XMLID_8_" cx="23.5273" cy="40.2715" r="3.0611" gradientUnits="userSpaceOnUse">
+ <stop offset="0" style="stop-color:#656565"/>
+ <stop offset="1" style="stop-color:#E6E7E8"/>
+ </radialGradient>
+ <rect x="19.213" y="39.922" fill="url(#XMLID_8_)" width="8.629" height="0.699"/>
+ <radialGradient id="XMLID_9_" cx="23.5273" cy="42.3711" r="3.0611" gradientUnits="userSpaceOnUse">
+ <stop offset="0" style="stop-color:#656565"/>
+ <stop offset="1" style="stop-color:#E6E7E8"/>
+ </radialGradient>
+ <rect x="19.213" y="42.021" fill="url(#XMLID_9_)" width="8.629" height="0.699"/>
+ <radialGradient id="XMLID_10_" cx="23.5273" cy="41.3213" r="3.0611" gradientUnits="userSpaceOnUse">
+ <stop offset="0" style="stop-color:#656565"/>
+ <stop offset="1" style="stop-color:#E6E7E8"/>
+ </radialGradient>
+ <rect x="19.213" y="40.971" fill="url(#XMLID_10_)" width="8.629" height="0.7"/>
+ <polygon fill="#424242" points="21.72,45.402 23.528,45.402 25.335,45.402 27.667,43.07 19.389,43.07 "/>
+ <radialGradient id="XMLID_11_" cx="23.5273" cy="39.2217" r="3.0611" gradientUnits="userSpaceOnUse">
+ <stop offset="0" style="stop-color:#656565"/>
+ <stop offset="1" style="stop-color:#E6E7E8"/>
+ </radialGradient>
+ <rect x="19.213" y="38.873" fill="url(#XMLID_11_)" width="8.629" height="0.698"/>
+ <radialGradient id="XMLID_12_" cx="23.5273" cy="37.9688" r="3.0761" gradientUnits="userSpaceOnUse">
+ <stop offset="0" style="stop-color:#656565"/>
+ <stop offset="1" style="stop-color:#E6E7E8"/>
+ </radialGradient>
+ <polygon fill="url(#XMLID_12_)" points="27.842,37.415 23.528,37.415 19.213,37.415 19.213,38.522 27.842,38.522 "/>
+ </g>
+</g>
+<polyline fill="none" stroke="#656565" stroke-width="0.4664" stroke-linecap="round" points="22.012,35.549 21.662,27.445
+ 19.155,21.091 19.155,19.924 "/>
+<polyline fill="none" stroke="#656565" stroke-width="0.4664" stroke-linecap="round" points="25.511,35.549 25.859,27.445
+ 28.366,21.091 28.366,19.924 "/>
+<path fill="none" stroke="#E3A835" stroke-width="0.4664" stroke-linecap="round" d="M19.97,20.216c0,0,2.857,2.04,7.697,0.117"/>
+</svg>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/title_hdr.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/title_hdr.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/warning.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/warning.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/warning.svg
===================================================================
--- trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/warning.svg (rev 0)
+++ trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/warning.svg 2008-02-19 15:16:27 UTC (rev 6431)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY ns_svg "http://www.w3.org/2000/svg">
+ <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48"
+ overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve">
+<polygon fill="none" stroke="#243446" stroke-width="4.403" stroke-linejoin="round" points="6.486,37.712 24.021,7.338
+ 41.559,37.712 "/>
+<polygon fill="none" stroke="#FFFFFF" stroke-width="1.4677" stroke-linejoin="round" points="6.486,37.712 24.021,7.338
+ 41.559,37.712 "/>
+<polygon fill="#CC0000" points="6.486,37.712 24.021,7.338 41.559,37.712 "/>
+<polygon fill="#CC0000" points="6.486,37.712 24.021,7.338 41.559,37.712 "/>
+<linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="22.3276" y1="33.249" x2="10.7696" y2="15.7285">
+ <stop offset="0" style="stop-color:#7B1E1E"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+</linearGradient>
+<polygon fill="url(#XMLID_4_)" points="6.486,37.712 24.021,7.338 41.559,37.712 "/>
+<g>
+ <path fill="#656565" d="M27.092,13.988l-0.59,14.035h-3.479l-0.59-14.035H27.092z M22.64,30.145h4.245v4.423H22.64V30.145z"/>
+</g>
+<g>
+ <linearGradient id="XMLID_5_" gradientUnits="userSpaceOnUse" x1="26.9766" y1="25.9307" x2="22.815" y2="17.0526">
+ <stop offset="0" style="stop-color:#656565"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <polygon fill="url(#XMLID_5_)" points="26.441,13.431 25.852,27.466 22.373,27.466 21.783,13.431 "/>
+ <linearGradient id="XMLID_6_" gradientUnits="userSpaceOnUse" x1="25.1895" y1="34.0957" x2="23.5154" y2="30.5243">
+ <stop offset="0" style="stop-color:#656565"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="21.99" y="29.588" fill="url(#XMLID_6_)" width="4.245" height="4.423"/>
+</g>
+</svg>
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-alpha1.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-alpha1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-alpha2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-alpha2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-beta1.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-beta1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-beta2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-beta2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-pre-release-candidate.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-pre-release-candidate.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-release-candidate.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/jbosstools-jdocbook-style/src/main/images/images/watermark-release-candidate.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
18 years, 1 month
JBoss Tools SVN: r6430 - trunk/jst/plugins/org.jboss.tools.jst.vpe.jsp.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2008-02-19 10:02:35 -0500 (Tue, 19 Feb 2008)
New Revision: 6430
Modified:
trunk/jst/plugins/org.jboss.tools.jst.vpe.jsp/
Log:
Nothing has changed.
Property changes on: trunk/jst/plugins/org.jboss.tools.jst.vpe.jsp
___________________________________________________________________
Name: svn:ignore
+ bin
18 years, 1 month
JBoss Tools SVN: r6429 - trunk/struts/plugins/org.jboss.tools.struts.vpe.struts.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2008-02-19 10:02:30 -0500 (Tue, 19 Feb 2008)
New Revision: 6429
Modified:
trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/
Log:
Nothing has changed.
Property changes on: trunk/struts/plugins/org.jboss.tools.struts.vpe.struts
___________________________________________________________________
Name: svn:ignore
+ bin
18 years, 1 month
JBoss Tools SVN: r6428 - trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2008-02-19 10:02:25 -0500 (Tue, 19 Feb 2008)
New Revision: 6428
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/
Log:
Nothing has changed.
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf
___________________________________________________________________
Name: svn:ignore
+ bin
18 years, 1 month
JBoss Tools SVN: r6427 - trunk/jst/plugins/org.jboss.tools.jst.vpe.html.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2008-02-19 10:02:21 -0500 (Tue, 19 Feb 2008)
New Revision: 6427
Modified:
trunk/jst/plugins/org.jboss.tools.jst.vpe.html/
Log:
Nothing has changed.
Property changes on: trunk/jst/plugins/org.jboss.tools.jst.vpe.html
___________________________________________________________________
Name: svn:ignore
+ bin
18 years, 1 month
JBoss Tools SVN: r6426 - trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2008-02-19 10:02:17 -0500 (Tue, 19 Feb 2008)
New Revision: 6426
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/
Log:
Nothing has changed.
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces
___________________________________________________________________
Name: svn:ignore
+ bin
18 years, 1 month
JBoss Tools SVN: r6425 - trunk/as/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2008-02-19 09:06:02 -0500 (Tue, 19 Feb 2008)
New Revision: 6425
Modified:
trunk/as/docs/reference/en/modules/perspective.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-199 - replacing the screenshot with new one which is more discriptive
Modified: trunk/as/docs/reference/en/modules/perspective.xml
===================================================================
--- trunk/as/docs/reference/en/modules/perspective.xml 2008-02-19 14:05:16 UTC (rev 6424)
+++ trunk/as/docs/reference/en/modules/perspective.xml 2008-02-19 14:06:02 UTC (rev 6425)
@@ -106,7 +106,7 @@
<entry align="center">
<para>The status which allows you to see if changes are
- awaiting.</para>
+ awaiting</para>
</entry>
</row>
<row>
@@ -115,7 +115,7 @@
</entry>
<entry align="center">
- <para>The status which shows if changes are being updated.</para>
+ <para>The status which shows if changes are being updated</para>
</entry>
</row>
<row>
@@ -125,7 +125,7 @@
<entry align="center">
<para>The status which allows you to see if changes are
- in-sync.</para>
+ in-sync</para>
</entry>
</row>
</tbody>
@@ -627,7 +627,10 @@
archive, a nested archive, or a folder within an archive, and select <emphasis>
<property>New Fileset</property>
</emphasis>.</para>
-
+ <para>The <property>New Fileset Wizard</property> requires a destination (where the
+ files will go), and a root directory (or where the files are coming from). The
+ source can be anywhere in the workspace or from the filesystem at large.</para>
+
<figure>
<title>Adding a New FileSet</title>
<mediaobject>
@@ -636,10 +639,7 @@
</imageobject>
</mediaobject>
</figure>
-
- <para>The <property>New Fileset Wizard</property> requires a destination (where the
- files will go), and a root directory (or where the files are coming from). The
- source can be anywhere in the workspace or from the filesystem at large.</para>
+
<para>Below that, the fileset requires only an includes pattern and an excludes
pattern. As you type in either of these fields, the preview viewer should update
itself with which files are matched.</para>
@@ -764,6 +764,5 @@
</section>
<literallayout> </literallayout>
- <para>So far you are guessed to be familiar with <emphasis>
- <property>JBoss AS Perspective</property></emphasis> and your next step now is to explore how to work with different kinds of projects.</para>
+ <para>At this point, you are guessed to be familiar with <property>JBoss AS Perspective</property> and your next step now is to explore how to work with different kinds of projects.</para>
</chapter>
18 years, 1 month
JBoss Tools SVN: r6424 - trunk/as/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2008-02-19 09:05:16 -0500 (Tue, 19 Feb 2008)
New Revision: 6424
Modified:
trunk/as/docs/reference/en/modules/modules.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-199 - updating according to Svetlana remarks; adding conclusion sentences
Modified: trunk/as/docs/reference/en/modules/modules.xml
===================================================================
--- trunk/as/docs/reference/en/modules/modules.xml 2008-02-19 14:04:52 UTC (rev 6423)
+++ trunk/as/docs/reference/en/modules/modules.xml 2008-02-19 14:05:16 UTC (rev 6424)
@@ -10,8 +10,8 @@
<section>
<title>Deploying on the Package Explorer</title>
- <para>On the package explorer it is possible to publish either a project to a server
- or just a signal file. Let's look at how to do this.</para>
+ <para>On the package explorer it is possible to publish either a project to a server or just
+ a signal file. Let's look at how to do this.</para>
<section id="run_on_server_wizard">
<title>Deploying with Run On Server Wizard</title>
<para> The first WTP method is to right-click on a project, such as a Dynamic Web
@@ -83,9 +83,8 @@
</section>
<section>
<title>Deploying with JBoss Server View</title>
- <para>As it has been already mentioned <emphasis>
- <property>JBoss Server View</property>
- </emphasis> contains two parts: the top part that displays all defined servers and the
+ <para>As it has been already mentioned
+ <property>JBoss Server View</property> contains two parts: the top part that displays all defined servers and the
bottom part which provides categories with additional information. Thus, in this section
we suggest two more ways to deploy resources onto the server.</para>
<section>
@@ -157,16 +156,22 @@
<para> The only way to ensure an <emphasis>
<property>Incremental Build</property>
</emphasis>, such as changes to one <emphasis>
- <property>.jsp</property>
- </emphasis>, <emphasis>
- <property>.html</property>
- </emphasis>, or <emphasis>
+ <property>.jsp</property>,
+ </emphasis> <emphasis>
+ <property>.html</property>,
+ </emphasis> or <emphasis>
<property>.class</property>
</emphasis> file, is to enable the builder for that project. This is done by either
changing the global preferences for the <property>Archives View</property>, or by
enabling project-specific preferences and ensuring the builder is on.</para>
</section>
+ <para>The last chapter covers a variety of methods on how you can deploy needed modules onto a server.</para>
+ <literallayout> </literallayout>
-
+ <para>In summary, this reference supplies you with all necessary information on the
+ functionality that
+ <property>JBoss Server Manager</property>
+ provides for work with <ulink url="http://www.jboss.org/products/jbossas">JBoss
+ AS</ulink>.</para>
</chapter>
18 years, 1 month
JBoss Tools SVN: r6423 - trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/src/org/jboss/tools/hibernate/ui/veditor/editors/model.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2008-02-19 09:04:52 -0500 (Tue, 19 Feb 2008)
New Revision: 6423
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/src/org/jboss/tools/hibernate/ui/veditor/editors/model/Shape.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-1794
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/src/org/jboss/tools/hibernate/ui/veditor/editors/model/Shape.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/src/org/jboss/tools/hibernate/ui/veditor/editors/model/Shape.java 2008-02-19 14:04:02 UTC (rev 6422)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/src/org/jboss/tools/hibernate/ui/veditor/editors/model/Shape.java 2008-02-19 14:04:52 UTC (rev 6423)
@@ -212,7 +212,10 @@
}
else if (PROPERTY_CLASS.equals(propertyId)) {
if (getOrmElement() instanceof Property) {
- return ((Property) getOrmElement()).getPersistentClass().getClassName();
+ if (((Property) getOrmElement()).getPersistentClass() != null)
+ return ((Property) getOrmElement()).getPersistentClass().getClassName();
+ else
+ return null;
}
}
else if (PROPERTY_SELECT.equals(propertyId)) {
18 years, 1 month