You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by is...@apache.org on 2013/07/26 11:20:31 UTC

[09/24] Removed src/site from cloud controller and stratos controller products

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/service-mgt/styles/datatypes.dtd
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/service-mgt/styles/datatypes.dtd b/products/cloud_controller/modules/distribution/src/site/xdoc/service-mgt/styles/datatypes.dtd
deleted file mode 100644
index 2b3723b..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/service-mgt/styles/datatypes.dtd
+++ /dev/null
@@ -1,219 +0,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.
-  -->
-
-<!--
-        DTD for XML Schemas: Part 2: Datatypes
-        $Id: datatypes.dtd,v 1.23 2001/03/16 17:36:30 ht Exp $
-        Note this DTD is NOT normative, or even definitive. - - the
-        prose copy in the datatypes REC is the definitive version
-        (which shouldn't differ from this one except for this comment
-        and entity expansions, but just in case)
-  -->
-<!--
-        This DTD cannot be used on its own, it is intended
-        only for incorporation in XMLSchema.dtd, q.v.
-  -->
-<!-- Define all the element names, with optional prefix -->
-<!ENTITY % simpleType "%p;simpleType">
-<!ENTITY % restriction "%p;restriction">
-<!ENTITY % list "%p;list">
-<!ENTITY % union "%p;union">
-<!ENTITY % maxExclusive "%p;maxExclusive">
-<!ENTITY % minExclusive "%p;minExclusive">
-<!ENTITY % maxInclusive "%p;maxInclusive">
-<!ENTITY % minInclusive "%p;minInclusive">
-<!ENTITY % totalDigits "%p;totalDigits">
-<!ENTITY % fractionDigits "%p;fractionDigits">
-<!ENTITY % length "%p;length">
-<!ENTITY % minLength "%p;minLength">
-<!ENTITY % maxLength "%p;maxLength">
-<!ENTITY % enumeration "%p;enumeration">
-<!ENTITY % whiteSpace "%p;whiteSpace">
-<!ENTITY % pattern "%p;pattern">
-<!--
-        Customisation entities for the ATTLIST of each element
-        type. Define one of these if your schema takes advantage
-        of the anyAttribute='##other' in the schema for schemas
-  -->
-<!ENTITY % simpleTypeAttrs "">
-<!ENTITY % restrictionAttrs "">
-<!ENTITY % listAttrs "">
-<!ENTITY % unionAttrs "">
-<!ENTITY % maxExclusiveAttrs "">
-<!ENTITY % minExclusiveAttrs "">
-<!ENTITY % maxInclusiveAttrs "">
-<!ENTITY % minInclusiveAttrs "">
-<!ENTITY % totalDigitsAttrs "">
-<!ENTITY % fractionDigitsAttrs "">
-<!ENTITY % lengthAttrs "">
-<!ENTITY % minLengthAttrs "">
-<!ENTITY % maxLengthAttrs "">
-<!ENTITY % enumerationAttrs "">
-<!ENTITY % whiteSpaceAttrs "">
-<!ENTITY % patternAttrs "">
-<!-- Define some entities for informative use as attribute
-        types -->
-<!ENTITY % URIref "CDATA">
-<!ENTITY % XPathExpr "CDATA">
-<!ENTITY % QName "NMTOKEN">
-<!ENTITY % QNames "NMTOKENS">
-<!ENTITY % NCName "NMTOKEN">
-<!ENTITY % nonNegativeInteger "NMTOKEN">
-<!ENTITY % boolean "(true|false)">
-<!ENTITY % simpleDerivationSet "CDATA">
-<!--
-        #all or space-separated list drawn from derivationChoice
-  -->
-<!--
-        Note that the use of 'facet' below is less restrictive
-        than is really intended:  There should in fact be no
-        more than one of each of minInclusive, minExclusive,
-        maxInclusive, maxExclusive, totalDigits, fractionDigits,
-        length, maxLength, minLength within datatype,
-        and the min- and max- variants of Inclusive and Exclusive
-        are mutually exclusive. On the other hand,  pattern and
-        enumeration may repeat.
-  -->
-<!ENTITY % minBound "(%minInclusive; | %minExclusive;)">
-<!ENTITY % maxBound "(%maxInclusive; | %maxExclusive;)">
-<!ENTITY % bounds "%minBound; | %maxBound;">
-<!ENTITY % numeric "%totalDigits; | %fractionDigits;">
-<!ENTITY % ordered "%bounds; | %numeric;">
-<!ENTITY % unordered "%pattern; | %enumeration; | %whiteSpace; | %length; |
-   %maxLength; | %minLength;">
-<!ENTITY % facet "%ordered; | %unordered;">
-<!ENTITY % facetAttr "value CDATA #REQUIRED
-        id ID #IMPLIED">
-<!ENTITY % fixedAttr "fixed %boolean; #IMPLIED">
-<!ENTITY % facetModel "(%annotation;)?">
-<!ELEMENT %simpleType; ((%annotation;)?, (%restriction; | %list; | %union;))>
-<!ATTLIST %simpleType;
-	name %NCName; #IMPLIED
-	final %simpleDerivationSet; #IMPLIED
-	id ID #IMPLIED
-	%simpleTypeAttrs; 
->
-<!-- name is required at top level -->
-<!ELEMENT %restriction; ((%annotation;)?, (%restriction1; | ((%simpleType;)?, (%facet;)*)), (%attrDecls;))>
-<!ATTLIST %restriction;
-	base %QName; #IMPLIED
-	id ID #IMPLIED
-	%restrictionAttrs; 
->
-<!--
-        base and simpleType child are mutually exclusive,
-        one is required.
-
-        restriction is shared between simpleType and
-        simpleContent and complexContent (in XMLSchema.xsd).
-        restriction1 is for the latter cases, when this
-        is restricting a complex type, as is attrDecls.
-  -->
-<!ELEMENT %list; ((%annotation;)?, (%simpleType;)?)>
-<!ATTLIST %list;
-	itemType %QName; #IMPLIED
-	id ID #IMPLIED
-	%listAttrs; 
->
-<!--
-        itemType and simpleType child are mutually exclusive,
-        one is required
-  -->
-<!ELEMENT %union; ((%annotation;)?, (%simpleType;)*)>
-<!ATTLIST %union;
-	id ID #IMPLIED
-	memberTypes %QNames; #IMPLIED
-	%unionAttrs; 
->
-<!--
-        At least one item in memberTypes or one simpleType
-        child is required
-  -->
-<!ELEMENT %maxExclusive; %facetModel;>
-<!ATTLIST %maxExclusive;
-	%facetAttr; 
-	%fixedAttr; 
-	%maxExclusiveAttrs; 
->
-<!ELEMENT %minExclusive; %facetModel;>
-<!ATTLIST %minExclusive;
-	%facetAttr; 
-	%fixedAttr; 
-	%minExclusiveAttrs; 
->
-<!ELEMENT %maxInclusive; %facetModel;>
-<!ATTLIST %maxInclusive;
-	%facetAttr; 
-	%fixedAttr; 
-	%maxInclusiveAttrs; 
->
-<!ELEMENT %minInclusive; %facetModel;>
-<!ATTLIST %minInclusive;
-	%facetAttr; 
-	%fixedAttr; 
-	%minInclusiveAttrs; 
->
-<!ELEMENT %totalDigits; %facetModel;>
-<!ATTLIST %totalDigits;
-	%facetAttr; 
-	%fixedAttr; 
-	%totalDigitsAttrs; 
->
-<!ELEMENT %fractionDigits; %facetModel;>
-<!ATTLIST %fractionDigits;
-	%facetAttr; 
-	%fixedAttr; 
-	%fractionDigitsAttrs; 
->
-<!ELEMENT %length; %facetModel;>
-<!ATTLIST %length;
-	%facetAttr; 
-	%fixedAttr; 
-	%lengthAttrs; 
->
-<!ELEMENT %minLength; %facetModel;>
-<!ATTLIST %minLength;
-	%facetAttr; 
-	%fixedAttr; 
-	%minLengthAttrs; 
->
-<!ELEMENT %maxLength; %facetModel;>
-<!ATTLIST %maxLength;
-	%facetAttr; 
-	%fixedAttr; 
-	%maxLengthAttrs; 
->
-<!-- This one can be repeated -->
-<!ELEMENT %enumeration; %facetModel;>
-<!ATTLIST %enumeration;
-	%facetAttr; 
-	%enumerationAttrs; 
->
-<!ELEMENT %whiteSpace; %facetModel;>
-<!ATTLIST %whiteSpace;
-	%facetAttr; 
-	%fixedAttr; 
-	%whiteSpaceAttrs; 
->
-<!-- This one can be repeated -->
-<!ELEMENT %pattern; %facetModel;>
-<!ATTLIST %pattern;
-	%facetAttr; 
-	%patternAttrs; 
->

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/setting_java_home.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/setting_java_home.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/setting_java_home.xml
deleted file mode 100644
index f686ece..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/setting_java_home.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  ~ 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 html
-     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-    <head>
-        <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
-        <title>How to setup JAVA_HOME environment variable in Windows</title>
-        <link href="css/mb-docs.css" rel="stylesheet"/>
-        <link href="styles/dist-docs.css" rel="stylesheet" type="text/css" media="all"/>
-    </head>
-    <body>
-        <h2>How to setup JAVA_HOME environment variable in Windows</h2>
-
-        <p>Please follow the instructions to set up JAVA_HOME environment variable in your computer.
-            First find out the installation folder of Java development kit (JDK) in your machine.
-            Let's
-            assume it is installed in the folder "C:/j2sdk1.4.2"
-        </p>
-
-        <ol>
-            <li>Right click on the My Computer icon on your desktop and select properties</li>
-            <li>Click the Advanced Tab</li>
-            <li>Click the Environment Variables button</li>
-            <li>Under System Variable, click New</li>
-            <li>Enter the variable name as JAVA_HOME</li>
-            <li>Enter the variable value as the install path for the Development Kit</li>
-            <li>Click OK</li>
-            <li>Click Apply Changes</li>
-
-        </ol>
-
-        <img src="images/set-java-home.jpg" width="802" height="590" alt=""/>
-    </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/source-repository.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/source-repository.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/source-repository.xml
deleted file mode 100644
index 212721f..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/source-repository.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  ~ 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 html
-        PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-    <head>
-        <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
-        <title>
-            WSO2 MB - Source Repository
-        </title>
-        <link href="css/mb-docs.css" rel="stylesheet"/>
-        <link href="styles/dist-docs.css" rel="stylesheet" type="text/css"
-              media="all"/>
-    </head>
-    <body>
-        [ <a href="docs_index.html"> Documentation Index </a> ]
-        <h1>WSO2 Message Broker Server  (MB) Source Repository</h1>
-        WSO2 MB is developed on top of the revolutionary WSO2 Carbon platform. You might need the
-        source of the Carbon platform as well apart from the MB source code. Please note that both
-        MB and the Carbon platform is open source and the code is available under the Apache
-        Software License v2.0.
-
-        <h2>Overview</h2>
-        <p>This project uses <a href="http://subversion.tigris.org/">Subversion</a>
-        to manage its source code. Instructions on Subversion use can be found at
-            <a href="http://svnbook.red-bean.com/">http://svnbook.red-bean.com/</a>.</p>
-
-        <h2>Source code of the MB 1.0.0 release</h2>
-        <p>The following is a link to the online source tag of the WSO2 MB 1.0.0 release.</p>
-        <div class="source">
-            <pre><a href="http://svn.wso2.org/repos/wso2/tags/MB/java/3.0.0/">http://svn.wso2.org/repos/wso2/tags/mb/java/1.0.0/</a></pre>
-        </div>
-        <p>The complete source including the carbon platform can be checked out anonymously from
-            SVN with this command:</p>
-        <div class="source">
-            <pre>$ svn checkout http://svn.wso2.org/repos/wso2/tags/mb/java/1.0.0 wso2mb</pre>
-        </div>
-
-        <p>This code base contains the MB product source code inside the directory "product" and
-        it also contains the source for the platform under the directory "carbon-pltform". Further
-        there will be a "build.sh" script to build the MB with the platform.</p>
-
-        <p>This script accepts any of the maven related system properties, but the property to skip
-         the tests has been shortened to "-ts", for example to build the MB with the platform on
-         skipping tests the command is;</p>
-
-        <div class="source">
-            <pre>$ ./build.sh -ts</pre>
-        </div>
-
-        <p>To build off-line with this build script you can pass in the "-o" option. If you just
-        need to build either the product or a specific part of the platform (for example Axis2)
-        you just need to traverse to that directory and use maven to build any of the projects.</p>
-
-        <h2>Source code of the WSO2 MB trunk</h2>
-        <p>Everyone can access the Subversion repository via HTTPS, but Committers must checkout
-            the Subversion repository via HTTPS.
-        </p>
-        <div class="source">
-            <pre>$ svn checkout  https://svn.wso2.org/repos/wso2/trunk/carbon/products/mb wso2mb</pre>
-        </div>
-
-        <p>The Carbon framework related source code can be checked out from the
-            following commands.</p>
-
-        <div class="source">
-            <pre>$ svn checkout https://svn.wso2.org/repos/wso2/trunk/carbon/core carbon</pre>
-        </div>
-
-        <div class="source">
-            <pre>$ svn checkout https://svn.wso2.org/repos/wso2/trunk/carbon/components carbon-components</pre>
-        </div>
-
-        <p>The Carbon project is the root project of the OSGi platform on which all the Java
-            product stack is built on top of, and the carbon-components contains all the components
-            not just MB specific components. So you obviously need to build just the set of
-            components required by the MB, which can be achieved through;
-        </p>
-
-        <div class="source">
-            <pre>$ mvn clean install -Dproduct=MB</pre>
-        </div>
-
-        <p>To commit changes to the repository, execute the following command (svn will prompt
-            you for your password)
-        </p>
-        <div class="source">
-            <pre>$ svn commit --username your-username -m "A message"</pre>
-        </div>
-
-        <h2>Access from behind a firewall</h2>
-        <p>For those users who are stuck behind a corporate firewall which is blocking http access
-            to the Subversion repository, you can try to access it via the developer connection:
-        </p>
-        <div class="source">
-            <pre>$ svn checkout https://svn.wso2.org/repos/wso2/trunk/carbon/products/mb wso2mb</pre>
-        </div>
-        <h2>Access through a proxy</h2>
-        <p>The Subversion client can go through a proxy, if you configure it to do so.
-            First, edit your "servers" configuration file to indicate which proxy to use. The
-            files location depends on your operating system. On Linux or Unix it is
-            located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion".
-            (Try "echo %APPDATA%", note this is a hidden directory.)
-        </p>
-        <p>There are comments in the file explaining what to do. If you don't have that file, get
-            the latest Subversion client and run any command; this will cause the configuration
-            directory and template files to be created.
-        </p>
-        <p>Example : Edit the 'servers' file and add something like :</p>
-        <div class="source">
-            <pre>[global]
-http-proxy-host = your.proxy.name
-http-proxy-port = 3128
-            </pre>
-        </div>
-    </body>
-</html>
-      

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/css/authFailures.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/css/authFailures.css b/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/css/authFailures.css
deleted file mode 100644
index bfe3066..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/css/authFailures.css
+++ /dev/null
@@ -1,28 +0,0 @@
-.authFailures {
-    padding-top: 15px !important;
-    padding-left: 58px;
-}
-
-.authFailures li {
-    list-style-type: circle !important;
-    padding: 5px;
-}
-
-.authFailuresMsg {
-    background-image: url(../../dialog/img/error.gif);
-    background-repeat: no-repeat;
-    background-position: 0px 0px;
-    height: 48px;
-    padding-left: 58px;
-}
-
-.authFailuresTryAgain {
-    padding-top: 10px;
-    padding-left: 58px;
-}
-
-.authFailuresTryAgain a {
-    background-image: url(../images/reload.gif);
-    background-repeat: no-repeat;
-    padding-left: 20px;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/images/reload.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/images/reload.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/images/reload.gif
deleted file mode 100644
index 4d3d045..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/sso-acs/images/reload.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/images/statistics.jpg
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/images/statistics.jpg b/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/images/statistics.jpg
deleted file mode 100644
index 781a3cb..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/images/statistics.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/userguide.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/userguide.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/userguide.xml
deleted file mode 100644
index c7f3304..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/docs/userguide.xml
+++ /dev/null
@@ -1,54 +0,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.
-  -->
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
-  <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"/>
-  <title>Statistics Help - User Guide</title>
-  <link href="../../admin/css/documentation.css" rel="stylesheet" type="text/css" media="all" />
-</head>
-
-<body>
-
-<div id="middle">
-<h1 id="Monitor1">Monitor Statistics</h1>
-This page shows some statistics related to the WSO2 Data Services instance.
-They include free memory, request count, server name, server start time,
-system up time, active services, total memory, average response time, minimum
-response time and�maximum response time.
-
-
-<ol>
-  <li>In the navigator, under Monitor, click <strong>Statistics</strong>. The
-    <em><strong>System Statistics</strong></em> page appears.</li>
-  <li>To configure the statistics view, enter values in the Statistics
-    Configuration panel and click <strong>Update</strong>.</li>
-  <li>Refresh your page. </li>
-  <li>If you want to reset the previous values before submitting the page
-      after editing, click <strong>Reset</strong>.</li>
-</ol>
-
-<p><img src="images/statistics.jpg" alt="Figure: Monitor Statistics" />
-</p>
-
-<p>Figure 1: Monitor Statistics</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stat_gadget.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stat_gadget.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stat_gadget.xml
deleted file mode 100644
index 34e8aa2..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stat_gadget.xml
+++ /dev/null
@@ -1,177 +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.
-  -->
-
-<Module>
-    <ModulePrefs title="Memory Usage Statistics" scrolling="true" height="300">
-        <Require feature="dynamic-height"/>
-        <Require feature="wso2.vis"/>
-    </ModulePrefs>
-    <Content type="html" view="default">
-        <![CDATA[
-        <script language="javascript" type="text/javascript">
-
-            var dataProvider = new wso2vis.p.ProviderGET("carbon/statistics/gadget/system_stats_xml_ajaxprocessor.jsp");
-            var dataFilter = new wso2vis.f.BasicFilter(["stats","statistic"], ["@name"]);
-
-            var timer = new wso2vis.u.Timer(20000);
-
-            function globalTick() {
-            dataProvider.pullData();
-            }
-
-            function areaTooltip(data) {
-            return data["@name"];
-            }
-
-            function areaOnClick(data) {
-            alert("clicked: " + data["@name"]);
-            }
-
-            window.onload = function () {
-
-            var areaChart = new wso2vis.s.chart.protovis.AreaChart("chart", "Memory Usage", "");
-
-            areaChart.dataField(["stats","statistic"])
-            .dataValue(["value"])
-            .dataLabel(["@name"])
-            .width(260)
-            .height(300)
-            .band(20)
-            .legend(false)
-            .marks(true)
-            .xSuffix("s")
-            .dirFromLeft(true);
-
-            areaChart.onTooltip = areaTooltip;
-            areaChart.onClick = areaOnClick;
-            areaChart.load(); // width, height, band - (optional)
-
-            dataProvider.addDataReceiver(dataFilter);
-            dataFilter.addDataReceiver(areaChart);
-
-            dataProvider.initialize();
-
-            timer.tick = globalTick;
-            timer.startTimer();
-
-            gadgets.window.adjustHeight();
-
-            }
-
-        </script>
-        <style>
-            div#qTip {
-            padding: 3px;
-            border: 1px solid #666;
-            border-right-width: 2px;
-            border-bottom-width: 2px;
-            display: none;
-            background: #999;
-            color: #FFF;
-            font: bold 10px Verdana, Arial, sans-serif;
-            text-align: left;
-            position: absolute;
-            z-index: 1000;
-            }
-        </style>
-
-    </head>
-    <body>
-        <div id="chart"></div>
-    </body>
-  ]]>
-    </Content>
-
-    <Content type="html" view="canvas">
-        <![CDATA[
-        <script language="javascript" type="text/javascript">
-
-            var dataProvider = new wso2vis.p.ProviderGET("carbon/statistics/gadget/system_stats_xml_ajaxprocessor.jsp");
-            var dataFilter = new wso2vis.f.BasicFilter(["stats","statistic"], ["@name"]);
-
-            var timer = new wso2vis.u.Timer(10000);
-
-            function globalTick() {
-            dataProvider.pullData();
-            }
-
-            function areaTooltip(data) {
-            return data["@name"];
-            }
-
-            function areaOnClick(data) {
-            alert("clicked: " + data["@name"]);
-            }
-
-            window.onload = function () {
-
-            var areaChart = new wso2vis.s.chart.protovis.AreaChart("chart", "Memory Usage", "");
-
-            areaChart.dataField(["stats","statistic"])
-            .dataValue(["value"])
-            .dataLabel(["@name"])
-            .width(1000)
-            .height(300)
-            .band(10)
-            .legend(false)
-            .marks(true)
-            .xSuffix("s")
-            .dirFromLeft(true);
-
-            areaChart.onTooltip = areaTooltip;
-            areaChart.onClick = areaOnClick;
-            areaChart.load(); // width, height, band - (optional)
-
-            dataProvider.addDataReceiver(dataFilter);
-            dataFilter.addDataReceiver(areaChart);
-
-            dataProvider.initialize();
-
-            timer.tick = globalTick;
-            timer.startTimer();
-
-            gadgets.window.adjustHeight();
-
-            }
-
-        </script>
-        <style>
-            div#qTip {
-            padding: 3px;
-            border: 1px solid #666;
-            border-right-width: 2px;
-            border-bottom-width: 2px;
-            display: none;
-            background: #999;
-            color: #FFF;
-            font: bold 10px Verdana, Arial, sans-serif;
-            text-align: left;
-            position: absolute;
-            z-index: 1000;
-            }
-        </style>
-
-    </head>
-    <body>
-        <div id="chart"></div>
-    </body>
-  ]]>
-    </Content>
-</Module>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stats_gadget.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stats_gadget.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stats_gadget.xml
deleted file mode 100644
index 41e14c6..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/gadget/stats_gadget.xml
+++ /dev/null
@@ -1,92 +0,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.
-  -->
-<html>
-<head>
-    <title>Protovis Area Chart Example</title>
-    <script type="text/javascript" src="http://localhost/wso2vis/wso2vis.js"></script>
-
-    <script language="javascript" type="text/javascript">
-
-        var dataProvider = new wso2vis.p.ProviderGET("system_stats_xml_ajaxprocessor.jsp");
-        var dataFilter = new wso2vis.f.BasicFilter(["stats","statistic"], ["@name"]);
-
-        var timer = new wso2vis.u.Timer(10000);
-
-        function globalTick() {
-            dataProvider.pullData();
-        }
-
-        function areaTooltip(data) {
-            return data["@name"];
-        }
-
-        function areaOnClick(data) {
-            alert("clicked: " + data["@name"]);
-        }
-
-        window.onload = function () {
-
-            var areaChart = new wso2vis.s.chart.protovis.AreaChart("chart", "Memory Usage", "");
-
-            areaChart.dataField(["stats","statistic"])
-                    .dataValue(["value"])
-                    .dataLabel(["@name"])
-                    .width(600)
-                    .height(300)
-                    .band(10)
-                    .legend(false)
-                    .marks(true)
-                    .xSuffix("s")
-                    .dirFromLeft(true);
-
-            areaChart.onTooltip = areaTooltip;
-            areaChart.onClick = areaOnClick;
-            areaChart.load(); // width, height, band - (optional)
-
-            dataProvider.addDataReceiver(dataFilter);
-            dataFilter.addDataReceiver(areaChart);
-
-            dataProvider.initialize();
-
-            timer.tick = globalTick;
-            timer.startTimer();
-        }
-
-    </script>
-    <style>
-        div#qTip {
-            padding: 3px;
-            border: 1px solid #666;
-            border-right-width: 2px;
-            border-bottom-width: 2px;
-            display: none;
-            background: #999;
-            color: #FFF;
-            font: bold 10px Verdana, Arial, sans-serif;
-            text-align: left;
-            position: absolute;
-            z-index: 1000;
-        }
-    </style>
-
-</head>
-<body>
-<div id="chart"></div>
-</body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/images/chart_bar.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/images/chart_bar.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/images/chart_bar.gif
deleted file mode 100644
index a54f8ce..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/statistics/images/chart_bar.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/css/stratos-loginpage.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/css/stratos-loginpage.css b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/css/stratos-loginpage.css
deleted file mode 100644
index 620ce41..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/css/stratos-loginpage.css
+++ /dev/null
@@ -1,94 +0,0 @@
-body {
-background-image:url(../images/st-login-body-bg.gif);
-background-position:left top;
-background-repeat:repeat-x;
-font-family:"Calibri",Arial,Helvetica,san-serif;
-font-size:0.8em;
-margin:0;
-padding:0;
-}
-p {
-}
-td {
-}
-a:link {
-text-decoration:none;
-}
-a:visited {
-}
-a:hover {
-}
-a:active {
-}
-a img {
-border:0 none;
-}
-div#middle {
-background-color:#FFFFFF;
-margin:auto;
-width:961px;
-}
-div#header {
-background-image:url(../images/st-login-header-bg.gif);
-background-position:left top;
-background-repeat:no-repeat;
-height:87px;
-padding-top:94px;
-text-align:center;
-}
-div#content {
-background-image:url(../images/st-login-content-bg.gif);
-background-position:left top;
-background-repeat:no-repeat;
-padding-left:60px;
-padding-right:60px;
-padding-top:20px;
-}
-div#intro {
-padding-bottom:10px;
-text-align:center;
-}
-div#register {
-float:left;
-padding-top:85px;
-text-align:center;
-width:420px;
-}
-div#sign-in {
-border-left:1px solid #0499CC;
-float:left;
-padding:20px 30px 30px 50px;
-text-align:left;
-width:340px;
-}
-div#sign-in h2 {
-border-bottom:1px solid #78BDE8;
-font-size:130%;
-margin-bottom:10px;
-margin-top:0;
-padding-bottom:10px;
-padding-top:0;
-}
-div#sign-in table tr td {
-padding-bottom:5px;
-padding-right:7px;
-}
-div#sign-in table {
-border-bottom:1px solid #78BDE8;
-margin-bottom:7px;
-}
-div#footer {
-background-image:url(../images/st-login-footer-bg.gif);
-background-position:left top;
-background-repeat:no-repeat;
-margin-top:5px;
-padding-bottom:7px;
-padding-top:25px;
-text-align:center;
-}
-div.clear {
-clear:both;
-}
-#loginForm td label{
-    font-size:11px;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config-ok.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config-ok.png b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config-ok.png
deleted file mode 100644
index eab6259..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config-ok.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config.png b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config.png
deleted file mode 100644
index 994c861..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-identity-sso-config.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-sso-config.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-sso-config.png b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-sso-config.png
deleted file mode 100644
index 375e9ee..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/cloud-sso-config.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/delete.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/delete.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/delete.gif
deleted file mode 100644
index 471f55c..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/delete.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/import.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/import.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/import.gif
deleted file mode 100644
index c9fb1df..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/import.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/loading.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/loading.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/loading.gif
deleted file mode 100644
index 5b200ed..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/loading.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/logo.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/logo.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/logo.gif
deleted file mode 100644
index 837f813..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/logo.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/policy.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/policy.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/policy.gif
deleted file mode 100644
index f9c58f5..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/policy.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/powered.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/powered.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/powered.gif
deleted file mode 100644
index b8bc163..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/powered.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/register.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/register.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/register.gif
deleted file mode 100644
index f225e38..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/register.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/sso.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/sso.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/sso.gif
deleted file mode 100644
index 7f2e74a..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/sso.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-body-bg.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-body-bg.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-body-bg.gif
deleted file mode 100644
index dc2c240..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-body-bg.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-content-bg.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-content-bg.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-content-bg.gif
deleted file mode 100644
index 9624125..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-content-bg.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-footer-bg.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-footer-bg.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-footer-bg.gif
deleted file mode 100644
index dc317e5..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-footer-bg.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-header-bg.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-header-bg.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-header-bg.gif
deleted file mode 100644
index bd228c9..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/stratos-auth/images/st-login-header-bg.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/css/tenant.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/css/tenant.css b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/css/tenant.css
deleted file mode 100644
index 26d0e28..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/css/tenant.css
+++ /dev/null
@@ -1,62 +0,0 @@
-/*css editor styles */
-.csseditor-top-line{
-    background-color:black;
-    height:5px;
-}
-.csseditor-leftbox{
-    background-color:#9a9a9a;
-    padding-left:5px;
-    padding-right:5px;
-    padding-bottom:5px;
-    padding-top:15px;
-   height:380px;
-}
-.csseditor-leftbox-top{
-    color:#ffffff;
-    font-size:18px;
-    height:30px;
-}
-.csseditor-textbox{
-    background-color:#dfe7ed;
-    border:solid 1px #ffffff;
-    width:100%;
-}
-.csseditor-rightbox{
-    background-color:#c9c9c9;
-    border:solid 1px #ffffff;
-    height:400px;
-}
-.csseditor-rightbox-title{
-    background-color:#9a9a9a;
-    height:25px;
-    color:#ffffff;
-    padding-left:10px;
-    padding-top:5px;
-}
-.csseditor-searchbox{
-    padding-left:10px;
-    padding-top:10px;
-}
-#flickr_results{
-    height:300px;
-    overflow-y:auto;
-    overflow-x:hidden;
-    margin-left:5px;
-    margin-right:5px;
-    border:solid 1px #ffffff;
-}
-.imageList{
-}
-.imageList li {
-    padding-top: 3px !important;
-    padding-left: 5px !important;
-    background-color: #e1e9ec;
-    border: solid 1px #b5bdc1;
-}
-
-.imageList li a {
-    background-image: url(../images/images.gif);
-    background-repeat: no-repeat;
-    padding-left: 20px;
-    text-indent: 50px;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/aboutUsagePlans.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/aboutUsagePlans.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/aboutUsagePlans.xml
deleted file mode 100644
index f8368d9..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/aboutUsagePlans.xml
+++ /dev/null
@@ -1,105 +0,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.
-  -->
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-  <title>Select Usage Plan For Tenant - User Guide</title>
-  <link href="../../admin/css/documentation.css" rel="stylesheet" type="text/css" media="all" />
-</head>
-
-<body>
-
-
- <h1>Select Usage Plan For Tenant</h1>
-
-
- <h2> <b> Usage Plans(Subscriptions)</b></h2>
-
-<p>
-    According to the usage plan that you selected you will get different volume of service and registry
-    bandwidths other services that available for tenants.By selecting right usage plan that suits
-    your requirements you can get maximum profit
-</p>
-
-
-<h2><b>Multitenancy Free</b></h2>
-<p>
-  This is the free usage plan.You will get limited amount of resources.This package is
-  best suite for evaluation and tests.
-</p>
- <h2><b>Multitenancy Small</b></h2>
-<p>
-   This package is best suite for small business.
-</p>
-<h2><b>Multitenancy Medium</b></h2>
-<p>
-   This usage plan suites for medium scale business.You will get average amount of resources
-    with this package.
-</p>
-<h2><b>Multitenancy Large</b></h2>
-<p>
-   This is the premium usage plan.You will get maximum resources form this plan.
-   This is best suite to large scale business.
-</p>
-
-<p>
-
-   Usage Plan summery
-<table border="1">
-<tr>
-<td>Usage Plan Name</td>
-<td>Number Of Users</td>
-<td>Registry Bandwidth (Mb) </td>
-<td>Service BandWidth (Mb) </td>
-<td>Cost Per Month ($)</td>
-</tr>
-<tr>
-<td>Multitenancy Free</td>
-<td>5</td>
-<td>10</td>
-<td>10</td>
-<td>10</td>
-</tr>
-<tr>
-<td>Multitenancy Small</td>
-<td>10</td>
-<td>25</td>
-<td>25</td>
-<td>25</td>
-</tr>
-<tr>
-<td>Multitenancy Medium</td>
-<td>20</td>
-<td>100</td>
-<td>100</td>
-<td>100</td>
-</tr>
-<tr>
-<td>Multitenancy Large</td>
-<td>50</td>
-<td>200</td>
-<td>200</td>
-<td>200</td>
-</tr>
-</table> 
-<div><strong>Figure1: Usage Plan Summery Table</strong></div>
-</p>
-</body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-org.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-org.png b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-org.png
deleted file mode 100644
index fc710f8..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-org.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-tenant.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-tenant.png b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-tenant.png
deleted file mode 100644
index 7fbb894..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/add-tenant.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/view-tenants.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/view-tenants.png b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/view-tenants.png
deleted file mode 100644
index 03c4e83..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/images/view-tenants.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/userguide.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/userguide.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/userguide.xml
deleted file mode 100644
index af7e2c5..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/docs/userguide.xml
+++ /dev/null
@@ -1,57 +0,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.
-  -->
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-  <title>Multitenancy Registry Tenant Configuration - User Guide</title>
-  <link href="../../admin/css/documentation.css" rel="stylesheet" type="text/css" media="all" />
-</head>
-
-<body>
-
-
- <h1>Multitenancy Add new Tenants and View Tenants</h1>
-
-
- <h2> <b> Add New Tenants</b></h2>
-
-<p>
-    Following form can be used to add new tenants.You are required to fill all the requested details.
-    <img src="images/add-tenant.png" alt="Add new tenant form"/>
-    <div><strong>Figure1: Add New Tenants Form</strong></div>
-
- 
-</p>
-
-
-<h2><b>Multitenancy View Tenants</b></h2>
-
-
-<p>
-
-   You can view a list of available tenants from this page.
-
-<img src="images/view-tenants.png" alt="Register New Organization Form"/>
-<div><strong>Figure2: View tenants Form</strong></div>
-</p>
-
-
-</body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/multi_tenancy.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/multi_tenancy.png b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/multi_tenancy.png
deleted file mode 100644
index 9e186e2..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/multi_tenancy.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services.gif
deleted file mode 100644
index 9883116..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services1.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services1.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services1.gif
deleted file mode 100644
index d40a7a3..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/tenant-mgt/images/services1.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/images/throttle.jpg
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/images/throttle.jpg b/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/images/throttle.jpg
deleted file mode 100644
index 3f0b56f..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/images/throttle.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/userguide.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/userguide.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/userguide.xml
deleted file mode 100644
index 8bee0bd..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/docs/userguide.xml
+++ /dev/null
@@ -1,200 +0,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.
-  -->
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html><head>
-  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"></meta>
-  <title>Access Throttling - User Guide</title>
-  <link href="../../admin/css/documentation.css" rel="stylesheet" type="text/css" media="all" />
-  </head>
-
-<body>
-<h1>Access Throttling</h1>
-
-<p>In Web service interactions, we usually have to restrict the number of
-requests that the web service serves for a particular client. The throttle
-mechanism is used to control access to our services at different levels.</p>
-
-<p>The WSO2 Web service Application Server (WSAS) provides an effective and
-efficient way to apply the throttle mechanism to your Web services.</p>
-
-<p></p>
-
-<h2>Levels of Throttling</h2>
-
-<p>Throttling can be enabled at global level, service level or operation
-level. </p>
-<ol>
-</ol>
-<ul>
-  <li>If it is enabled globally, restrictions are applied globally (for every
-    message coming into the server).</li>
-  <li>If it is enabled for a particular service, restrictions are applied to
-    all the messages coming into that service. </li>
-  <li>If it is enabled only for an operation in a given service, restrictions
-    are applied only for the messages accessing that particular
-  operation.</li>
-</ul>
-<ol>
-</ol>
-
-<p>The WSO2 WSAS provides the throttling mechanism at global level or service
-level.</p>
-
-<h2>Adding Throttling to a Service</h2>
-
-<p>Use this function to add a throttle parameter that specifies a variable
-millisecond wait between calls or a variable maximum number of calls per unit
-of time. This would facilitate the smooth operation of Web services and REST
-using the Web service and HTTP client steps.</p>
-
-<p>The throttling option is disabled by default. If you want to add the
-throttling mechanism, you should enable it. </p>
-<ol>
-  <li>In the navigator, under Manage/Service, click <strong>List</strong>.
-    The <em><strong>Deployed Services</strong></em> page appears.</li>
-  <li>Select the service for which you want to enable throttling. The
-    <em><strong>Service Dashboard</strong></em> page (for that service)
-    appears.</li>
-  <li>In the Quality of Service Configuration panel, click <strong>Access
-    Throttling</strong>. The <em><strong>Throttling
-    Configuration</strong></em> page appears.</li>
-  <li>In the <strong>Enable Throttling</strong> list, click
-    <strong>Yes</strong>.The existing throttle configuration appears in the
-    wizard </li>
-
-  <p><img alt="" src="images/throttle.jpg" height="393" width="1401"/></p>
-
-  <p>Figure 1: Throttling Configuration</p>
-  <li>Click <strong>Add New Entry</strong>. To enter new parameters or modify
-    existing parameters click <strong>Allow</strong> in the
-    <strong>Access</strong> list. </li>
-
-  <p>If you set the parameters for a particular service, your configuration
-  will be applied only to that particular service. On the other hand, if you
-  reached this page from global configurations, these configurations will be
-  applied globally.</p>
-  <li>Click <strong>Finish</strong>. Throttling will be engaged for that
-    particular service or it will be engaged globally.</li>
-</ol>
-
-<p style="margin-left: 40px;"><a href="#Fields">Field Descriptions</a></p>
-
-<p></p>
-
-<h2>Functions of Buttons</h2>
-
-<ul>
-    <li><strong>Finish :</strong> Click Finish to submit the current data.
-        When finished, your throttle configuration will be applied and the page will be
-        redirected to the previous page.</li>
-    <li><strong>Reset :</strong> Click Reset to load the last submitted configuration.</li>
-    <li><strong>Default :</strong> Click Default to load the default throttle
-        configuration. If you want to submit those data, you have to click Finish.</li>
-    <li><strong>Clear :</strong> Click Clear to clear all the text boxes in the UI.</li>
-    <li><strong>Back :</strong> Click Back to go to the previous page.</li>
-</ul>
-
-<h2>Parameters for Throttling Configuration</h2>
-
-<h4><a name="Fields" id="Fields">Fields</a></h4>
-
-<table style="width: 100%;" border="1">
-  <caption></caption>
-  <tbody>
-    <tr>
-      <td style="font-weight: bold;">Field Name</td>
-      <td style="font-weight: bold;">Description</td>
-    </tr>
-    <tr>
-      <td>Maximum Concurrent Accesses</td>
-      <td>It can be used to control the number of requests that are served at
-        any given moment. If throttling is enabled globally, this value will
-        be the maximum number of requests that are served by all the services
-        deployed in the server at a given moment. If throttling is enabled at
-        service level, it is the maximum requests for that particular
-        service. In the case of operation level, it is the maximum requests
-        for that particular operation.</td>
-    </tr>
-    <tr>
-      <td>Range</td>
-      <td>The IP address range or the domain is restricted from accessing the
-        service. Requests from such clients will be restricted based on the
-        specified values. </td>
-    </tr>
-    <tr>
-      <td>Type</td>
-      <td>This indicates the type of Range. It can be IP or DOMAIN. It should
-        be IP if the range is given as a single IP address or a range of IP
-        addresses (e.g., 10.100.1.30-10.100.1.60). It should be DOMAIN if the
-        range is given as as a domain (e.g., *.wso2.com). If you specify
-        configurations types of both IP and DOMAIN, first priority will be
-        given to DOMAIN level configurations.</td>
-    </tr>
-    <tr>
-      <td>Access</td>
-      <td>If this is set to Allow, no restriction is applied for that range
-        and all requests are allowed to go in as they come in. If it is Deny,
-        access is completely denied for that range. When the Access is set to
-        Allow or Deny, MRC, UT and PTP parameters are not necessary and t he
-        said fields are de-activated. If it is Control, then the specified
-        constraints are applied for that particular range. </td>
-    </tr>
-  </tbody>
-</table>
-
-Access constraints are divided into the following three parameters. 
-<dl>
-</dl>
-<ul>
-  <li><dl>
-      <dt><strong>Maximum Request Count (MRC)</strong> </dt>
-        <dd>If Allow Access is set to Control, it will be the maximum number
-          of requests that are served within the time interval specified by
-          the Unit Time parameter.</dd>
-    </dl>
-  </li>
-  <li><dl>
-      <dt><strong>Unit Time (UT)</strong> - </dt>
-        <dd>The time period in milliseconds during which the maximum requests
-          served. This is the number specified by the Maximum Request
-          Count.The throttle starts counting the number of units from the
-          moment it is enabled and the number of requests served within that
-          period.</dd>
-    </dl>
-  </li>
-  <li><dl>
-      <dt><strong>Prohibit Time Period (PTP)</strong></dt>
-        <dd>If the maximum request count is achieved before the unit time,
-          this is the period during which no more requests are allowed to go
-          in. By setting this value, the unit time slot is altered.</dd>
-    </dl>
-  </li>
-</ul>
-
-<p></p>
-
-<p>Example :</p>
-
-<p>MRC = 50, UT = 50000, PTP = 5000 </p>
-
-<p>If 50 requests are arrived within 35000ms (35s) in a particular time
-period, no more requests are taken in for another 5000ms (5s = PTP). This
-time, the UT is altered to 35000ms + 5000ms = 40000ms (40s) </p>
-</body></html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/add.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/add.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/add.gif
deleted file mode 100644
index ac95067..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/add.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/delete.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/delete.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/delete.gif
deleted file mode 100644
index 471f55c..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/delete.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/help.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/help.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/help.gif
deleted file mode 100644
index 7082b3b..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/throttling/images/help.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/tools/images/tools.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/tools/images/tools.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/tools/images/tools.gif
deleted file mode 100644
index 574e037..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/tools/images/tools.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/dsxmleditor.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/dsxmleditor.css b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/dsxmleditor.css
deleted file mode 100644
index 91cde2a..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/dsxmleditor.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.treeControl div.title{
-    font-size:14px;
-    font-weight:bold;
-    color:#788cb3;
-}
-.topicData{
-	border:solid 1px #ccc;
-	padding:5px;
-}
-td.tree-top{
-   background-image:url(../images/treetop.jpg);
-   background-repeat:repeat-x;
-    height:21px;
-}
-td.tree-top h3{
-    padding-left:10px !important;
-    padding-right:0px !important;
-    padding-top:3px !important;
-    padding-bottom:0px !important;
-    margin:0px !important;
-    font-size:12px !important;
-    font-weight:bold !important;
-    color:#414141;
-    
-}
-.leftBox{
-	border:solid 1px #ccc;
-	padding:5px;
-}
-.treeControl{
-margin-bottom:10px;
-}
-.selected{
-    background-color:#a0afcd;
-    color:#fff !important;
-    padding:3px;
-}
-.secure{
-    color: #009966 !important;
-    text-decoration:underline;
-    background-image:url(../images/secure.gif);
-    background-repeat:no-repeat;
-    background-position:right center;
-    padding-right:15px;
-}
-div#eprInput {
-    margin: 0px 0px 0px 0px;
-    display: block;
-}
-
-div#scriptInput {
-    margin: 0px 20px 0px 20px;
-    display: none;
-}
-
-.initE {
-    border: solid 1px #e8e7e7;
-    text-align: left;
-    font-style: italic;
-    color: #adadad;
-}
-
-.normalE {
-    border: solid 1px #bfbebe;
-    text-align: left;
-}
-.importantArea {
-background-color:#DDDDDD;
-border:1px solid #949494;
-padding:5px;
-}
-#permissionsDiv h4 {
-color:#999999;
-font-size:12px !important;
-font-weight:bold !important;
-}
-.perRow td {
-background-color:#C6C7C8;
-border-right:1px solid #DFDFDF !important;
-font-weight:bold;
-text-align:center;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/topics.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/topics.css b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/topics.css
deleted file mode 100644
index 4ebba84..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/topics.css
+++ /dev/null
@@ -1,17 +0,0 @@
-.noDataDiv {
-    border: solid 1px #d1cece;
-    padding: 10px;
-    background-color: #f3f3f3;
-    color: #6b6b6b;
-    font-style: italic;
-}
-
-.noDataDiv-plain {
-    padding: 10px;
-    color: #6b6b6b;
-    font-style: italic;
-}
-
-#topicTree a {
-    cursor: pointer;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/tree-styles.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/tree-styles.css b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/tree-styles.css
deleted file mode 100644
index c8ea665..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/css/tree-styles.css
+++ /dev/null
@@ -1,80 +0,0 @@
-.treeControl ul{
-    padding:0px;
-    margin:0px;
-}
-
-.treeControl ul li{
-    list-style:none;
-    padding-left:15px;
-    padding-top:5px;
-    white-space:nowrap;
-    line-height:20px;
-}
-.treeControl ul li a.plus{
-    background-image:url(../images/icon-tree-plus.gif);
-    /*background-image:url(../images/plus.gif);*/
-    background-repeat:no-repeat;
-    background-position:0px 2px;
-    padding-left:15px;
-    cursor:pointer;
-    font-size:20px;
-}
-.treeControl ul li a.minus{
-    background-image:url(../images/icon-tree-minus.gif);
-    /*background-image:url(../images/minus.gif);*/
-    background-repeat:no-repeat;
-    background-position:0px 2px;
-    padding-left:15px;
-    cursor:pointer;
-    font-size:20px;
-}
-.treeControl ul li a.nodata{
-    background-image:url(../images/nodata.gif);
-    background-repeat:no-repeat;
-    background-position:0px 2px;
-    padding-left:15px;
-    cursor:pointer;
-}
-.treeControl ul li a.treeNode{
-    cursor:pointer;
-    color:#4c99c3;
-}
-.branch-node {
-    background-image: url( ../images/line.png );
-    background-repeat: repeat-y;
-    background-position: 8px 0px;
-    height: 15px;
-    margin-left:26px;
-margin-top:0px;
-	width: 16px;
-float: left;
-clear: left;
-}
-.addSubtopicStyle {
-background-image:url(../images/add.gif);
-background-repeat:no-repeat;
-background-position:0 0;
-padding-left:22px;
-padding-right: 0px !important;
-}
-.topicDetailsStyle {
-background-image:url(../images/details.gif);
-background-repeat:no-repeat;
-background-position:0 0;
-padding-left:22px;
-padding-right: 0px !important;
-}
-.topicSubscribeStyle {
-background-image:url(../images/subscribe.gif);
-background-repeat:no-repeat;
-background-position:0 0;
-padding-left:22px;
-padding-right: 0px !important;
-}
-.topicDeleteStyle {
-background-image:url(../images/delete.gif);
-background-repeat:no-repeat;
-background-position:0 0;
-padding-left:22px;
-padding-right: 0px !important;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/docs/userguide.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/docs/userguide.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/docs/userguide.xml
deleted file mode 100644
index cc34a20..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/docs/userguide.xml
+++ /dev/null
@@ -1,138 +0,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.
-  -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-        "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"></meta>
-    <title>Topics and Subscriptions - User Guide</title>
-    <link href="../../admin/css/documentation.css" rel="stylesheet" type="text/css" media="all"/>
-</head>
-
-<body style="font-family: Times New Roman,Times,serif; font-size: 12pt;">
-<h1>Topics and Subscriptions</h1>
-
-<h2>Topic Browser</h2>
-
-<p><img alt="" src="../images/Topic_Browser.png"/></p>
-
-<p>Figure 1: Topic Browser</p>
-
-<p>WSO2 Eventing provides this topic browser feature to view all the topics available in the server in a tree view. User can
-    perform all the operations with regarding a topic via this view. Initially this tree view does not display any of the
-    operations available for the topic. When user clicks on the topic , it will display all the operations available for
-    that particular topic.
-</p>
-
-<p>Operations available for a particular topic are :</p>
-
-<ul>
-    <li>Add Subtopic</li>
-    <li>Subscribe</li>
-    <li>Details</li>
-    <li>Delete</li>
-</ul>
-
-<h2>Add Subtopic</h2>
-
-<p><img alt="" src="../images/Add_subtopic.png"/></p>
-
-<p>Figure 2: Add Subtopic</p>
-
-<p>Add subtopic feature provided user the ability to add a topic under the existing topic. When
-    adding a new topic under an existing topic, user can provide the name of the new topic and set
-    the permissions for publishing and subscribing for that topic. </p>
-
-<p>Once a subtopic is added , it will direct to the Topic Browsing tree.</p>
-
-<p>If user wants to add a topic directly to the root, user can click on the 'Add' sub menu item
-    under topics menu in the left panel. </p>
-
-
-<h2>Subscribe</h2>
-
-<p><img alt="" src="../images/Subscribe.png"/></p>
-
-<p>Figure 3: Subscribe</p>
-
-<p>All the subscriptions for a particular topic is done in this page. Once a user click on the
-    subscribe link in topic browser, it will directed to this page. To do a subscription to that
-    topic , user has to give some details as bellow;</p>
-
-<ul>
-    <li>Topic</li>
-        <p> User does not need to specify the topic here , since its automatically sets up.</p>
-
-    <li>Subscription Mode</li>
-
-    <p> This is the mode of the subscription and there are tree modes.</p>
-
-    <p>The default mode for the subscription is "Topic Only".  With this mode , user creates the
-        subscription only to the topic. In that mode subscribers only receive events which
-        are published only to the that topic.</p>
-
-    <p> Next mode of subscription is "Topic and Immediate child". In this mode subscribers of the topic
-        receives events published not only the specified topic but also to the immediate child of that topic. </p>
-
-    <p> Last mode of subscription is "Topic and Children". In this mode subscribers of the specified
-        topic will receive events published to the specified topic and all its children </p>
-
-    <li>Event Sink URL</li>
-       <p>This is the URL which the subscriber should provide to receive events published. When events are
-        published to the topic, they are sent to the specified URL here.</p>
-
-    <li>Expiration Time</li>
-       <p> Here user can specify the expiration time of the subscription. This is not a required parameter and
-       if user leave it alone, subscription will never be expired. </p>
-</ul>
-
-<h2>Topic Details</h2>
-
-<p><img alt="" src="../images/Topic_details.png"/></p>
-
-<p>Figure 4: Topic Details</p>
-
-<p>All the details related with a topic can be viewed in this page.</p>
-<ul>
-    <li>Permission Details</li>
-    <p>Permissions related with the topic can be viewed here and if the user wants to change the
-        permissions with regarding that topic, user can change the ticks on the provided check
-        boxes and click on update permissions button. </p>
-
-    <li>WS Subscription Details</li>
-    <p>All the ws subscriptions for the topic and its all children is listed here. If the user wants to
-        unsubscribe from the topic, he can simply click on the unsubscribe link on the last column of each row.</p>
-
-    <li>JMS Subscription Details</li>
-    <P>All the durable and non durable JMS subscriptions are listed here.</P>
-
-    <li>Publish</li>
-    <p> This publish option provide the user the ability publish a sample XML message to a topic.
-     Once there is a subscription for the topic, event sink URL will receive that published XML
-     message once its click on the publish button after placing a xml message in the provided space.</p>
-</ul>
-
-<h2>Delete</h2>
-
-<p>This will delete the topic from the server. To delete a topic , subscription count for that topic
-    and its children should be zero. Otherwise it will prompt an error message specifying that there
-    are subscriptions for the topic or its children.</p>
-
-</body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Add_subtopic.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Add_subtopic.png b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Add_subtopic.png
deleted file mode 100644
index 3a4c403..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Add_subtopic.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Subscribe.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Subscribe.png b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Subscribe.png
deleted file mode 100644
index 46ee630..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Subscribe.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_Browser.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_Browser.png b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_Browser.png
deleted file mode 100644
index 6001979..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_Browser.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_details.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_details.png b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_details.png
deleted file mode 100644
index d751720..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/Topic_details.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/add.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/add.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/add.gif
deleted file mode 100644
index 80a9073..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/add.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/delete.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/delete.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/delete.gif
deleted file mode 100644
index 471f55c..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/delete.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/details.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/details.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/details.gif
deleted file mode 100644
index bb0e320..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/details.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/down.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/down.png b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/down.png
deleted file mode 100644
index 38f94be..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/down.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/hide.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/hide.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/hide.gif
deleted file mode 100644
index 8b7c7c6..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/hide.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-dot.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-dot.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-dot.gif
deleted file mode 100644
index 26e48b5..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-dot.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.gif
deleted file mode 100644
index 828b461..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.jpg
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.jpg b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.jpg
deleted file mode 100644
index ffff892..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-minus.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus-alone.jpg
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus-alone.jpg b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus-alone.jpg
deleted file mode 100644
index 4d6295e..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus-alone.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus.gif
deleted file mode 100644
index ba5ee7a..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/topics/images/icon-tree-plus.gif and /dev/null differ