You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by la...@apache.org on 2013/07/22 17:00:10 UTC

[15/19] applied 0001-Removed-stratos2-folder-from-products.patch

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_01.xml
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_01.xml b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_01.xml
deleted file mode 100644
index c45c2eb..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_01.xml
+++ /dev/null
@@ -1,183 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  ~  Copyright (c) 2009, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
-  ~
-  ~  WSO2 Inc. 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 Clustered Deployment - Scenario 01
-    </title>
-    <link href="css/mb-docs.css" rel="stylesheet"/>
-    <link href="styles/dist-docs.css" rel="stylesheet" type="text/css" media="all"/>
-  </head>
-  <body xml:lang="en">
-      [ <a href="docs_index.html"> Documentation Index </a> ]
-
-      <h2>Starting external cassandra server and zoo keeper server and point all broker nodes to them</h2>
-      <p>
-          In this model you need to get downloaded following apache products
-      </p>
-
-      <ul>
-          <li><a href=" http://zookeeper.apache.org/releases.html#download">Apache Zoo Keeper</a> <p> Version 3.3.4</p></li>
-          <li><a href="http://cassandra.apache.org/download/">Apache Cassandra</a><p> Version 1.0.*</p></li>
-      </ul>
-      <p> Deployment model will be like bellow </p>
-      <p>
-          <img src="images/cluster_scenario_01.png" alt="Cluster Setup Scenario 01" height="600" width ="950"/>
-      </p>
-      <p> In this model we have a common cassandra server and a common zoo keeper server. Both of them can be in a same
-       host or in different hosts. Eg: Lets say they are in two different hosts as bellow</p>
-      <ul>
-          <li>Cassandra Server - 192.168.0.100</li>
-          <li>Zoo Keeper Server - 192.168.0.101</li>
-      </ul>
-      <p> We have three Message Broker servers in three different hosts as</p>
-       <ul>
-          <li>MB Server 01 - 192.168.0.102</li>
-          <li>MB Server 02 - 192.168.0.103</li>
-          <li>MB Server 03 - 192.168.0.104</li>
-      </ul>
-
-      <p> We need to configure cassandra server to listen to all the broker nodes.For that we need to change the following entries
-      in the "Cassandra.yaml" file which is located in the "apache-cassandra-1.0.1/conf/" directory.</p>
-
-      <ul>
-          <li>Change the data storage directories of cassandra. Here by default it will point to the location "/var/lib/". But
-          it will be better, if you can keep the data locally inside the folder where you have the server setup. So change it to "./repository/database" off
-          all three entries as</li>
-          <pre>
-              # directories where Cassandra should store data on disk.
-              data_file_directories:
-                  - ./repository/database/cassandra/data
-
-              # commit log
-              commitlog_directory: ./repository/database/cassandra/commitlog
-
-              # saved caches
-              saved_caches_directory: ./repository/database/cassandra/saved_caches
-
-          </pre>
-
-          <li>Change listen address of the server. By default it is "localhost", change it to the ip address of the host where you
-          have the cassandra server.
-          </li>
-          <pre>
-             listen_address: 192.168.0.100
-          </pre>
-
-          <li>Change RPC address of the server.By default it is "localhost", change it to the ip address of the host where you
-          have the cassandra server. </li>
-           <pre>
-             rpc_address: 192.168.0.100
-          </pre>
-      </ul>
-      <p> Now save the cassandra.yaml file and you can start the cassandra server by executing the script "cassandra" with the
-          option -f.  Eg: "./cassandra -f"
-      </p>
-
-      <p> Then we need to configure the Zoo Keeper Server to listen to all broker nodes. We can do it by renaming the "zoo_sample.cfg"
-      file which can be found at "zookeeper-3.3.4/conf" folder to "zoo.cfg" and do the following modification in that file
-      </p>
-
-      <ul>
-          <li>Change the data directory to store data local to the installation directory</li>
-          <li>Add the entry "clientPortAddress" by providing the ip of the localhost</li>
-      </ul>
-      <p>After modifying the file , it will look like bellow. </p>
-      <pre>
-            # The number of milliseconds of each tick
-            tickTime=2000
-            # The number of ticks that the initial
-            # synchronization phase can take
-            initLimit=10
-            # The number of ticks that can pass between
-            # sending a request and getting an acknowledgement
-            syncLimit=5
-            # the directory where the snapshot is stored.
-            dataDir=./../data
-            # the port at which the clients will connect
-            clientPort=2181
-
-            clientPortAddress=192.168.0.101
-        </pre>
-      <p>
-          Once you done the above changes, you can save the file and start the zookeeper server by executing the "zkServer.sh" script
-          with the option start. eg: sh zkServer.sh start
-      </p>
-
-      <p>
-          Then you need to do the following configuration changes in each Message broker nodes
-      </p>
-      <p>
-         Modify qpid-config.xml file which is located at : /repository/conf/advanced directory as bellow
-      </p>
-      <ul>
-
-          <li>Enable clustering</li>
-          <li>Change the server of the Zookeeper</li>
-      </ul>
-      <pre>
-          &lt;clustering>
-
-          &lt;enabled><b>true</b>&lt;/enabled>
-          &lt;OnceInOrderSupportEnabled>false&lt;/OnceInOrderSupportEnabled>
-          &lt;externalCassandraServerRequired>true&lt;/externalCassandraServerRequired>
-
-          &lt;coordination>
-              &lt;!-- Apache Zookeeper Address -->
-              &lt;ZooKeeperConnection><b>192.168.0.101</b>:2181&lt;/ZooKeeperConnection>
-              &lt;!-- Format yyyy-MM-dd HH:mm:ss -->
-              &lt;ReferenceTime>2012-02-29 08:08:08&lt;/ReferenceTime>
-          &lt;/coordination>
-      </pre>
-
-      <p>Modify qpid-virtualhosts.xml file which is located at :/repository/conf/advanced directory as bellow</p>
-       <ul>
-          <li>Change the connection string by pointing to the cassandra server</li>
-      </ul>
-      <pre>
-          &lt;store>
-              &lt;class>org.wso2.andes.server.store.CassandraMessageStore&lt;/class>
-              &lt;username>admin&lt;/username>
-              &lt;password>admin&lt;/password>
-              &lt;cluster>ClusterOne&lt;/cluster>
-              &lt;idGenerator>org.wso2.andes.server.cluster.coordination.TimeStampBasedMessageIdGenerator&lt;/idGenerator>
-              &lt;connectionString><b>192.168.0.100</b>:9160&lt;/connectionString>
-          &lt;/store>
-      </pre>
-
-      <p>Now you can start all three Message Broker nodes.</p>
-
-      <h2>
-
-      Other Resources
-    </h2>
-    <p/>
-    <p>
-      <a href="http://wso2.org/library/mb">The WSO2 Oxygen Tank
-      Library</a> : The Library contains articles, tutorials,
-      presentations, and other knowledge base items published on The Oxygen
-      Tank on different styles of deployments.
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_02.xml
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_02.xml b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_02.xml
deleted file mode 100644
index a98b6a2..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/cluster_scenario_02.xml
+++ /dev/null
@@ -1,159 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  ~  Copyright (c) 2009, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
-  ~
-  ~  WSO2 Inc. 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 Clustered Deployment - Scenario 02
-    </title>
-    <link href="css/mb-docs.css" rel="stylesheet"/>
-    <link href="styles/dist-docs.css" rel="stylesheet" type="text/css" media="all"/>
-  </head>
-  <body xml:lang="en">
-      [ <a href="docs_index.html"> Documentation Index </a> ]
-
-      <h2>Starting external zoo keeper server and use the inbuilt cassandra server in ring model with broker nodes</h2>
-      <p>
-          In this model you need to get downloaded following apache product
-      </p>
-
-      <ul>
-          <li><a href=" http://zookeeper.apache.org/releases.html#download">Apache Zoo Keeper</a> <p> Version 3.3.4</p></li>
-      </ul>
-      <p> Deployment model will be like bellow </p>
-      <p>
-          <img src="images/cluster_scenario_02.png" alt="Cluster Setup Scenario 02" height="600" width ="950"/>
-      </p>
-      <p> In this model we have a common zoo keeper server. Since we are shipping a cassandra server with Message broker product we can
-          use that and create a cassandra ring in the cluster.</p>
-      <ul>
-          <li>Zoo Keeper Server - 192.168.0.100</li>
-      </ul>
-      <p> We have three Message Broker servers in three different hosts as and all of them are having a cassandra server in it</p>
-       <ul>
-          <li>MB Server 01 - 192.168.0.101</li>
-          <li>MB Server 02 - 192.168.0.102</li>
-          <li>MB Server 03 - 192.168.0.103</li>
-      </ul>
-
-      <p> We need to configure cassandra servers in these MB servers to form a cassandra ring. For that we need to change the following
-          entries in the "Cassandra.yaml" file which is located in the "wso2mb-2.0.1/repository/conf/etc" directory.</p>
-
-      <ul>
-          <li>Change the seeds in the ring. You can get a better idea on setting a cassandra from following <a href="http://www.datastax.com/docs/1.0/install/cluster_init">web page.</a>
-          Here we are configuring two seed nodes. (MB Server 01 and 02)</li>
-
-          <pre>
-              # seeds is actually a comma-delimited list of addresses.
-              # Ex: "&lt;ip1>,&lt;ip2>,&lt;ip3>"
-              - seeds: "192.168.0.101,192.168.0.102"
-
-          </pre>
-
-          <li>Change listen address of the server. By default it is "localhost", change it to the ip address of the host where you
-          have the cassandra server. <b>You need to change the listen address of the each server to it's ip address. Here
-          for the server 192.168.0.102, it will like bellow. </b>
-          </li>
-          <pre>
-             listen_address: 192.168.0.102
-          </pre>
-
-          <li>Change RPC address of the server.By default it is "localhost", change it to the ip address of the host where you
-          have the cassandra server. <b>You need to change the RPC address of the each server to it's ip address. Here
-          for the server 192.168.0.103, it will like bellow. </b></li>
-           <pre>
-             rpc_address: 192.168.0.103
-          </pre>
-      </ul>
-
-      <p> Then we need to configure the Zoo Keeper Server to listen to all broker nodes. We can do it by renaming the "zoo_sample.cfg"
-      file which can be found at "zookeeper-3.3.4/conf" folder to "zoo.cfg" and do the following modification in that file
-      </p>
-
-      <ul>
-          <li>Change the data directory to store data local to the installation directory</li>
-          <li>Add the entry "clientPortAddress" by providing the ip of the localhost</li>
-      </ul>
-      <p>After modifying the file , it will look like bellow. </p>
-      <pre>
-            # The number of milliseconds of each tick
-            tickTime=2000
-            # The number of ticks that the initial
-            # synchronization phase can take
-            initLimit=10
-            # The number of ticks that can pass between
-            # sending a request and getting an acknowledgement
-            syncLimit=5
-            # the directory where the snapshot is stored.
-            dataDir=./../data
-            # the port at which the clients will connect
-            clientPort=2181
-
-            clientPortAddress=192.168.0.100
-        </pre>
-      <p>
-          Once you done the above changes, you can save the file and start the zookeeper server by executing the "zkServer.sh" script
-          with the option start. eg: sh zkServer.sh start
-      </p>
-
-      <p>
-          Then you need to do the following configuration changes in each Message broker nodes
-      </p>
-      <p>
-         Modify qpid-config.xml file which is located at : /repository/conf/advanced directory as bellow
-      </p>
-      <ul>
-
-          <li>Enable clustering</li>
-          <li>Change the server of the Zookeeper</li>
-      </ul>
-      <pre>
-          &lt;clustering>
-
-          &lt;enabled><b>true</b>&lt;/enabled>
-          &lt;OnceInOrderSupportEnabled>false&lt;/OnceInOrderSupportEnabled>
-          &lt;externalCassandraServerRequired>false&lt;/externalCassandraServerRequired>
-
-          &lt;coordination>
-              &lt;!-- Apache Zookeeper Address -->
-              &lt;ZooKeeperConnection><b>192.168.0.100</b>:2181&lt;/ZooKeeperConnection>
-              &lt;!-- Format yyyy-MM-dd HH:mm:ss -->
-              &lt;ReferenceTime>2012-02-29 08:08:08&lt;/ReferenceTime>
-          &lt;/coordination>
-      </pre>
-
-      <p>Now you can start all three Message Broker nodes.</p>
-
-      <h2>
-
-      Other Resources
-    </h2>
-    <p/>
-    <p>
-      <a href="http://wso2.org/library/mb">The WSO2 Oxygen Tank
-      Library</a> : The Library contains articles, tutorials,
-      presentations, and other knowledge base items published on The Oxygen
-      Tank on different styles of deployments.
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/dialog-ie8.css
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/dialog-ie8.css b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/dialog-ie8.css
deleted file mode 100644
index ef4e298..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/dialog-ie8.css
+++ /dev/null
@@ -1,4 +0,0 @@
-div.ui-dialog-overlay {
-    /*filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='../img/overlay.png');    */
-    background-image:none !important;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_resize_se.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_resize_se.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_resize_se.gif
deleted file mode 100644
index 251dc16..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_resize_se.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_left.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_left.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_left.gif
deleted file mode 100644
index 9f95efa..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_left.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_right.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_right.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_right.gif
deleted file mode 100644
index bc02050..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_right.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_11x11_icon_close.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_11x11_icon_close.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_11x11_icon_close.gif
deleted file mode 100644
index 390a759..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_11x11_icon_close.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/confirm.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/confirm.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/confirm.gif
deleted file mode 100644
index 6c719b3..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/confirm.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/warning.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/warning.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/warning.gif
deleted file mode 100644
index b4ba52f..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/img/warning.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_leftright.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_leftright.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_leftright.gif
deleted file mode 100644
index b26780a..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_leftright.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_doc.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_doc.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_doc.gif
deleted file mode 100644
index 26db434..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_doc.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_plus.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_plus.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_plus.gif
deleted file mode 100644
index 74ac5cb..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_plus.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_leftright.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_leftright.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_leftright.gif
deleted file mode 100644
index 136e626..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_leftright.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_updown.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_updown.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_updown.gif
deleted file mode 100644
index 4f00635..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_arrows_updown.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_close.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_close.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_close.gif
deleted file mode 100644
index 390a759..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_close.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_doc.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_doc.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_doc.gif
deleted file mode 100644
index e91c733..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_doc.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_plus.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_plus.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_plus.gif
deleted file mode 100644
index 41d9534..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_11x11_icon_plus.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_down.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_down.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_down.gif
deleted file mode 100644
index 92fdfe0..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_down.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_left.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_left.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_left.gif
deleted file mode 100644
index cf01ff3..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_left.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_right.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_right.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_right.gif
deleted file mode 100644
index 3190e7a..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_right.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_up.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_up.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_up.gif
deleted file mode 100644
index 7ae34bf..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/454545_7x7_arrow_up.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_folder_open.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_folder_open.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_folder_open.gif
deleted file mode 100644
index 33a20b8..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_folder_open.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_plus.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_plus.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_plus.gif
deleted file mode 100644
index 43531ff..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_11x11_icon_plus.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_7x7_arrow_up.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_7x7_arrow_up.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_7x7_arrow_up.gif
deleted file mode 100644
index 165666a..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/888888_7x7_arrow_up.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/dadada_40x100_textures_02_glass_75.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/dadada_40x100_textures_02_glass_75.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/dadada_40x100_textures_02_glass_75.png
deleted file mode 100644
index 60ba001..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/dadada_40x100_textures_02_glass_75.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/e6e6e6_40x100_textures_02_glass_75.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/e6e6e6_40x100_textures_02_glass_75.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/e6e6e6_40x100_textures_02_glass_75.png
deleted file mode 100644
index a8b7ba3..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/e6e6e6_40x100_textures_02_glass_75.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/ffffff_40x100_textures_01_flat_75.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/ffffff_40x100_textures_01_flat_75.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/ffffff_40x100_textures_01_flat_75.png
deleted file mode 100644
index ac8b229..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/ffffff_40x100_textures_01_flat_75.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/docs/about.xml
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/docs/about.xml b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/docs/about.xml
deleted file mode 100644
index 5ac25eb..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/docs/about.xml
+++ /dev/null
@@ -1,125 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-<!--
- ~ Copyright (c) 2005-2011, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
- ~
- ~ WSO2 Inc. 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>WSO2 Carbon - About</title>
-
-<link href="../admin/css/documentation.css" rel="stylesheet" type="text/css" media="all"/>
-</head>
-<body>
-<h1>Version 4.0.1</h1>
-<h2>About WSO2 Carbon </h2>
-<p>WSO2 Carbon is a component based Enterprise SOA platform. The
-design of
-WSO2 Carbon focuses on separating the key functionality of the SOA
-platform
-into separate pluggable Carbon components that can be mixed and
-matched, like
-customizable building blocks. This allows you to add only the
-functionality
-you need to start up, and continue to add product capabilities
-as your
-requirements grow. This helps a business to quickly adapt to
-changes.</p>
-<p>OSGi is used as the underlying core modularization technology
-within the
-Carbon platform. The Carbon framework is shipped with Eclipse Equinox
-by
-default, but can be supported on Spring dm Server, Felix or Knoplerfish
-if
-required. The OSGi technology even allows you to write your business
-functionality as an OSGi component and deploy it in the existing Carbon
-platform. </p>
-<p> For a quick start on using the WSO2 Carbon
-platform, the Carbon components are pre-assembled into the following
-products: </p>
-<ul id="CarbonProducts">
-    <li><a href="http://wso2.com/products/api-manager/">WSO2
-        API Manager</a></li>
-    <li><a href="http://wso2.com/products/application-server/">WSO2
-        Application Server</a></li>
-    <li><a href="http://wso2.com/products/business-activity-monitor/">WSO2
-        Business Activity Monitor</a></li>
-    <li><a href="http://wso2.com/products/business-process-server/">WSO2
-        Business Process Server</a></li>
-    <li><a href="http://wso2.com/products/business-rules-server/">WSO2
-        Business Rules Server</a></li>
-    <li><a href="http://wso2.com/products/complex-event-processing-server/">WSO2
-        Complex Event Processing Server</a></li>
-    <li><a href="http://wso2.com/products/data-services-server">WSO2
-        Data Services Server</a></li>
-    <li><a href="http://wso2.com/products/elastic-load-balancer/">WSO2
-        Elastic Load Balancer</a></li>
-    <li><a href="http://wso2.com/products/enterprise-service-bus/">WSO2
-        Enterprise Service Bus</a></li>
-    <li><a href="http://wso2.com/products/gadget-server/">WSO2
-        Gadget Server</a></li>
-    <li><a href="http://wso2.com/products/governance-registry/">WSO2
-        Governance Registry</a></li>
-    <li><a href="http://wso2.com/products/identity-server/">WSO2
-        Identity Server</a></li>
-    <li><a href="http://wso2.com/products/mashup-server/">WSO2
-        Mashup Server</a></li>
-    <li><a href="http://wso2.com/products/message-broker/">WSO2
-        Message Broker</a></li>
-</ul>
-<p>You can assemble your own products by combining
-components and
-deploying them in a preferred architecture. WSO2 Carbon offers P2 based provisioning support as well. Please visit the <a href="http://wso2.com/products/carbon/">Carbon product page</a> for more information. </p>
-<p>The WSO2 Carbon platform gives maximum flexibility to adapt
-the middleware
-to your enterprise architecture, rather than adapt your architecture to
-the
-middleware. </p>
-
-<h2>About WSO2</h2>
-<p>WSO2 is a Open Source technology company building Open Source
-middleware
-platforms for Web services and SOA. WSO2 delivers integrated middleware
-stacks, offering industry leading
-performance and convenience for customers. </p>
-<p>Founded in August 2005 by pioneers in Web services and Open
-Source, WSO2
-engineers contribute heavily to many key Apache Web services and other open source projects. </p>
-
-<h3>Have you tried...</h3>
-<p><a href="http://wso2.com/products/api-manager/"><img src="../admin/images/am_logo_h23.gif" alt="API Manager"/></a></p>
-<p><a href="http://wso2.com/products/application-server/"><img src="../admin/images/appserver_logo_h23.gif" alt="Application Server"/></a></p>
-<p><a href="http://wso2.com/products/business-activity-monitor/"><img src="../admin/images/bam_logo_h23.gif" alt="Business Activity Monitor"/></a></p>
-<p><a href="http://wso2.com/products/business-process-server/"><img src="../admin/images/bps_logo_h23.gif" alt="Business Process Server"/></a></p>
-<p><a href="http://wso2.com/products/business-rules-server"><img src="../admin/images/brs_logo_h23.gif" alt="Business Rules Server"/></a></p>
-<p><a href="http://wso2.com/products/complex-event-processing-server/"><img src="../admin/images/cep_logo_h23.gif" alt="Complex Event Processing Server"/></a></p>
-<p><a href="http://wso2.com/products/data-services-server"><img src="../admin/images/ds_logo_h23.gif" alt="Data Services Server"/></a></p>
-<p><a href="http://wso2.com/products/elastic-load-balancer/"><img src="../admin/images/elb_logo_h23.gif" alt="Elastic Load Balancer"/></a></p>
-<p><a href="http://wso2.com/products/enterprise-service-bus/"><img src="../admin/images/esb_logo_h23.gif" alt="Enterprise Service Bus"/></a></p>
-<p><a href="http://wso2.com/products/gadget-server/"><img src="../admin/images/gadgetserver_logo_h23.gif" alt="Gadget Server"/></a></p>
-<p><a href="http://wso2.com/products/governance-registry/"><img src="../admin/images/registry_logo_h23.gif" alt="Governance Registry"/></a></p>
-<p><a href="http://wso2.com/products/identity-server/"><img src="../admin/images/identity_logo_h23.gif" alt="Identity Server"/></a></p>
-<p><a href="http://wso2.com/products/mashup-server/"><img src="../admin/images/mashup_logo_h23.gif" alt="Mashup Server"/></a></p>
-<p><a href="http://wso2.com/products/message-broker/"><img src="../admin/images/mb_logo_h23.gif" alt="Message Broker"/></a></p>
-<h3>Stay connected </h3>
-<p><a href="http://wso2.org/newsletter/subscriptions">Subscribe</a>
-to the WSO2 newsletter - project updates, events, articles, SOA news
-and much
-more.</p>
-<h3>Need more help?</h3>
-<ul>
-<li><a href="http://wso2.org/library">Read articles</a></li>
-<li><a href="http://wso2.com/support/">Get commercial
-support</a></li>
-</ul>
-</body></html>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/css/dsxmleditor.css
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/css/dsxmleditor.css b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/css/dsxmleditor.css
deleted file mode 100644
index eb9de58..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/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/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/add.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/add.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/add.gif
deleted file mode 100644
index 4bfdd79..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/add.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/list.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/list.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/list.gif
deleted file mode 100644
index 638d8ab..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/list.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/secure.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/secure.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/secure.gif
deleted file mode 100644
index d0fa668..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/secure.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/show.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/show.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/show.gif
deleted file mode 100644
index 381a93e..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/show.gif and /dev/null differ

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

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/up.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/up.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/up.png
deleted file mode 100644
index e3e9d25..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/eventing/images/up.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_arrows_updown.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_arrows_updown.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_arrows_updown.gif
deleted file mode 100644
index 69eb077..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_arrows_updown.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_doc.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_doc.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_doc.gif
deleted file mode 100644
index 26db434..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_doc.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_plus.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_plus.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_plus.gif
deleted file mode 100644
index 74ac5cb..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_11x11_icon_plus.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_7x7_arrow_left.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_7x7_arrow_left.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_7x7_arrow_left.gif
deleted file mode 100644
index 9f95efa..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/222222_7x7_arrow_left.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_arrows_leftright.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_arrows_leftright.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_arrows_leftright.gif
deleted file mode 100644
index 136e626..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_arrows_leftright.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_plus.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_plus.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_plus.gif
deleted file mode 100644
index 41d9534..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/454545_11x11_icon_plus.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_arrows_updown.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_arrows_updown.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_arrows_updown.gif
deleted file mode 100644
index c10451f..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_arrows_updown.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_close.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_close.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_close.gif
deleted file mode 100644
index 326d015..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_close.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_folder_open.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_folder_open.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_folder_open.gif
deleted file mode 100644
index 33a20b8..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_folder_open.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_minus.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_minus.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_minus.gif
deleted file mode 100644
index 777c328..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_11x11_icon_minus.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_7x7_arrow_up.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_7x7_arrow_up.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_7x7_arrow_up.gif
deleted file mode 100644
index 165666a..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/888888_7x7_arrow_up.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/e6e6e6_40x100_textures_02_glass_75.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/e6e6e6_40x100_textures_02_glass_75.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/e6e6e6_40x100_textures_02_glass_75.png
deleted file mode 100644
index a8b7ba3..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/e6e6e6_40x100_textures_02_glass_75.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/ffffff_40x100_textures_01_flat_75.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/ffffff_40x100_textures_01_flat_75.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/ffffff_40x100_textures_01_flat_75.png
deleted file mode 100644
index ac8b229..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/images/ffffff_40x100_textures_01_flat_75.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/ui.all.css
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/ui.all.css b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/ui.all.css
deleted file mode 100644
index 18c1656..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/css/ui.all.css
+++ /dev/null
@@ -1,699 +0,0 @@
-/*
- * jQuery UI screen structure and presentation
- * This CSS file was generated by ThemeRoller, a Filament Group Project for jQuery UI
- * Author: Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
- * Visit ThemeRoller.com
-*/
-
-/*
- * Note: If your ThemeRoller settings have a font size set in ems, your components will scale according to their parent element's font size.
- * As a rule of thumb, set your body's font size to 62.5% to make 1em = 10px.
- * body {font-size: 62.5%;}
-*/
-
-
-
-/*UI accordion*/
-.ui-accordion {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	font-family: Verdana,Arial,sans-serif;
-	font-size: 1.1em;
-	border-bottom: 1px solid #d3d3d3;
-}
-.ui-accordion-group {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	border: 1px solid #d3d3d3;
-	border-bottom: none;
-}
-.ui-accordion-header {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	cursor: pointer;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-}
-.ui-accordion-header a {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	display: block;
-	font-size: 1em;
-	font-weight: normal;
-	text-decoration: none;
-	padding: .5em .5em .5em 1.7em;
-	color: #555555;
-	background: url(images/888888_7x7_arrow_right.gif) .5em 50% no-repeat;
-}
-.ui-accordion-header a:hover {
-	background: url(images/454545_7x7_arrow_right.gif) .5em 50% no-repeat;
-	color: #212121;
-}
-.ui-accordion-header:hover {
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	color: #212121;
-}
-.selected .ui-accordion-header, .selected .ui-accordion-header:hover {
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-}
-.selected .ui-accordion-header a, .selected .ui-accordion-header a:hover {
-	color: #212121;
-	background: url(images/454545_7x7_arrow_down.gif) .5em 50% no-repeat;
-}
-.ui-accordion-content {
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_75.png) 0 0 repeat-x;
-	color: #222222;
-	font-size: 1em;
-}
-.ui-accordion-content p {
-	padding: 1em 1.7em 0.6em;
-}
-
-
-.tableHighlightRow {
-background-color:#AAF;
-}
-
-
-
-
-/*UI tabs*/
-.ui-tabs-nav {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	float: left;
-	position: relative;
-	z-index: 1;
-	border-right: 1px solid #d3d3d3;
-	border-style: none !important;
-	bottom: -1px;
-    	width: 100%;
-}
-.ui-tabs-nav ul {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-}
-.ui-tabs-nav li {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	float: left;
-	border: 1px solid #d3d3d3;
-}
-.ui-tabs-nav li a {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	float: left;
-	font-weight: normal;
-	text-decoration: none;
-	padding: .5em 1.7em;
-	color: #555555;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-}
-.ui-tabs-nav li a:hover {
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	color: #212121;
-}
-.ui-tabs-nav li.ui-tabs-selected {
-	border-bottom-color: #ffffff;
-}
-.ui-tabs-nav li.ui-tabs-selected a, .ui-tabs-nav li.ui-tabs-selected a:hover {
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-	color: #212121;
-}
-.ui-tabs-panel {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	clear:left;
-	border: 1px solid #d3d3d3;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_75.png) 0 0 repeat-x;
-	color: #222222;
-	padding: 1.5em 1.7em;
-}
-.ui-tabs-hide {
-	display: none;/* for accessible hiding: position: absolute; left: -99999999px*/;
-}
-
-div#middle div#workArea h4 {
-	padding-bottom: 7px;
-	border-bottom: 1px solid #999;
-}
-
-div#workArea table.normal tbody tr td.border {
-	border-bottom: 1px solid #D3D3D3;
-	border-height: 1px;
-}
-
-
-/*slider*/
-.ui-slider {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	font-family: Verdana,Arial,sans-serif;
-	font-size: 1.1em;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_75.png) 0 0 repeat-x;
-	border: 1px solid #aaaaaa;
-	height: .8em;
-	position: relative;
-}
-.ui-slider-handle {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	position: absolute;
-	z-index: 2;
-	top: -3px;
-	width: 1.2em;
-	height: 1.2em;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	border: 1px solid #d3d3d3;
-}
-.ui-slider-handle:hover {
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	border: 1px solid #999999;
-}
-.ui-slider-handle-active, .ui-slider-handle-active:hover {
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-	border: 1px solid #aaaaaa;
-}
-.ui-slider-range {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	height: .8em;
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	position: absolute;
-	border: 1px solid #d3d3d3;
-	border-left: 0;
-	border-right: 0;
-	top: -1px;
-	z-index: 1;
-	opacity:.7;
-	filter:Alpha(Opacity=70);
-}
-
-
-
-
-
-
-/*dialog*/
-.ui-dialog {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	font-family: Verdana,Arial,sans-serif;
-	font-size: 1.1em;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_75.png) 0 0 repeat-x;
-	color: #222222;
-	border: 4px solid #aaaaaa;
-	position: relative;
-}
-.ui-resizable-handle {
-	position: absolute;
-	font-size: 0.1px;
-	z-index: 99999;
-}
-.ui-resizable .ui-resizable-handle {
-	display: block;
-}
-body .ui-resizable-disabled .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */
-body .ui-resizable-autohide .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */
-.ui-resizable-n {
-	cursor: n-resize;
-	height: 7px;
-	width: 100%;
-	top: -5px;
-	left: 0px;
-}
-.ui-resizable-s {
-	cursor: s-resize;
-	height: 7px;
-	width: 100%;
-	bottom: -5px;
-	left: 0px;
-}
-.ui-resizable-e {
-	cursor: e-resize;
-	width: 7px;
-	right: -5px;
-	top: 0px;
-	height: 100%;
-}
-.ui-resizable-w {
-	cursor: w-resize;
-	width: 7px;
-	left: -5px;
-	top: 0px;
-	height: 100%;
-}
-.ui-resizable-se {
-	cursor: se-resize;
-	width: 13px;
-	height: 13px;
-	right: 0px;
-	bottom: 0px;
-	background: url(images/222222_11x11_icon_resize_se.gif) no-repeat 0 0;
-}
-.ui-resizable-sw {
-	cursor: sw-resize;
-	width: 9px;
-	height: 9px;
-	left: 0px;
-	bottom: 0px;
-}
-.ui-resizable-nw {
-	cursor: nw-resize;
-	width: 9px;
-	height: 9px;
-	left: 0px;
-	top: 0px;
-}
-.ui-resizable-ne {
-	cursor: ne-resize;
-	width: 9px;
-	height: 9px;
-	right: 0px;
-	top: 0px;
-}
-.ui-dialog-titlebar {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	padding: .5em 1.5em .5em 1em;
-	color: #555555;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	border-bottom: 1px solid #d3d3d3;
-	font-size: 1em;
-	font-weight: normal;
-	position: relative;
-}
-.ui-dialog-title {}
-.ui-dialog-titlebar-close {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	background: url(images/888888_11x11_icon_close.gif) 0 0 no-repeat;
-	position: absolute;
-	right: 8px;
-	top: .7em;
-	width: 11px;
-	height: 11px;
-	z-index: 100;
-}
-.ui-dialog-titlebar-close-hover, .ui-dialog-titlebar-close:hover {
-	background: url(images/454545_11x11_icon_close.gif) 0 0 no-repeat;
-}
-.ui-dialog-titlebar-close:active {
-	background: url(images/454545_11x11_icon_close.gif) 0 0 no-repeat;
-}
-.ui-dialog-titlebar-close span {
-	display: none;
-}
-.ui-dialog-content {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	color: #222222;
-	padding: 1.5em 1.7em;
-}
-.ui-dialog-buttonpane {
-	position: absolute;
-	bottom: 0;
-	width: 100%;
-	text-align: left;
-	border-top: 1px solid #aaaaaa;
-	background: #ffffff;
-}
-.ui-dialog-buttonpane button {
-	margin: .5em 0 .5em 8px;
-	color: #555555;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	font-size: 1em;
-	border: 1px solid #d3d3d3;
-	cursor: pointer;
-	padding: .2em .6em .3em .6em;
-	line-height: 1.4em;
-}
-.ui-dialog-buttonpane button:hover {
-	color: #212121;
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	border: 1px solid #999999;
-}
-.ui-dialog-buttonpane button:active {
-	color: #212121;
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-	border: 1px solid #aaaaaa;
-}
-/* This file skins dialog */
-.ui-dialog.ui-draggable .ui-dialog-titlebar,
-.ui-dialog.ui-draggable .ui-dialog-titlebar {
-	cursor: move;
-}
-
-
-
-
-
-
-
-/*datepicker*/
-/* Main Style Sheet for jQuery UI date picker */
-.ui-datepicker-div, .ui-datepicker-inline, #ui-datepicker-div {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	font-family: Verdana,Arial,sans-serif;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_75.png) 0 0 repeat-x;
-	font-size: 1.1em;
-	border: 4px solid #aaaaaa;
-	width: 15.5em;
-	padding: 2.5em .5em .5em .5em;
-	position: relative;
-}
-.ui-datepicker-div, #ui-datepicker-div {
-	z-index: 9999; /*must have*/
-	display: none;
-}
-.ui-datepicker-inline {
-	float: left;
-	display: block;
-}
-.ui-datepicker-control {
-	display: none;
-}
-.ui-datepicker-current {
-	display: none;
-}
-.ui-datepicker-next, .ui-datepicker-prev {
-	position: absolute;
-	left: .5em;
-	top: .5em;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-}
-.ui-datepicker-next {
-	left: 14.6em;
-}
-.ui-datepicker-next:hover, .ui-datepicker-prev:hover {
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-}
-.ui-datepicker-next a, .ui-datepicker-prev a {
-	text-indent: -999999px;
-	width: 1.3em;
-	height: 1.4em;
-	display: block;
-	font-size: 1em;
-	background: url(images/888888_7x7_arrow_left.gif) 50% 50% no-repeat;
-	border: 1px solid #d3d3d3;
-	cursor: pointer;
-}
-.ui-datepicker-next a {
-	background: url(images/888888_7x7_arrow_right.gif) 50% 50% no-repeat;
-}
-.ui-datepicker-prev a:hover {
-	background: url(images/454545_7x7_arrow_left.gif) 50% 50% no-repeat;
-}
-.ui-datepicker-next a:hover {
-	background: url(images/454545_7x7_arrow_right.gif) 50% 50% no-repeat;
-}
-.ui-datepicker-prev a:active {
-	background: url(images/454545_7x7_arrow_left.gif) 50% 50% no-repeat;
-}
-.ui-datepicker-next a:active {
-	background: url(images/454545_7x7_arrow_right.gif) 50% 50% no-repeat;
-}
-.ui-datepicker-header select {
-	border: 1px solid #d3d3d3;
-	color: #555555;
-	background: #e6e6e6;
-	font-size: 1em;
-	line-height: 1.4em;
-	position: absolute;
-	top: .5em;
-	margin: 0 !important;
-}
-.ui-datepicker-header option:focus, .ui-datepicker-header option:hover {
-	background: #dadada;
-}
-.ui-datepicker-header select.ui-datepicker-new-month {
-	width: 7em;
-	left: 2.2em;
-}
-.ui-datepicker-header select.ui-datepicker-new-year {
-	width: 5em;
-	left: 9.4em;
-}
-table.ui-datepicker {
-	width: 15.5em;
-	text-align: right;
-}
-table.ui-datepicker td a {
-	padding: .1em .3em .1em 0;
-	display: block;
-	color: #555555;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	cursor: pointer;
-	border: 1px solid #ffffff;
-}
-table.ui-datepicker td a:hover {
-	border: 1px solid #999999;
-	color: #212121;
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-}
-table.ui-datepicker td a:active {
-	border: 1px solid #aaaaaa;
-	color: #212121;
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-}
-table.ui-datepicker .ui-datepicker-title-row td {
-	padding: .3em 0;
-	text-align: center;
-	font-size: .9em;
-	color: #222222;
-	text-transform: uppercase;
-}
-table.ui-datepicker .ui-datepicker-title-row td a {
-	color: #222222;
-}
-.ui-datepicker-cover {
-	display: none;
-	display/**/: block;
-	position: absolute;
-	z-index: -1;
-	filter: mask();
-	top: -4px;
-	left: -4px;
-	width: 193px;
-	height: 200px;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/*
-Generic ThemeRoller Classes
->> Make your jQuery Components ThemeRoller-Compatible!
-*/
-
-/*component global class*/
-.ui-component {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-	font-family: Verdana,Arial,sans-serif;
-	font-size: 1.1em;
-}
-/*component content styles*/
-.ui-component-content {
-	border: 1px solid #aaaaaa;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_75.png) 0 0 repeat-x;
-	color: #222222;
-}
-.ui-component-content a {
-	color: #222222;
-	text-decoration: underline;
-}
-/*component states*/
-.ui-default-state {
-	border: 1px solid #d3d3d3;
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	font-weight: normal;
-	color: #555555 !important;
-}
-.ui-default-state a {
-	color: #555555;
-}
-.ui-default-state:hover, .ui-hover-state {
-	border: 1px solid #999999;
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	font-weight: normal;
-	color: #212121 !important;
-}
-.ui-hover-state a {
-	color: #212121;
-}
-.ui-default-state:active, .ui-active-state {
-	border: 1px solid #aaaaaa;
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-	font-weight: normal;
-	color: #212121 !important;
-	outline: none;
-}
-.ui-active-state a {
-	color: #212121;
-	outline: none;
-}
-/*icons*/
-.ui-arrow-right-default {background: url(images/888888_7x7_arrow_right.gif) no-repeat 50% 50%;}
-.ui-arrow-right-default:hover, .ui-arrow-right-hover {background: url(images/454545_7x7_arrow_right.gif) no-repeat 50% 50%;}
-.ui-arrow-right-default:active, .ui-arrow-right-active {background: url(images/454545_7x7_arrow_right.gif) no-repeat 50% 50%;}
-.ui-arrow-right-content {background: url(images/222222_7x7_arrow_right.gif) no-repeat 50% 50%;}
-
-.ui-arrow-left-default {background: url(images/888888_7x7_arrow_left.gif) no-repeat 50% 50%;}
-.ui-arrow-left-default:hover, .ui-arrow-left-hover {background: url(images/454545_7x7_arrow_left.gif) no-repeat 50% 50%;}
-.ui-arrow-left-default:active, .ui-arrow-left-active {background: url(images/454545_7x7_arrow_left.gif) no-repeat 50% 50%;}
-.ui-arrow-left-content {background: url(images/222222_7x7_arrow_left.gif) no-repeat 50% 50%;}
-
-.ui-arrow-down-default {background: url(images/888888_7x7_arrow_down.gif) no-repeat 50% 50%;}
-.ui-arrow-down-default:hover, .ui-arrow-down-hover {background: url(images/454545_7x7_arrow_down.gif) no-repeat 50% 50%;}
-.ui-arrow-down-default:active, .ui-arrow-down-active {background: url(images/454545_7x7_arrow_down.gif) no-repeat 50% 50%;}
-.ui-arrow-down-content {background: url(images/222222_7x7_arrow_down.gif) no-repeat 50% 50%;}
-
-.ui-arrow-up-default {background: url(images/888888_7x7_arrow_up.gif) no-repeat 50% 50%;}
-.ui-arrow-up-default:hover, .ui-arrow-up-hover {background: url(images/454545_7x7_arrow_up.gif) no-repeat 50% 50%;}
-.ui-arrow-up-default:active, .ui-arrow-up-active {background: url(images/454545_7x7_arrow_up.gif) no-repeat 50% 50%;}
-.ui-arrow-up-content {background: url(images/222222_7x7_arrow_up.gif) no-repeat 50% 50%;}
-
-.ui-close-default {background: url(images/888888_11x11_icon_close.gif) no-repeat 50% 50%;}
-.ui-close-default:hover, .ui-close-hover {background: url(images/454545_11x11_icon_close.gif) no-repeat 50% 50%;}
-.ui-close-default:active, .ui-close-active {background: url(images/454545_11x11_icon_close.gif) no-repeat 50% 50%;}
-.ui-close-content {background: url(images/454545_11x11_icon_close.gif) no-repeat 50% 50%;}
-
-.ui-folder-closed-default {background: url(images/888888_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
-.ui-folder-closed-default:hover, .ui-folder-closed-hover {background: url(images/454545_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
-.ui-folder-closed-default:active, .ui-folder-closed-active {background: url(images/454545_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
-.ui-folder-closed-content {background: url(images/888888_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
-
-.ui-folder-open-default {background: url(images/888888_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
-.ui-folder-open-default:hover, .ui-folder-open-hover {background: url(images/454545_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
-.ui-folder-open-default:active, .ui-folder-open-active {background: url(images/454545_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
-.ui-folder-open-content {background: url(images/454545_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
-
-.ui-doc-default {background: url(images/888888_11x11_icon_doc.gif) no-repeat 50% 50%;}
-.ui-doc-default:hover, .ui-doc-hover {background: url(images/454545_11x11_icon_doc.gif) no-repeat 50% 50%;}
-.ui-doc-default:active, .ui-doc-active {background: url(images/454545_11x11_icon_doc.gif) no-repeat 50% 50%;}
-.ui-doc-content {background: url(images/222222_11x11_icon_doc.gif) no-repeat 50% 50%;}
-
-.ui-arrows-leftright-default {background: url(images/888888_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
-.ui-arrows-leftright-default:hover, .ui-arrows-leftright-hover {background: url(images/454545_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
-.ui-arrows-leftright-default:active, .ui-arrows-leftright-active {background: url(images/454545_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
-.ui-arrows-leftright-content {background: url(images/222222_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
-
-.ui-arrows-updown-default {background: url(images/888888_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
-.ui-arrows-updown-default:hover, .ui-arrows-updown-hover {background: url(images/454545_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
-.ui-arrows-updown-default:active, .ui-arrows-updown-active {background: url(images/454545_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
-.ui-arrows-updown-content {background: url(images/222222_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
-
-.ui-minus-default {background: url(images/888888_11x11_icon_minus.gif) no-repeat 50% 50%;}
-.ui-minus-default:hover, .ui-minus-hover {background: url(images/454545_11x11_icon_minus.gif) no-repeat 50% 50%;}
-.ui-minus-default:active, .ui-minus-active {background: url(images/454545_11x11_icon_minus.gif) no-repeat 50% 50%;}
-.ui-minus-content {background: url(images/222222_11x11_icon_minus.gif) no-repeat 50% 50%;}
-
-.ui-plus-default {background: url(images/888888_11x11_icon_plus.gif) no-repeat 50% 50%;}
-.ui-plus-default:hover, .ui-plus-hover {background: url(images/454545_11x11_icon_plus.gif) no-repeat 50% 50%;}
-.ui-plus-default:active, .ui-plus-active {background: url(images/454545_11x11_icon_plus.gif) no-repeat 50% 50%;}
-.ui-plus-content {background: url(images/222222_11x11_icon_plus.gif) no-repeat 50% 50%;}
-
-/*hidden elements*/
-.ui-hidden {
-	display: none;/* for accessible hiding: position: absolute; left: -99999999px*/;
-}
-.ui-accessible-hidden {
-	 position: absolute; left: -99999999px;
-}
-/*reset styles*/
-.ui-reset {
-	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
-}
-/*clearfix class*/
-.ui-clearfix:after {
-    content: ".";
-    display: block;
-    height: 0;
-    clear: both;
-    visibility: hidden;
-}
-.ui-clearfix {display: inline-block;}
-/* Hides from IE-mac \*/
-* html .ui-clearfix {height: 1%;}
-.ui-clearfix {display: block;}
-/* End hide from IE-mac */
-
-/* Note: for resizable styles, use the styles listed above in the dialog section */
-
-.ui-tableNoBorderCol{
-    border:0px none transparent !important;
-    /*border-top:1px solid #ccc !important;
-    border-bottom:1px solid #ccc !important;*/
-}
-.features-version{
-    width:80px !important;
-}
-.features-provider{
-    width:80px !important;
-}
-.features-actions{
-    width:80px !important;
-}
-
-/* global */
-#cluetip-close img {
-  border: 0;
-}
-#cluetip-title {
-  overflow: hidden;
-}
-
-#cluetip-waitimage {
-  width: 43px;
-  height: 11px;
-  position: absolute;
-  background-image: url(images/wait.gif);
-}
-
-#cluetip-extra {
-  display: none;
-}
-
-.cluetip-default {
-  background-color: #ccccff;
-}
-.cluetip-default #cluetip-outer {
-  position: relative;
-  margin: 0;
-  background-color: #cccccc;
-}
-
-.cluetip-default #cluetip-inner {
-  padding: 5px;
-}
-
-a#uninstall1, a#uninstall2 {
-background-image:url("../images/uninstall-feature.png");
-background-position:left top;
-background-repeat:no-repeat;
-float:left;
-height:17px;
-line-height:17px;
-margin-bottom:0;
-margin-left:10px;
-margin-top:0;
-padding-left:20px;
-position:relative;
-white-space:nowrap;
-}
-
-a#install1, a#install2 {
-background-image:url("../images/install-feature.png");
-background-position:left top;
-background-repeat:no-repeat;
-float:left;
-height:17px;
-line-height:17px;
-margin-bottom:0;
-margin-left:10px;
-margin-top:0;
-padding-left:20px;
-position:relative;
-white-space:nowrap;
-}
-
-div#workArea table.styledLeft tbody tr td.buttonRow {
-background-image:url("images/buttonRow-bg.gif");
-background-position:left top;
-background-repeat:repeat-x;
-padding-bottom:5px;
-padding-top:5px;
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/available-features.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/available-features.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/available-features.png
deleted file mode 100644
index e9197a6..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/available-features.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/select-a-category-to-install.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/select-a-category-to-install.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/select-a-category-to-install.png
deleted file mode 100644
index e55c779..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/docs/images/select-a-category-to-install.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/more-info.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/more-info.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/more-info.gif
deleted file mode 100644
index d0b2527..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/more-info.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/nodata.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/nodata.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/nodata.gif
deleted file mode 100644
index 4ba3388..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/feature-mgt/images/nodata.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/menu.jpg
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/menu.jpg b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/menu.jpg
deleted file mode 100644
index cc84e41..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/menu.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/usergroups.jpg
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/usergroups.jpg b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/usergroups.jpg
deleted file mode 100644
index 1499dfc..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/usergroups.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/users.jpg
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/users.jpg b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/users.jpg
deleted file mode 100644
index 113eaef..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/users.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/a6d73412/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/userstores.jpg
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/userstores.jpg b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/userstores.jpg
deleted file mode 100644
index 9c35169..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/images/userstores.jpg and /dev/null differ