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/21 21:01:59 UTC

[27/44] applied 0001-Moved-cloud-controller-1.0.1-to-products-and-removed.patch

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/errorHandler.xml
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/errorHandler.xml b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/errorHandler.xml
deleted file mode 100644
index 62c31a6..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/errorHandler.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  ~  Copyright (c) 2005-2010, WSO2 Inc. (http://wso2.com) 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.
-  -->
-    <sequence name="errorHandler" xmlns="http://ws.apache.org/ns/synapse">
-	<log level="full">
-        	<property name="MESSAGE" value="Executing default 'fault' sequence"/>
-        	<property name="ERROR_CODE" expression="get-property('ERROR_CODE')"/>
-        	<property name="ERROR_MESSAGE" expression="get-property('ERROR_MESSAGE')"/>
-    	</log>
-        <makefault response="true">
-            <code value="tns:Receiver" xmlns:tns="http://www.w3.org/2003/05/soap-envelope"/>
-            <reason value="COULDN'T SEND THE MESSAGE TO THE SERVER."/>
-        </makefault>
-        <send/>
-    </sequence>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/fault.xml
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/fault.xml b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/fault.xml
deleted file mode 100644
index 1192bbd..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/sequences/fault.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  ~  Copyright (c) 2005-2010, WSO2 Inc. (http://wso2.com) 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.
-  -->
-
-<!-- Default fault sequence shipped with the Apache Synapse -->
-<sequence xmlns="http://ws.apache.org/ns/synapse" name="fault">
-
-    <!-- Log the message at the full log level with the ERROR_MESSAGE and the ERROR_CODE-->
-    <!-- log level="full">
-        <property name="MESSAGE" value="Executing default 'fault' sequence"/>
-        <property name="ERROR_CODE" expression="get-property('ERROR_CODE')"/>
-        <property name="ERROR_MESSAGE" expression="get-property('ERROR_MESSAGE')"/>
-    </log -->
-
-    <!-- Drops the messages by default if there is a fault -->
-    <script language="js"><![CDATA[
-        mc.setPayloadXML(
-           <{mc.getProperty("SERVICENAME")}Response xmlns="org.wso2.gateway">
-            <Timestamp>{new Date()}</Timestamp>
-            <Ack>Failure</Ack>
-            <Errors>
-             <ShortMessage>Gateway Error</ShortMessage>
-             <LongMessage>{mc.getProperty("ERROR_MESSAGE")}</LongMessage>
-             <ErrorCode>500</ErrorCode>
-             <SeverityCode>Error</SeverityCode>
-             <ErrorClassification>RequestError</ErrorClassification>
-            </Errors>
-            <ServiceName>{mc.getProperty("SERVICENAME")}</ServiceName>
-            <ResponseCode>{mc.getProperty("HTTP_SC")}</ResponseCode>
-            <ContentType>{mc.getProperty("Content-Type")}</ContentType>
-            <Version>1.5.1</Version>
-           </{mc.getProperty("SERVICENAME")}Response>
-        );
-      ]]></script>
-    <switch source="get-property('ERROR_CODE')">
-        <case regex="101504">   <!-- TIMEOUT ERROR -->
-            <property name="HTTP_SC" value="504" scope="axis2"/>
-            <sequence key="seq_timeout"/>
-        </case>
-        <case regex="303001">
-            <property name="HTTP_SC" value="503" scope="axis2"/>
-            <sequence key="seq_endpoint_down"/>
-        </case>
-        <case regex="111503">
-            <property name="HTTP_SC" value="503" scope="axis2"/>
-            <sequence key="seq_endpoint_down"/>
-        </case>
-        <default>
-            <property name="HTTP_SC" value="500" scope="axis2"/>
-        </default>
-    </switch>
-    <property name="NO_ENTITY_BODY" scope="axis2" action="remove"/>
-    <header name="To" action="remove"/>
-    <property name="RESPONSE" value="true"/>
-    <property name="messageType" value="text/xml" scope="axis2"/>
-    <property name="ContentType" value="text/xml" scope="axis2"/>
-
-    <send/>
-
-</sequence>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/synapse.xml
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/synapse.xml b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/synapse.xml
deleted file mode 100755
index f3da986..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/synapse-configs/default/synapse.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  ~  Copyright (c) 2005-2010, WSO2 Inc. (http://wso2.com) 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.
-  -->
-
-<!-- The default synapse configuration shipped with the WSO2 Elastic  Load Balancer
- -->
-
-<definitions xmlns="http://ws.apache.org/ns/synapse">
-</definitions>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/zoo.cfg
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/zoo.cfg b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/zoo.cfg
deleted file mode 100644
index 57927f2..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/conf/zoo.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-tickTime=2000
-dataDir=repository/data/zookeeper
-clientPort=2182

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/launch.ini
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/launch.ini b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/launch.ini
deleted file mode 100644
index f05201c..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/launch.ini
+++ /dev/null
@@ -1,248 +0,0 @@
-# Eclipse Runtime Configuration Overrides
-# These properties are loaded prior to starting the framework and can also be used to override System Properties
-# @null is a special value used to override and clear the framework's copy of a System Property prior to starting the framework
-# "*" can be used together with @null to clear System Properties that match a prefix name.
-
-osgi.*=@null
-org.osgi.*=@null
-eclipse.*=@null
-
-osgi.parentClassloader=ext
-osgi.contextClassLoaderParent=ext
-
-# When osgi.clean is set to "true", any cached data used by the OSGi framework 
-# will be wiped clean. This will clean the caches used to store bundle 
-# dependency resolution and eclipse extension registry data. Using this 
-# option will force OSGi framework to reinitialize these caches.
-# The following setting is put in place to get rid of the problems
-# faced when re-starting the system. Please note that, when this setting is 
-# true, if you manually start a bundle, it would not be available when 
-# you re-start the system. To avid this, copy the bundle jar to the plugins 
-# folder, before you re-start the system. 
-osgi.clean=true
-
-# Uncomment the following line to turn on Eclipse Equinox debugging. 
-# You may also edit the osgi-debug.options file and fine tune the debugging 
-# options to suite your needs. 
-#osgi.debug=./repository/conf/osgi-debug.options
-
-# Following system property allows us to control the public JDK packages exported through the system bundle.
-org.osgi.framework.system.packages=javax.accessibility,\
-javax.activity,\
-javax.crypto,\
-javax.crypto.interfaces,\
-javax.crypto.spec,\
-javax.imageio,\
-javax.imageio.event,\
-javax.imageio.metadata,\
-javax.imageio.plugins.bmp,\
-javax.imageio.plugins.jpeg,\
-javax.imageio.spi,\
-javax.imageio.stream,\
-javax.jms,\
-javax.management,\
-javax.management.loading,\
-javax.management.modelmbean,\
-javax.management.monitor,\
-javax.management.openmbean,\
-javax.management.relation,\
-javax.management.remote,\
-javax.management.remote.rmi,\
-javax.management.timer,\
-javax.naming,\
-javax.naming.directory,\
-javax.naming.event,\
-javax.naming.ldap,\
-javax.naming.spi,\
-javax.net,\
-javax.net.ssl,\
-javax.print,\
-javax.print.attribute,\
-javax.print.attribute.standard,\
-javax.print.event,\
-javax.rmi,\
-javax.rmi.CORBA,\
-javax.rmi.ssl,\
-javax.script,\
-javax.security.auth,\
-javax.security.auth.callback,\
-javax.security.auth.kerberos,\
-javax.security.auth.login,\
-javax.security.auth.spi,\
-javax.security.auth.x500,\
-javax.security.cert,\
-javax.security.sasl,\
-javax.sound.midi,\
-javax.sound.midi.spi,\
-javax.sound.sampled,\
-javax.sound.sampled.spi,\
-javax.sql,\
-javax.sql.rowset,\
-javax.sql.rowset.serial,\
-javax.sql.rowset.spi,\
-javax.swing,\
-javax.swing.border,\
-javax.swing.colorchooser,\
-javax.swing.event,\
-javax.swing.filechooser,\
-javax.swing.plaf,\
-javax.swing.plaf.basic,\
-javax.swing.plaf.metal,\
-javax.swing.plaf.multi,\
-javax.swing.plaf.synth,\
-javax.swing.table,\
-javax.swing.text,\
-javax.swing.text.html,\
-javax.swing.text.html.parser,\
-javax.swing.text.rtf,\
-javax.swing.tree,\
-javax.swing.undo,\
-javax.transaction,\
-javax.transaction.xa,\
-javax.xml.namespace,\
-javax.xml.parsers,\
-javax.xml.transform,\
-javax.xml.transform.stream,\
-javax.xml.transform.dom,\
-javax.xml.transform.sax,\
-javax.xml,\
-javax.xml.validation,\
-javax.xml.datatype,\
-javax.xml.xpath,\
-javax.activation,\
-com.sun.activation.registries,\
-com.sun.activation.viewers,\
-org.ietf.jgss,\
-org.omg.CORBA,\
-org.omg.CORBA_2_3,\
-org.omg.CORBA_2_3.portable,\
-org.omg.CORBA.DynAnyPackage,\
-org.omg.CORBA.ORBPackage,\
-org.omg.CORBA.portable,\
-org.omg.CORBA.TypeCodePackage,\
-org.omg.CosNaming,\
-org.omg.CosNaming.NamingContextExtPackage,\
-org.omg.CosNaming.NamingContextPackage,\
-org.omg.Dynamic,\
-org.omg.DynamicAny,\
-org.omg.DynamicAny.DynAnyFactoryPackage,\
-org.omg.DynamicAny.DynAnyPackage,\
-org.omg.IOP,\
-org.omg.IOP.CodecFactoryPackage,\
-org.omg.IOP.CodecPackage,\
-org.omg.Messaging,\
-org.omg.PortableInterceptor,\
-org.omg.PortableInterceptor.ORBInitInfoPackage,\
-org.omg.PortableServer,\
-org.omg.PortableServer.CurrentPackage,\
-org.omg.PortableServer.POAManagerPackage,\
-org.omg.PortableServer.POAPackage,\
-org.omg.PortableServer.portable,\
-org.omg.PortableServer.ServantLocatorPackage,\
-org.omg.SendingContext,\
-org.omg.stub.java.rmi,\
-org.w3c.dom,\
-org.w3c.dom.bootstrap,\
-org.w3c.dom.css,\
-org.w3c.dom.events,\
-org.w3c.dom.html,\
-org.w3c.dom.ls,\
-org.w3c.dom.ranges,\
-org.w3c.dom.stylesheets,\
-org.w3c.dom.traversal,\
-org.w3c.dom.views ,\
-org.xml.sax,\
-org.xml.sax.ext,\
-org.xml.sax.helpers,\
-org.apache.xerces.xpointer,\
-org.apache.xerces.xni.grammars,\
-org.apache.xerces.impl.xs.util,\
-org.apache.xerces.jaxp.validation,\
-org.apache.xerces.impl.dtd.models,\
-org.apache.xerces.impl.xpath,\
-org.apache.xerces.dom3.as,\
-org.apache.xerces.impl.dv.xs,\
-org.apache.xerces.util,\
-org.apache.xerces.impl.xs.identity,\
-org.apache.xerces.impl.xs.opti,\
-org.apache.xerces.jaxp,\
-org.apache.xerces.impl.dv,\
-org.apache.xerces.xs.datatypes,\
-org.apache.xerces.dom.events,\
-org.apache.xerces.impl.msg,\
-org.apache.xerces.xni,\
-org.apache.xerces.impl.xs,\
-org.apache.xerces.impl,\
-org.apache.xerces.impl.io,\
-org.apache.xerces.xinclude,\
-org.apache.xerces.jaxp.datatype,\
-org.apache.xerces.parsers,\
-org.apache.xerces.impl.dv.util,\
-org.apache.xerces.xni.parser,\
-org.apache.xerces.impl.xs.traversers,\
-org.apache.xerces.impl.dv.dtd,\
-org.apache.xerces.xs,\
-org.apache.xerces.impl.dtd,\
-org.apache.xerces.impl.validation,\
-org.apache.xerces.impl.xs.models,\
-org.apache.xerces.impl.xpath.regex,\
-org.apache.xml.serialize,\
-org.apache.xerces.dom,\
-org.apache.xalan,\
-org.apache.xalan.xslt,\
-org.apache.xalan.templates,\
-org.apache.xalan.xsltc,\
-org.apache.xalan.xsltc.cmdline,\
-org.apache.xalan.xsltc.cmdline.getopt,\
-org.apache.xalan.xsltc.trax,\
-org.apache.xalan.xsltc.dom,\
-org.apache.xalan.xsltc.runtime,\
-org.apache.xalan.xsltc.runtime.output,\
-org.apache.xalan.xsltc.util,\
-org.apache.xalan.xsltc.compiler,\
-org.apache.xalan.xsltc.compiler.util,\
-org.apache.xalan.serialize,\
-org.apache.xalan.client,\
-org.apache.xalan.res,\
-org.apache.xalan.transformer,\
-org.apache.xalan.extensions,\
-org.apache.xalan.lib,\
-org.apache.xalan.lib.sql,\
-org.apache.xalan.processor,\
-org.apache.xalan.trace,\
-org.apache.xml.dtm,\
-org.apache.xml.dtm.ref,\
-org.apache.xml.dtm.ref.sax2dtm,\
-org.apache.xml.dtm.ref.dom2dtm,\
-org.apache.xml.utils,\
-org.apache.xml.utils.res,\
-org.apache.xml.res,\
-org.apache.xml.serializer,\
-org.apache.xml.serializer.utils,\
-org.apache.xpath,\
-org.apache.xpath.domapi,\
-org.apache.xpath.objects,\
-org.apache.xpath.patterns,\
-org.apache.xpath.jaxp,\
-org.apache.xpath.res,\
-org.apache.xpath.operations,\
-org.apache.xpath.functions,\
-org.apache.xpath.axes,\
-org.apache.xpath.compiler,\
-org.apache.xml.resolver,\
-org.apache.xml.resolver.tools,\
-org.apache.xml.resolver.helpers,\
-org.apache.xml.resolver.readers,\
-org.apache.xml.resolver.etc,\
-org.apache.xml.resolver.apps,\
-javax.xml.ws,\
-javax.xml.bind,\
-javax.xml.bind.annotation,\
-javax.annotation,\
-javax.jws,\
-javax.jws.soap,\
-javax.xml.soap,\
-com.sun.xml.internal.messaging.saaj.soap.ver1_1,\
-com.sun.xml.internal.messaging.saaj.soap,\
-com.sun.tools.internal.ws.spi,\
-org.github.jamm

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/log4j.properties b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/log4j.properties
deleted file mode 100644
index 0bb1e42..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/log4j.properties
+++ /dev/null
@@ -1,193 +0,0 @@
-#
-# Copyright 2009 WSO2, Inc. (http://wso2.com)
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-#
-# This is the log4j configuration file used by WSO2 Carbon
-#
-# IMPORTANT : Please do not remove or change the names of any
-# of the Appenders defined here. The layout pattern & log file
-# can be changed using the WSO2 Carbon Management Console, and those
-# settings will override the settings in this file.
-#
-
-log4j.rootLogger=INFO, CARBON_CONSOLE, CARBON_LOGFILE, CARBON_MEMORY, CARBON_SYS_LOG
-
-log4j.logger.AUDIT_LOG=INFO, AUDIT_LOGFILE
-log4j.logger.org.apache.axis2.wsdl.codegen.writer.PrettyPrinter=ERROR, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.axis2.clustering=INFO, CARBON_CONSOLE, CARBON_LOGFILE
-log4j.logger.org.apache=INFO, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.catalina=WARN
-log4j.logger.org.apache.tomcat=WARN
-log4j.logger.org.wso2.carbon.apacheds=WARN
-log4j.logger.org.apache.directory.server.ldap=WARN
-log4j.logger.org.apache.directory.server.core.event=WARN
-log4j.logger.com.atomikos=INFO,ATOMIKOS
-log4j.logger.org.quartz=WARN
-log4j.logger.org.apache.jackrabbit.webdav=WARN
-log4j.logger.org.apache.juddi=ERROR
-log4j.logger.org.apache.commons.digester.Digester=WARN
-log4j.logger.org.apache.jasper.compiler.TldLocationsCache=WARN
-log4j.logger.org.apache.qpid=WARN
-log4j.logger.org.apache.qpid.server.Main=INFO
-log4j.logger.qpid.message=WARN
-log4j.logger.qpid.message.broker.listening=INFO
-log4j.logger.org.apache.tiles=WARN
-log4j.logger.org.apache.commons.httpclient=ERROR
-log4j.logger.org.apache.coyote=WARN
-log4j.logger.org.apache.solr=ERROR
-log4j.logger.org.infinispan=WARN
-log4j.logger.org.jgroups=ERROR
-log4j.logger.me.prettyprint.cassandra.hector.TimingLogger=ERROR
-log4j.logger.org.wso2=INFO
-log4j.logger.org.apache.axis2.enterprise=FATAL, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.opensaml.xml=WARN, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.directory.shared.ldap=WARN, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.directory.server.ldap.handlers=WARN, CARBON_LOGFILE, CARBON_MEMORY 
-#Following are to remove false error messages from startup (IS)
-log4j.logger.org.apache.directory.shared.ldap.entry.DefaultServerAttribute=FATAL, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.directory.server.core.DefaultDirectoryService=ERROR, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.directory.shared.ldap.ldif.LdifReader=ERROR, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.directory.server.ldap.LdapProtocolHandler=ERROR, CARBON_LOGFILE, CARBON_MEMORY
-log4j.logger.org.apache.directory.server.core=ERROR, CARBON_LOGFILE, CARBON_MEMORY
-#Hive Related Log configurations
-log4j.logger.DataNucleus=ERROR
-log4j.logger.Datastore=ERROR
-log4j.logger.Datastore.Schema=ERROR
-log4j.logger.JPOX.Datastore=ERROR
-log4j.logger.JPOX.Plugin=ERROR
-log4j.logger.JPOX.MetaData=ERROR
-log4j.logger.JPOX.Query=ERROR
-log4j.logger.JPOX.General=ERROR
-log4j.logger.JPOX.Enhancer=ERROR
-log4j.logger.org.apache.hadoop.hive=WARN
-log4j.logger.hive=WARN
-log4j.logger.ExecMapper=WARN
-log4j.logger.ExecReducer=WARN
-
-#cassandra specific
-
-log4j.logger.org.apache.cassandra.db=WARN
-log4j.logger.org.apache.cassandra.service=WARN
-log4j.logger.org.apache.cassandra.thrift=WARN
-log4j.logger.org.apache.cassandra.io.sstable=WARN
-log4j.logger.org.apache.cassandra.utils=WARN
-#log4j.logger.org.apache.cassandra.io.sstable=WARN
-#log4j.logger.org.apache.cassandra.io.sstable=WARN
-
-
-
-#andes specific
-log4j.logger.org.wso2.andes.server.handler.ConnectionStartOkMethodHandler=WARN
-log4j.logger.org.wso2.andes.server.handler.ChannelOpenHandler=WARN
-log4j.logger.org.wso2.andes.server.handler.ChannelCloseHandler=WARN
-log4j.logger.org.wso2.andes.server.AMQChannel=WARN
-log4j.logger.org.wso2.andes.server.handler.ConnectionCloseMethodHandler=WARN
-log4j.logger.org.wso2.andes.server.handler.QueueDeclareHandler=WARN
-log4j.logger.org.wso2.andes.server.handler.QueueBindHandler=WARN
-log4j.logger.org.wso2.andes.server.virtualhost.VirtualHostConfigRecoveryHandler=WARN
-log4j.logger.trace.messages=TRACE,CARBON_TRACE_LOGFILE
-
-log4j.additivity.org.apache.axis2.clustering=false
-log4j.additivity.com.atomikos=false
-
-# CARBON_CONSOLE is set to be a ConsoleAppender using a PatternLayout.
-log4j.appender.CARBON_CONSOLE=org.apache.log4j.ConsoleAppender
-log4j.appender.CARBON_CONSOLE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout
-# ConversionPattern will be overridden by the configuration setting in the DB
-log4j.appender.CARBON_CONSOLE.layout.ConversionPattern=[%d] %P%5p {%c} - %x %m%n
-log4j.appender.CARBON_CONSOLE.layout.TenantPattern=%U%@%D[%T]
-log4j.appender.CARBON_CONSOLE.threshold=DEBUG
-
-
-# The memory appender for logging
-log4j.appender.CARBON_MEMORY=org.wso2.carbon.logging.appender.CarbonMemoryAppender
-log4j.appender.CARBON_MEMORY.bufferSize=2000
-log4j.appender.CARBON_MEMORY.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout
-# ConversionPattern will be overridden by the configuration setting in the DB
-log4j.appender.CARBON_MEMORY.layout.ConversionPattern=TID: [%T] [%S] [%d] %P%5p {%c} - %x %m {%c}%n
-log4j.appender.CARBON_MEMORY.layout.TenantPattern=%U%@%D [%T] [%S]
-log4j.appender.CARBON_MEMORY.columnList=%T,%S,%A,%d,%c,%p,%m,%H,%I,%Stacktrace
-log4j.appender.CARBON_MEMORY.threshold=DEBUG
-
-# CARBON_LOGFILE is set to be a DailyRollingFileAppender using a PatternLayout.
-log4j.appender.CARBON_LOGFILE=org.apache.log4j.DailyRollingFileAppender
-# Log file will be overridden by the configuration setting in the DB
-# This path should be relative to WSO2 Carbon Home
-log4j.appender.CARBON_LOGFILE.File=${carbon.home}/repository/logs/${instance.log}/wso2carbon${instance.log}.log
-log4j.appender.CARBON_LOGFILE.Append=true
-log4j.appender.CARBON_LOGFILE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout
-# ConversionPattern will be overridden by the configuration setting in the DB
-log4j.appender.CARBON_LOGFILE.layout.ConversionPattern=TID: [%T] [%S] [%d] %P%5p {%c} - %x %m {%c}%n
-log4j.appender.CARBON_LOGFILE.layout.TenantPattern=%U%@%D [%T] [%S]
-log4j.appender.CARBON_LOGFILE.threshold=DEBUG
-
-log4j.appender.CARBON_SYS_LOG = org.apache.log4j.net.SyslogAppender
-log4j.appender.CARBON_SYS_LOG.layout=org.apache.log4j.PatternLayout
-log4j.appender.CARBON_SYS_LOG.layout.ConversionPattern=[%d] %5p {%c} - %x %m {%c}%n
-log4j.appender.CARBON_SYS_LOG.SyslogHost=localhost
-log4j.appender.CARBON_SYS_LOG.Facility=USER
-log4j.appender.CARBON_SYS_LOG.threshold=DEBUG
-
-# CASSANDRA is set to be a CassandraAppender using a PatternLayout to send logs to cassandra keyspace
-log4j.appender.CASSANDRA=org.wso2.carbon.logging.appender.LogEventAppender
-log4j.appender.CASSANDRA.keyspace=LogEntry
-log4j.appender.CASSANDRA.colFamily=logs
-log4j.appender.CASSANDRA.url=localhost:9160
-log4j.appender.CASSANDRA.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout
-log4j.appender.CASSANDRA.columnList=%T,%S,%A,%d,%c,%p,%m,%H,%Stacktrace
-
-# LOGEVENT is set to be a LogEventAppender using a PatternLayout to send logs to LOGEVENT 
-log4j.appender.LOGEVENT=org.wso2.carbon.logging.appender.LogEventAppender
-log4j.appender.LOGEVENT.url=tcp://10.100.3.103:7611
-log4j.appender.LOGEVENT.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout
-log4j.appender.LOGEVENT.columnList=%T,%S,%A,%d,%c,%p,%m,%H,%I,%Stacktrace
-log4j.appender.LOGEVENT.userName=admin
-log4j.appender.LOGEVENT.password=admin
-
-# Appender config to CARBON_TRACE_LOGFILE
-log4j.appender.CARBON_TRACE_LOGFILE=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.CARBON_TRACE_LOGFILE.File=${carbon.home}/repository/logs/${instance.log}/wso2carbon-trace-messages${instance.log}.log
-log4j.appender.CARBON_TRACE_LOGFILE.Append=true
-log4j.appender.CARBON_TRACE_LOGFILE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout
-log4j.appender.CARBON_TRACE_LOGFILE.layout.ConversionPattern=[%d] %P%5p {%c} - %x %m {%c}%n
-log4j.appender.CARBON_TRACE_LOGFILE.layout.TenantPattern=%U%@%D [%T] [%S]
-log4j.appender.CARBON_TRACE_LOGFILE.threshold=TRACE
-log4j.additivity.trace.messages=false
-
-# Appender config to AUDIT_LOGFILE
-log4j.appender.AUDIT_LOGFILE=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.AUDIT_LOGFILE.File=${carbon.home}/repository/logs/audit.log
-log4j.appender.AUDIT_LOGFILE.Append=true
-log4j.appender.AUDIT_LOGFILE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout
-log4j.appender.AUDIT_LOGFILE.layout.ConversionPattern=[%d] %P%5p - %x %m %n
-log4j.appender.AUDIT_LOGFILE.layout.TenantPattern=%U%@%D [%T] [%S]
-log4j.appender.AUDIT_LOGFILE.threshold=INFO
-log4j.additivity.AUDIT_LOG=false
-
-# Appender config to send Atomikos transaction logs to new log file tm.out.
-log4j.appender.ATOMIKOS = org.apache.log4j.RollingFileAppender
-log4j.appender.ATOMIKOS.File = repository/logs/tm.out
-log4j.appender.ATOMIKOS.Append = true
-log4j.appender.ATOMIKOS.layout = org.apache.log4j.PatternLayout
-log4j.appender.ATOMIKOS.layout.ConversionPattern=%p %t %c - %m%n
-
-# This file is used to override the default logger settings, and is used to remove unwanted logs from Shindig appearing on the console.
-
-# Specification of Handler used by Console Logger
-handlers=java.util.logging.ConsoleHandler
-
-# Replacing default INFO level with SEVERE
-java.util.logging.ConsoleHandler.level=SEVERE

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.bat
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.bat b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.bat
deleted file mode 100644
index ac5e47e..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.bat
+++ /dev/null
@@ -1,274 +0,0 @@
-@echo off
-
-REM ---------------------------------------------------------------------------
-REM        Copyright 2005-2009 WSO2, Inc. http://www.wso2.org
-REM
-REM  Licensed under the Apache License, Version 2.0 (the "License");
-REM  you may not use this file except in compliance with the License.
-REM  You may obtain a copy of the License at
-REM
-REM      http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM  Unless required by applicable law or agreed to in writing, software
-REM  distributed under the License is distributed on an "AS IS" BASIS,
-REM  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-REM  See the License for the specific language governing permissions and
-REM  limitations under the License.
-
-rem ---------------------------------------------------------------------------
-rem Main Script for WSO2 Carbon
-rem
-rem Environment Variable Prequisites
-rem
-rem   CARBON_HOME   Home of CARBON installation. If not set I will  try
-rem                   to figure it out.
-rem
-rem   JAVA_HOME       Must point at your Java Development Kit installation.
-rem
-rem   JAVA_OPTS       (Optional) Java runtime options used when the commands
-rem                   is executed.
-rem ---------------------------------------------------------------------------
-
-rem ----- if JAVA_HOME is not set we're not happy ------------------------------
-:checkJava
-
-if "%JAVA_HOME%" == "" goto noJavaHome
-if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
-goto checkServer
-
-:noJavaHome
-echo "You must set the JAVA_HOME variable before running CARBON."
-goto end
-
-rem ----- Only set CARBON_HOME if not already set ----------------------------
-:checkServer
-rem %~sdp0 is expanded pathname of the current script under NT with spaces in the path removed
-if "%CARBON_HOME%"=="" set CARBON_HOME=%~sdp0..
-SET curDrive=%cd:~0,1%
-SET wsasDrive=%CARBON_HOME:~0,1%
-if not "%curDrive%" == "%wsasDrive%" %wsasDrive%:
-
-rem find CARBON_HOME if it does not exist due to either an invalid value passed
-rem by the user or the %0 problem on Windows 9x
-if not exist "%CARBON_HOME%\bin\version.txt" goto noServerHome
-
-set AXIS2_HOME=%CARBON_HOME%
-goto updateClasspath
-
-:noServerHome
-echo CARBON_HOME is set incorrectly or CARBON could not be located. Please set CARBON_HOME.
-goto end
-
-rem ----- update classpath -----------------------------------------------------
-:updateClasspath
-
-setlocal EnableDelayedExpansion
-cd %CARBON_HOME%
-set CARBON_CLASSPATH=
-FOR %%C in ("%CARBON_HOME%\bin\*.jar") DO set CARBON_CLASSPATH=!CARBON_CLASSPATH!;".\bin\%%~nC%%~xC"
-
-set CARBON_CLASSPATH="%JAVA_HOME%\lib\tools.jar";%CARBON_CLASSPATH%;
-
-rem ----- Process the input command -------------------------------------------
-
-rem Slurp the command line arguments. This loop allows for an unlimited number
-rem of arguments (up to the command line limit, anyway).
-
-
-:setupArgs
-if ""%1""=="""" goto doneStart
-if ""%1""==""-start""   goto startWinService
-if ""%1""==""--start""  goto startWinService
-if ""%1""==""start""    goto startWinService
-
-if ""%1""==""-run""     goto commandLifecycle
-if ""%1""==""--run""    goto commandLifecycle
-if ""%1""==""run""      goto commandLifecycle
-
-if ""%1""==""-restart""  goto commandLifecycle
-if ""%1""==""--restart"" goto commandLifecycle
-if ""%1""==""restart""   goto commandLifecycle
-
-if ""%1""==""-stop""    goto stopWinService
-if ""%1""==""--stop""   goto stopWinService
-if ""%1""==""stop""     goto stopWinService
-
-if ""%1""==""debug""    goto commandDebug
-if ""%1""==""-debug""   goto commandDebug
-if ""%1""==""--debug""  goto commandDebug
-
-if ""%1""==""version""   goto commandVersion
-if ""%1""==""-version""  goto commandVersion
-if ""%1""==""--version"" goto commandVersion
-
-shift
-goto setupArgs
-
-rem ----- commandVersion -------------------------------------------------------
-:commandVersion
-shift
-type "%CARBON_HOME%\bin\version.txt"
-type "%CARBON_HOME%\bin\wso2carbon-version.txt"
-goto end
-
-rem ----- commandDebug ---------------------------------------------------------
-:commandDebug
-shift
-set DEBUG_PORT=%1
-if "%DEBUG_PORT%"=="" goto noDebugPort
-if not "%JAVA_OPTS%"=="" echo Warning !!!. User specified JAVA_OPTS will be ignored, once you give the --debug option.
-set JAVA_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=%DEBUG_PORT%
-echo Please start the remote debugging client to continue...
-goto findJdk
-
-:noDebugPort
-echo Please specify the debug port after the --debug option
-goto end
-
-rem ----- commandLifecycle -----------------------------------------------------
-:commandLifecycle
-goto findJdk
-
-rem ----- doneStart ------------------------------------------------------------
-rem This label provides a place for the argument list loop to break out
-rem and for NT handling to skip to.
-
-:doneStart
-if "%OS%"=="Windows_NT" @setlocal
-if "%OS%"=="WINNT" @setlocal
-
-rem ---------- Handle the SSL Issue with proper JDK version --------------------
-rem find the version of the jdk
-:findJdk
-
-set CMD=RUN %*
-
-:checkJdk16
-"%JAVA_HOME%\bin\java" -version 2>&1 | findstr /r "1.[6|7]" >NUL
-IF ERRORLEVEL 1 goto unknownJdk
-goto jdk16
-
-:unknownJdk
-echo Starting WSO2 Carbon (in unsupported JDK)
-echo [ERROR] CARBON is supported only on JDK 1.6 and 1.7
-goto jdk16
-
-:jdk16
-goto runServer
-
-rem ----------------- Execute The Requested Command ----------------------------
-
-:runServer
-cd %CARBON_HOME%
-
-rem ---------- Add jars to classpath ----------------
-
-set CARBON_CLASSPATH=.\lib;%CARBON_CLASSPATH%
-
-set JAVA_ENDORSED=".\lib\endorsed";"%JAVA_HOME%\jre\lib\endorsed";"%JAVA_HOME%\lib\endorsed"
-
-set CMD_LINE_ARGS=-Xbootclasspath/a:%CARBON_XBOOTCLASSPATH% -Xms256m -Xmx512m -XX:MaxPermSize=256m -Dcom.sun.management.jmxremote -classpath %CARBON_CLASSPATH% %JAVA_OPTS% -Djava.endorsed.dirs=%JAVA_ENDORSED% -DandesConfig=qpid-config.xml -Ddisable.cassandra.server.startup=true -Dcarbon.registry.root=/ -Dcarbon.home="%CARBON_HOME%" -Dwso2.server.standalone=true -Djava.command="%JAVA_HOME%\bin\java" -Djava.opts="%JAVA_OPTS%" -Djava.io.tmpdir="%CARBON_HOME%\tmp" -Dcatalina.base="%CARBON_HOME%\lib\tomcat" -Dwso2.carbon.xml=%CARBON_HOME%\repository\conf\carbon.xml -Dwso2.registry.xml="%CARBON_HOME%\repository\conf\registry.xml" -Dwso2.user.mgt.xml="%CARBON_HOME%\repository\conf\user-mgt.xml" -Dwso2.transports.xml="%CARBON_HOME%\repository\conf\mgt-transports.xml" -Djava.util.logging.config.file="%CARBON_HOME%\repository\conf\log4j.properties" -Dcarbon.config.dir.path="%CARBON_HOME%\repository\conf" -Dcarbon.logs.path="%CARBON_HOME%\repository\logs" -Dcomponents.repo="%CARBON_HOME%\repos
 itory\components" -Dcom.atomikos.icatch.file="%CARBON_HOME%\lib\transactions.properties" -Dcom.atomikos.icatch.hide_init_file_path="true" -Dorg.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true -Dcom.sun.jndi.ldap.connect.pool.authentication=simple -Dcom.sun.jndi.ldap.connect.pool.timeout=3000 -Dorg.terracotta.quartz.skipUpdateCheck=true -Dcarbon.classpath=%CARBON_CLASSPATH%
-
-:runJava
-echo JAVA_HOME environment variable is set to %JAVA_HOME%
-echo CARBON_HOME environment variable is set to %CARBON_HOME%
-"%JAVA_HOME%\bin\java" %CMD_LINE_ARGS% org.wso2.carbon.bootstrap.Bootstrap %CMD%
-if "%ERRORLEVEL%"=="121" goto runJava
-:end
-goto endlocal
-
-:startWinService
-rem
-rem Locating Carbon Home
-rem
-rem %~dp0 is the location of this script under NT
-set _REALPATH=%~dp0..\
-
-rem Decide on the wrapper binary.
-set _WRAPPER_BASE=wrapper
-set _WRAPPER_DIR=%_REALPATH%bin\native\
-set _WRAPPER_EXE=%_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-32.exe
-if exist "%_WRAPPER_EXE%" goto conf
-set _WRAPPER_EXE=%_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-64.exe
-if exist "%_WRAPPER_EXE%" goto conf
-set _WRAPPER_EXE=%_WRAPPER_DIR%%_WRAPPER_BASE%.exe
-if exist "%_WRAPPER_EXE%" goto conf
-echo Unable to locate a Wrapper executable using any of the following names:
-echo %_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-32.exe
-echo %_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-64.exe
-echo %_WRAPPER_DIR%%_WRAPPER_BASE%.exe
-pause
-goto :eof
-rem
-rem Locating wrapper.conf
-rem
-:conf
-set _WRAPPER_CONF="%_REALPATH%repository\conf\wrapper.conf"
-rem
-
-rem Starting the Carbon Windows service.
-rem
-"%_WRAPPER_EXE%" -t %_WRAPPER_CONF% 2>&1 | findstr "failed" >NUL
-if not errorlevel 1 goto install
-echo The Carbon Windows Service is now running.
-goto endlocal
-
-:install
-echo The Carbon Windows Service is not installed. Would you like to install it now? (y/n)
-set INPUT=
-set /P INPUT=Type input: %=%
-if "%INPUT%"=="" goto install
-if "%INPUT%"=="n" goto noservice
-echo Installing Windows service
-"%_WRAPPER_EXE%" -i %_WRAPPER_CONF%
-"%_WRAPPER_EXE%" -t %_WRAPPER_CONF%
-echo The Carbon Windows Service is now running.
-goto endlocal
-
-rem If we reached here, it means that the service has failed.
-echo [ERROR] Failed to start the Carbon Windows Service.
-
-:noservice
-echo Sorry. You can't use -start or -stop without installing the Windows service.
-goto endlocal
-
-:stopWinService
-rem
-rem Locating Carbon Home
-rem
-rem %~dp0 is the location of this script under NT
-set _REALPATH=%~dp0..\
-
-rem Decide on the wrapper binary.
-set _WRAPPER_BASE=wrapper
-set _WRAPPER_DIR=%_REALPATH%bin\native\
-set _WRAPPER_EXE=%_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-32.exe
-if exist "%_WRAPPER_EXE%" goto conf
-set _WRAPPER_EXE=%_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-64.exe
-if exist "%_WRAPPER_EXE%" goto conf
-set _WRAPPER_EXE=%_WRAPPER_DIR%%_WRAPPER_BASE%.exe
-if exist "%_WRAPPER_EXE%" goto conf
-echo Unable to locate a Wrapper executable using any of the following names:
-echo %_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-32.exe
-echo %_WRAPPER_DIR%%_WRAPPER_BASE%-windows-x86-64.exe
-echo %_WRAPPER_DIR%%_WRAPPER_BASE%.exe
-goto :eof
-
-rem
-rem Locating wrapper.conf
-rem
-:conf
-set _WRAPPER_CONF="%_REALPATH%repository\conf\wrapper.conf"
-rem
-rem Stopping the Carbon Windows service.
-rem
-"%_WRAPPER_EXE%" -p %_WRAPPER_CONF%
-echo The Carbon Windows Service is now stopped.
-goto endlocal
-
-rem If we reached here, it means that the service has failed.
-echo [ERROR] Failed to stop the Carbon Windows Service.
-
-:endlocal
-
-:END

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.sh
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.sh b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.sh
deleted file mode 100644
index 2022e92..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/main/resources/wso2server.sh
+++ /dev/null
@@ -1,296 +0,0 @@
-#!/bin/sh
-# ----------------------------------------------------------------------------
-#  Copyright 2005-2009 WSO2, Inc. http://www.wso2.org
-#
-#  Licensed 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.
-
-# ----------------------------------------------------------------------------
-# Main Script for the WSO2 Carbon Server
-#
-# Environment Variable Prequisites
-#
-#   CARBON_HOME   Home of WSO2 Carbon installation. If not set I will  try
-#                   to figure it out.
-#
-#   JAVA_HOME       Must point at your Java Development Kit installation.
-#
-#   JAVA_OPTS       (Optional) Java runtime options used when the commands
-#                   is executed.
-#
-# NOTE: Borrowed generously from Apache Tomcat startup scripts.
-# -----------------------------------------------------------------------------
-
-# OS specific support.  $var _must_ be set to either true or false.
-
-cygwin=false;
-darwin=false;
-os400=false;
-mingw=false;
-case "`uname`" in
-CYGWIN*) cygwin=true;;
-MINGW*) mingw=true;;
-OS400*) os400=true;;
-Darwin*) darwin=true
-        if [ -z "$JAVA_VERSION" ] ; then
-             JAVA_VERSION="CurrentJDK"
-           else
-             echo "Using Java version: $JAVA_VERSION"
-           fi
-           if [ -z "$JAVA_HOME" ] ; then
-             JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
-           fi
-           ;;
-esac
-
-# resolve links - $0 may be a softlink
-PRG="$0"
-
-while [ -h "$PRG" ]; do
-  ls=`ls -ld "$PRG"`
-  link=`expr "$ls" : '.*-> \(.*\)$'`
-  if expr "$link" : '.*/.*' > /dev/null; then
-    PRG="$link"
-  else
-    PRG=`dirname "$PRG"`/"$link"
-  fi
-done
-
-# Get standard environment variables
-PRGDIR=`dirname "$PRG"`
-
-# Only set CARBON_HOME if not already set
-[ -z "$CARBON_HOME" ] && CARBON_HOME=`cd "$PRGDIR/.." ; pwd`
-
-# Set AXIS2_HOME. Needed for One Click JAR Download
-AXIS2_HOME=$CARBON_HOME
-
-# For Cygwin, ensure paths are in UNIX format before anything is touched
-if $cygwin; then
-  [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
-  [ -n "$CARBON_HOME" ] && CARBON_HOME=`cygpath --unix "$CARBON_HOME"`
-  [ -n "$AXIS2_HOME" ] && CARBON_HOME=`cygpath --unix "$CARBON_HOME"`
-fi
-
-# For OS400
-if $os400; then
-  # Set job priority to standard for interactive (interactive - 6) by using
-  # the interactive priority - 6, the helper threads that respond to requests
-  # will be running at the same priority as interactive jobs.
-  COMMAND='chgjob job('$JOBNAME') runpty(6)'
-  system $COMMAND
-
-  # Enable multi threading
-  QIBM_MULTI_THREADED=Y
-  export QIBM_MULTI_THREADED
-fi
-
-# For Migwn, ensure paths are in UNIX format before anything is touched
-if $mingw ; then
-  [ -n "$CARBON_HOME" ] &&
-    CARBON_HOME="`(cd "$CARBON_HOME"; pwd)`"
-  [ -n "$JAVA_HOME" ] &&
-    JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
-  [ -n "$AXIS2_HOME" ] &&
-    CARBON_HOME="`(cd "$CARBON_HOME"; pwd)`"
-  # TODO classpath?
-fi
-
-if [ -z "$JAVACMD" ] ; then
-  if [ -n "$JAVA_HOME"  ] ; then
-    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
-      # IBM's JDK on AIX uses strange locations for the executables
-      JAVACMD="$JAVA_HOME/jre/sh/java"
-    else
-      JAVACMD="$JAVA_HOME/bin/java"
-    fi
-  else
-    JAVACMD=java
-  fi
-fi
-
-if [ ! -x "$JAVACMD" ] ; then
-  echo "Error: JAVA_HOME is not defined correctly."
-  echo " CARBON cannot execute $JAVACMD"
-  exit 1
-fi
-
-# if JAVA_HOME is not set we're not happy
-if [ -z "$JAVA_HOME" ]; then
-  echo "You must set the JAVA_HOME variable before running CARBON."
-  exit 1
-fi
-
-# ----- Process the input command ----------------------------------------------
-for c in $*
-do
-    if [ "$c" = "--debug" ] || [ "$c" = "-debug" ] || [ "$c" = "debug" ]; then
-          CMD="--debug"
-          continue
-    elif [ "$CMD" = "--debug" ]; then
-          if [ -z "$PORT" ]; then
-                PORT=$c
-          fi
-    elif [ "$c" = "--n" ] || [ "$c" = "-n" ] || [ "$c" = "n" ]; then
-          CMD="--n"
-          continue
-    elif [ "$CMD" = "--n" ]; then
-          if [ -z "$INSTANCES" ]; then
-                INSTANCES=$c
-          fi
-    elif [ "$c" = "--stop" ] || [ "$c" = "-stop" ] || [ "$c" = "stop" ]; then
-          CMD="stop"
-    elif [ "$c" = "--start" ] || [ "$c" = "-start" ] || [ "$c" = "start" ]; then
-          CMD="start"
-    elif [ "$c" = "--console" ] || [ "$c" = "-console" ] || [ "$c" = "console" ]; then
-          CMD="console"
-    elif [ "$c" = "--version" ] || [ "$c" = "-version" ] || [ "$c" = "version" ]; then
-          CMD="version"
-    elif [ "$c" = "--restart" ] || [ "$c" = "-restart" ] || [ "$c" = "restart" ]; then
-          CMD="restart"
-    elif [ "$c" = "--dump" ] || [ "$c" = "-dump" ] || [ "$c" = "dump" ]; then
-          CMD="dump"
-    elif [ "$c" = "--test" ] || [ "$c" = "-test" ] || [ "$c" = "test" ]; then
-          CMD="test"
-    elif [ "$c" = "--status" ] || [ "$c" = "-status" ] || [ "$c" = "status" ]; then
-          CMD="status"
-    fi
-done
-
-if [ "$CMD" = "--debug" ]; then
-  if [ "$PORT" = "" ]; then
-    echo " Please specify the debug port after the --debug option"
-    exit 1
-  fi
-  if [ -n "$JAVA_OPTS" ]; then
-    echo "Warning !!!. User specified JAVA_OPTS will be ignored, once you give the --debug option."
-  fi
-  CMD="RUN"
-  JAVA_OPTS="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=$PORT"
-  echo "Please start the remote debugging client to continue..."
-elif [ "$CMD" = "--n" ]; then
-  if [ "$INSTANCES" = "" ] || [ ! -z `echo $INSTANCES | sed 's/[0-9]//g'` ]]; then
-    echo " Please specify the number of instances to start after the --n option"
-    exit 1
-  fi
-elif [ "$CMD" = "start" ]; then
-  export CARBON_HOME=$CARBON_HOME
-  nohup $CARBON_HOME/bin/wso2server.sh &
-  exit 0
-elif [ "$CMD" = "stop" ]; then
-  export CARBON_HOME=$CARBON_HOME
-  kill -9 `cat $CARBON_HOME/wso2carbon.pid`
-  exit 0
-elif [ "$CMD" = "restart" ]; then
-  export CARBON_HOME=$CARBON_HOME
-  kill -9 `cat $CARBON_HOME/wso2carbon.pid`
-  nohup $CARBON_HOME/bin/wso2server.sh &
-  exit 0
-elif [ "$CMD" = "test" ]; then
-    JAVACMD="exec "$JAVACMD""
-elif [ "$CMD" = "version" ]; then
-  cat $CARBON_HOME/bin/version.txt
-  cat $CARBON_HOME/bin/wso2carbon-version.txt
-  exit 0
-fi
-
-# ---------- Handle the SSL Issue with proper JDK version --------------------
-jdk_16=`$JAVA_HOME/bin/java -version 2>&1 | grep "1.[6|7]"`
-if [ "$jdk_16" = "" ]; then
-   echo " Starting WSO2 Carbon (in unsupported JDK)"
-   echo " [ERROR] CARBON is supported only on JDK 1.6 and 1.7"
-fi
-
-CARBON_XBOOTCLASSPATH=""
-for f in "$CARBON_HOME"/lib/xboot/*.jar
-do
-    if [ "$f" != "$CARBON_HOME/lib/xboot/*.jar" ];then
-        CARBON_XBOOTCLASSPATH="$CARBON_XBOOTCLASSPATH":$f
-    fi
-done
-
-JAVA_ENDORSED_DIRS="$CARBON_HOME/lib/endorsed":"$JAVA_HOME/jre/lib/endorsed":"$JAVA_HOME/lib/endorsed"
-
-CARBON_CLASSPATH=""
-if [ -e "$JAVA_HOME/lib/tools.jar" ]; then
-    CARBON_CLASSPATH="$JAVA_HOME/lib/tools.jar"
-fi
-for f in "$CARBON_HOME"/bin/*.jar
-do
-    if [ "$f" != "$CARBON_HOME/bin/*.jar" ];then
-        CARBON_CLASSPATH="$CARBON_CLASSPATH":$f
-    fi
-done
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin; then
-  JAVA_HOME=`cygpath --absolute --windows "$JAVA_HOME"`
-  CARBON_HOME=`cygpath --absolute --windows "$CARBON_HOME"`
-  AXIS2_HOME=`cygpath --absolute --windows "$CARBON_HOME"`
-  CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
-  JAVA_ENDORSED_DIRS=`cygpath --path --windows "$JAVA_ENDORSED_DIRS"`
-  CARBON_CLASSPATH=`cygpath --path --windows "$CARBON_CLASSPATH"`
-  CARBON_XBOOTCLASSPATH=`cygpath --path --windows "$CARBON_XBOOTCLASSPATH"`
-fi
-
-# ----- Execute The Requested Command -----------------------------------------
-
-echo JAVA_HOME environment variable is set to $JAVA_HOME
-echo CARBON_HOME environment variable is set to $CARBON_HOME
-
-cd "$CARBON_HOME"
-
-START_EXIT_STATUS=121
-status=$START_EXIT_STATUS
-
-while [ "$status" = "$START_EXIT_STATUS" ]
-do
-    $JAVACMD \
-     -Xbootclasspath/a:"$CARBON_XBOOTCLASSPATH" \
-     -d64 \
-     -server \
-     -Xms1500m -Xmx3000m \
-     -XX:PermSize=256m -XX:MaxPermSize=512m \
-     -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:-UseGCOverheadLimit \
-     -XX:+CMSClassUnloadingEnabled \
-     -XX:+OptimizeStringConcat \
-     -XX:+HeapDumpOnOutOfMemoryError \
-     -XX:OnOutOfMemoryError="kill -9 `echo $$`;nohup ./wso2server.sh &" \
-     -XX:HeapDumpPath=repository/logs/heap-dump.hprof \
-     -XX:ErrorFile=repository/logs/hs_err_pid.log \
-     -XX:OnError="nohup ./wso2server.sh &" \
-     -javaagent:"$CARBON_HOME/repository/components/plugins/jamm_0.2.5.wso2v2.jar" \
-    $JAVA_OPTS \
-    -DandesConfig=qpid-config.xml \
-    -Ddisable.cassandra.server.startup=true \
-    -Dcom.sun.management.jmxremote \
-    -classpath "$CARBON_CLASSPATH" \
-    -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" \
-    -Djava.io.tmpdir="$CARBON_HOME/tmp" \
-    -Dcatalina.base="$CARBON_HOME/lib/tomcat" \
-    -Dwso2.server.standalone=true \
-    -Dcarbon.registry.root=/ \
-    -Djava.command="$JAVACMD" \
-    -Dcarbon.home="$CARBON_HOME" \
-    -Dwso2.transports.xml="$CARBON_HOME/repository/conf/mgt-transports.xml" \
-    -Djava.util.logging.config.file="$CARBON_HOME/repository/conf/log4j.properties" \
-    -Dcarbon.config.dir.path="$CARBON_HOME/repository/conf" \
-    -Dcomponents.repo="$CARBON_HOME/repository/components/plugins" \
-    -Dcom.atomikos.icatch.file="$CARBON_HOME/lib/transactions.properties" \
-    -Dcom.atomikos.icatch.hide_init_file_path=true \
-    -Dorg.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true \
-    -Dcom.sun.jndi.ldap.connect.pool.authentication=simple  \
-    -Dcom.sun.jndi.ldap.connect.pool.timeout=3000  \
-    -Dorg.terracotta.quartz.skipUpdateCheck=true \
-    org.wso2.carbon.bootstrap.Bootstrap $*
-    status=$?
-done

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/css/mb-docs.css
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/css/mb-docs.css b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/css/mb-docs.css
deleted file mode 100644
index ef45164..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/css/mb-docs.css
+++ /dev/null
@@ -1,173 +0,0 @@
-body {
-    color: #000;
-    font-size: 11px;
-    font-family: Verdana, Arial, Helvetica, sans-serif;
-    background-image: url( ../images/mb-docs-bg.gif );
-    background-repeat: repeat-x;
-    background-attachment: scroll;
-    background-position: left top;
-    text-decoration: none;
-    text-align: left;
-    padding: 0px;
-    list-style-type: square;
-    list-style-position: outside;
-}
-
-div#banner {
-	background-image: url(../images/mb-docs-header.gif);
-	background-repeat: no-repeat;
-	background-position: left top;
-	height: 38px;
-	padding-top: 30px;
-	padding-left: 265px;
-	border-bottom: 0px;
-}
-
-div#banner	span#bannerLeft {
-	font-size: 180%;
-	color: #A80063;
-}
-
-div#breadcrumbs {
-	background-color: transparent;
-	border-top: solid 0px;
-	border-bottom: solid 0px;
-	height: 23px;
-	padding-top: 5px;
-	padding-left: 20px;
-	padding-right: 20px;
-}
-
-div#leftColumn {
-	margin-left: 0px;
-	margin-top: 0px;
-	border-top: 0px;
-	background-color: #F7F7F7;
-	border-left: solid 0px;
-	border-right: solid 1px #A80063;
-	border-bottom: solid 1px #A80063;
-}
-
-div#leftColumn div#navcolumn {
-	padding-left: 20px;
-	padding-right: 20px;
-	padding-top: 15px;
-	background-color: #F7F7F7;
-}
-
-
-div#contentBox {
-	margin-top: 10px;
-	margin-bottom: 15px;
-	font-size: 12px;
-}
-
-div#navcolumn h5 {
-	margin-bottom: 2px;
-	padding-bottom: 2px;
-	border-bottom: solid 1px #A80063;
-	font-size: 110%;
-}
-
-#navcolumn li {
-	padding-top: 2px;
-	padding-bottom: 2px;
-}
-
-p {
-}
-
-td {
-    background-color: #f8f8f8;
-    padding: 3px 5px;
-    outline-color: gray;
-    outline-width: 0;
-}
-
-a:link {
-    color: #36c;
-}
-
-a:visited {
-}
-
-a:hover {
-    color: #7f7f7f;
-}
-
-a:active {
-}
-
-body, td, select, input, li  {
-	line-height: 18px;
-}
-
-h1 {
-    color: #333;
-    font-size: 18px;
-    font-weight: bold;
-    font-style: normal;
-    line-height: normal;
-    background-image: none;
-    background-repeat: no-repeat;
-    background-attachment: scroll;
-    background-position: left top;
-    text-decoration: none;
-    height: 30px;
-    padding-bottom: 2px;
-    border-bottom: 1px solid #A80063;
-}
-
-h2 {
-    color: black;
-    font-size: 15px;
-    font-weight: bold;
-    line-height: 24px;
-    border-bottom: 0px;
-    border-left: solid 1px #ccc;
-    border-right: solid 1px #ccc;
-    border-top: 0px;
-    background-color: #B5B5B5;
-    padding-left: 5px;
-    padding-top: 0px;
-    padding-bottom: 0px; 
-    color: #fff;
-}
-
-h3 {
-    color: #3a3a3a;
-    font-size: 12px;
-    font-weight: bold;
-    padding-top: 10px;
-    padding-bottom: 4px;
-    padding-left: 10px;
-    border-left: 0px;
-    border-right: 0px;
-    border-top: 0px;
-    border-bottom: 1px solid #ccc;
-    background-image: url(../images/table-header.gif);
-    background-position: left bottom;
-    background-repeat: repeat-x;
-    background-color: transparent;
-}
-
-table {
-    background-color: #cbcbcb;
-    margin: 0;
-    padding: 1px;
-    border-style: solid;
-    border-width: 0;
-}
-
-th {
-    padding-left: 5px;
-}
-
-img {
-    background-color: gray;
-    padding: 1px;
-}
-div#footer {
-	background-color: #ccc;
-	padding-right: 20px;
-}
\ No newline at end of file

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

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/Login.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/Login.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/Login.png
deleted file mode 100644
index 4cc00c2..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/Login.png and /dev/null differ

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

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

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addMessage.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addMessage.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addMessage.png
deleted file mode 100644
index 1697d67..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addMessage.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addPermission.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addPermission.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addPermission.png
deleted file mode 100644
index 3c9ec93..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/addPermission.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/cluster_scenario_01.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/cluster_scenario_01.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/cluster_scenario_01.png
deleted file mode 100644
index 7c29a1e..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/cluster_scenario_01.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/logs.PNG
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/logs.PNG b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/logs.PNG
deleted file mode 100644
index 9204327..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/logs.PNG and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/mb-docs-bg.gif
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/mb-docs-bg.gif b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/mb-docs-bg.gif
deleted file mode 100644
index 9dee07b..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/mb-docs-bg.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/set-java-home.jpg
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/set-java-home.jpg b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/set-java-home.jpg
deleted file mode 100644
index d23d544..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/set-java-home.jpg and /dev/null differ

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

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

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

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_add.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_add.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_add.png
deleted file mode 100644
index 94a22e2..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_add.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_addSubscription.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_addSubscription.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_addSubscription.png
deleted file mode 100644
index 276710c..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_addSubscription.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_browser.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_browser.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_browser.png
deleted file mode 100644
index 2d113f5..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_browser.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_details.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_details.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_details.png
deleted file mode 100644
index 1933f29..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/topic_details.png and /dev/null differ

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

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

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/userguide_state_1.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/userguide_state_1.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/userguide_state_1.png
deleted file mode 100644
index 3f81b02..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/userguide_state_1.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/zookeeperConfig.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/zookeeperConfig.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/zookeeperConfig.png
deleted file mode 100644
index 42f707c..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/resources/images/zookeeperConfig.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/site.xml
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/site.xml b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/site.xml
deleted file mode 100644
index 0840ec0..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/site.xml
+++ /dev/null
@@ -1,70 +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.
-  -->
-
-<project name="WSO2 Message Broker">
-
-    <skin>
-        <groupId>org.apache.maven.skins</groupId>
-        <artifactId>maven-default-skin</artifactId>
-        <version>1.0</version>
-    </skin>
-
-    <body>
-        <links>
-            <item name="WSO2.org" href="http://www.wso2.org/"/>
-        </links>
-
-        <menu name="Overview">
-            <item name="Home" href="index.html"/>
-            <item name="Release Note" href="release-notes.html"/>
-            <item name="License"
-                  href="http://www.apache.org/licenses/LICENSE-2.0.html"/>
-            <item name="Contents" href="docs_index.html"/>
-        </menu>
-        <menu name="Downloads">
-            <item name="Releases"
-                  href="http://www.wso2.org/downloads/message-broker/"/>
-        </menu>
-        <menu name="Documentation">
-            <item name="Installation Guide" href="installation_guide.html"/>
-            <item name="Deployment Guide" href="deployment_guide.html"/>
-            <item name="User Guide" href="user_guide.html"/>
-            <item name="Administrator Guide" href="admin_guide.html"/>
-        </menu>
-        <menu name="Samples">
-            <item name="Samples Index" href="samples_index.html"/>
-        </menu>
-
-        <menu name="Resources">
-            <item name="FAQ's" href="faq.html"/>
-            <item name="Library" href="http://www.wso2.org/library/mb"/>
-            <item name="Features" href="http://www.wso2.org/projects/mb/java/features"/>
-            <item name="Source Code" href="http://www.wso2.org/svn"/>
-            <item name="Wiki" href="http://www.wso2.org/wiki/display/mb/java"/>
-        </menu>
-        <menu name="Community">
-            <item name="Forum" href="http://www.wso2.org/forum/1225"/>
-            <item name="Mailing Lists" href="http://www.wso2.org/mail"/>
-        </menu>
-        <menu name="Project Info">
-            <item name="Issue Tracking" href="https://www.wso2.org/jira/browse/mb"/>
-        </menu>
-
-    </body>
-</project>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/carbonFormStyles.css
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/carbonFormStyles.css b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/carbonFormStyles.css
deleted file mode 100644
index 3b37ed3..0000000
--- a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/carbonFormStyles.css
+++ /dev/null
@@ -1,265 +0,0 @@
-.placeholderClass {
-    color: #ccc;
-}
-
-#tabs ul li {
-    /* webkit */
-    background-image: -webkit-gradient( linear, left top, left bottom, from( #cdd6e3 ), to( #ffffff ) ); /* mozilla - FF3.6+ */
-    background-image: -moz-linear-gradient( top, #cdd6e3 0%, #ffffff 100% ); /* IE 5.5 - 7 */
-    filter: progid:DXImageTransform.Microsoft.gradient( gradientType = 0, startColor = 0, endColorStr = #cdd6e3 ); /* IE8 */
-    -ms-filter: progid: DXImageTransform . Microsoft . gradient( gradientType = 0, startColor = 0, endColoStr = #cdd6e3 );
-
-    padding: 2px 8px 3px;
-    color: #fff;
-    text-decoration: none;
-    line-height: 1;
-    -moz-border-radius-topleft: 5px;
-    -moz-border-radius-topright: 5px;
-    border-top-left-radius: 5px;
-    border-top-right-radius: 5px;
-
-    border-bottom: none;
-    height: 20px;
-    margin-right: 5px;
-    border-top: solid 1px #b2ccdd;
-    border-left: solid 1px #b2ccdd;
-    border-right: solid 1px #b2ccdd;
-}
-
-#tabs ul li a {
-    color: #00608f;
-    padding: 2px;
-    font-size: .8em;
-}
-
-#tabs ul li.ui-tabs-selected {
-    background-image: none;
-    background-color: #fff;
-}
-
-#tabs ul li.ui-tabs-selected a {
-    color: #000;
-}
-
-#workArea {
-    padding-bottom: 0px;
-}
-
-.carbonFormTable {
-    color: #555;
-    width: 100%;
-}
-
-.carbonFormTable td {
-    vertical-align: top;
-    font-size: 12px;
-    padding-bottom: 5px !important;
-}
-
-.carbonFormTable input[type=text],.carbonFormTable input[type=password] {
-/* webkit */
-    background-image: -webkit-gradient( linear, left top, left bottom, from( #f7f7f7 ), to( #ffffff ) ); /* mozilla - FF3.6+ */
-    background-image: -moz-linear-gradient( top, #f7f7f7 0%, #ffffff 100% ); /* IE 5.5 - 7 */
-    filter: progid:DXImageTransform.Microsoft.gradient( gradientType = 0, startColorStr = #f7f7f7ff, endColorStr = #ffffffff ); /* IE8 */
-    -ms-filter: progid: DXImageTransform . Microsoft . gradient( gradientType = 0, startColorStr = #f7f7f7ff, endColoStr = #ffffffff );
-
-    background-repeat: repeat-x;
-    border: 1px solid #58697d;
-    min-width: 230px;
-    height: 20px;
-    color: #333333;
-    padding: 3px;
-    margin-right: 4px;
-    margin-bottom: 2px; /*font-family:tahoma, arial, sans-serif;*/
-}
-.carbonFormTable input[disabled=disabled]{
-    background-image: -webkit-gradient( linear, left top, left bottom, from( #dddddd ), to( #eeeeee ) ); /* mozilla - FF3.6+ */
-      background-image: -moz-linear-gradient( top, #dddddd 0%, #eeeeee 100% ); /* IE 5.5 - 7 */
-      filter: progid:DXImageTransform.Microsoft.gradient( gradientType = 0, startColorStr = #ddddddff, endColorStr = #eeeeeeff ); /* IE8 */
-      -ms-filter: progid: DXImageTransform . Microsoft . gradient( gradientType = 0, startColorStr = #ddddddff, endColoStr = #eeeeeeff );
-
-}
-.carbonFormTable td.labelField, .carbonFormTable label.labelField {
-}
-
-.buttonRow {
-    padding: 10px; /* webkit */
-    background-image: -webkit-gradient( linear, left top, left bottom, from( #f2f2f2 ), to( #ffffff ) ); /* mozilla - FF3.6+ */
-    background-image: -moz-linear-gradient( top, #f2f2f2 0%, #ffffff 100% ); /* IE 5.5 - 7 */
-    filter: progid:DXImageTransform.Microsoft.gradient( gradientType = 0, startColorStr = #f2f2f2ff, endColorStr = #ffffffff ); /* IE8 */
-    -ms-filter: progid: DXImageTransform . Microsoft . gradient( gradientType = 0, startColorStr = #f2f2f2ff, endColoStr = #ffffffff );
-
-    border: solid 1px #b8c9d0;
-
-}
-.sub_buttonRow{
-     padding: 10px; /* webkit */
-    background-color:#f5f5f5;
-    border-left: solid 1px #b8c9d0;
-    border-right: solid 1px #b8c9d0;
-    border-bottom: solid 1px #b8c9d0;
-}
-.sub_buttonRow input.button,.sub_buttonRow button.button {
-    margin-right:10px;
-}
-.ui-tabs .ui-tabs-panel {
-    padding: 0px;
-}
-
-.togglebleTitle {
-/*background:transparent url(../images/arrowDownUp.png) no-repeat left -20px;*/
-    cursor: pointer;
-}
-
-.sectionSeperator {
-    color: #000;
-    text-transform: capitalize;
-    font-size: 12px;
-
-    background-image: -webkit-gradient( linear, left top, left bottom, from( #ffffff ), to( #dddddd ) ); /* mozilla - FF3.6+ */
-    background-image: -moz-linear-gradient( top, #ffffff 0%, #dddddd 100% ); /* IE 5.5 - 7 */
-    filter: progid:DXImageTransform.Microsoft.gradient( gradientType = 0, startColorStr = #ffffff, endColorStr = #dddddd ); /* IE8 */
-    -ms-filter: progid: DXImageTransform . Microsoft . gradient( gradientType = 0, startColorStr = #ffffff, endColoStr = #dddddd );
-
-    -moz-border-radius: 3px;
-    border-radius: 3px;
-    border: solid 1px #888888;
-    padding: 5px 10px;
-    width: auto;
-
-    -moz-box-shadow: 3px 3px 2px #ddd;
-    -webkit-box-shadow: 3px 3px 2px #ddd;
-    box-shadow: 3px 3px 2px #ddd;
-    margin-bottom: 10px;
-    clear: both;
-}
-
-.sectionSeperator img {
-    margin-left: 20px;
-}
-
-.contentHidden {
-/*background:transparent url(../images/arrowDownUp.png) no-repeat left 5px !important; */
-    color: #fff;
-    background-image: -webkit-gradient( linear, left top, left bottom, from( #555555 ), to( #dddddd ) ); /* mozilla - FF3.6+ */
-    background-image: -moz-linear-gradient( top, #888888 0%, #eeeeee 100% ); /* IE 5.5 - 7 */
-    filter: progid:DXImageTransform.Microsoft.gradient( gradientType = 0, startColorStr = #555555, endColorStr = #dddddd ); /* IE8 */
-    -ms-filter: progid: DXImageTransform . Microsoft . gradient( gradientType = 0, startColorStr = #555555, endColoStr = #dddddd );
-}
-
-.sectionSub {
-    padding-left: 10px;
-    padding-bottom: 10px;
-    padding-top: 10px;
-}
-.sectionSubForm{
-    border: solid 1px #b8c9d0;
-}
-.sectionSub table.styledLeft{
-    margin-left:0px !important;
-}
-.sectionHelp {
-    padding-bottom: 10px;
-    font-style: italic;
-    background: transparent url( ../images/help-small-icon.png ) no-repeat left top;
-    text-indent: 20px;
-}
-
-.button, .button:visited {
-    font-family: Arial;
-  color: #000000;
-  font-size: 13px;
-  padding: 2px;
-  text-decoration: none;
-  -webkit-border-radius: 3px;
-  -moz-border-radius: 3px;
-
-  text-shadow: 1px 1px 3px #ffffff;
-  border: solid #9D9FA1 1px;
-  background: -webkit-gradient(linear, 0 0, 0 100%, from(#f7f7f7), to(#cccccc));
-  background: -moz-linear-gradient(top, #f7f7f7, #cccccc);
-  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#f7f7f7, endColorStr=#cccccc);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#f7f7f7, endColorStr=#cccccc);
-  display:inline-block; /* IE is so silly */
-    position: relative;
-    cursor: pointer;
-}
-
-.button:hover, .button:focus {
-     background: #ededed;
-}
-input.button[disabled='disabled'] ,button.button[disabled='disabled'],input.button[disabled=''] ,button.button[disabled=''] {
-    color:#888;
-     background: #ededed;
-}
-.txtbox-small {
-    width: 20px;
-}
-
-.txtbox-med {
-    width: 100px;
-}
-
-.txtbox-big {
-    width: 200px;
-}
-
-.expandedTextarea {
-    width: 99%;
-    height: 150px;
-}
-.sectionInputs{
-    background-color:#eee;
-    border:solid 1px #999;
-    padding:3px 0px 3px 3px;
-}
-.sectionInputs div.sectionHelp{
-    margin:10px 5px 0px 5px;    
-}
-ul.items{
-    margin:0px;
-    list-style-type:none;
-}
-ul.items li{
-    padding:5px 0px;
-}
-
-/* Tempory overrides */
-.ui-tabs-nav li a{
-    background:none;
-}
-/* -- Form headdings --*/
-.heading_A  {
-    font-size:12px;font-weight: bold;border-bottom: solid 1px #ccc;line-height: 20px;
-}
-.heading_B  {
-    font-size:12px;font-weight: bold;line-height: 20px;
-}
-.heading_C  {
-    color:#888;font-size:12px;font-weight: bold;line-height: 20px;
-}
-
-/* Icons */
-a.icon-a{
-    cursor:pointer;
-    color:#2F7ABD;
-    line-height:25px;
-}
-[class^="icon-"], [class*=" icon-"] {
-  display: inline-block;
-  line-height: 14px;
-  vertical-align: text-top;
-  background-repeat: no-repeat;
-  margin-right:5px;
-  *margin-right: .3em;
-}
-[class^="icon-"]:last-child, [class*=" icon-"]:last-child {
-  *margin-left: 0;
-}
-
-.icon-edit { width: 16px; height: 16px; background:url(../images/mainIcons.png) no-repeat -0px -0px; }
-.icon-add { width: 16px; height: 16px; background:url(../images/mainIcons.png) no-repeat -0px -16px; }
-.icon-add-small { width: 12px; height: 12px; background:url(../images/mainIcons.png) no-repeat -0px -32px; }
-.icon-delete { width: 16px; height: 16px; background:url(../images/mainIcons.png) no-repeat -0px -44px; }
-
-

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
deleted file mode 100644
index 5b5dab2..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png and /dev/null differ

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

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
deleted file mode 100644
index ad3d634..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
deleted file mode 100644
index 4443fdc..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_222222_256x240.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_222222_256x240.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_222222_256x240.png
deleted file mode 100644
index b273ff1..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_222222_256x240.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_2e83ff_256x240.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_2e83ff_256x240.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_2e83ff_256x240.png
deleted file mode 100644
index 09d1cdc..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_2e83ff_256x240.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_454545_256x240.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_454545_256x240.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_454545_256x240.png
deleted file mode 100644
index 59bd45b..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_454545_256x240.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_888888_256x240.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_888888_256x240.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_888888_256x240.png
deleted file mode 100644
index 6d02426..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_888888_256x240.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0ab7c4aa/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_cd0a0a_256x240.png
----------------------------------------------------------------------
diff --git a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_cd0a0a_256x240.png b/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_cd0a0a_256x240.png
deleted file mode 100644
index 2ab019b..0000000
Binary files a/products/stratos2/cloud_controller/1.0.0/modules/distribution/src/site/xdoc/admin/css/smoothness/images/ui-icons_cd0a0a_256x240.png and /dev/null differ

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

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

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

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