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:42 UTC

[20/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/cluster_scenario_02.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_02.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_02.xml
deleted file mode 100644
index 6869d57..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_02.xml
+++ /dev/null
@@ -1,160 +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 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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_03.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_03.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_03.xml
deleted file mode 100644
index b4fd63a..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_03.xml
+++ /dev/null
@@ -1,200 +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 Clustered Deployment - Scenario 03
-    </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 use inbuilt zoo keeper server in ring model with broker nodes</h2>
-      <p>
-          In this model you need to get downloaded following apache products
-      </p>
-
-      <ul>
-          <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_03.png" alt="Cluster Setup Scenario 03" height="600" width ="950"/>
-      </p>
-      <p> In this model we have a common cassandra server. Since we are shipping a zoo keeper server with Message broker product we can
-          use that and create a zoo keeper ring in the cluster.</p>
-      <ul>
-          <li>Cassandra Server - 192.168.0.100</li>
-      </ul>
-      <p> We have three Message Broker servers in three different hosts as</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>First we need to configure the HostName in carbon.xml file which is located in "wso2mb-2.0.1/repository/conf/" directory.
-           Specify the ip of the host as follows. <font color="red">You need to configure this for all the three servers.</font></p>
-           <pre>
-               &lt;!--
-                      Host name or IP address of the machine hosting this server
-                      e.g. www.wso2.org, 192.168.1.10
-                      This is will become part of the End Point Reference of the
-                      services deployed on this server instance.
-                   -->
-                   &lt;HostName>192.168.0.101&lt;/HostName>
-
-           </pre>
-
-
-      <p> Then 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>
-          <b>Configuring Zookeeper Cluster</b>
-      </p>
-      <p> Then we need to configure the Zoo Keeper Servers to create a ring within among all broker nodes. We can do it by
-       adding client port address to the "zoo.cfg" which is located at "wso2mb-2.0.1/repository/conf/etc " . </p>
-
-      <p>After modifying the file , it will look like bellow. </p>
-      <pre>
-           tickTime=2000
-           dataDir=repository/data/zookeeper
-           clientPort=2181
-          <b>start_zk_server=true</b>
-          <b>clientPortAddress=192.168.0.101</b>
-          <b>server.1=192.168.0.100:2888:3888</b>
-          <b>server.2=192.168.0.101:2888:3888</b>
-          <b>server.3=192.168.0.102:2888:3888</b>
-      </pre>
-
-      <p> Above zoo.cfg file is for the server 192.168.0.101. You can copy the same zoo.cfg file to other two servers
-      and change the entry "clientPortAddress" to the ip of that particular server.</p>
-
-      <p> Then you need to create file "myid" in the data directory (repository/data/zookeeper) of each server. In that file
-      you need to specify the id of the server.</p>
-
-      <p>
-          eg: Id of the the server 192.168.0.100 will be "1". You need only to have the number 1 in that myid file.
-      </p>
-
-      <p>You can find more information on this in  <a href="http://zookeeper.apache.org/doc/r3.3.3/zookeeperAdmin.html#sc_zkMulitServerSetup">zookeeper clustering setup guide</a></p>
-
-      <p>
-          <b>You need to do above configuration in each of the message broker servers appropriately.</b>
-      </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 ip of the Zookeeper by adding all zoo keeper server details</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:2181,192.168.0.102:2181,192.168.0.103:2181</b>&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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_04.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_04.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_04.xml
deleted file mode 100644
index e11e9ef..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_04.xml
+++ /dev/null
@@ -1,169 +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 Clustered Deployment - Scenario 04
-    </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>Use inbuilt cassandra server and zoo keeper server for all the broker nodes</h2>
-
-      <p> The deployment model of this scenario will be like bellow </p>
-      <p>
-          <img src="images/cluster_scenario_04.png" alt="Cluster Setup Scenario 04" height="600" width ="950"/>
-      </p>
-      <p> In this model we have two rings, Cassandra ring and ZooKeeper ring. Since we are shipping a cassandra server and zoo keeper server
-          with Message broker product we can use them and create a cassandra ring and a zoo keeper ring in the cluster.</p>
-
-      <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.100</li>
-          <li>MB Server 02 - 192.168.0.101</li>
-          <li>MB Server 03 - 192.168.0.102</li>
-      </ul>
-
-       <p>First we need to configure the HostName in carbon.xml file which is located in "wso2mb-2.0.1/repository/conf/" directory.
-      Specify the ip of the host as follows. <font color="red">You need to configure this for all the three servers.</font></p>
-      <pre>
-          &lt;!--
-                 Host name or IP address of the machine hosting this server
-                 e.g. www.wso2.org, 192.168.1.10
-                 This is will become part of the End Point Reference of the
-                 services deployed on this server instance.
-              -->
-              &lt;HostName>192.168.0.100&lt;/HostName>
-
-      </pre>
-
-      <p>  Then 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>
-               <b>Configuring Zookeeper Cluster</b>
-           </p>
-           <p> Then we need to configure the Zoo Keeper Servers to create a ring within among all broker nodes. We can do it by
-            adding client port address to the "zoo.cfg" which is located at "wso2mb-2.0.1/repository/conf/etc " . </p>
-
-           <p>After modifying the file , it will look like bellow. </p>
-           <pre>
-                tickTime=2000
-                dataDir=repository/data/zookeeper
-                clientPort=2181
-               <b>start_zk_server=true</b>
-               <b>clientPortAddress=192.168.0.101</b>
-               <b>server.1=192.168.0.100:2888:3888</b>
-               <b>server.2=192.168.0.101:2888:3888</b>
-               <b>server.3=192.168.0.102:2888:3888</b>
-           </pre>
-
-           <p> Above zoo.cfg file is for the server 192.168.0.101. You can copy the same zoo.cfg file to other two servers
-           and change the entry "clientPortAddress" to the ip of that particular server.</p>
-
-           <p> Then you need to create file "myid" in the data directory (repository/data/zookeeper) of each server. In that file
-           you need to specify the id of the server.</p>
-
-           <p>
-               eg: Id of the the server 192.168.0.100 will be "1". You need only to have the number 1 in that myid file.
-           </p>
-
-           <p>You can find more information on this in  <a href="http://zookeeper.apache.org/doc/r3.3.3/zookeeperAdmin.html#sc_zkMulitServerSetup">zookeeper clustering setup guide</a></p>
-
-           <p>
-               <b>You need to do above configuration in each of the message broker servers appropriately.</b>
-           </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:2181,192.168.0.101:2181,192.168.0.102:2181</b>&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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_05.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_05.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_05.xml
deleted file mode 100644
index a6aa31d..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/cluster_scenario_05.xml
+++ /dev/null
@@ -1,216 +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 Clustered Deployment - Scenario 04
-    </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>Use inbuilt cassandra server and zoo keeper server in a customized manner</h2>
-
-      <p> The deployment model of this scenario will be like bellow </p>
-      <p>
-          <img src="images/cluster_scenario_05.png" alt="Cluster Setup Scenario 05" height="600" width ="950"/>
-      </p>
-      <p> In this model we have two rings, Cassandra ring and ZooKeeper ring. There is a common Message broker node for these rings.
-          <b>The reason for having a common broker node is , there should be at least on cassandra server and one zoo keeper server
-          to start WSO2 Message broker in clustered mode</b>   Apart from that we have a message broker server
-          which points to both of these rings.Since we are shipping a cassandra server and zoo keeper server
-          with Message broker product we can use them and create a cassandra ring and a zoo keeper ring in the cluster.</p>
-
-      <p> As in the image, We have four Message Broker servers in four different hosts. In that we use two servers to create a cassandra ring, another two
-      servers to create a zoo keeper ring and another server uses above created rings as in the diagram.</p>
-
-      <p>Servers used to create cassandra ring</p>
-      <ul>
-          <li>MB Server 01 - 192.168.0.100</li>
-          <li>MB Server 02 - 192.168.0.101</li>
-      </ul>
-
-      <p>Servers used to create zoo keeper ring</p>
-
-      <ul>
-          <li>MB Server 01 - 192.168.0.101</li>
-          <li>MB Server 02 - 192.168.0.102</li>
-      </ul>
-
-      <p>Standalone server</p>
-      <ul>
-          <li>MB Server 01 - 192.168.0.103</li>
-      </ul>
-
-      <p><font color="red">Note that 192.168.0.101 server is common to both rings !</font> </p>
-
-      <p>First we need to configure the HostName in carbon.xml file which is located in "wso2mb-2.0.1/repository/conf/" directory.
-      Specify the ip of the host as follows</p>
-      <pre>
-          &lt;!--
-                 Host name or IP address of the machine hosting this server
-                 e.g. www.wso2.org, 192.168.1.10
-                 This is will become part of the End Point Reference of the
-                 services deployed on this server instance.
-              -->
-              &lt;HostName>192.168.0.101&lt;/HostName>
-
-      </pre>
-
-      <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.100,192.168.0.101"
-
-          </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.100, it will like bellow. </b>
-          </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. <b>You need to change the RPC address of the each server to it's ip address. Here
-          for the server 192.168.0.100, it will like bellow. </b></li>
-           <pre>
-             rpc_address: 192.168.0.100
-          </pre>
-      </ul>
-       <p>
-          <b>You need to change this entry in the 192.168.0.101 message broker server also.</b>
-      </p>
-
-
-      <p>
-               <b>Configuring Zookeeper Cluster</b>
-           </p>
-           <p> Then we need to configure the Zoo Keeper Servers to create a ring within among all broker nodes. We can do it by
-            adding client port address to the "zoo.cfg" which is located at "wso2mb-2.0.1/repository/conf/etc " . </p>
-
-           <p>After modifying the file , it will look like bellow. </p>
-           <pre>
-                tickTime=2000
-                dataDir=repository/data/zookeeper
-                clientPort=2181
-               <b>start_zk_server=true</b>
-               <b>clientPortAddress=192.168.0.101</b>
-               <b>server.1=192.168.0.101:2888:3888</b>
-               <b>server.2=192.168.0.102:2888:3888</b>
-           </pre>
-
-           <p> Above zoo.cfg file is for the server 192.168.0.101. You can copy the same zoo.cfg file to other two servers
-           and change the entry "clientPortAddress" to the ip of that particular server.</p>
-
-           <p> Then you need to create file "myid" in the data directory (repository/data/zookeeper) of each server. In that file
-           you need to specify the id of the server.</p>
-
-           <p>
-               eg: Id of the the server 192.168.0.101 will be "1". You need only to have the number 1 in that myid file.
-           </p>
-
-           <p>You can find more information on this in  <a href="http://zookeeper.apache.org/doc/r3.3.3/zookeeperAdmin.html#sc_zkMulitServerSetup">zookeeper clustering setup guide</a></p>
-
-           <p>
-               <b>You need to do above configuration in each of the message broker servers appropriately.</b>
-           </p>
-
-      <p>
-          <b>You need to change this entry in the 192.168.0.102 message broker server also.</b>
-      </p>
-
-      <p>
-          Then you need to do the following configuration changes in 192.168.0.100,192.168.0.101 (Servers with cassandra) Message broker nodes
-          and 192.168.0.103 node.
-      </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.101:2181,192.168.0.102:2181</b>&lt;/ZooKeeperConnection>
-              &lt;!-- Format yyyy-MM-dd HH:mm:ss -->
-              &lt;ReferenceTime>2012-02-29 08:08:08&lt;/ReferenceTime>
-          &lt;/coordination>
-      </pre>
-
-       <p>
-          Then you need to do the following configuration changes in 192.168.0.101,192.168.0.102 (Servers with zookeeper) Message broker nodes
-            and 192.168.0.103 node.
-      </p>
-
-        <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.101</b>:9160&lt;/connectionString>
-          &lt;/store>
-      </pre>
-      <p>Now you can start node common to both of the rings (192.168.0.101) which have cassandra servers and  zookeeper server and
-      then you can start all the other 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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/deployment_guide.xml
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/deployment_guide.xml b/products/cloud_controller/modules/distribution/src/site/xdoc/deployment_guide.xml
deleted file mode 100644
index 385eeb8..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/deployment_guide.xml
+++ /dev/null
@@ -1,91 +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 - Deployment Guide
-    </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> ]
-    <h1>
-      WSO2 Message Broker Server  (MB) Deployment Guide
-    </h1>
-    <p>Deploying the WSO2 MB correctly on your infrastructure is a vital task for the success
-        of the usage of the MB. You should first analyze the requirement and then select the
-        best matching deployment mode. There are different set of possible deployment modes with
-        different configurations.
-    </p>
-    <h2>
-      Available Deployment options
-    </h2>
-    <p>
-      <a href="installation_guide.html">Standalone Deployment Guide</a> :
-      Describes the default standalone installation and deployment of the MB
-    </p>
-    <p>
-      <a>Clustered Deployment Guide</a> :
-      Contains the information on deploying the Message Broker in a clustered environment, this particular guide
-      explains the available options on a clustered deployment.
-    </p>
-      <h2>Clustered Deployment Guide </h2>
-      <p> In clustered deployment of WSO2 message broker, there are several scenarios which can be implemented. Basically
-      in WSO2 message broker, there are three components.
-      </p>
-      <ul>
-                <li>Broker</li>
-                <li>Cassandra Server</li>
-                <li>Zoo Keeper Server</li>
-      </ul>
-      <p>By default, WSO2 mb is packed with all these three component. In a clustered setup, it is possible to have these
-      three components separately and shared with each other.
-      </p>
-      <p>Here we are describing some of the possible deployment scenarios and it can be customized according to your
-      requirement.</p>
-
-      <h3> Deployment models</h3>
-       <ul>
-                <li><a href="cluster_scenario_01.html">Starting external cassandra server and zoo keeper server and point all broker nodes to them</a> </li>
-                <li><a href="cluster_scenario_02.html">Starting external zoo keeper server and use the inbuilt cassandra server in ring model with broker nodes</a></li>
-                <li><a href="cluster_scenario_03.html">Starting external cassandra server and use inbuilt zoo keeper server in ring model with broker nodes</a></li>
-                <li><a href="cluster_scenario_04.html">Use inbuilt cassandra server and zoo keeper server for all the broker nodes</a></li>
-                <li><a href="cluster_scenario_05.html">Use inbuilt cassandra server and zoo keeper server in a customized manner</a></li>
-      </ul>
-
-      <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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/dialog-ie8.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/dialog-ie8.css b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/dialog-ie8.css
deleted file mode 100644
index d978c45..0000000
--- a/products/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/dialog.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/dialog.css b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/dialog.css
deleted file mode 100644
index 72718e5..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/dialog.css
+++ /dev/null
@@ -1,129 +0,0 @@
-div#messagebox {
-    background-image: url(../img/confirm.gif);
-    background-position: 15px 15px;
-    background-repeat: no-repeat;
-    background-attachment: scroll;
-    padding-left: 75px;
-    padding-right: 15px;
-    padding-top: 15px;
-    padding-bottom: 15px;
-    width: 360px;
-    height: 68px;
-    _height: 150px;
-    overflow: auto;
-}
-
-div#messagebox img {
-    float: left;
-    margin-right: 20px;
-}
-
-div#messagebox p {
-    font-size: 115%;
-    margin: 0px;
-}
-
-div#messagebox-warning {
-    background-image: url(../img/warning.gif);
-    background-position: 15px 15px;
-    background-repeat: no-repeat;
-    background-attachment: scroll;
-    padding-left: 75px;
-    padding-right: 15px;
-    padding-top: 15px;
-    padding-bottom: 15px;
-    width: 360px;
-    height: 68px;
-    _height: 150px;
-    overflow: auto;
-}
-
-div#messagebox-warning img {
-    float: left;
-    margin-right: 20px;
-}
-
-div#messagebox-warning p {
-    font-size: 115%;
-    margin: 0px;
-}
-div#messagebox-error { 
-	background-image: url(../img/error.gif); 
-	background-position: 15px 15px; 
-	background-repeat: no-repeat; 
-	background-attachment: scroll; 
-	height: 108px;
-	width: 400px; 
-	padding: 15px 15px 15px 75px;
-    overflow:auto;
-}
-
-div#messagebox-error img {
-    float: left;
-    margin-right: 20px;
-}
-
-div#messagebox-error p {
-    font-size: 115%;
-    margin: 0px;
-}
-div#messagebox-info {
-    background-image: url(../img/info.gif);
-    background-position: 15px 15px;
-    background-repeat: no-repeat;
-    background-attachment: scroll;
-    padding-left: 75px;
-    padding-right: 15px;
-    padding-top: 15px;
-    padding-bottom: 15px;
-    height: 68px;
-    _height: 150px;
-    width: 360px;
-    overflow: auto;
-}
-
-div#messagebox-info img {
-    float: left;
-    margin-right: 20px;
-}
-
-div#messagebox-info p {
-    font-size: 115%;
-    margin: 0px;
-}
-div#messagebox-confirm {
-    background-image: url(../img/confirm.gif);
-    background-position: 15px 15px;
-    background-repeat: no-repeat;
-    background-attachment: scroll;
-    padding-left: 75px;
-    padding-right: 15px;
-    padding-top: 15px;
-    padding-bottom: 15px;
-    width: 360px;
-    height: 68px;
-    _height: 150px;
-    overflow:auto;
-}
-
-div#messagebox-confirm img {
-    float: left;
-    margin-right: 20px;
-}
-
-div#messagebox-confirm p {
-    font-size: 115%;
-    margin: 0px;
-}
-div.ui-dialog-overlay{
- filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='../img/overlay.png');
-}
-div.ui-dialog-overlay[class] {
-    background-image:url(../img/overlay.png);
-}
-/* dialog overflow fix */
-.ui-dialog-content{
-padding:0px;
-overflow: auto;
-}
-

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_close.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_close.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_close.gif
deleted file mode 100644
index 70d0c82..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_close.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/dialog/css/jqueryui/images/222222_11x11_icon_resize_se.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_11x11_icon_resize_se.gif b/products/cloud_controller/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/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_left.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_left.gif b/products/cloud_controller/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/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_right.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/222222_7x7_arrow_right.gif b/products/cloud_controller/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/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_11x11_icon_close.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_11x11_icon_close.gif b/products/cloud_controller/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/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_7x7_arrow_left.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_7x7_arrow_left.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_7x7_arrow_left.gif
deleted file mode 100644
index cf01ff3..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_7x7_arrow_left.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/dialog/css/jqueryui/images/454545_7x7_arrow_right.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_7x7_arrow_right.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_7x7_arrow_right.gif
deleted file mode 100644
index 3190e7a..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/454545_7x7_arrow_right.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/dialog/css/jqueryui/images/888888_11x11_icon_close.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_11x11_icon_close.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_11x11_icon_close.gif
deleted file mode 100644
index 326d015..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_11x11_icon_close.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/dialog/css/jqueryui/images/888888_7x7_arrow_left.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_7x7_arrow_left.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_7x7_arrow_left.gif
deleted file mode 100644
index d6c523b..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_7x7_arrow_left.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/dialog/css/jqueryui/images/888888_7x7_arrow_right.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_7x7_arrow_right.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_7x7_arrow_right.gif
deleted file mode 100644
index d65b2ed..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/888888_7x7_arrow_right.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/dialog/css/jqueryui/images/dadada_40x100_textures_02_glass_75.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/dadada_40x100_textures_02_glass_75.png b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/dadada_40x100_textures_02_glass_75.png
deleted file mode 100644
index 60ba001..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/dadada_40x100_textures_02_glass_75.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/dialog/css/jqueryui/images/e6e6e6_40x100_textures_02_glass_75.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/e6e6e6_40x100_textures_02_glass_75.png b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/e6e6e6_40x100_textures_02_glass_75.png
deleted file mode 100644
index a8b7ba3..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/e6e6e6_40x100_textures_02_glass_75.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/dialog/css/jqueryui/images/ffffff_40x100_textures_01_flat_0.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/ffffff_40x100_textures_01_flat_0.png b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/ffffff_40x100_textures_01_flat_0.png
deleted file mode 100644
index ac8b229..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/ffffff_40x100_textures_01_flat_0.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/dialog/css/jqueryui/images/ffffff_40x100_textures_02_glass_65.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/ffffff_40x100_textures_02_glass_65.png b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/ffffff_40x100_textures_02_glass_65.png
deleted file mode 100644
index 2c16183..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/images/ffffff_40x100_textures_02_glass_65.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/dialog/css/jqueryui/jqueryui-themeroller.css
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/jqueryui-themeroller.css b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/jqueryui-themeroller.css
deleted file mode 100644
index 19a056b..0000000
--- a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/css/jqueryui/jqueryui-themeroller.css
+++ /dev/null
@@ -1,856 +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: #222222;
-	background: url(images/222222_7x7_arrow_down.gif) .5em 50% no-repeat;
-}
-.ui-accordion-content {
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
-	color: #222222;
-	font-size: 1em;
-}
-.ui-accordion-content p {
-	padding: 1em 1.7em 0.6em;
-}
-
-
-
-
-
-
-/*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;
-	/*font-family: Verdana, Arial, sans-serif;*/
-	/*font-size: 1.1em;*/
-	float: left;
-	position: relative;
-	z-index: 1;
-	border-right: 1px solid #d3d3d3;
-	bottom: -1px;
-}
-.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;
-	border-right: none;
-}
-.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-size: 1em;*/
-	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: #222222;
-}
-.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;
-	/*font-family: Verdana, Arial, sans-serif;*/
-	clear:left;
-	border: 1px solid #d3d3d3;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
-	color: #222222;
-	padding: 1.5em 1.7em;	
-}
-.ui-tabs-hide {
-	display: none;/* for accessible hiding: position: absolute; left: -99999999px*/;
-}
-
-
-
-
-
-/*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_0.png) 0 0 repeat-x;
-	border: 1px solid #dddddd;
-	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 #dddddd;
-}
-.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: 10px;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
-	color: #222222;
-	border: 4px solid #dddddd;
-	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: 10px; 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: 10px;
-	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: 10px; 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/222222_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: 11px; 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 #dddddd;
-	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: 10px;
-	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: #222222;
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-	border: 1px solid #dddddd;
-}
-/* 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_0.png) 0 0 repeat-x;
-	font-size: 1.1em;
-	border: 4px solid #dddddd;
-	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/222222_7x7_arrow_left.gif) 50% 50% no-repeat;
-}
-.ui-datepicker-next a:active {
-	background: url(images/222222_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 #dddddd;
-	color: #222222;
-	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;
-}
-
-
-
-
-
-
-
-
-
-
-
-/* ui-autocomplete */
-/*
-.ui-autocomplete-input {
-	border: 1px solid #dddddd;
-	color: #222222;
-	background: #ffffff;
-}
-*/
-.ui-autocomplete-results {
-	/*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;
-	z-index: 9999;	
-}
-.ui-autocomplete-results ul, .ui-autocomplete-results li {
-	margin: 0; 
-	padding: 0; 
-	list-style: none;
-}
-.ui-autocomplete-results ul {
-	border: 1px solid #dddddd;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
-	border-top: 0;
-	border-bottom: 0;
-	margin-bottom: -1px;
-}
-.ui-autocomplete-results li {
-	color: #222222;
-	padding: .4em .5em;
-	font-size: 1em;
-	font-weight: normal;
-	position: relative;
-	margin: 1px 0;
-}
-.ui-autocomplete-results li.ui-hover-state, .ui-autocomplete-results li.ui-active-state {
-	margin: 0;
-}
-
-.ui-autocomplete-results li.ui-autocomplete-over {
-	border-top: 1px solid #999999;
-	border-bottom: 1px solid #999999;
-	background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	color: #212121 !important;
-}
-.ui-autocomplete-results li.ui-autocomplete-active {
-	border-top: 1px solid #dddddd;
-	border-bottom: 1px solid #dddddd;
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-	color: #222222 !important;
-	outline: none;
-}
-.ui-autocomplete-results li:first-child, .ui-autocomplete-results li.first  {
-	margin-top: 0;
-}
-.ui-autocomplete-results li:last-child, .ui-autocomplete-results li.last {
-	margin-bottom: 0;
-}
-
-
-
-
-
-
-
-
-
-
-
-/*UI ProgressBar */
-.ui-progressbar {
-	/*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_0.png) 0 0 repeat-x;
-	border: 1px solid #dddddd;
-	position: relative;
-	height: 1.8em;
-}
-.ui-progressbar-bar {
-	background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
-	overflow: hidden;
-	border: 1px solid #d3d3d3;
-	margin:-1px;
-	z-index: 2;
-	position: relative;
-	height: 1.8em;
-	opacity:.7;
-	filter:Alpha(Opacity=70);
-}
-.ui-progressbar-wrap {
-	position: absolute;
-	top: 0;
-	left: 0;
-}
-.ui-progressbar-text {
-	color: #555555;
-	padding: .2em .5em;
-	font-weight: normal;
-	position: absolute;
-	top: 0;
-	left: 0;
-}
-.ui-progressbar-text-back {
-	color:  #222222;
-	z-index: 0;
-}
-.ui-progressbar-disabled {
-	opacity:.5;
-	filter:Alpha(Opacity=50);
-}
-
-
-
-
-
-
-/*UI Colorpicker */
-.ui-colorpicker {
-	/*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_0.png) 0 0 repeat-x;
-	border: 4px solid #dddddd;
-	padding: 5px;
-	width: 360px;
-	position: relative;
-}
-.ui-colorpicker-color {
-	float: left;
-	width: 150px;
-	height: 150px;
-	margin-right: 15px;
-}
-.ui-colorpicker-color div { /* is this extra div needed? why not just .ui-colorpicker-color ? */
-	border: 1px solid #d3d3d3;
-	height: 150px;
-	background: url(images/_x_.);
-	position: relative;
-}
-.ui-colorpicker-color div div {/* shouldn't this have a class like ui-colorpicker-selector ? */
-	width: 11px;
-	height: 11px;
-	background: url(images/_x_.);
-	position: absolute;
-	border: 0;
-	margin: -5px 0 0 -5px;
-	float: none;
-}
-.ui-colorpicker-hue {
-	border: 1px solid #d3d3d3;
-	float: left;
-	width: 17px;
-	height: 150px;
-	background: url(images/_x_.);
-	position: relative;
-	margin-right: 15px;
-}
-.ui-colorpicker-hue div {
-	background:transparent url(images/222222_35x9_colorpicker_indicator.gif.gif); 
-	height:9px;
-	left:-9px;
-	margin:-4px 0 0;
-	position:absolute;
-	width:35px;
-	cursor: ns-resize;
-}
-.ui-colorpicker-new-color, .ui-colorpicker-current-color {
-	float: left;
-	width: 6.5em;
-	height: 30px;
-	border: 1px solid #d3d3d3;
-	margin-right: 5px;
-}
-.ui-colorpicker-current-color {
-	margin-right: 0;
-}
-
-.ui-colorpicker-field, .ui-colorpicker-hex {
-	position: absolute;
-	width: 6em;
-}
-.ui-colorpicker-field label, .ui-colorpicker-field input,
-.ui-colorpicker-hex label, .ui-colorpicker-hex input {
-	font-size: 1em;
-	color: #222222;
-}
-.ui-colorpicker-field label, .ui-colorpicker-hex label {
-	width: 1em;
-	margin-right: .3em;
-}
-.ui-colorpicker-field input, .ui-colorpicker-hex input {
-	border: 1px solid #dddddd;
-	color: #222222;
-	background: #ffffff;
-	width: 4.6em;
-}
-.ui-colorpicker-hex {
-	left: 205px;
-	top: 134px;
-}
-.ui-colorpicker-rgb-r {
-	top: 52px;
-	left: 205px;
-}
-.ui-colorpicker-rgb-g {
-	top: 78px;
-	left: 205px;
-}
-.ui-colorpicker-rgb-b {
-	top: 105px;
-	left: 205px;
-}
-.ui-colorpicker-hsb-h {
-	top: 52px;
-	left: 290px;
-}
-.ui-colorpicker-hsb-s {
-	top: 78px;
-	left: 290px;
-}
-.ui-colorpicker-hsb-b {
-	top: 105px;
-	left: 290px;
-}
-
-.ui-colorpicker-field label {
-	font-weight: normal;
-}
-.ui-colorpicker-field span {
-	width: 7px;
-	background: url(images/888888_11x11_icon_arrows_updown.gif) 50% 50% no-repeat;
-	right: 5px;
-	top: 0;
-	height: 20px;
-	position: absolute;
-}
-.ui-colorpicker-field span:hover {
-	background: url(images/454545_11x11_icon_arrows_updown.gif) 50% 50% no-repeat;
-}
-
-.ui-colorpicker-submit {
-	right: 14px;
-	top: 134px;
-	position: absolute;
-}
-
-
-
-
-
-
-
-
-/*
-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 #dddddd;
-	background: #ffffff url(images/ffffff_40x100_textures_01_flat_0.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 #dddddd;
-	background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
-	font-weight: normal;
-	color: #222222 !important;
-	outline: none;
-}
-.ui-active-state a {
-	color: #222222;
-	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/222222_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/222222_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/222222_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/222222_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/222222_11x11_icon_close.gif) no-repeat 50% 50%;}
-.ui-close-content {background: url(images/222222_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/222222_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/222222_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
-.ui-folder-open-content {background: url(images/222222_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/222222_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/222222_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/222222_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/222222_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/222222_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 */
-
-

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/confirm.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/confirm.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/confirm.gif
deleted file mode 100644
index 6c719b3..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/confirm.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/dialog/img/error.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/error.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/error.gif
deleted file mode 100644
index b8da205..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/error.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/dialog/img/info.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/info.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/info.gif
deleted file mode 100644
index 31ecb4e..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/info.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/dialog/img/overlay.png
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/overlay.png b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/overlay.png
deleted file mode 100644
index e33524e..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/overlay.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/dialog/img/warning.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/warning.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/warning.gif
deleted file mode 100644
index b4ba52f..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/img/warning.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/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_leftright.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_leftright.gif b/products/cloud_controller/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/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_updown.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_updown.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_updown.gif
deleted file mode 100644
index 69eb077..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_arrows_updown.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/dialog/js/jqueryui/tabs/images/222222_11x11_icon_doc.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_doc.gif b/products/cloud_controller/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/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_minus.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_minus.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_minus.gif
deleted file mode 100644
index 6851f39..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_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/dialog/js/jqueryui/tabs/images/222222_11x11_icon_plus.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_plus.gif b/products/cloud_controller/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/cloud_controller/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/7f09a628/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_resize_se.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_resize_se.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_resize_se.gif
deleted file mode 100644
index 251dc16..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_11x11_icon_resize_se.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/dialog/js/jqueryui/tabs/images/222222_7x7_arrow_down.gif
----------------------------------------------------------------------
diff --git a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_7x7_arrow_down.gif b/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_7x7_arrow_down.gif
deleted file mode 100644
index 29c6c70..0000000
Binary files a/products/cloud_controller/modules/distribution/src/site/xdoc/dialog/js/jqueryui/tabs/images/222222_7x7_arrow_down.gif and /dev/null differ