Migrate DocBook sources and SyntaxHighlighter script

git-svn-id: https://svn.apache.org/repos/asf/servicemix/documentation/trunk@1023670 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/common/pom.xml b/common/pom.xml
deleted file mode 100644
index aac81d2..0000000
--- a/common/pom.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.apache.servicemix.docs</groupId>
-    <artifactId>parent</artifactId>
-    <version>4.3-SNAPSHOT</version>
-  </parent>
-
-  <artifactId>common</artifactId>
-  <packaging>jar</packaging>
-  
-  <name>Apache ServiceMix :: Common files for documentation</name>
-  <description>Common files (stylesheets, ...)</description>
-  
-  <build>
-    <plugins>
-      <plugin>      
-        <artifactId>maven-remote-resources-plugin</artifactId>
-        <version>1.1</version>
-        <executions>
-          <execution>
-            <goals>
-              <goal>bundle</goal>
-            </goals>
-            <configuration>
-              <includes>
-                <include>**</include>
-              </includes>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-
-</project>
diff --git a/common/src/main/resources/resources/theme/master.css b/common/src/main/resources/resources/theme/master.css
deleted file mode 100644
index c676fa8..0000000
--- a/common/src/main/resources/resources/theme/master.css
+++ /dev/null
@@ -1,18 +0,0 @@
-body {
-  font-family: verdana, helvetica, sans-serif;
-}
-
-table.reference tbody tr {
-  border: solid thin black;
-}
-
-.literallayout {
-  margin-left: 20px;
-  font-family: monospace;
-  background-color: #E0E0E0;
-}
-
-.legalnotice {
-  font-size: 0.8em;
-  background-color: #E0E0E0; 
-}
\ No newline at end of file
diff --git a/common/src/main/resources/styles/docbook-fo.xsl b/common/src/main/resources/styles/docbook-fo.xsl
deleted file mode 100644
index 3c53a83..0000000
--- a/common/src/main/resources/styles/docbook-fo.xsl
+++ /dev/null
@@ -1,385 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-
-<!--
-    This XSL is based heavily on the Spring Frameworks' XSL script
--->
-<!DOCTYPE xsl:stylesheet [
-    <!ENTITY admon_gfx_path     "src/docbkx/images/admons/">
-    <!ENTITY copyright "&#xA9;">
-]>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fo="http://www.w3.org/1999/XSL/Format"
-                xmlns:d="http://docbook.org/ns/docbook"
-                exclude-result-prefixes="d"
-                version="1.0">
-
-  <xsl:import href="urn:docbkx:stylesheet"/>
-  <xsl:import href="highlight-fo.xsl"/>  
-
-  <!-- Prevent blank pages in output -->
-  <xsl:template name="book.titlepage.before.verso">
-  </xsl:template>
-  <xsl:template name="book.titlepage.verso">
-  </xsl:template>
-  <xsl:template name="book.titlepage.separator">
-  </xsl:template>
-
-  <!--###################################################
-                        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
-      ################################################### -->
-  <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:if test="//releaseinfo">
-        <xsl:text>Apache ActiveMQ (</xsl:text>
-        <xsl:value-of select="//releaseinfo"/>
-        <xsl:text>)</xsl:text>
-      </xsl:if>
-    </xsl:variable>
-    <xsl:choose>
-      <xsl:when test="$sequence='blank'">
-        <xsl:if test="$position = 'center'">
-          <xsl:value-of select="$Version"/>
-        </xsl:if>
-      </xsl:when>
-      <!-- for double sided printing, print page numbers on alternating sides (of the page) -->
-      <xsl:when test="$double.sided != 0">
-        <xsl:choose>
-          <xsl:when test="$sequence = 'even' and $position='left'">
-            <fo:page-number/>
-          </xsl:when>
-          <xsl:when test="$sequence = 'odd' and $position='right'">
-            <fo:page-number/>
-          </xsl:when>
-          <xsl:when test="$position='center'">
-            <xsl:value-of select="$Version"/>
-          </xsl:when>
-        </xsl:choose>
-      </xsl:when>
-      <!-- for single sided printing, print all page numbers on the right (of the page) -->
-      <xsl:when test="$double.sided = 0">
-        <xsl:choose>
-          <xsl:when test="$position='center'">
-            <xsl:value-of select="$Version"/>
-          </xsl:when>
-          <xsl:when test="$position='right'">
-            <fo:page-number/>
-          </xsl:when>
-        </xsl:choose>
-      </xsl:when>
-    </xsl:choose>
-  </xsl:template>
-
-
-  <!--###################################################
-                        Extensions
-      ################################################### -->
-
-  <!-- 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>
-  <!-- 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
-  </xsl:param>
-
-  <!-- Show only Sections up to level 3 in the TOCs -->
-  <!--<xsl:param name="toc.section.depth">2</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
-      ################################################### -->
-
-  <!-- Left aligned text and no hyphenation -->
-  <xsl:param name="alignment">justify</xsl:param>
-  <xsl:param name="hyphenate">false</xsl:param>
-
-  <!-- Default Font size -->
-  <xsl:param name="body.font.master">11</xsl:param>
-  <xsl:param name="body.font.small">8</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
-      ################################################### -->
-
-  <!-- Chapter title size -->
-  <xsl:attribute-set name="chapter.titlepage.recto.style">
-    <xsl:attribute name="text-align">left</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>
-
-  <!-- Why is the font-size for chapters hardcoded in the XSL FO templates?
-   Let's remove it, so this sucker can use our attribute-set only... -->
-  <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:call-template name="component.title">
-        <xsl:with-param name="node" select="ancestor-or-self::chapter[1]"/>
-      </xsl:call-template>
-    </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>
-
-  <!--###################################################
-                        Programlistings
-      ################################################### -->
-
-  <!-- Verbatim text formatting (programlistings) -->
-  <xsl:attribute-set name="monospace.verbatim.properties">
-    <xsl:attribute name="font-size">
-      <xsl:value-of select="$body.font.small * 1.0"/>
-      <xsl:text>pt</xsl:text>
-    </xsl:attribute>
-  </xsl:attribute-set>
-
-  <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="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
-      ################################################### -->
-
-  <!-- Use images for callouts instead of (1) (2) (3) -->
-  <xsl:param name="callout.graphics">0</xsl:param>
-  <xsl:param name="callout.unicode">1</xsl:param>
-
-  <!-- Place callout marks at this column in annotated areas -->
-  <xsl:param name="callout.defaultcolumn">90</xsl:param>
-
-  <!--###################################################
-                         Admonitions
-      ################################################### -->
-
-  <!-- Use nice graphics for admonitions -->
-  <xsl:param name="admon.graphics">'1'</xsl:param>
-  <xsl:param name="admon.graphics.path">&admon_gfx_path;</xsl:param>
-
-  <!--###################################################
-                            Misc
-      ################################################### -->
-
-  <!-- Placement of titles -->
-  <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 -->
-  <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>
-
-  <!-- hide the link url from the contents of the page -->  
-  <xsl:param name="ulink.show">0</xsl:param>
-
-  <!--###################################################
-              colored and hyphenated links
-      ################################################### -->
-  <xsl:template match="d:ulink|ulink">
-    <fo:basic-link external-destination="url({@url})"
-                   text-decoration="underline"
-                   color="blue">
-      <xsl:choose>
-        <xsl:when test="count(child::node())=0">
-          <xsl:value-of select="@url"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:apply-templates/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </fo:basic-link>
-  </xsl:template>
-
-</xsl:stylesheet>
diff --git a/common/src/main/resources/styles/docbook-html.xsl b/common/src/main/resources/styles/docbook-html.xsl
deleted file mode 100644
index a67d724..0000000
--- a/common/src/main/resources/styles/docbook-html.xsl
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->        
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:d="http://docbook.org/ns/docbook"
-                exclude-result-prefixes="d"
-                version="1.0">
-
-    <xsl:import href="urn:docbkx:stylesheet"/>
-
-    <xsl:template name="user.head.content">
-        <xsl:param name="node" select="."/>
-
-        <!--
-            NOTICE - SyntaxHighlighter (http://alexgorbatchev.com/wiki/SyntaxHighlighter) is licensed under LGPL v3
-
-            This script is being used to highlight the syntax of the <code/> blocks in our documentation.
-            You can disable the script by removing all the code between this NOTICE and END - SyntaxHighlighter.
-        -->
-
-        <!-- Include *at least* the core style and default theme -->
-        <link href="resources/syntaxhl/styles/shCore.css" rel="stylesheet" type="text/css" />
-        <link href="resources/syntaxhl/styles/shThemeDefault.css" rel="Stylesheet" type="text/css" />
-        <!-- Include required JS files -->
-        <script type="text/javascript" src="resources/syntaxhl/scripts/shCore.js"></script>
-        <script type="text/javascript" src="resources/syntaxhl/scripts/shLegacy.js"></script>
-        <!-- At least one brush, here we choose JS. You need to include a brush for every language you want to highlight -->
-        <script type="text/javascript" src="resources/syntaxhl/scripts/shBrushJava.js"></script>
-        <script type="text/javascript" src="resources/syntaxhl/scripts/shBrushXml.js"></script>
-
-
-        <!-- Finally, to actually run the highlighter, you need to include this JS on your page -->
-        <script type="text/javascript">
-          SyntaxHighlighter.config.clipboardSwf = 'resources/syntaxhl/scripts/clipboard.swf';
-          SyntaxHighlighter.all()
-          dp.SyntaxHighlighter.HighlightAll('programlisting');
-        </script>
-
-        <!-- END - SyntaxHighlighter -->
-
-    </xsl:template>
-
-    <xsl:template match="d:programlisting">
-        <script type="syntaxhighlighter" class="brush: xml">
-            <xsl:text>&lt;![CDATA[</xsl:text>
-            <xsl:value-of select="text()"/>
-            <xsl:text>]]&gt;</xsl:text>
-            <!--<xsl:apply-templates/>            -->
-        </script>
-    </xsl:template>
-
-    <xsl:template name="anchor">
-        <xsl:param name="node" select="."/>
-        <xsl:param name="conditional" select="1"/>
-        <xsl:variable name="id">
-            <xsl:call-template name="object.id">
-                <xsl:with-param name="object" select="$node"/>
-            </xsl:call-template>
-        </xsl:variable>
-        <xsl:if test="$conditional = 0 or $node/@id or $node/@xml:id">
-            <a name="{$id}"/>
-        </xsl:if>
-    </xsl:template>
-
-
-</xsl:stylesheet>
\ No newline at end of file
diff --git a/common/src/main/resources/styles/highlight-fo.xsl b/common/src/main/resources/styles/highlight-fo.xsl
deleted file mode 100644
index f2de0a4..0000000
--- a/common/src/main/resources/styles/highlight-fo.xsl
+++ /dev/null
@@ -1,58 +0,0 @@
-<?xml version='1.0'?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fo="http://www.w3.org/1999/XSL/Format"
-                xmlns:xslthl="http://xslthl.sf.net"
-                exclude-result-prefixes="xslthl"
-                version='1.0'>
-
-  <xsl:import href="urn:docbkx:stylesheet/highlight.xsl"/>
-
-  <xsl:template match='xslthl:keyword' mode="xslthl">
-    <fo:inline font-weight="bold" color="#7F0055"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-  <xsl:template match='xslthl:comment' mode="xslthl">
-    <fo:inline font-style="italic" color="#3F5F5F"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-  <xsl:template match='xslthl:oneline-comment' mode="xslthl">
-    <fo:inline font-style="italic" color="#3F5F5F"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-  <xsl:template match='xslthl:multiline-comment' mode="xslthl">
-    <fo:inline font-style="italic" color="#3F5FBF"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-  <xsl:template match='xslthl:tag' mode="xslthl">
-    <fo:inline  color="#3F7F7F"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-  <xsl:template match='xslthl:attribute' mode="xslthl">
-    <fo:inline color="#7F007F"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-  <xsl:template match='xslthl:value' mode="xslthl">
-    <fo:inline color="#2A00FF"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-  <xsl:template match='xslthl:string' mode="xslthl">
-    <fo:inline color="#2A00FF"><xsl:apply-templates mode="xslthl"/></fo:inline>
-  </xsl:template>
-
-</xsl:stylesheet>
diff --git a/common/src/main/resources/theme/master.css b/common/src/main/resources/theme/master.css
deleted file mode 100644
index c676fa8..0000000
--- a/common/src/main/resources/theme/master.css
+++ /dev/null
@@ -1,18 +0,0 @@
-body {
-  font-family: verdana, helvetica, sans-serif;
-}
-
-table.reference tbody tr {
-  border: solid thin black;
-}
-
-.literallayout {
-  margin-left: 20px;
-  font-family: monospace;
-  background-color: #E0E0E0;
-}
-
-.legalnotice {
-  font-size: 0.8em;
-  background-color: #E0E0E0; 
-}
\ No newline at end of file
diff --git a/docs/jbi/pom.xml b/docs/jbi/pom.xml
deleted file mode 100644
index 7b14d97..0000000
--- a/docs/jbi/pom.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-  <parent>
-    <artifactId>docs</artifactId>
-    <groupId>org.apache.servicemix.docs</groupId>
-    <version>4.3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>org.apache.servicemix.docs</groupId>
-  <artifactId>jbi</artifactId>
-  <packaging>pom</packaging>
-  <name>Apache ServiceMix :: Documentation :: JBI Reference Manual</name>
-
-  <properties>
-    <servicemix-saxon-source>components/engines/servicemix-saxon/trunk</servicemix-saxon-source>
-  </properties>
-
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-          <execution>
-            <phase>generate-resources</phase>
-            <goals>
-              <goal>copy</goal>
-            </goals>
-            <configuration>
-              <artifactItems>
-                <artifactItem>
-                  <groupId>org.apache.servicemix</groupId>
-                  <artifactId>servicemix-bean</artifactId>
-                  <version>${components.version}</version>
-                  <type>xsd</type>
-                </artifactItem>
-                <artifactItem>
-                  <groupId>org.apache.servicemix</groupId>
-                  <artifactId>servicemix-saxon</artifactId>
-                  <version>${components.version}</version>
-                  <type>xsd</type>
-                </artifactItem>
-              </artifactItems>
-              <outputDirectory>${project.build.directory}/src/main/xsd</outputDirectory>
-              <stripVersion>true</stripVersion>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>xml-maven-plugin</artifactId>
-        <executions>
-          <execution>
-            <goals>
-              <goal>transform</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <transformationSets>
-            <transformationSet>
-              <dir>${project.build.directory}/src/main/xsd</dir>
-              <stylesheet>src/main/xslt/xbean-xsd.xsl</stylesheet>
-              <outputDir>${project.build.directory}/docbkx/sources/appendix</outputDir>
-              <fileMappers>
-                <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
-                  <targetExtension>.xml</targetExtension>
-                </fileMapper>
-              </fileMappers>
-            </transformationSet>
-          </transformationSets>
-        </configuration>
-      </plugin>
-
-
-      <plugin>
-        <groupId>com.agilejava.docbkx</groupId>
-        <artifactId>docbkx-maven-plugin</artifactId>
-        <version>2.0.10</version>
-        <configuration>
-          <entities>
-            <entity>
-              <name>servicemix-saxon-source</name>
-              <value>components/engines/servicemix-saxon/trunk</value>
-            </entity>
-            <entity>
-              <name>servicemix-bean-source</name>
-              <value>components/engines/servicemix-bean/trunk</value>
-            </entity>
-          </entities>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
-</project>
\ No newline at end of file
diff --git a/docs/jbi/src/confluence/servicemix-bean.wiki b/docs/jbi/src/confluence/servicemix-bean.wiki
deleted file mode 100644
index 3c0710b..0000000
--- a/docs/jbi/src/confluence/servicemix-bean.wiki
+++ /dev/null
@@ -1,34 +0,0 @@
-h1. servicemix-bean
-
-h2. Overview
-The ServiceMix Bean component provides integration with beans (POJOs) with the JBI bus to make it easy to use POJOs to process JBI message exchanges. Like in an Message Driven Bean in J2EE a POJO will receive a message from the NMR and process it in any way it likes. Unlike in a JMS component where the coding is already done the Bean component gives the developer the freedom to create any type of message handling but it must be hand coded all the way.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/bean/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:bean="http://servicemix.apache.org/bean/1.0">
-
-  <!-- add bean:endpoint definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-bean component only defines one endpoint, called {{bean:endpoint}}.  It can be used to receive and send message exchanges from/to the NMR.
-
-h2. {{Endpoint bean:endpoint}}
-
-h3. Using a Java class
-When definining a {{bean:endpoint}} specifying a Java class name, a new instance of this class will be created for handling a single message exchange.
-
-{code}
-    <beans xmlns:bean="http://servicemix.apache.org/bean/1.0"
-           xmlns:my="urn:org:servicmix:docs:examples">
-
-      <bean:endpoint service="my:service" endpoint="endpoint"
-                     class="org.apache.servicemix.docs.bean.MyHandlerBean"/>
-
-    </beans>
-{code}
-
-h3. TODO: add other configuration types
diff --git a/docs/jbi/src/confluence/servicemix-camel.wiki b/docs/jbi/src/confluence/servicemix-camel.wiki
deleted file mode 100644
index ed9a5a5..0000000
--- a/docs/jbi/src/confluence/servicemix-camel.wiki
+++ /dev/null
@@ -1,187 +0,0 @@
-h1. servicemix-camel
-
-h2. Overview
-The servicemix-camel component provides support for using Apache Camel to provide a full set of Enterprise Integration Patterns and flexible routing and transformation in both Java code or Spring XML to route services on the Normalized Message Router.
-
-h3. Namespace and camel-context.xml
-When creating a servicemix-camel service unit, we reuse the default Camel namespace {{http://camel.apache.org/schema/spring}}.
-
-This is an example {{camel-context.xml}} which uses the Spring DSL to define the Camel routes
-{code:lang=xml}
-<?xml version="1.0" encoding="UTF-8"?>
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="
-         http://www.springframework.org/schema/beans
-           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-         http://camel.apache.org/schema/spring
-           http://camel.apache.org/schema/spring/camel-spring.xsd">
-
-  <camelContext xmlns="http://camel.apache.org/schema/spring">
-    <route>
-      <!-- route defined in the Spring DSL -->
-    </route>
-  </camelContext>
-
-</beans>
-{code}
-
-It is also possible to use the Java DSL inside a servicemix-camel service unit by referring to the package that contains the {{RouteBuilder}} classes.  An example: this {{camel-context.xml}} file will activate all routes defined by {{RouteBuilder}}s in the {{org.apache.servicemix.example.camel}} package.
-{code:lang=xml}
-<?xml version="1.0" encoding="UTF-8"?>
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="
-         http://www.springframework.org/schema/beans
-           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-         http://camel.apache.org/schema/spring
-           http://camel.apache.org/schema/spring/camel-spring.xsd">
-
-  <camelContext xmlns="http://camel.apache.org/schema/spring">
-    <packages>org.apache.servicemix.examples.camel</packages>
-  </camelContext>
-
-</beans>
-{code}
-
-h2. URI
-Camel routes use URIs to interact with the ESB.  You can use these URIs to expose new endpoints on the ESB as well as to send message exchanges to existing endpoints.
-
-The snippet below automatically exposes a new endpoint to the bus, where the service QName is {{{http://foo.bar.org}MyService}} and the endpoint name is {{MyEndpoint}}.
-{code:lang=java}
-from("jbi:endpoint:http://foo.bar.org/MyService/MyEndpoint")
-{code}
-
-When a JBI endpoint appears at the end of a route, as in the example below, that will send 
-{code:lang=java}
-to("jbi:endpoint:http://foo.bar.org/MyService/MyEndpoint")
-{code}
-
-The messages sent by this producer endpoint are sent to the already deployed JBI endpoint.
-
-h3. URI format
-
-{code}
-jbi:service:serviceNamespace[sep]serviceName[?options]
-jbi:endpoint:serviceNamespace[sep]serviceName[sep]endpointName[?options]
-jbi:name:endpointName[?options]
-{code}
-
-The separator that should be used in the endpoint URL is:
-* {{/}} (forward slash), if {{serviceNamespace}} starts with {{http://}}
-* {{:}} (colon), if {{serviceNamespace}} starts with {{urn:}}.
-
-You can append query options to the URI in the following format, {{?option=value&amp;option=value&amp;...}}
-
-h4. Examples
-h5. Using {{jbi:service}}
-
-{code}
-jbi:service:http://foo.bar.org/MyService
-jbi:service:urn:foo:bar:MyService
-{code}
-
-h5. Using {{jbi:endpoint}}
-{code}
-jbi:endpoint:urn:foo:bar:MyService:MyEndpoint
-jbi:endpoint:http://foo.bar.org/MyService/MyEndpoint
-{code}
-
-h5. Using {{jbi:name}}
-When using {{jbi:name}}, the component uses {{http://activemq.apache.org/camel/schema/jbi}endpoint}} as the default Service QName.
-{code}
-jbi:name:MyEndpoint
-{code}
-
-h3. URI options
-|| Name || Default value || Description ||
-| {{mep}} | MEP of the Camel Exchange | Allows users to override the MEP set on the Exchange object. Valid values for this option are {{in-only}}, {{in-out}}, {{robust-in-out}} and {{in-optional-out}}. |
-| {{operation}} | Value of the {{jbi.operation}} header property | Specifies the JBI operation for the {{MessageExchange}}.  If no value is supplied, the JBI binding will use the value of the {{jbi.operation}} header property. |
-| {{serialization}} | {{basic}} | Default value ({{basic}}) will check if headers are serializable by looking at the type, setting this option to {{strict}} will detect objects that can not be serialized although they implement the {{Serializable}} interface.  Set to {{nocheck}} to disable this check altogether, note that this should only be used for in-memory transports like SEDAFlow, otherwise you can expect to get {{NotSerializableException}} thrown at runtime. |
-| {{convertException}} | {{false}} | {{false}}: send any exceptions thrown from the Camel route back unmodified \\ {{true}}: convert all exceptions to a JBI FaultException (can be used to avoid non-serializable exceptions or to implement generic error handling |
-
-h4. Examples
-{code}
-jbi:service:http://foo.bar.org/MyService?mep=in-out       (override the MEP, use InOut JBI MessageExchanges)
-jbi:endpoint:urn:foo:bar:MyService:MyEndpoint?mep=in      (override the MEP, use InOnly JBI MessageExchanges)
-jbi:endpoint:urn:foo:bar:MyService:MyEndpoint?operation={http://www.mycompany.org}AddNumbers
-(overide the operation for the JBI Exchange to {http://www.mycompany.org}AddNumbers)
-{code}
-
-h2. Example routes
-h3. Simple Spring route
-This simple Spring route registers a new endpoint on the ESB (service {{{urn:org:example}Router}}, endpoint name {{orders}}).  The message exchange contents will be logged and then forwarded to another JBI service endpoint (service {{{http://services.example.org}OrderService}})
-{code:lang=xml}
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="
-         http://www.springframework.org/schema/beans
-           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-         http://camel.apache.org/schema/spring
-           http://camel.apache.org/schema/spring/camel-spring.xsd">
-
-          <camelContext xmlns="http://camel.apache.org/schema/spring">
-            <route>
-              <from uri="jbi:endpoint:urn:org:example:Router:orders"/>
-              <to uri="log:OrderLogging"/>
-              <to uri="jbi:service:http://services.example.org/OrderService" />
-            </route>
-          </camelContext>
-
-</beans>
-{code}
-
-h3. The same route using the Java DSL
-When we implement the same route in the Java DSL, we first code our {{RouteBuilder}} implementation
-{code:lang=java}
-package org.apache.servicemix.example;
-
-import org.apache.camel.builder.RouteBuilder;
-
-public class JbiRouteBuilder extends RouteBuilder {
-
-  @Override
-  public void configure() throws Exception {
-    from("jbi:endpoint:urn:org:example:Router:orders")
-      .to("log:OrderLogging")
-      .to("jbi:service:http://services.example.org/OrderService");
-  }
-}
-{code}
-
-In our {{camel-context.xml}} file, we just refer to the {{org.apache.servicemix.example}} package that contains our {{JbiRouteBuilder}}.
-{code:lang=xml}
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="
-         http://www.springframework.org/schema/beans
-           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-         http://camel.apache.org/schema/spring
-           http://camel.apache.org/schema/spring/camel-spring.xsd">
-
-  <camelContext xmlns="http://camel.apache.org/schema/spring">
-    <route>
-      <packageScan>
-        <package>org.apache.servicemix.example</package>
-      </packageScan>
-    </route>
-  </camelContext>
-
-</beans>
-{code}
-
-
-
-
-
-h2. Special considerations
-h3. Stream handling
-If you are using a stream type as the message body, you should be aware that a stream is only capable of being read once. So if you enable {{DEBUG}} logging, the body is usually logged and thus read. To deal with this, Camel has a {{streamCaching}} option that can cache the stream, enabling you to read it multiple times.
-
-{code:lang=java}
-from("jbi:endpoint:http://foo.bar.org/MyService/MyEndpoint")
-  .streamCaching()
-  .to("xslt:transform.xsl", "bean:doSomething");
-{code}
-
-Camel will cache large input streams (by default, over 64K) in a {{temp}} file using {{CachedOutputStream}}. When you close the input stream, the temp file will be deleted.
diff --git a/docs/jbi/src/confluence/servicemix-cxf-bc.wiki b/docs/jbi/src/confluence/servicemix-cxf-bc.wiki
deleted file mode 100644
index d626c9e..0000000
--- a/docs/jbi/src/confluence/servicemix-cxf-bc.wiki
+++ /dev/null
@@ -1,32 +0,0 @@
-h1. servicemix-cxf-bc
-
-h2. Overview
-A JBI compliant HTTP/SOAP or JMS/SOAP binding component named servicemix-cxf-bc which use apache cxf internally.
-
-The main features are:
-* JBI compliant Binding Component
-* Usable in a lightweight mode in servicemix.xml configuration files
-* SOAP 1.1 and 1.2 support
-* MIME attachments
-* Support for all MEPs as consumers or providers
-* SSL support
-* WS-Security support
-* WS-Policy support
-* WS-RM support
-* WS-Addressing support
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/cxfbc/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:cxfbc="http://servicemix.apache.org/cxfbc/1.0">
-
-  <!-- add cxfbc:consumer or cxfbc:provider definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-cxf-bc component defines two endpoints:
-- {{cxfbc:consumer}} :: a server-side cxf endpoint that will consume plain HTTP+SOAP requests and send them into the NMR to a given JBI endpoint
-- {{cxfbc:provider}} :: a client-side jbi endpoint which can receive requests from the NMR and send them to a given url where the service is provided
-
diff --git a/docs/jbi/src/confluence/servicemix-cxf-se.wiki b/docs/jbi/src/confluence/servicemix-cxf-se.wiki
deleted file mode 100644
index c5a5c69..0000000
--- a/docs/jbi/src/confluence/servicemix-cxf-se.wiki
+++ /dev/null
@@ -1,27 +0,0 @@
-h1. servicemix-cxf-se
-
-h2. Overview
-ServiceMix CXF SE component is a JBI Service Engine exposing (annotated) POJO as services on the JBI Bus.
-It uses Apache CXF internally to perform service invocations and xml marshaling.
-
-Features:
-* jsr181 annotations
-* jaxb2/aegis/xmlbeans databinding
-* wsdl auto generation
-* java proxy support
-* MTOM / attachments support
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/cxfse/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:cxfse="http://servicemix.apache.org/cxfse/1.0">
-
-  <!-- add cxfse:endpoint definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-cxf-bc component defines one endpoint type:
-- {{cxfse:endpoint}} :: no description yet
-
diff --git a/docs/jbi/src/confluence/servicemix-drools.wiki b/docs/jbi/src/confluence/servicemix-drools.wiki
deleted file mode 100644
index dd5b76d..0000000
--- a/docs/jbi/src/confluence/servicemix-drools.wiki
+++ /dev/null
@@ -1,23 +0,0 @@
-h1. servicemix-drools
-
-h2. Overview
-The ServiceMix Drools component provides JBI integration to the Drools Rules Engine.
-
-This Service Engine can be used to deploy a rules set that will implement a router or an actual service.
-
-A router will mostly act as a transparent proxy between the consumer and the target service provider mad will mostly be implemented by the jbi.route(uri) method below. This method creates a new exchange identical to the one received by the component and will send it to the specified destination. You can also send back a Fault if needed. A router can also be implemented by using directly the JBI Apis (available with the jbi helper) by using the provided client.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/drools/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:drools="http://servicemix.apache.org/drools/1.0">
-
-  <!-- add drools:endpoint definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-drools component defines one endpoint type:
-- {{drools:endpoint}} :: no description yet
-
diff --git a/docs/jbi/src/confluence/servicemix-eip.wiki b/docs/jbi/src/confluence/servicemix-eip.wiki
deleted file mode 100644
index 382d208..0000000
--- a/docs/jbi/src/confluence/servicemix-eip.wiki
+++ /dev/null
@@ -1,30 +0,0 @@
-h1. servicemix-eip
-
-h2. Overview
-The servicemix-eip component is a routing container where different routing patterns can be deployed as service unit.
-This component is based on the great Enterprise Integration Patterns book.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/eip/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:drools="http://servicemix.apache.org/eip/1.0">
-
-  <!-- add one of the eip endpoint definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-eip component defines several endpoint types:
-- {{eip:content-based-router}} :: Implements the Content-Based Router EIP
-- {{eip:message-filter}} :: Implements the Message Filter EIP
-- {{eip:pipeline}} :: Implements the Pipeline EIP
-- {{eip:static-recipient-list}} :: Implements the Static Recipient List EIP
-- {{eip:static-routing-slip}} :: Implements the Static Routing Slip EIP
-- {{eip:wire-tap}} :: Implements the Wire Tap EIP
-- {{eip:xpath-splitter}} :: Uses XPath to split a message
-- {{eip:split-aggregator}} :: Aggregates messages that have been split by the {{xpath-splitter}}
-- {{eip:content-enricher}} :: Implements the Content Enricher EIP
-- {{eip:resequencer}} :: Implements the Resequencer EIP
-- {{eip:async-bridge}} :: Handles an InOut exchange by correlating to separate InOnly exchanges
-
diff --git a/docs/jbi/src/confluence/servicemix-file.wiki b/docs/jbi/src/confluence/servicemix-file.wiki
deleted file mode 100644
index 6595572..0000000
--- a/docs/jbi/src/confluence/servicemix-file.wiki
+++ /dev/null
@@ -1,21 +0,0 @@
-h1. servicemix-file
-
-h2. Overview
-The ServiceMix File component provides JBI integration to the file system. It can be used to read & write files via URI or to periodically poll directories for new files.
-
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/file/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:file="http://servicemix.apache.org/file/1.0">
-
-  <!-- add file:poller and file:sender definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-file component defines two endpoint type:
-- {{file:poller}} :: Periodically polls a directory for files and sends an exchange for every file
-- {{file:sender}} :: Writes the contents of an exchange to a file
-
diff --git a/docs/jbi/src/confluence/servicemix-ftp.wiki b/docs/jbi/src/confluence/servicemix-ftp.wiki
deleted file mode 100644
index b846809..0000000
--- a/docs/jbi/src/confluence/servicemix-ftp.wiki
+++ /dev/null
@@ -1,21 +0,0 @@
-h1. servicemix-ftp
-
-h2. Overview
-The ServiceMix FTP component provides JBI integration to the FTP servers. It can be used to read & write files over FTPor to periodically poll directories for new files.
-
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/ftp/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:ftp="http://servicemix.apache.org/ftp/1.0">
-
-  <!-- add ftp:poller and ftp:sender definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-ftp component defines two endpoint type:
-- {{ftp:poller}} :: Periodically polls a directory on an FTP server for files and sends an exchange for every file
-- {{ftp:sender}} :: Writes the contents of an exchange to a file on an FTP server
-
diff --git a/docs/jbi/src/confluence/servicemix-http.wiki b/docs/jbi/src/confluence/servicemix-http.wiki
deleted file mode 100644
index c3896f9..0000000
--- a/docs/jbi/src/confluence/servicemix-http.wiki
+++ /dev/null
@@ -1,41 +0,0 @@
-h1. servicemix-http
-
-h2. Overview
-ServiceMix ships with a JBI compliant HTTP/SOAP binding component named servicemix-http.
-
-Here are the main features:
-* JBI compliant Binding Component
-* Usable in a lightweight mode in servicemix.xml configuration files
-* Integrated HTTP server based on Jetty 6
-* HTTP Client using Jakarta Commons HTTP Client
-* Highly performant and scalable using Jetty 6 continuations
-* SOAP 1.1 and 1.2 support
-* MIME attachments
-* WS-Addressing support
-* WSDL based and XBean based deployments
-* Support for all MEPs as consumers or providers
-* SSL support
-* WS-Security support
-
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/http/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:http="http://servicemix.apache.org/http/1.0">
-
-  <!-- add http:consumer, http:soap-consumer
-           http:provider and http soap:provider definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-http component defines four endpoint type:
-- {{http:consumer}} :: This endpoint allows you to expose a service in the ESB to the outside world over HTTP. Whenever it receives an HTTP request, it will interact with the configured services on the ESB to provide the HTTP response.
-- {{http:soap-consumer}} :: Similar to {{http:consumer}}, but specifically geared towards handing SOAP requests and responses
-- {{http:provider}} :: This endpoint allows you to access remote services from within the ESB.  It will perform an external HTTP request whenever it receives a JBI MessageExchange
-- {{http:soap-provider}} :: Similar to {{http:provider}}, but specifically geared towards performing SOAP requests
-
-It also provides one additional legacy endpoints, which are still available to ease migration from ServiceMix 3:
-- {{http:endpoint}} :: (Deprecated) Legacy endpoint, capable to acting as a consumer or provider based on the configuration
-
diff --git a/docs/jbi/src/confluence/servicemix-jms.wiki b/docs/jbi/src/confluence/servicemix-jms.wiki
deleted file mode 100644
index c8f074b..0000000
--- a/docs/jbi/src/confluence/servicemix-jms.wiki
+++ /dev/null
@@ -1,38 +0,0 @@
-h1. servicemix-http
-
-h2. Overview
-ServiceMix ships with a JBI compliant JMS binding component named servicemix-jms.
-
-Here are the main features:
-* JBI compliant Binding Component
-* Usable in a lightweight mode in servicemix.xml configuration files
-* SOAP 1.1 and 1.2 support
-* MIME attachments
-* WS-Addressing support
-* WSDL based and XBean based deployments
-* Support for all MEPs as consumers or providers
-
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/jms/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:jms="http://servicemix.apache.org/jms/1.0">
-
-  <!-- add jms:consumer, jms:soap-consumer, jms:jca-consumer,
-           jms:provider, jms:soap-provider and jms:jca-provider definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-jms component defines six endpoint type:
-- {{jms:consumer}} :: This endpoint allows you to expose a service in the ESB to the outside world over JMS. Whenever it receives a JMS message, it will interact with the configured services on the ESB.
-- {{jms:soap-consumer}} :: Similar to {{jms:consumer}}, but specifically geared towards handing SOAP requests and responses
-- {{jms:jca-consumer}} :: Similar to {{jms:consumer}}, but adds the possibility of using a JCA resource adapter
-- {{jms:provider}} :: This endpoint allows you to access remote services from within the ESB.  It will send a JMS message whenever it receives a JBI MessageExchange
-- {{jms:soap-provider}} :: Similar to {{jms:provider}}, but specifically geared towards performing SOAP requests
-- {{jms:jca-provider}} :: Similar to {{jms:provider}}, but adds the possibility of using a JCA resource adapter
-
-It also provides one additional legacy endpoints, which are still available to ease migration from ServiceMix 3:
-- {{jms:endpoint}} :: (Deprecated) Legacy endpoint, capable to acting as a consumer or provider based on the configuration
-
diff --git a/docs/jbi/src/confluence/servicemix-mail.wiki b/docs/jbi/src/confluence/servicemix-mail.wiki
deleted file mode 100644
index d70da42..0000000
--- a/docs/jbi/src/confluence/servicemix-mail.wiki
+++ /dev/null
@@ -1,21 +0,0 @@
-h1. servicemix-mail
-
-h2. Overview
-he ServiceMix Mail component provides support for receiving and sending mails via the enterprise service bus.
-
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/mail/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:mail="http://servicemix.apache.org/mail/1.0">
-
-  <!-- add mail:poller and mail:sender definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-mail component defines two endpoint type:
-- {{mail:poller}} :: Connect to a POP3 or IMAP server and send a MessageExchange for every mail
-- {{mail:sender}} :: Connect to an SMTP server and send a mail for every JBI MessageExchange it receives
-
diff --git a/docs/jbi/src/confluence/servicemix-osworkflow.wiki b/docs/jbi/src/confluence/servicemix-osworkflow.wiki
deleted file mode 100644
index 449f497..0000000
--- a/docs/jbi/src/confluence/servicemix-osworkflow.wiki
+++ /dev/null
@@ -1,20 +0,0 @@
-h1. servicemix-osworkflow
-
-h2. Overview
-The ServiceMix OSWorkflow component provides workflow functionality to the ESB. You can specify one or more workflows and it's processing will start when a valid message is received.
-
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/osworkflow/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:osworkflow="http://servicemix.apache.org/osworkflow/1.0">
-
-  <!-- add osworkflow:endpoint here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-osworkflow component defines a single endpoint type:
-- {{osworkflow:endpoint}} :: The endpoint will receive messages from the NMR and will then start the processing of the workflow.
-
diff --git a/docs/jbi/src/confluence/servicemix-quartz.wiki b/docs/jbi/src/confluence/servicemix-quartz.wiki
deleted file mode 100644
index f70c381..0000000
--- a/docs/jbi/src/confluence/servicemix-quartz.wiki
+++ /dev/null
@@ -1,19 +0,0 @@
-h1. servicemix-quartz
-
-h2. Overview
-The servicemix-quartz component is a standard JBI Service Engine able to schedule and trigger jobs using the great Quartz scheduler.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/quartz/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:osworkflow="http://servicemix.apache.org/quartz/1.0">
-
-  <!-- add quartz:endpoint here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-quartz component defines a single endpoint type:
-- {{quartz:endpoint}} :: The quartz endpoint can be used to fire message exchanges at a given (recurrent) time.
-
diff --git a/docs/jbi/src/confluence/servicemix-saxon.wiki b/docs/jbi/src/confluence/servicemix-saxon.wiki
deleted file mode 100644
index ccf95de..0000000
--- a/docs/jbi/src/confluence/servicemix-saxon.wiki
+++ /dev/null
@@ -1,170 +0,0 @@
-h1. servicemix-saxon
-
-h2. Overview
-The servicemix-saxon component is a standard JBI Service Engine for XSLT / XQuery. This component is based on Saxon and supports XSLT 2.0 and XPath 2.0, and XQuery 1.0.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/saxon/1.0}}.  This is an example of {{xbean.xml}} file with a namespace definition with prefix {{saxon}}.
-{code}
-    <beans xmlns:saxon="http://servicemix.apache.org/saxon  /1.0">
-
-      <!-- add saxon:xslt, saxon:xquery or saxon:proxy definitions here -->
-
-    </beans>
-{code}
-
-h3. Endpoint types
-The servicemix-saxon component defines these endpoints:
-- {{saxon:xslt}} :: Translates the in message content using XSLT to send back the translated content in the out message
-- {{saxon:proxy}} :: Acts as a proxy for an endpoint, translating the message passed to/from the endpoint using XSLT
-- {{saxon:xquery}} :: Use xquery to extract parts of the XML
-
-h2. Endpoint {{saxon:xslt}}
-
-The XSLT endpoint can be used to apply an XSLT stylesheet to the incoming exchange and will return the transformed result as the output message.
-{code:lang=xml}
-<saxon:xslt service="test:xslt" endpoint="endpoint"
-            resource="classpath:transform.xsl" />
-{code}
-
-h3. Mandatory properties
-The endpoint requires one of these two properties to be specified:
-- {{resource}} ([Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html]) :: the spring resource pointing to the XSLT stylesheet
-- {{expression}} ([ServiceMix expression|http://incubator.apache.org/servicemix/dist/servicemix-3.0-incubating/site/servicemix-core/apidocs/org/apache/servicemix/expression/Expression.html]) :: expression used to dynamically load the stylesheet
-
-h3. Optional properties
-- {{wsdlResource}} ([Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html]) :: if set, the wsdl will be retrieved from the given Spring resource
-- {{transformerFactory}} (TransformerFactory, defaults to the Saxon implementation) :: TraX factory to create transformers
-- {{configuration}} ([Saxon configuration|http://www.saxonica.com/documentation/javadoc/net/sf/saxon/Configuration.html]) :: Saxon configuration object
-- {{result}} (String, defaults to {{dom}}) :: Allows specifying the output result type, possible values are {{dom}}, {{bytes}}, {{string}}
-- {{copyAttachments}}, {{copyProperties}} and {{copySubject}} (default to {{true}} ::  Configure to copy message attachments, properties and security subject over to the result message
-- {{useDomSourceForXslt}} (defaults to {{true}} :: when set to {{true}}, forces the transformation of the xslt stylesheet into a DOM document before giving it to the transformer
-- {{useDomSourceForContent}} (defaults to {{false}}) :: when set to {{true}}, forces the transformation of the incoming JBI message into a DOM document before giving it to the transformer
-- {{parameters}} :: a {{Map}} containing additional parameters to give to the transformation engine
-
-h3. Using properties and parameters
-All properties defined on the JBI exchange and input JBI message will be available for use inside the XSLT stylesheet as parameters.
-In addition to those properties and the one specified in the {{parameters}} property on the endpoint, the following objects are also available:
-- {{exchange}} :: the JBI exchange
-- {{in}} :: the input JBI NormalizedMessage
-- {{component}} :: the XsltEndpoint instance being called
-
-All those parameters can be accessed using XSLT standard ways using {{<xsl:param/>}}.
-
-h2. Endpoint {{saxon:proxy}}
-One common use case is the need to transform a request coming from a service and send it to another service and do the same with the response.  A simple example is the need to translate the request and responses between two SOAP endpoints.  Such a use case could be implemented using two XSLT endpoints and an EIP StaticRoutingSlip.  However, there are some drawbacks, as the operation is lost in the process, and a static routing slip can not be used to process InOnly exchanges.
-{code:lang=xml}
-<saxon:proxy service="test:proxy" endpoint="endpoint"
-             resource="classpath:transform-in.xsl"
-             outResource="classpath:transform-out.xsl"
-             faultResource="classpath:transform-fault.xsl">
-  <saxon:target>
-    <saxon:exchange-target service="test:echo" />
-  </saxon:target>
-</saxon:proxy>
-{code}
-
-h3. Mandatory properties
-Depending on the MEP, you have to set one or more XSL stylesheets to be used for converting the message payloads:
-- {{resource}} :: [Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html] pointing to the XSLT stylesheet used to transform the input message
-- {{outResource}} :: [Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html] pointing to the XSLT stylesheet used to transform the output message
-- {{faultResource}} :: [Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html] pointing to the XSLT stylesheet used to transform the fault message
-- {{expression}} :: [ServiceMix expression|http://incubator.apache.org/servicemix/dist/servicemix-3.0-incubating/site/servicemix-core/apidocs/org/apache/servicemix/expression/Expression.html] used to dynamically load the stylesheet. If set, it will prevail against all resource, outResource and faultResource attributes
-
-You also have to specify the target service that should be invoked from this endpoint:
-- {{target}} :: ExchangeTarget that specifies the target service for the proxy endpoint
-
-h3. Optional properties
-- {{wsdlResource}} :: if set, the wsdl will be retrieved from the given ([Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html])
-- {{transformerFactory}} (defaults to the Saxon implementation) :: TraX TransformerFactory to create transformers
-- {{configuration}} ([Saxon configuration|http://www.saxonica.com/documentation/javadoc/net/sf/saxon/Configuration.html]) :: Saxon configuration object
-- {{result}} (defaults to {{dom}}) :: Allows specifying the output result type, possible values are {{dom}}, {{bytes}}, {{string}}
-- {{copyAttachments}}, {{copyProperties}} and {{copySubject}} (default to {{true}}) ::  Configure to copy message attachments, properties and security subject over to the result message
-
-h2. Endpoint {{saxon:xquery}}
-The XQuery endpoint can be used to apply a selected XQuery to the input document.
-{code:lang=xml}
-<saxon:xquery service="test:xquery" endpoint="endpoint"
-              resource="classpath:query.xq" />
-{code}
-
-h3. Mandatory properties
-You need to specify one of {{query}}, {{resource}} or {{expression}}
-- {{query}} :: String containing the inlined XQuery expression
-- {{resource}} :: [Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html] resource pointing to the XQuery
-- {{expression}} :: | [ServiceMix expression|http://incubator.apache.org/servicemix/dist/servicemix-3.0-incubating/site/servicemix-core/apidocs/org/apache/servicemix/expression/Expression.html]  to dynamically load the xquery
-
-h3. Optional properties
-- {{wsdlResource}} :: if set, the wsdl will be retrieved from the given ([Spring resource|http://springframework.org/docs/api/org/springframework/core/io/Resource.html])
-- {{outputProperties}} :: Map containing the Saxon specific output properties
-- {{configuration}} ([Saxon configuration|http://www.saxonica.com/documentation/javadoc/net/sf/saxon/Configuration.html]) :: Saxon configuration object
-- {{result}} (defaults to {{dom}}) :: Allows specifying the output result type, possible values are {{dom}}, {{bytes}}, {{string}}
-- {{copyAttachments}}, {{copyProperties}} and {{copySubject}} (default to {{true}}) ::  Configure to copy message attachments, properties and security subject over to the result message
-
-h2. Sample configurations
-h3. {{saxon:xslt}} : Dynamic stylesheet selection
-This endpoint configuration will dynamically load the XSL-T resource that is specified in the {{xslt.source}} property on the {{NormalizedMessage}}
-{code:lang=xml}
-<saxon:xslt service="test:xslt-dynamic" endpoint="endpoint">
-  <saxon:expression>
-    <bean class="org.apache.servicemix.expression.PropertyExpression">
-      <property name="property" value="xslt.source" />
-    </bean>
-  </saxon:expression>
-</saxon:xslt>
-{code}
-
-h3. {{saxon:xslt}} : Using parameters in the XSL-T stylesheet
-You can define a Map of parameters on the {{saxon:xslt}} endpoint.
-{code:lang=xml}
-<saxon:xslt service="test:xslt-params" endpoint="endpoint"
-            resource="classpath:parameter-test.xsl">
-  <property name="parameters">
-    <map>
-      <entry key="stringParam" value="cheeseyCheese"/>
-      <entry key="integerParam">
-        <bean class="java.lang.Integer">
-          <constructor-arg index="0" value="4002"/>
-        </bean>
-      </entry>
-    </map>
-  </property>
-</saxon:xslt>
-{code}
-
-In the XSL file, you can access the parameter values with {{<xsl:param/>}}.  You can also access headers on the NormalizedMessage (like e.g. {{org.apache.servicemix.file}}) with the same syntax.
-{code:lang=xml}
-<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
-  <xsl:param name="stringParam"/>
-  <xsl:param name="integerParam"/>
-  <xsl:param name="org.apache.servicemix.file" />
-  ...
-</xsl:stylesheet>
-{code}
-
-h3. {{saxon:xquery}} : Inlined XQuery and specific output configuration
-{code:lang=xml}
-<saxon:xquery service="test:xquery-inline" endpoint="endpoint">
-  <saxon:query>
-    for $x in /bookstore/book
-    where $x/price > 30
-    return $x/title
-  </saxon:query>
-  <saxon:outputProperties>
-    <saxon:property key="{http://saxon.sf.net/}wrap-result-sequence">yes</saxon:property>
-  </saxon:outputProperties>
-</saxon:xquery>
-{code}
-
-h3. {{saxon:xquery}} : Dynamic XQuery selection
-This endpoint configuration will dynamically load the XQuery resource that is specified in the {{xquery.source}} property on the {{NormalizedMessage}}
-{code:lang=xml}
-<saxon:xquery service="test:xquery-dynamic" endpoint="endpoint">
-  <saxon:expression>
-    <bean class="org.apache.servicemix.expression.PropertyExpression">
-      <property name="property" value="xquery.source" />
-    </bean>
-  </saxon:expression>
-</saxon:xquery>
-{code}
-
diff --git a/docs/jbi/src/confluence/servicemix-scripting.wiki b/docs/jbi/src/confluence/servicemix-scripting.wiki
deleted file mode 100644
index 6e2bbee..0000000
--- a/docs/jbi/src/confluence/servicemix-scripting.wiki
+++ /dev/null
@@ -1,24 +0,0 @@
-h1. servicemix-scripting
-
-h2. Overview
-The ServiceMix Scripting component provides support for processing scripts using JSR-223 compliant scripting languages.
-
-The component is currently shipping with:
-* Groovy (1.5.6)
-* JRuby (1.1.2)
-* Rhino JavaScript (1.7R1)
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/scripting/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:scripting="http://servicemix.apache.org/scripting/1.0">
-
-  <!-- add scripting:endpoint here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-scripting component defines a single endpoint type:
-- {{scripting:endpoint}} :: The scripting endpoint can be used to use scripts to handle exchanges or send new exchanges
-
diff --git a/docs/jbi/src/confluence/servicemix-snmp.wiki b/docs/jbi/src/confluence/servicemix-snmp.wiki
deleted file mode 100644
index 52f8374..0000000
--- a/docs/jbi/src/confluence/servicemix-snmp.wiki
+++ /dev/null
@@ -1,20 +0,0 @@
-h1. servicemix-snmp
-
-h2. Overview
-The ServiceMix SNMP component provides support for receiving SNMP events via the enterprise service bus by using the SNMP4J library.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/snmp/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:snmp="http://servicemix.apache.org/snmp/1.0">
-
-  <!-- add snmp:poller or snmp:sender definitions here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-snmp component defines two endpoint types:
-- {{snmp:poller}} :: Periodically polls a device status using SNMP and sends the OIDs as a JBI MessageExchange
-- {{snmp:trap-consumer}} :: Consumes an SNMP trap message and sends the OIDs as a JBI MessageExchange
-
diff --git a/docs/jbi/src/confluence/servicemix-validation.wiki b/docs/jbi/src/confluence/servicemix-validation.wiki
deleted file mode 100644
index 8be7022..0000000
--- a/docs/jbi/src/confluence/servicemix-validation.wiki
+++ /dev/null
@@ -1,19 +0,0 @@
-h1. servicemix-validation
-
-h2. Overview
-The ServiceMix Validation component provides schema validation of documents using JAXP 1.3 and XMLSchema or RelaxNG.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/validation/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:scripting="http://servicemix.apache.org/validation/1.0">
-
-  <!-- add validation:endpoint here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-validation component defines a single endpoint type:
-- {{validation:endpoint}} :: Validates the incoming XML message - can be configured to fail the exchange or to send validation errors back to the sender in the message body.
-
diff --git a/docs/jbi/src/confluence/servicemix-vfs.wiki b/docs/jbi/src/confluence/servicemix-vfs.wiki
deleted file mode 100644
index 49e4ba7..0000000
--- a/docs/jbi/src/confluence/servicemix-vfs.wiki
+++ /dev/null
@@ -1,20 +0,0 @@
-h1. servicemix-vfs
-
-h2. Overview
-The ServiceMix VFS component provides support for reading from and writing to virtual file systems via the enterprise service bus by using the Apache commons-vfs library.
-
-h3. Namespace and xbean.xml
-The namespace URI for the servicemix-bean JBI component is {{http://servicemix.apache.org/vfs/1.0}}.  This is an example of <filename>xbean.xml</filename> file with a namespace definition with prefix {{bean}}.
-{code}
-<beans xmlns:vfs="http://servicemix.apache.org/vfs/1.0">
-
-  <!-- add vfs:poller or vfs:sender here -->
-
-</beans>
-{code}
-
-h3. Endpoint types
-The servicemix-vfs component defines two endpoint types:
-- {{vfs:poller}} :: Periodically polls a directory on one of the VFS-supported file systems for files and sends an exchange for every file
-- {{vfs:sender}} :: Writes the contents of an exchange to a file on one of the VFS-supported file systems
-
diff --git a/docs/jbi/src/confluence/servicemix-wsn2005.wiki b/docs/jbi/src/confluence/servicemix-wsn2005.wiki
deleted file mode 100644
index 2f47b5d..0000000
--- a/docs/jbi/src/confluence/servicemix-wsn2005.wiki
+++ /dev/null
@@ -1,6 +0,0 @@
-h1. servicemix-wsn2005
-
-h2. Overview
-The servicemix-wsn2005 is a standard JBI Service Engine which implements the WS-Notification specification from Oasis.
-
-
diff --git a/docs/jbi/src/confluence/servicemix-xmpp.wiki b/docs/jbi/src/confluence/servicemix-xmpp.wiki
deleted file mode 100644
index 891d92e..0000000
--- a/docs/jbi/src/confluence/servicemix-xmpp.wiki
+++ /dev/null
@@ -1,6 +0,0 @@
-h1. servicemix-xmpp
-
-h2. Overview
-The ServiceMix XMPP component is used to communicate with XMPP (Jabber) servers through the JBI bus.
-
-
diff --git a/docs/jbi/src/docbkx/index.xml b/docs/jbi/src/docbkx/index.xml
deleted file mode 100644
index c09c5ac..0000000
--- a/docs/jbi/src/docbkx/index.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" 
-"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
-<book xmlns:xi="http://www.w3.org/2001/XInclude">
-  <bookinfo>
-    <title>Apache ServiceMix</title>
-    <subtitle>JBI Reference Manual</subtitle>
-    <releaseinfo>${version}</releaseinfo>
-
-    <authorgroup>
-      <corpauthor>Apache ServiceMix Community</corpauthor>
-    </authorgroup>
-
-    <legalnotice>
-      <para>Licensed to the Apache Software Foundation (ASF) under one or more
-      contributor license agreements. See the NOTICE file distributed with
-      this work for additional information regarding copyright ownership. The
-      ASF licenses this file to You under the Apache License, Version 2.0 (the
-      "License"); you may not use this file except in compliance with the
-      License. You may obtain a copy of the License at</para>
-
-      <para>http://www.apache.org/licenses/LICENSE-2.0</para>
-
-      <para>Unless required by applicable law or agreed to in writing,
-      software distributed under the License is distributed on an "AS IS"
-      BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied. See the License for the specific language governing permissions
-      and limitations under the License.</para>
-    </legalnotice>
-  </bookinfo>
-
-  <toc></toc>
-
-  <part>
-    <title>ServiceMix JBI Components</title>
-    <xi:include href="servicemix-bean.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-camel.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-cxf-bc.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-cxf-se.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-drools.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-eip.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-file.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-ftp.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-http.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-jms.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-mail.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-osworkflow.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-saxon.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-scripting.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-snmp.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-validation.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-vfs.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-wsn2005.wiki.xml" parse="xml"/>
-    <xi:include href="servicemix-xmpp.wiki.xml" parse="xml"/>
-
-    <chapter>
-      <title>Test snippets</title>
-      <xi:include href="snippet://&servicemix-bean-source;/src/test/java/org/apache/servicemix/bean/beans/AnnotatedBean.java"/>
-    </chapter>
-  </part>
-  
-  <appendix>
-    <title>JBI Component XSD reference</title>
-    <xi:include href="appendix/servicemix-bean.xml" parse="xml"/>
-    <xi:include href="appendix/servicemix-saxon.xml" parse="xml" />
-  </appendix>
-  
-</book>
\ No newline at end of file
diff --git a/docs/jbi/src/main/xslt/xbean-xsd.xsl b/docs/jbi/src/main/xslt/xbean-xsd.xsl
deleted file mode 100644
index 2ccd7ab..0000000
--- a/docs/jbi/src/main/xslt/xbean-xsd.xsl
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:xsd='http://www.w3.org/2001/XMLSchema'
-                version="1.0">
-
-  <xsl:template match="xsd:schema">
-    <section>
-      <xsl:apply-templates select="xsd:element"/>
-    </section>
-  </xsl:template>
-
-  <xsl:template match="xsd:element[@name='component']">
-    <title>
-      <xsl:value-of select="xsd:annotation/xsd:documentation/text()"/>
-    </title>  
-  </xsl:template>
-
-  <xsl:template match="xsd:element">
-    <simplesect>
-      <title><xsl:value-of select="@name"/></title>
-      <para>
-        <xsl:value-of select="xsd:annotation/xsd:documentation/text()"/>
-      </para>
-      <para>
-      <table class="reference">
-        <caption>Attributes</caption>
-        <tbody>
-          <xsl:apply-templates select="xsd:complexType/xsd:attribute"/>
-        </tbody>        
-      </table>
-      </para>
-    </simplesect>
-  </xsl:template>
-
-  <xsl:template match="xsd:attribute">
-    <tr>
-      <td><xsl:value-of select="@name"/></td>
-      <td><xsl:value-of select="@type"/></td>
-    </tr>
-  </xsl:template>
-
-</xsl:stylesheet>
diff --git a/docs/manual/pom.xml b/docs/manual/pom.xml
deleted file mode 100644
index a508f1a..0000000
--- a/docs/manual/pom.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.apache.servicemix.docs</groupId>
-    <artifactId>docs</artifactId>
-    <version>4.3-SNAPSHOT</version>
-  </parent>
-
-  <artifactId>manual</artifactId>
-  <packaging>pom</packaging>
-  <name>Apache ServiceMix :: Documentation :: Programmer's Manual</name>
-  <description>The ServiceMix Programmer's Guide</description>
-
-  <properties>
-    <docbkx.start.page>manual.xml</docbkx.start.page>
-  </properties>
-
-</project>
diff --git a/docs/manual/src/confluence/camel/deployment.wiki b/docs/manual/src/confluence/camel/deployment.wiki
deleted file mode 100644
index 1179177..0000000
--- a/docs/manual/src/confluence/camel/deployment.wiki
+++ /dev/null
@@ -1,114 +0,0 @@
-h1. Deployment options
-There are a few different ways to deploy Camel routes on ServiceMix ${servicemx.version}:
-* deploy routes in a plain Spring XML file
-* deploy a bundle containing
-*# routes defined in a Spring XML file
-*# routes defined in the Java or Scala DSL
-
-Camel routes can also be deployed as part of a JBI SA, allowing you use Camel for routing between JBI endpoints - this option will be discussed later when we are talking about using JBI inside ServiceMix 4.
-
-h2. Deploy as a plain Spring XML file
-ServiceMix ${servicemix.version} supports the deployment of plain Spring XML files, automatically creating and starting the Spring ApplicationContext from the XML file.
-
-In order to leverage this feature to create and start Camel routes, drop a file with this syntax in the {{$SERVICEMIX_HOME/deploy}} folder:
-{code:lang=xml}
-<?xml version="1.0" encoding="UTF-8"?>
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:camel="http://camel.apache.org/schema/spring"
-       xsi:schemaLocation="
-          http://www.springframework.org/schema/beans
-            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
-          http://camel.apache.org/schema/spring
-            http://camel.apache.org/schema/spring/camel-spring-${camel-version}.xsd">
-
-  <camelContext xmlns="http://camel.apache.org/schema/spring">
-    <!-- add Camel routes, interceptors,... here --> 
-  </camelContext>
-
-</beans>
-{code}
-
-h3. An example
-Just create a new XML file in the deploy folder with the code below to start a route to copy files from one directory to another.
-{code:lang=xml}
-<?xml version="1.0" encoding="UTF-8"?>
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:camel="http://camel.apache.org/schema/spring"
-       xsi:schemaLocation="
-          http://www.springframework.org/schema/beans
-            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
-          http://camel.apache.org/schema/spring
-            http://camel.apache.org/schema/spring/camel-spring-${camel-version}.xsd">
-
-  <camelContext xmlns="http://camel.apache.org/schema/spring">
-    <route>
-      <from uri="file:input"/>
-      <log message="Copying ${file:name} to the output directory"/>
-      <to uri="file:output"/>
-    </route>
-  </camelContext>
-
-</beans>
-{code}
-
-h2. Deploy as an OSGi bundle
-The Spring XML file can also be deployed as part of a bundle by adding it to the {{META-INF/spring}} folder.  When the bundle is being started, the Spring ApplicationContext is created and started as well.  This kind of deployment also allows using Java or Scala Routebuilders for defining the routes.
-
-h3. Using the XML file to define the routes
-The route can be defined directly in the XML file you add to {{META-INF/spring}}, similar to the example shown before.
-
-h3. Using a Java or Scala RouteBuilder
-When using a Java (or Scala) RouteBuilder to define your Camel routes, the Spring XML file refers to the packages containing the RouteBuilder classes:
-{code:lang=xml}
-<?xml version="1.0" encoding="UTF-8"?>
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:camel="http://camel.apache.org/schema/spring"
-       xsi:schemaLocation="
-          http://www.springframework.org/schema/beans
-            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
-          http://camel.apache.org/schema/spring
-            http://camel.apache.org/schema/spring/camel-spring-${camel-version}.xsd">
-
-  <camelContext xmlns="http://camel.apache.org/schema/spring">
-    <package>org.apache.servicemix.manual.camel</package>
-  </camelContext>
-
-</beans>
-{code}
-
-The matching Java RouteBuilder class could look like this
-{code:lang=java}
-package org.apache.servicemix.manual.camel;
-
-import org.apache.camel.builder.RouteBuilder;
-
-public class MyRouteBuilder extends RouteBuilder {
-
-  public void configure() {
-    from("file:input")
-      .log("Copying ${file:name} to the output directory")
-      .to("file:output");
-  }
-
-}
-{code}
-
-A similar Scala RouteBuilder could look like
-{code:lang=scala}
-package org.apache.servicemix.manual.camel;
-
-import org.apache.camel.scala.dsl.builder.RouteBuilder;
-
-class MyRouteBuilder extends RouteBuilder {
-
-  "file:input" ==> {
-    log("Copying ${file:name} to the output directory")
-    to("file:output")
-  }
-
-}
-{code}
-
diff --git a/docs/manual/src/confluence/getting_started/technology_selection.wiki b/docs/manual/src/confluence/getting_started/technology_selection.wiki
deleted file mode 100644
index 402e754..0000000
--- a/docs/manual/src/confluence/getting_started/technology_selection.wiki
+++ /dev/null
@@ -1,34 +0,0 @@
-h1. Technology selection guide
-ServiceMix 4 offers a set of different messaging and integration technologies:
-* ActiveMQ
-* Camel
-* CXF
-* JBI
-* NMR
-
-Depending on the solution you're building, you want to select one or more of these technologies.  Below are some guidelines to help you pick the right mix for your problem.
-
-h2. When to use Camel?
-For any integration scenario, we recommend to start as simple as possible.  Camel allows you to build routes for integration scenario's quickly and efficiently.  You can deploy these routes directly on ServiceMix by deploying the plain Spring XML route or by packaging the route in an OSGi bundle.
-
-As you need more (advanced) features, start combining Camel with ActiveMQ, CXF and/or the NMR
-
-h2. When to use ActiveMQ?
-ActiveMQ is a JMS message broker, featuring support for clustering, pluggable persistence mechanism, master-slave configuration for failover, ...
-
-ServiceMix 4 includes an instance of the ActiveMQ broker, which can be combined with Camel to provide easy-to-use message persistence and reliable messaging.
-
-After setting up multiple instances of ActiveMQ (or ServiceMix 4) on the network, you can configure ActiveMQ clustering or master-slave mode to allow for a more reliable and scalable set-up.
-
-h2. When to use CXF?
-CXF is an open-source services framework that you can use to suit your WS-* standards integration needs.  It allows you to use common programming APIs like JAX-RS or JAX-WS for building your own services and to expose them to the outside world.
-
-You can use CXF from within your Camel routes with the Camel CXF component.
-
-h2. When to use NMR?
-The NMR provides the basic ESB features for ServiceMix 4.  You can use it to connect multiple camel routes in a lightweight way.  It can also be used as a common transport on which you can add container-level auditing by registering your own ExchangeListener implementation.
-
-h2. When to use JBI?
-If you want to build a full-blown SOA solution using BPEL, ServiceMix includes a version of Apache ODE that integrates well with JBI messaging.  Because we still support JBI 1.0 on ServiceMix, you can also move your existing JBI artifacts from ServiceMix 3 to the new container with no/minimal changes.
-
-
diff --git a/docs/manual/src/confluence/nmr/camel-nmr.wiki b/docs/manual/src/confluence/nmr/camel-nmr.wiki
deleted file mode 100644
index 15f0e81..0000000
--- a/docs/manual/src/confluence/nmr/camel-nmr.wiki
+++ /dev/null
@@ -1,54 +0,0 @@
-h1. Camel NMR Component
-
-The Camel NMR component is an adapter to the Normalized Message Router (NMR) in ServiceMix, which is intended for use by Camel applications deployed directly into the OSGi container.
-
-h2. Installing
-
-In order to be able to use this component, you first have to define it in  your Spring configuration file ({{META-INF/spring/*.xml}}) by adding the following {{bean}}:
-
-{code}
-<beans xmlns:osgi="http://www.springframework.org/schema/osgi" ... >
-    ...
-    <bean id="nmr" class="org.apache.servicemix.camel.nmr.ServiceMixComponent">
-        <property name="nmr">
-            <osgi:reference interface="org.apache.servicemix.nmr.api.NMR" />
-        </property>
-    </bean>
-    ...
-</beans>
-{code}
-
-h2. NMR consumer and producer endpoints
-
-The following code:
-
-{code}
-from("nmr:MyServiceEndpoint")
-{code}
-
-Automatically exposes a new endpoint to the bus with endpoint name {{MyServiceEndpoint}} (see [#URI-format]).
-
-When an NMR endpoint appears at the end of a route, for example:
-
-{code}
-to("nmr:MyServiceEndpoint")
-{code}
-
-The messages sent by this producer endpoint are sent to the already deployed JBI endpoint.
-
-h2. URI format
-
-{code}
-nmr:endpointName
-{code}
-
-h4. URI Options
-- *{{synchronous}}* (defaults to {{false}}) ::  When this is set to {{true}} on a consumer endpoint, an incoming, synchronous NMR Exchange will be handled on the sender's thread instead of being handled on a new thread of the NMR endpoint's thread pool |
-
-
-h3. Examples
-
-{code}
-from("nmr:MyServiceEndpoint")
-from("nmr:MyServiceEndpoint?synchronous=true").to("nmr:AnotherEndpoint")
-{code}
diff --git a/docs/manual/src/confluence/nmr/event-listeners.wiki b/docs/manual/src/confluence/nmr/event-listeners.wiki
deleted file mode 100644
index 7540691..0000000
--- a/docs/manual/src/confluence/nmr/event-listeners.wiki
+++ /dev/null
@@ -1,89 +0,0 @@
-h1. Event listeners
-
-The NMR has a rich event API that can be used to receive all sort of notifications about what's happening in the NMR.
-Currently, two types of listeners are defined:
-- {{org.apache.servicemix.nmr.api.event.EndpointListener}}
-- {{org.apache.servicemix.nmr.api.event.ExchangeListener}}
-
-h2. Endpoint Listener
-
-h3. API
-The {{EndpointListener}} defined two methods:
-- {{endpointRegistered}} is called whenever a new endpoint is registered with the NMR
-- {{endpointUnregistered}} is called whenever an existing endpoint is unregistered
-
-{code:lang=java}
-public interface EndpointListener {
-    void endpointRegistered(InternalEndpoint endpoint);
-    void endpointUnregistered(InternalEndpoint endpoint);
-}
-{code}
-
-h3. Registering {{EndpointListener}}
-An {{EndpointListener}} can be registered directly with the NMR:
-{code:lang=java}
-nmr.getListenerRegistry().register(listener, null);
-{code}
-
-The recommended way of registering an {{EndpointListener}} is by adding it to the OSGi Service Registry, e.g. using a Blueprint XML file:
-{code:lang=xml}
-<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
-           xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0">
-
-    <bean id="myListener" class="..."/>
-
-    <service ref="myListener">
-      <interfaces>
-        <value>org.apache.servicemix.nmr.api.event.EndpointListener</value>
-        <value>org.apache.servicemix.nmr.api.event.Listener</value>
-      </interfaces>
-    </service>
-
-</blueprint>
-{code}
-
-h3. Example
-An example of using an endpoint listener is shipped as part of the ServiceMix distribution.  It can be found in the {{examples/interceptors/endpoint}} directory.
-
-h2. ExchangeListener
-
-h3. API
-The {{ExchangeListener}} defined two methods:
-- {{exchangeSent}} is called whenever an exchange is sent to the NMR for delivery
-- {{exchangeDelivered}} is called whenever an exchange is being delivered to an endpoint
-- {{exchangeFailed}} is called when a failure occurs while handling an exchange
-
-
-{code:lang=java}
-public interface ExchangeListener {
-    void exchangeSent(Exchange exchange);
-    void exchangeDelivered(Exchange exchange);
-    void exchangeFailed(Exchange exchange);
-}
-{code}
-
-h3. Registering {{ExchangeListener}}
-An {{ExchangeListener}} can be registered directly with the NMR:
-{code:lang=java}
-nmr.getListenerRegistry().register(listener, null);
-{code}
-
-The recommended way of registering an {{ExchangeListener}} is by adding it to the OSGi Service Registry, e.g. using a Blueprint XML file:
-{code:lang=xml}
-<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
-           xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0">
-
-    <bean id="myListener" class="..."/>
-
-    <service ref="myListener">
-      <interfaces>
-        <value>org.apache.servicemix.nmr.api.event.ExchangeListener</value>
-        <value>org.apache.servicemix.nmr.api.event.Listener</value>
-      </interfaces>
-    </service>
-
-</blueprint>
-{code}
-
-h3. Example
-An example of using an exchange listener is shipped as part of the ServiceMix distribution.  It can be found in the {{examples/interceptors/exchange}} directory.
\ No newline at end of file
diff --git a/docs/manual/src/docbkx/clustering.xml b/docs/manual/src/docbkx/clustering.xml
deleted file mode 100644
index 03832a5..0000000
--- a/docs/manual/src/docbkx/clustering.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<chapter id="clustering"          
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-   	<title>Clustering and High Availability</title>
-   	<para>TODO</para>
-</chapter>
diff --git a/docs/manual/src/docbkx/discover.xml b/docs/manual/src/docbkx/discover.xml
deleted file mode 100644
index e55485e..0000000
--- a/docs/manual/src/docbkx/discover.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<chapter id="discover"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-   	<title>Discover servicemix 4 (through simple examples)</title>
-   	<para>TODO</para>
-</chapter>
diff --git a/docs/manual/src/docbkx/images/draft.png b/docs/manual/src/docbkx/images/draft.png
deleted file mode 100644
index 0084708..0000000
--- a/docs/manual/src/docbkx/images/draft.png
+++ /dev/null
Binary files differ
diff --git a/docs/manual/src/docbkx/images/smx4-dev-framework-debug.gif b/docs/manual/src/docbkx/images/smx4-dev-framework-debug.gif
deleted file mode 100644
index 4b7f538..0000000
--- a/docs/manual/src/docbkx/images/smx4-dev-framework-debug.gif
+++ /dev/null
Binary files differ
diff --git a/docs/manual/src/docbkx/images/smx4-dev-framework-nodebug.gif b/docs/manual/src/docbkx/images/smx4-dev-framework-nodebug.gif
deleted file mode 100644
index 53d1405..0000000
--- a/docs/manual/src/docbkx/images/smx4-dev-framework-nodebug.gif
+++ /dev/null
Binary files differ
diff --git a/docs/manual/src/docbkx/images/smx4-dev-framework.bmp b/docs/manual/src/docbkx/images/smx4-dev-framework.bmp
deleted file mode 100644
index e69de29..0000000
--- a/docs/manual/src/docbkx/images/smx4-dev-framework.bmp
+++ /dev/null
diff --git a/docs/manual/src/docbkx/images/smx4-dev-showtree.gif b/docs/manual/src/docbkx/images/smx4-dev-showtree.gif
deleted file mode 100644
index 3553e1c..0000000
--- a/docs/manual/src/docbkx/images/smx4-dev-showtree.gif
+++ /dev/null
Binary files differ
diff --git a/docs/manual/src/docbkx/images/smx4-start.jpg b/docs/manual/src/docbkx/images/smx4-start.jpg
deleted file mode 100644
index 92d9de0..0000000
--- a/docs/manual/src/docbkx/images/smx4-start.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/manual/src/docbkx/index.xml b/docs/manual/src/docbkx/index.xml
deleted file mode 100644
index 0830e46..0000000
--- a/docs/manual/src/docbkx/index.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<!DOCTYPE book [
-	<!ENTITY version "4.2">
-]>
-<book id="book" label="Apache ServiceMix Manual Guide" status="draft" lang="en"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-              
-    <title>Apache ServiceMix &version; Manual Guide</title>
-    
-    <bookinfo>
-        <authorgroup>
-            <author>
-                <firstname>Guillaume</firstname>
-                <surname>Nodet</surname>
-                <email>gnodet@apache.org</email>
-            </author>
-            <author>
-                <firstname>Gert</firstname>
-                <surname>Vanthienen</surname>
-                <email>gertv@apache.org</email>
-            </author>
-            <author>
-                <firstname>Lars</firstname>
-                <surname>Heinemann</surname>
-                <email>lhein@apache.org</email>
-            </author>
-            <author>
-                <firstname>Jean-Baptiste</firstname>
-                <surname>Onofre</surname>
-                <email>jbonofre@apache.org</email>
-            </author>
-            <author>
-                <firstname>Bruce</firstname>
-                <surname>Snyder</surname>
-                <email>bsnyder@apache.org</email>
-            </author>
-            <author>
-                <firstname>Charles</firstname>
-                <surname>Moulliard</surname>
-                <email>cmoulliard@apache.org</email>
-            </author>
-        </authorgroup>
-        <copyright>
-            <year>2010</year>
-            <holder>Apache Software Foundation</holder>
-        </copyright>
-        <date>2010-04-28</date>
-        <revhistory>
-            <revision>
-                <revnumber>001</revnumber>
-                <date>2009-07-19</date>
-                <authorinitials>jbonofre</authorinitials>
-                <revremark>Initial revision</revremark>
-            </revision>
-            <revision>
-                <revnumber>002</revnumber>
-                <date>2010-02-02</date>
-                <authorinitials>cmoulliard</authorinitials>
-                <revremark>Update table of content, add directory for images</revremark>
-            </revision>
-            <revision>
-                <revnumber>003</revnumber>
-                <date>2010-04-28</date>
-                <authorinitials>cmoulliard</authorinitials>
-                <revremark>Split structure in several documents, add section numbering</revremark>
-            </revision>
-        </revhistory>
-        <corpname>Apache Software Foundation</corpname>
-    </bookinfo>
-    
-    <toc />
-    
-    <!-- Chapter on What is ServiceMix 4 -->
-    <xi:include href="whatissmx4.xml"/>
-    
-    <!-- Chapter on installation and build -->
-    <xi:include href="installation.xml"/>
-    
-	<!-- Chapter on clustering and high-availability -->
-    <xi:include href="clustering.xml"/>    
-
- 	<!-- Chapter on ServiceMix migration 3 to 4 -->
-    <xi:include href="migrate.xml"/>   
-    
-</book>
\ No newline at end of file
diff --git a/docs/manual/src/docbkx/installation.xml b/docs/manual/src/docbkx/installation.xml
deleted file mode 100644
index d841ca0..0000000
--- a/docs/manual/src/docbkx/installation.xml
+++ /dev/null
@@ -1,485 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements.  See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
-the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-<!DOCTYPE chapter [
-<!ENTITY version "4.2">
-]>
-<chapter id="installation" 
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-    <title>Installation and build</title>
-    <figure>
-        <title>Figure 1 : Launch ServiceMix 4</title>
-        <mediaobject>
-           <imageobject role="html">
-		       <imagedata fileref="images/smx4-start.gif" format="gif"/>
-		   </imageobject>
-		   <imageobject role="fo">
-		       <imagedata fileref="images/smx4-start.gif" format="gif" width="18cm" depth="9cm"/>
-		   </imageobject>
-           <textobject>
-                <phrase>Figure 1 : Launch ServiceMix 4</phrase>
-           </textobject>
-        </mediaobject>
-    </figure>
-    
-    <section id="requirement">
-        <title>
-            Installation Requirements
-        </title>
-        <section id="hardware">
-            <title>
-                Hardware
-            </title>
-            <para>
-                <itemizedlist>
-                    <listitem>
-                        <para>
-                            100 MB of disk space for the ServiceMix &version; binary distribution.
-                        </para>
-                    </listitem>
-                </itemizedlist>
-            </para>
-        </section>
-        <section id="OS">
-            <title>
-                Operating Systems
-            </title>
-            <para>
-                <itemizedlist>
-                    <listitem>
-                        <para>
-                            <emphasis>
-                                Microsoft Windows
-                            </emphasis>
-                            : XP SP2, 2000, 2003, Vista, 7
-                        </para>
-                    </listitem>
-                    <listitem>
-                        <para>
-                            <emphasis>
-                                Unix
-                            </emphasis>
-                            : any Unix/Linux platform that supports Java.
-                        </para>
-                    </listitem>
-                </itemizedlist>
-            </para>
-        </section>
-        <section id="environment">
-            <title>
-                Environment
-            </title>
-            <para>
-                <itemizedlist>
-                    <listitem>
-                        <para>
-                            Java Developer Kit (JDK) 1.5.x (Java 5) for both deployment and compiling.
-                        </para>
-                    </listitem>
-                </itemizedlist>
-            </para>
-        </section>
-        <section id="download">
-            <title>
-                Get Apache ServiceMix &version;
-            </title>
-            <para>
-                You can download Apache ServiceMix &version; here:
-                <ulink>
-                    http://servicemix.apache.org/download.html
-                </ulink>
-                .
-            </para>
-            <para>
-                Apache ServiceMix is provided in two formats:
-                <itemizedlist>
-                    <listitem>
-                        <para>
-                            tarball for Unix platform
-                        </para>
-                    </listitem>
-                    <listitem>
-                        <para>
-                            zip for Windows platform
-                        </para>
-                    </listitem>
-                </itemizedlist>
-            </para>
-        </section>
-    </section>
-    
-    <section id="install_standalone">
-        <title>
-            Standalone Binary Distribution Installation Procedure
-        </title>
-        <section id="uncompress">
-            <title>
-                Uncompress
-            </title>
-            <para>
-                Frist you need to uncompress the downloaded archive (tarball or zip) in the directory of your choice (where you have write permissions).
-                Define the SERVICEMIX_HOME variable:
-                <example>
-                    <title>
-                        Windows
-                    </title>
-                    <programlisting>
-                        > set SERVICEMIX_HOME=C:\apache-servicemix-&version;
-                    </programlisting>
-                </example>
-                <example>
-                    <title>
-                        Linux/Unix
-                    </title>
-                    <programlisting>
-                        $ export SERVICEMIX_HOME=/apache-servicemix-&version;
-                    </programlisting>
-                </example>
-            </para>
-        </section>
-        <section id="start">
-            <title>
-                Starting ServiceMix
-            </title>
-            <example>
-                <title>
-                    Windows
-                </title>
-                <programlisting>
-                    > cd %SERVICEMIX_HOME%
-                    > .\bin\servicemix
-                </programlisting>
-            </example>
-            <example>
-                <title>
-                    Linux/Unix
-                </title>
-                <programlisting>
-                    $ cd $SERVICEMIX_HOME
-                    $ ./bin/servicemix
-                </programlisting>
-            </example>
-        </section>
-        <section id="stop">
-            <title>
-                Stopping ServiceMix
-            </title>
-            <para>
-                For both Windows and Unix installations, terminate ServiceMix by typing "CTRL-C" on the command line where ServiceMix is running. ServiceMix uses the Java shutdown hook to cleanly shut down the container.
-            </para>
-        </section>
-    </section>
-    
-    <section id="install_embedded">
-        <title>
-            ServiceMix Into A JEE Application Server Installation Procedure
-        </title>
-        
-    </section>
-    
-    <section id="configuration">
-        <title>
-            ServiceMix Configuration
-        </title>
-        <para>
-            This section contains description of main ServiceMix directories and files :
-            <itemizedlist>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            activemq-data
-                        </emphasis>
-                        - this directory is created by the ServiceMix at startup time. It contains the messages and transactions repository of the embedded Apache ActiveMQ.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            bin/servicemix
-                        </emphasis>
-                        - contains the main startup script of Apache ServiceMix.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/activemq.xml
-                        </emphasis>
-                        - contains the embedded Apache ActiveMQ configuration. This file shouldn't be modified as it's managed by internal ServiceMix processes.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/components.properties
-                        </emphasis>
-                        - contains the tuning of embedded JBI components. See the tuning section for more informations.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/servicemix.conf
-                        </emphasis>
-                        - contains the ServiceMix launcher classloading definition. This file shouldn't be modified.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/servicemix.properties
-                        </emphasis>
-                        - it's the main ServiceMix configuration file. It defines the port numbers used by the ServiceMix. You can change this file if one of the port number is already bound on your system.
-                        By default, ServiceMix uses the following ports :
-                        <itemizedlist>
-                            <listitem>
-                                <para>
-                                    1099 (rmi.port) - the core RMI port used by the ServiceMix.
-                                </para>
-                            </listitem>
-                            <listitem>
-                                <para>
-                                    61616 (activemq.port) - the embedded Apache ActiveMQ port.
-                                </para>
-                            </listitem>
-                        </itemizedlist>
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/servicemix.xml
-                        </emphasis>
-                        - contains the main ServiceMix Spring application context. This file mustn't be modified.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/groups.properties
-                        </emphasis>
-                        - contains ServiceMix JAAS security group definition. You can define group security to access to ServiceMix via JMX.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/jmx.xml
-                        </emphasis>
-                        - contains ServiceMix JMX layer application context. This file mustn't be modified.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/jndi.properties
-                        </emphasis>
-                        - contains the default ServiceMix JNDI definition. This file shouldn't be modified as it's managed by ServiceMix internal processes.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/keystore.jks
-                        </emphasis>
-                        - contains the security keys and certificates used by ServiceMix security layer. This file mustn't be modified.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/log4j.xml
-                        </emphasis>
-                        - contains ServiceMix logging definition. You can change this file to change the default log level of ServiceMix components. You can add new loggers if required.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/login.properties
-                        </emphasis>
-                        - contains ServiceMix JAAS security definition. This file mustn't be changed.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/security.xml
-                        </emphasis>
-                        - contains ServiceMix Security layer application context. This file mustn't be modified.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/tx.xml
-                        </emphasis>
-                        - contains ServiceMix Transaction layer application context. This file mustn't be modified.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/users-credentials.properties
-                        </emphasis>
-                        - contains ServiceMix JAAS security users and credentials (in case of external security module). You can define users allowed to administrate ServiceMix via JMX.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            conf/users-passwords.properties
-                        </emphasis>
-                        - contains basic ServiceMix JAAS seucrity users and passwords (internal). You can add users allowed to administrate ServiceMix via JMX.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            data/log/servicemix.log
-                        </emphasis>
-                        - this file is created by ServiceMix at startup time. It contains main ServiceMix log file.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            data
-                        </emphasis>
-                        - this directory is created by ServiceMix at startup time. It contains all required file (storage) required by ServiceMix internal components.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            extras
-                        </emphasis>
-                        - this directory contains extras JAR files required by JBI components deployed in ServiceMix. If you want to add JAR files in ServiceMix classloader, use
-                        <command>
-                            lib
-                        </command>
-                        directory.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            hotdeploy
-                        </emphasis>
-                        - this directory contains JBI components (services) automatically deployed by ServiceMix.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            lib
-                        </emphasis>
-                        - this directory contains all required JAR files for ServiceMix. You can add new JAR file in this directory if required.
-                    </para>
-                </listitem>
-            </itemizedlist>
-        </para>
-    </section>
-    
-    <section id="deploy">
-        <title>
-            Deploying components and services into ServiceMix
-        </title>
-    </section>
-    
-    <section id="tuning">
-        <title>
-            Tuning ServiceMix
-        </title>
-        <para>
-            You can tune ServiceMix at three basic levels :
-            <itemizedlist>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            Underlying JVM
-                        </emphasis>
-                        - ServiceMix uses an underlying JVM to run. By default, the JVM configuration is set to 512MB of maximum memory usage (that is enough for most of usage). Anyway if you encounter OutOfMemory problem and bad performances, you can define JVM parameters.
-                        To do it, create a
-                        <command>
-                            conf/servicemix.rc
-                        </command>
-                        file. In this file, you can define JAVA_MIN_MEM and JAVA_MAX_MEM variables.
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            Core Engine Tuning
-                        </emphasis>
-                        - in the
-                        <command>
-                            conf/servicemix.properties
-                        </command>
-                        file, you can see three properties :
-                        <itemizedlist>
-                            <listitem>
-                                <para>
-                                    <emphasis>
-                                        smx.corePoolSize
-                                    </emphasis>
-                                    - define the startup number of ServiceMix threads. By default, 16 threads are started.
-                                </para>
-                            </listitem>
-                            <listitem>
-                                <para>
-                                    <emphasis>
-                                        smx.maximumPoolSize
-                                    </emphasis>
-                                    - define the maximum number of ServiceMix threads. If you see some bottlenecks around thread waits, you can increase this value. By default, 32 threads maximum are allowed.
-                                </para>
-                            </listitem>
-                            <listitem>
-                                <para>
-                                    <emphasis>
-                                        smx.queueSize
-                                    </emphasis>
-                                    - define the maximum of messages store in the embedded Apache ActiveMQ. If you see some bottlenecks around message waits, you can increase this value. By default, ServiceMix can store 256 messages.
-                                </para>
-                            </listitem>
-                        </itemizedlist>
-                    </para>
-                </listitem>
-                <listitem>
-                    <para>
-                        <emphasis>
-                            Components Tuning
-                        </emphasis>
-                        - You can tune ServiceMix embedded JBI components using the
-                        <command>
-                            conf/components.properties
-                        </command>
-                        .
-                        By default, this file contains the basic tuning for the HTTP components.
-                    </para>
-                </listitem>
-            </itemizedlist>
-        </para>
-    </section>
-</chapter>
diff --git a/docs/manual/src/docbkx/manual.xml b/docs/manual/src/docbkx/manual.xml
deleted file mode 100644
index 73ef3b8..0000000
--- a/docs/manual/src/docbkx/manual.xml
+++ /dev/null
@@ -1,140 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<!DOCTYPE book [
-	<!ENTITY version "4.2">
-]>
-<book id="book" label="Apache ServiceMix Manual Guide" status="draft" lang="en"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-              
-    <title>Apache ServiceMix &version; Manual Guide</title>
-    
-    <bookinfo>
-        <authorgroup>
-            <author>
-                <firstname>Guillaume</firstname>
-                <surname>Nodet</surname>
-                <email>gnodet@apache.org</email>
-            </author>
-            <author>
-                <firstname>Gert</firstname>
-                <surname>Vanthienen</surname>
-                <email>gertv@apache.org</email>
-            </author>
-            <author>
-                <firstname>Lars</firstname>
-                <surname>Heinemann</surname>
-                <email>lhein@apache.org</email>
-            </author>
-            <author>
-                <firstname>Jean-Baptiste</firstname>
-                <surname>Onofre</surname>
-                <email>jbonofre@apache.org</email>
-            </author>
-            <author>
-                <firstname>Bruce</firstname>
-                <surname>Snyder</surname>
-                <email>bsnyder@apache.org</email>
-            </author>
-            <author>
-                <firstname>Charles</firstname>
-                <surname>Moulliard</surname>
-                <email>cmoulliard@apache.org</email>
-            </author>
-        </authorgroup>
-        <copyright>
-            <year>2010</year>
-            <holder>Apache Software Foundation</holder>
-        </copyright>
-        <date>2010-04-28</date>
-        <revhistory>
-            <revision>
-                <revnumber>001</revnumber>
-                <date>2009-07-19</date>
-                <authorinitials>jbonofre</authorinitials>
-                <revremark>Initial revision</revremark>
-            </revision>
-            <revision>
-                <revnumber>002</revnumber>
-                <date>2010-02-02</date>
-                <authorinitials>cmoulliard</authorinitials>
-                <revremark>Update table of content, add directory for images</revremark>
-            </revision>
-            <revision>
-                <revnumber>003</revnumber>
-                <date>2010-04-28</date>
-                <authorinitials>cmoulliard</authorinitials>
-                <revremark>Split structure in several documents, add section numbering</revremark>
-            </revision>
-        </revhistory>
-        <corpname>Apache Software Foundation</corpname>
-    </bookinfo>
-    
-    <toc />
-
-    <part>
-        <title>Getting started</title>
-
-        <!-- Chapter on What is ServiceMix 4 -->
-        <xi:include href="whatissmx4.xml"/>
-
-        <!-- Chapter on installation and build -->
-        <xi:include href="installation.xml"/>
-
-        <xi:include href="getting_started/technology_selection.wiki.xml"/>
-    </part>
-
-    <part>
-        <title>Camel</title>
-
-        <xi:include href="camel/deployment.wiki.xml"/>
-    </part>
-
-    <part>
-        <title>ActiveMQ</title>
-    </part>
-
-    <part>
-        <title>CXF</title>
-    </part>
-
-    <part>
-        <title>NMR</title>
-
-        <xi:include href="nmr/camel-nmr.wiki.xml"/>
-        <xi:include href="nmr/event-listeners.wiki.xml"/>
-    </part>
-
-    <part>
-        <title>JBI</title>
-    </part>
-
-    <!-- Chapter on clustering and high-availability -->
-    <xi:include href="clustering.xml"/>    
-
-
-    <!-- Appendix on ServiceMix migration 3 to 4 -->
-    <xi:include href="migrate.xml"/>   
-    
-</book>
\ No newline at end of file
diff --git a/docs/manual/src/docbkx/migrate.xml b/docs/manual/src/docbkx/migrate.xml
deleted file mode 100644
index d56183b..0000000
--- a/docs/manual/src/docbkx/migrate.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<appendix id="migrate"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-	<title>Migrate from ServiceMix3 to ServiceMix 4</title>
-	<para>TODO</para>
-</appendix>
diff --git a/docs/manual/src/docbkx/whatissmx4.xml b/docs/manual/src/docbkx/whatissmx4.xml
deleted file mode 100644
index 5e4127c..0000000
--- a/docs/manual/src/docbkx/whatissmx4.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<chapter id="whatissmx4"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-  <title>What is ServiceMix 4 ?</title>
-
-  <para>Apache ServiceMix is an open source ESB (Enterprise Service Bus) that
-  combines the functionality of a Service Oriented Architecture (SOA) and the
-  modularity. The adoption of a Service Bus allows to decouple the applicatons
-  together and reduce dependencies. Messages are used to wired the
-  applications (=services) and/or connectors to exchange information using
-  different protocols or communications mode like FTP, HTTP, WebServices,
-  ...
-  </para>
-  
-  <para>This new version of Apache ServiceMix is more than an evolution of the 
-  previous as the kernel of the platform has been completety rewritten and is designed
-  top of the OSGI specification. Using OSGI framework brings a new important feature
-  for SOA development : modularity. That means that we can handle classloading and application
-  lifecycle differently between the components. 
-  </para>
-  
-  <para>ServiceMix is lightweight and easily embeddable, has integrated Spring
-  support and can be run at the edge of the network (inside a client or
-  server), as a standalone ESB provider or as a service within another ESB.
-  You can use ServiceMix in Java SE or Java EE application server.
-  </para>
-  
-  <!-- Section - level 1 - Platform presentation -->
-  <xi:include href="whatissmx4/platform_presentation.xml" />
-
-  <!-- Section - level 1 - Osgi for the dummies -->
-  <xi:include href="whatissmx4/osgi_for_dummies.xml" />
-
-  <!-- Section - level 1 - Kernel of Servicemix -->
-  <xi:include href="whatissmx4/kernel_servicemix.xml" />
-
-  <!-- Section - level 1 - JBI container and integration with OSGI -->
-  <xi:include href="whatissmx4/jbi_container_integration_osgi.xml" />
-
-  <!-- Section - level 1 - Messaging bus -->
-  <xi:include href="whatissmx4/messaging_bus.xml" />
-
-  <!-- Section - level 1 - Services proposed -->
-  <xi:include href="whatissmx4/services_proposed.xml" />
-</chapter>
diff --git a/docs/manual/src/docbkx/whatissmx4/jbi_container_integration_osgi.xml b/docs/manual/src/docbkx/whatissmx4/jbi_container_integration_osgi.xml
deleted file mode 100644
index 0b1ccdd..0000000
--- a/docs/manual/src/docbkx/whatissmx4/jbi_container_integration_osgi.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<section id="jbi_container_integration_osgi"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-    	<title>JBI Container &amp; Integration with OSGI</title>
-    	<para>TODO</para>
-</section>
diff --git a/docs/manual/src/docbkx/whatissmx4/kernel_servicemix.xml b/docs/manual/src/docbkx/whatissmx4/kernel_servicemix.xml
deleted file mode 100644
index 8691e26..0000000
--- a/docs/manual/src/docbkx/whatissmx4/kernel_servicemix.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<section id="kernel_servicemix"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-    	<title>Kernel of Servicemix</title>
-    	<para>TODO</para>
-</section>
diff --git a/docs/manual/src/docbkx/whatissmx4/messaging_bus.xml b/docs/manual/src/docbkx/whatissmx4/messaging_bus.xml
deleted file mode 100644
index 0945b18..0000000
--- a/docs/manual/src/docbkx/whatissmx4/messaging_bus.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<section id="messaging_bus"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-    	<title>Messaging bus</title>
-    	<para>TODO</para>
-    	
-    	<section id="Normalized Message Router">
-    		<title>Normalized Message Router</title>
-    		<para>TODO</para>
-    	</section>
-    	
-    	<section id="Camel">
-    		<title>Camel</title>
-    		<para>TODO</para>
-    	</section>
-</section>
diff --git a/docs/manual/src/docbkx/whatissmx4/osgi_for_dummies.xml b/docs/manual/src/docbkx/whatissmx4/osgi_for_dummies.xml
deleted file mode 100644
index bac3f16..0000000
--- a/docs/manual/src/docbkx/whatissmx4/osgi_for_dummies.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<section id="osgi_for_dummies"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-    	<title>Osgi for the dummies</title>
-    	<para>TODO</para>
-</section>
diff --git a/docs/manual/src/docbkx/whatissmx4/platform_presentation.xml b/docs/manual/src/docbkx/whatissmx4/platform_presentation.xml
deleted file mode 100644
index 28c1977..0000000
--- a/docs/manual/src/docbkx/whatissmx4/platform_presentation.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<section id="platformpresentation"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-        <title>Platform presentation</title>
-
-  <para>
-    Apache ServiceMix is an distributed ESB built from the ground up on the Java Business Integration (JBI) specification JSR 208 and released
-    under the Apache license. The goal of JBI is to allow components and services to be integrated in a vendor independent way, allowing users 
-    and vendors to plug and play.
-  </para>
-
-  <para>ServiceMix uses ActiveMQ to provide remoting, clustering, reliability
-  and distributed failover.</para>
-
-  <para>ServiceMix is completely integrated into Apache Geronimo, which allows
-  you to deploy JBI components and services directly into Geronimo. ServiceMix
-  is being JBI certified as part of the Geronimo project.
-  </para>
-
-  <para>ServiceMix can be embedded into a JEE application server such as
-  JBoss, Oracle Weblogic or IBM Websphere.
-  </para>
-
-  <para>ServiceMix includes a complete JBI container supporting all parts of
-  the JBI specification including: <itemizedlist>
-      <listitem>
-        <para>NMR (Normalized Message Router)</para>
-      </listitem>
-
-      <listitem>
-        <para>JBI Management MBeans</para>
-      </listitem>
-
-      <listitem>
-        <para>full support for the JBI deployment units with hot-deployment of
-        JBI components.</para>
-      </listitem>
-    </itemizedlist></para>
-
-  <para>ServiceMix also provides a simple to use client API for working with
-  JBI components and services.</para>
-
-  <para>ServiceMix includes many JBI components including HTTP, JMX, CXF,
-  BPEL, etc.
-  </para>
-
-</section>
diff --git a/docs/manual/src/docbkx/whatissmx4/services_proposed.xml b/docs/manual/src/docbkx/whatissmx4/services_proposed.xml
deleted file mode 100644
index 0259571..0000000
--- a/docs/manual/src/docbkx/whatissmx4/services_proposed.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<section id="services_proposed"
-         xmlns="http://docbook.org/ns/docbook"
-         xmlns:xi="http://www.w3.org/2001/XInclude"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="
-               http://docbook.org/ns/docbook
-               http://www.docbook.org/xml/5.0/xsd/docbook.xsd"
-         version="5.0" xml:lang="en">
-    	<title>Services proposed</title>
-    	<para>TODO</para>
-    	
-    	<section id="Queuing engine : Apache ActiveMq">
-	    	<title>Queuing engine : Apache ActiveMq</title>
-	    	<para>TODO</para>
-	    </section>
-
-    	<section id="Transaction : Geronimo Transaction Manager">
-	    	<title>Transaction : Geronimo Transaction Manager</title>
-	    	<para>TODO</para>
-	    </section>
-	    
-	    <section id="Routing and Mediation : Apache Camel">
-	    	<title>Routing and Mediation : Apache Camel</title>
-	    	<para>TODO</para>
-	    </section>
-	    
-	    <section id="Web Services : Apache CXF">
-	    	<title>Web Services : Apache CXF</title>
-	    	<para>TODO</para>
-	    </section>
-	    
-	    <section id="Web Container">
-	    	<title>Web Container</title>
-	    	<para>TODO</para>
-	    </section>
-	    
-	    <section id="SOA platform">
-	    	<title>SOA platform</title>
-	    	<para>TODO</para>
-	    	
-		    <section id="Spring DM container">
-		    	<title>Spring DM container</title>
-		    	<para>TODO</para>
-		    </section>			    	
-
-		    <section id="Blueprint OSGI container">
-		    	<title>Blueprint OSGI container</title>
-		    	<para>TODO</para>
-		    </section>	
-		    
-		    <section id="EJB container">
-		    	<title>EJB Container</title>
-		    	<para>TODO</para>
-		    </section>
-		    		    	
-	    </section>		    	    	
-</section>
diff --git a/docs/pom.xml b/docs/pom.xml
deleted file mode 100644
index 2fd2f86..0000000
--- a/docs/pom.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.apache.servicemix.docs</groupId>
-    <artifactId>parent</artifactId>
-    <version>4.3-SNAPSHOT</version>
-  </parent>
-
-  <artifactId>docs</artifactId>
-  <packaging>pom</packaging>
-  <name>Apache ServiceMix :: Documentation</name>
-  <description>Apache ServiceMix Documentation</description>
-
-  <modules>
-    <module>manual</module>
-    <module>jbi</module>
-  </modules>
-
-  <properties>
-    <docbkx.start.page>index.xml</docbkx.start.page>
-    
-    <!-- toolchain versions -->
-    <docs-maven-plugin.version>0.1-SNAPSHOT</docs-maven-plugin.version>
-  </properties>
-
-  <build>
-
-    <resources>
-      <resource>
-        <targetPath>${project.build.directory}/docbkx/sources</targetPath>
-        <directory>${basedir}/src/docbkx</directory>
-        <filtering>true</filtering>
-      </resource>
-    </resources>
-
-    <plugins>
-
-      <plugin>
-        <artifactId>maven-resources-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>copy-resources</id>
-            <phase>generate-resources</phase>
-            <goals>
-              <goal>resources</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <encoding>UTF-8</encoding>                                                                                                           sv
-        </configuration>
-      </plugin>
-      
-      <!-- extract common files (stylesheets, ...) -->
-      <plugin>
-        <artifactId>maven-remote-resources-plugin</artifactId>
-        <version>1.1</version>
-        <executions>
-          <execution>
-            <phase>generate-resources</phase>
-            <goals>
-              <goal>process</goal>
-            </goals>
-            <configuration>
-              <outputDirectory>${project.build.directory}/common</outputDirectory>
-              <resourceBundles>
-                <resourceBundle>org.apache.servicemix.docs:common:${pom.version}</resourceBundle>
-              </resourceBundles>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-      <!-- generate the HTML and PDF -->
-      <plugin>
-        <groupId>com.agilejava.docbkx</groupId>
-        <artifactId>docbkx-maven-plugin</artifactId>
-        <version>2.0.10</version>
-        <executions>
-
-          <execution>
-            <id>generate-chuncked-html</id>
-            <goals>
-              <goal>generate-html</goal>
-            </goals>
-            <phase>verify</phase>
-            <configuration>
-              <htmlStylesheet>resources/theme/master.css</htmlStylesheet>
-              <chunkToc>false</chunkToc>
-              <chunkedOutput>true</chunkedOutput>
-              <postProcess>
-                <property name="resources" location="${project.build.directory}/site/html/resources"/>
-                <mkdir dir="${resources}"/>
-                <copy todir="${resources}">
-                  <fileset dir="${project.build.directory}/common/resources"/>
-                </copy>
-              </postProcess>
-              <targetDirectory>${project.reporting.outputDirectory}/html</targetDirectory>
-              <htmlCustomization>${project.build.directory}/common/styles/docbook-html.xsl</htmlCustomization>
-            </configuration>
-          </execution>
-
-          <execution>
-            <id>generate-single-html</id>
-            <goals>                                                                                                                                                       
-              <goal>generate-html</goal>
-            </goals>
-            <phase>verify</phase>
-            <configuration>
-              <htmlStylesheet>resources/theme/master.css</htmlStylesheet>
-              <chunkedOutput>false</chunkedOutput>
-              <postProcess>
-                <property name="resources" location="${project.build.directory}/site/single/resources"/>
-                <mkdir dir="${resources}"/>
-                <copy todir="${resources}">
-                  <fileset dir="${project.build.directory}/common/resources"/>
-                </copy>
-              </postProcess>
-              <targetDirectory>${project.reporting.outputDirectory}/single</targetDirectory>
-              <htmlCustomization>${project.build.directory}/common/styles/docbook-html.xsl</htmlCustomization>
-            </configuration>
-          </execution>
-
-          <execution>
-            <id>generate-pdf</id>
-            <goals>
-              <goal>generate-pdf</goal>
-            </goals>
-            <phase>verify</phase>
-            <configuration>
-              <highlightSource>1</highlightSource>
-              <highlightDefaultLanguage>xml</highlightDefaultLanguage>
-              <foCustomization>${project.build.directory}/common/styles/docbook-fo.xsl</foCustomization>
-              <targetDirectory>${project.reporting.outputDirectory}/pdf</targetDirectory>
-            </configuration>
-          </execution>
-        </executions>
-
-        <configuration>
-          <xincludeSupported>true</xincludeSupported>
-          <entities>
-            <entity>
-              <name>version</name>
-              <value>${servicemix-version}</value>
-            </entity>
-          </entities>
-
-          <sourceDirectory>${project.build.directory}/docbkx/sources</sourceDirectory>
-          <includes>${docbkx.start.page}</includes>
-        </configuration>
-
-        <dependencies>
-          <dependency>
-            <groupId>net.sf.docbook</groupId>
-            <artifactId>docbook-xml</artifactId>
-            <version>5.0-all</version>
-            <classifier>resources</classifier>
-            <type>zip</type>
-            <scope>runtime</scope>
-          </dependency>
-          <dependency>
-            <groupId>net.sf.xslthl</groupId>
-            <artifactId>xslthl</artifactId>
-            <version>2.0.2</version>
-          </dependency>
-        </dependencies>
-
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.servicemix.tooling</groupId>
-        <artifactId>docs-maven-plugin</artifactId>
-        <version>${docs-maven-plugin.version}</version>
-        <executions>
-          <execution>
-            <id>configure-snippet-handler</id>
-            <inherited>false</inherited>    <!-- URL handlers only have to be registered once -->
-            <goals>
-              <goal>snippet</goal>
-            </goals>
-          </execution>
-          <execution>
-            <id>confluence-to-docbook</id>
-            <inherited>true</inherited>
-            <goals>
-              <goal>confluence-to-docbook</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <snippetBase>http://svn.apache.org/repos/asf/servicemix/</snippetBase>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-</project>
diff --git a/pom.xml b/pom.xml
index b255026..b9b0564 100644
--- a/pom.xml
+++ b/pom.xml
@@ -114,7 +114,6 @@
           <execution>
             <goals>
               <goal>sitegen</goal>
-              <goal>precompile</goal>
             </goals>
             <configuration>
               <warSourceDirectory>${project.build.directory}/webapp</warSourceDirectory>
diff --git a/src/main/webapp/WEB-INF/scalate/layouts/default.ssp b/src/main/webapp/WEB-INF/scalate/layouts/default.ssp
index 5dc7d87..1169c0d 100644
--- a/src/main/webapp/WEB-INF/scalate/layouts/default.ssp
+++ b/src/main/webapp/WEB-INF/scalate/layouts/default.ssp
@@ -27,6 +27,35 @@
   <script type="text/javascript" src="${uri("/scripts/jquery.cookie.js")}"></script>
   <script type="text/javascript" src="${uri("/scripts/jquery.jstree.js")}"></script>
 
+  <!--
+      NOTICE - SyntaxHighlighter (http://alexgorbatchev.com/wiki/SyntaxHighlighter) is licensed under LGPL v3
+
+      This script is being used to highlight the syntax of the <code/> blocks in our documentation.
+      You can disable the script by removing all the code between this NOTICE and END - SyntaxHighlighter.
+  -->
+
+  <!-- Include *at least* the core style and default theme -->
+  <link href="${uri("/scripts/syntaxhl/styles/shCore.css")}" rel="stylesheet" type="text/css" />
+  <link href="${uri("/scripts/syntaxhl/styles/shThemeDefault.css")}" rel="Stylesheet" type="text/css" />
+
+  <!-- Include required JS files -->
+  <script type="text/javascript" src="${uri("/scripts/syntaxhl/scripts/shCore.js")}"></script>
+  <script type="text/javascript" src="${uri("/scripts/syntaxhl/scripts/shLegacy.js")}"></script>
+
+  <!-- At least one brush, here we choose JS. You need to include a brush for every language you want to highlight -->
+  <script type="text/javascript" src="${uri("/scripts/syntaxhl/scripts/shBrushJava.js")}"></script>
+  <script type="text/javascript" src="${uri("/scripts/syntaxhl/scripts/shBrushXml.js")}"></script>
+
+  <!-- Finally, to actually run the highlighter, you need to include this JS on your page
+       TODO: This does not work at the moment because the class="brush: java" is missing from the generated HTML code -->
+  <script type="text/javascript">
+    SyntaxHighlighter.config.clipboardSwf = '${uri("/scripts/syntaxhl/scripts/clipboard.swf")}';
+    SyntaxHighlighter.all()
+    dp.SyntaxHighlighter.HighlightAll('code');
+  </script>
+
+  <!-- END - SyntaxHighlighter -->
+
   <script>
     $(document).ready(function(){
 	  $("#navigation").jstree({
diff --git a/src/main/webapp/appendices/migration.conf b/src/main/webapp/appendices/migration.conf
new file mode 100644
index 0000000..ac872a1
--- /dev/null
+++ b/src/main/webapp/appendices/migration.conf
@@ -0,0 +1,2 @@
+h2. Migrating from ServiceMix 3.x to ServiceMix 4.x
+// TODO: write this bit
\ No newline at end of file
diff --git a/src/main/webapp/getting-started/discover.conf b/src/main/webapp/getting-started/discover.conf
new file mode 100644
index 0000000..8e945a2
--- /dev/null
+++ b/src/main/webapp/getting-started/discover.conf
@@ -0,0 +1,2 @@
+h2. Discover ServiceMix
+The example below will provide a guided tour for ServiceMix 
\ No newline at end of file
diff --git a/src/main/webapp/getting-started/installation.conf b/src/main/webapp/getting-started/installation.conf
new file mode 100644
index 0000000..2a5dcc9
--- /dev/null
+++ b/src/main/webapp/getting-started/installation.conf
@@ -0,0 +1,97 @@
+h2. Installation
+
+!/images/smx4-start.gif|title=Launch ServiceMix 4!
+
+h3. Requirements
+h4. Hardware
+* 100 MB of disk space for the ServiceMix &version; binary distribution.
+
+h4. Operating Systems
+* Microsoft Windows : XP SP2, 2000, 2003, Vista, 7
+* Unix : any Unix/Linux platform that supports Java.
+
+h4. Environment
+* At runtime: Java Runtime Environment (JDK) 1.5.x (Java 5) or higher
+* At development time:
+** Java Developer Kit (JDK) 1.5.x (Java 5) or higher
+** Apache Maven 2.2.1 or higher
+
+h4. Get Apache ServiceMix ${servicemix.version}
+You can download Apache ServiceMix ${servicemix.version} here: http://servicemix.apache.org/download.html
+
+Apache ServiceMix is provided in two formats:
+* tarball for Unix platform
+* zip for Windows platform
+
+h3. Standalone Binary Distribution Installation Procedure
+
+h4. Installing
+First you need to uncompress the downloaded archive (tarball or zip) in the directory of your choice (where you have write permissions).
+
+Define the SERVICEMIX_HOME variable:
+* Windows \\
+{code}
+> set SERVICEMIX_HOME=C:\apache-servicemix-${servicemix.version}
+{code}
+* Linux/Unix \\
+{code}
+$ export SERVICEMIX_HOME=/apache-servicemix-&version;
+{code}
+
+h4. Starting ServiceMix
+* Windows
+{code}
+> cd %SERVICEMIX_HOME%
+> .\bin\servicemix
+{code}
+* Linux/Unix
+{code}
+$ cd $SERVICEMIX_HOME
+$ ./bin/servicemix
+{code}
+
+h4. Stopping ServiceMix
+For both Windows and Unix installations, terminate ServiceMix by typing "CTRL-C" on the command line where ServiceMix is running. ServiceMix uses the Java shutdown hook to cleanly shut down the container.
+
+h3. ServiceMix Into A JEE Application Server Installation Procedure
+// TODO: write this bit
+
+h3. ServiceMix Configuration
+This section contains description of main ServiceMix directories and files :
+|| File/directory || Description ||
+| {{activemq-data}} |  this directory is created by the ServiceMix at startup time. It contains the messages and transactions repository of the embedded Apache ActiveMQ. |
+| {{bin/servicemix}} |  contains the main startup script of Apache ServiceMix. |
+| {{conf/activemq.xml}} | contains the embedded Apache ActiveMQ configuration. This file shouldn't be modified as it's managed by internal ServiceMix processes |
+| {{conf/components.properties}} |  contains the tuning of embedded JBI components. See the tuning section for more informations. |
+| {{conf/servicemix.conf}} | contains the ServiceMix launcher classloading definition. This file shouldn't be modified. |
+| {{conf/servicemix.properties}} | it's the main ServiceMix configuration file. It defines the port numbers used by the ServiceMix. You can change this file if one of the port number is already bound on your system.
+        By default, ServiceMix uses the following ports :
+        * 1099 (rmi.port) - the core RMI port used by the ServiceMix.
+        * 61616 (activemq.port) - the embedded Apache ActiveMQ port. |
+| {{conf/servicemix.xml}} | contains the main ServiceMix Spring application context. This file mustn't be modified. |
+| {{conf/groups.properties}} | contains ServiceMix JAAS security group definition. You can define group security to access to ServiceMix via JMX. |
+| {{conf/jmx.xml}} | contains ServiceMix JMX layer application context. This file mustn't be modified. |
+| {{conf/jndi.properties}} | contains the default ServiceMix JNDI definition. This file shouldn't be modified as it's managed by ServiceMix internal processes. |
+| {{conf/keystore.jks}} | contains the security keys and certificates used by ServiceMix security layer. This file mustn't be modified. |
+| {{conf/log4j.xml}} | contains ServiceMix logging definition. You can change this file to change the default log level of ServiceMix components. You can add new loggers if required. |
+| {{conf/login.properties}} | contains ServiceMix JAAS security definition. This file mustn't be changed. |
+| {{conf/security.xml}} | contains ServiceMix Security layer application context. This file mustn't be modified. |
+| {{conf/tx.xml}} | contains ServiceMix Transaction layer application context. This file mustn't be modified. |
+| {{conf/users-credentials.properties}} | contains ServiceMix JAAS security users and credentials (in case of external security module). You can define users allowed to administrate ServiceMix via JMX. |
+| {{conf/users-passwords.properties}} | contains basic ServiceMix JAAS seucrity users and passwords (internal). You can add users allowed to administrate ServiceMix via JMX. |
+| {{data/log/servicemix.log}} | this file is created by ServiceMix at startup time. It contains main ServiceMix log file. |
+| {{data}} | this directory is created by ServiceMix at startup time. It contains all required file (storage) required by ServiceMix internal components. |
+| {{extras}} | this directory contains extras JAR files required by JBI components deployed in ServiceMix. If you want to add JAR files in ServiceMix classloader, use {{lib}} directory. |
+| {{hotdeploy}} | this directory contains JBI components (services) automatically deployed by ServiceMix. |
+| {{lib}} | this directory contains all required JAR files for ServiceMix. You can add new JAR file in this directory if required. |
+
+h3. Deploying components and services into ServiceMix
+
+h3. Tuning ServiceMix
+You can tune ServiceMix at three basic levels :
+* Underlying JVM:  ServiceMix uses an underlying JVM to run. By default, the JVM configuration is set to 512MB of maximum memory usage (that is enough for most of usage). Anyway if you encounter OutOfMemory problem and bad performances, you can define JVM parameters. To do it, create a {{conf/servicemix.rc}} file. In this file, you can define JAVA_MIN_MEM and JAVA_MAX_MEM variables.
+* Core Engine Tuning: in the {{conf/servicemix.properties}} file, you can see three properties :
+| {{smx.corePoolSize}} | define the startup number of ServiceMix threads. By default, 16 threads are started. |
+| {{smx.maximumPoolSize}} | define the maximum number of ServiceMix threads. If you see some bottlenecks around thread waits, you can increase this value. By default, 32 threads maximum are allowed. |
+| {{smx.queueSize}} | define the maximum of messages store in the embedded Apache ActiveMQ. If you see some bottlenecks around message waits, you can increase this value. By default, ServiceMix can store 256 messages. |
+* Components Tuning: You can tune ServiceMix embedded JBI components using the {{conf/components.properties}} file. By default, this file contains the basic tuning for the HTTP components.
diff --git a/src/main/webapp/getting-started/what-is-smx4.conf b/src/main/webapp/getting-started/what-is-smx4.conf
new file mode 100644
index 0000000..0ef453e
--- /dev/null
+++ b/src/main/webapp/getting-started/what-is-smx4.conf
@@ -0,0 +1,87 @@
+h2. What is ServiceMix 4?
+
+Apache ServiceMix is an open source ESB (Enterprise Service Bus) that
+combines the functionality of a Service Oriented Architecture (SOA) and the
+modularity. The adoption of a Service Bus allows to decouple the applicatons
+together and reduce dependencies. Messages are used to wired the
+applications (=services) and/or connectors to exchange information using
+different protocols or communications mode like FTP, HTTP, WebServices, ...
+
+This new version of Apache ServiceMix is more than an evolution of the
+previous as the kernel of the platform has been completety rewritten and is designed
+top of the OSGI specification. Using OSGI framework brings a new important feature
+for SOA development : modularity. That means that we can handle classloading and application
+lifecycle differently between the components.
+
+ServiceMix is lightweight and easily embeddable, has integrated Spring
+support and can be run at the edge of the network (inside a client or
+server), as a standalone ESB provider or as a service within another ESB.
+You can use ServiceMix in Java SE or Java EE application server.
+
+h3. Platform presentation
+Apache ServiceMix is an distributed ESB built from the ground up on the Java Business Integration (JBI) specification JSR 208 and released
+under the Apache license. The goal of JBI is to allow components and services to be integrated in a vendor independent way, allowing users
+and vendors to plug and play.
+
+ServiceMix uses ActiveMQ to provide remoting, clustering, reliability and distributed failover.
+
+ServiceMix is completely integrated into Apache Geronimo, which allows
+you to deploy JBI components and services directly into Geronimo. ServiceMix
+is being JBI certified as part of the Geronimo project.
+
+ServiceMix can be embedded into a JEE application server such as JBoss, Oracle Weblogic or IBM Websphere.
+
+ServiceMix includes a complete JBI container supporting all parts of
+the JBI specification including:
+* NMR (Normalized Message Router)</para>
+* JBI Management MBeans
+* full support for the JBI deployment units with hot-deployment of JBI components
+
+ServiceMix also provides a simple to use client API for working with JBI components and services.
+
+ServiceMix includes many JBI components including HTTP, JMX, CXF, BPEL, etc.
+
+h3. OSGi for Dummies
+// TODO: write this bit
+
+h3. Kernel of ServiceMix
+// TODO: write this bit
+
+h3. JBI Container &amp; Integration with OSGI
+// TODO: write this bit
+
+h3. Normalized Message Router</title>
+// TODO: write this bit
+
+h3. Camel
+// TODO: write this bit
+
+h3. Services proposed
+// TODO: write this bit
+
+h4. Queuing engine : Apache ActiveMq
+// TODO: write this bit
+
+h4. Transaction : Geronimo Transaction Manager
+// TODO: write this bit
+
+h4. Routing and Mediation : Apache Camel
+// TODO: write this bit
+
+h4. Web Services : Apache CXF
+// TODO: write this bit
+
+h4. Web Container
+// TODO: write this bit
+
+h4. SOA platform
+// TODO: write this bit
+
+h5. Spring DM container
+// TODO: write this bit
+
+h5. Blueprint OSGI container
+// TODO: write this bit
+
+h5. EJB Container
+// TODO: write this bit
diff --git a/docs/manual/src/docbkx/images/smx4-start.gif b/src/main/webapp/images/smx4-start.gif
similarity index 100%
rename from docs/manual/src/docbkx/images/smx4-start.gif
rename to src/main/webapp/images/smx4-start.gif
Binary files differ
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/clipboard.swf b/src/main/webapp/scripts/syntaxhl/scripts/clipboard.swf
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/clipboard.swf
rename to src/main/webapp/scripts/syntaxhl/scripts/clipboard.swf
Binary files differ
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushAS3.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushAS3.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushAS3.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushAS3.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushBash.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushBash.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushBash.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushBash.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushCSharp.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushCSharp.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushCSharp.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushCSharp.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushColdFusion.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushColdFusion.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushColdFusion.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushColdFusion.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushCpp.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushCpp.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushCpp.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushCpp.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushCss.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushCss.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushCss.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushCss.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushDelphi.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushDelphi.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushDelphi.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushDelphi.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushDiff.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushDiff.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushDiff.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushDiff.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushErlang.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushErlang.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushErlang.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushErlang.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushGroovy.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushGroovy.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushGroovy.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushGroovy.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushJScript.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushJScript.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushJScript.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushJScript.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushJava.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushJava.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushJava.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushJava.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushJavaFX.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushJavaFX.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushJavaFX.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushJavaFX.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushPerl.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushPerl.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushPerl.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushPerl.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushPhp.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushPhp.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushPhp.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushPhp.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushPlain.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushPlain.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushPlain.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushPlain.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushPowerShell.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushPowerShell.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushPowerShell.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushPowerShell.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushPython.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushPython.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushPython.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushPython.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushRuby.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushRuby.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushRuby.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushRuby.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushScala.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushScala.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushScala.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushScala.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushSql.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushSql.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushSql.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushSql.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushVb.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushVb.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushVb.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushVb.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shBrushXml.js b/src/main/webapp/scripts/syntaxhl/scripts/shBrushXml.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shBrushXml.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shBrushXml.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shCore.js b/src/main/webapp/scripts/syntaxhl/scripts/shCore.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shCore.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shCore.js
diff --git a/common/src/main/resources/resources/syntaxhl/scripts/shLegacy.js b/src/main/webapp/scripts/syntaxhl/scripts/shLegacy.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/scripts/shLegacy.js
rename to src/main/webapp/scripts/syntaxhl/scripts/shLegacy.js
diff --git a/common/src/main/resources/resources/syntaxhl/src/shCore.js b/src/main/webapp/scripts/syntaxhl/src/shCore.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/src/shCore.js
rename to src/main/webapp/scripts/syntaxhl/src/shCore.js
diff --git a/common/src/main/resources/resources/syntaxhl/src/shLegacy.js b/src/main/webapp/scripts/syntaxhl/src/shLegacy.js
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/src/shLegacy.js
rename to src/main/webapp/scripts/syntaxhl/src/shLegacy.js
diff --git a/common/src/main/resources/resources/syntaxhl/styles/help.png b/src/main/webapp/scripts/syntaxhl/styles/help.png
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/help.png
rename to src/main/webapp/scripts/syntaxhl/styles/help.png
Binary files differ
diff --git a/common/src/main/resources/resources/syntaxhl/styles/magnifier.png b/src/main/webapp/scripts/syntaxhl/styles/magnifier.png
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/magnifier.png
rename to src/main/webapp/scripts/syntaxhl/styles/magnifier.png
Binary files differ
diff --git a/common/src/main/resources/resources/syntaxhl/styles/page_white_code.png b/src/main/webapp/scripts/syntaxhl/styles/page_white_code.png
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/page_white_code.png
rename to src/main/webapp/scripts/syntaxhl/styles/page_white_code.png
Binary files differ
diff --git a/common/src/main/resources/resources/syntaxhl/styles/page_white_copy.png b/src/main/webapp/scripts/syntaxhl/styles/page_white_copy.png
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/page_white_copy.png
rename to src/main/webapp/scripts/syntaxhl/styles/page_white_copy.png
Binary files differ
diff --git a/common/src/main/resources/resources/syntaxhl/styles/printer.png b/src/main/webapp/scripts/syntaxhl/styles/printer.png
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/printer.png
rename to src/main/webapp/scripts/syntaxhl/styles/printer.png
Binary files differ
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shCore.css b/src/main/webapp/scripts/syntaxhl/styles/shCore.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shCore.css
rename to src/main/webapp/scripts/syntaxhl/styles/shCore.css
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shThemeDefault.css b/src/main/webapp/scripts/syntaxhl/styles/shThemeDefault.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shThemeDefault.css
rename to src/main/webapp/scripts/syntaxhl/styles/shThemeDefault.css
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shThemeDjango.css b/src/main/webapp/scripts/syntaxhl/styles/shThemeDjango.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shThemeDjango.css
rename to src/main/webapp/scripts/syntaxhl/styles/shThemeDjango.css
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shThemeEclipse.css b/src/main/webapp/scripts/syntaxhl/styles/shThemeEclipse.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shThemeEclipse.css
rename to src/main/webapp/scripts/syntaxhl/styles/shThemeEclipse.css
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shThemeEmacs.css b/src/main/webapp/scripts/syntaxhl/styles/shThemeEmacs.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shThemeEmacs.css
rename to src/main/webapp/scripts/syntaxhl/styles/shThemeEmacs.css
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shThemeFadeToGrey.css b/src/main/webapp/scripts/syntaxhl/styles/shThemeFadeToGrey.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shThemeFadeToGrey.css
rename to src/main/webapp/scripts/syntaxhl/styles/shThemeFadeToGrey.css
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shThemeMidnight.css b/src/main/webapp/scripts/syntaxhl/styles/shThemeMidnight.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shThemeMidnight.css
rename to src/main/webapp/scripts/syntaxhl/styles/shThemeMidnight.css
diff --git a/common/src/main/resources/resources/syntaxhl/styles/shThemeRDark.css b/src/main/webapp/scripts/syntaxhl/styles/shThemeRDark.css
similarity index 100%
rename from common/src/main/resources/resources/syntaxhl/styles/shThemeRDark.css
rename to src/main/webapp/scripts/syntaxhl/styles/shThemeRDark.css
diff --git a/src/main/webapp/toc.ssp b/src/main/webapp/toc.ssp
index dbdccf6..59bd9cb 100644
--- a/src/main/webapp/toc.ssp
+++ b/src/main/webapp/toc.ssp
@@ -2,6 +2,9 @@
     <li id="getting-started">
         <a href="${uri("/getting-started/index.html")}">Getting Started</a>
         <ul>
+            <li id="what-is-smx4"><a href="${uri("/getting-started/what-is-smx4.html")}">What is ServiceMix 4?</a></li>
+            <li id="installation"><a href="${uri("/getting-started/installation.html")}">Installing ServiceMix</a></li>
+            <li id="discover"><a href="${uri("/getting-started/discover")}">Discover ServiceMix</a></li>
             <li id="technology-selection"><a href="${uri("/getting-started/technology-selection.html")}">Technology selection guidelines</a></li>
         </ul>
     </li>
@@ -44,5 +47,11 @@
             <li id="servicemix-xmpp"><a href="${uri("/jbi/servicemix-xmpp.html")}">servicemix-xmpp</a></li>
         </ul>
     </li>
+    <li id="appendices">
+        <a href="#">Appendices</a>
+        <ul>
+            <li id="migration"><a href="${uri("/appendices/migration.html")}">Migrating from ServiceMix 3</a></li>
+        </ul>
+    </li>
 
 </ul>
\ No newline at end of file