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/19 12:59:49 UTC

[06/51] [partial] applied 0001-Refactor-stratos-controller-product.patch

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/29f27ad9/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/index.jsp
----------------------------------------------------------------------
diff --git a/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/index.jsp b/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/index.jsp
new file mode 100644
index 0000000..c2b3936
--- /dev/null
+++ b/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/index.jsp
@@ -0,0 +1,243 @@
+<!--
+~ Copyright (c) 2005-2010, 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.
+-->
+<%@ page import="org.wso2.stratos.manager.dashboard.ui.clients.CloudManagerServiceClient" %>
+<%@ page import="org.wso2.carbon.stratos.manager.dashboard.stub.xsd.CloudService" %>
+<%@ page import="org.wso2.carbon.registry.core.exceptions.RegistryException" %>
+<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
+<%@ taglib uri="http://wso2.org/projects/carbon/taglibs/carbontags.jar" prefix="carbon" %>
+<%@ page import="org.wso2.carbon.ui.CarbonUIMessage" %>
+<%@ page import="org.wso2.carbon.ui.CarbonUIUtil" %>
+<%@ page import="org.wso2.carbon.account.mgt.ui.clients.AccountMgtClient" %>
+<%@ page import="org.wso2.carbon.utils.multitenancy.MultitenantConstants" %>
+<%@ page import="org.wso2.stratos.manager.dashboard.ui.utils.Util" %>
+
+<jsp:include page="../registry_common/registry_common-i18n-ajaxprocessor.jsp"/>
+<script type="text/javascript" src="../registry_common/js/registry_validation.js"></script>
+<script type="text/javascript" src="../registry_common/js/registry_common.js"></script>
+<script type="text/javascript" src="../tenant-dashboard/js/dashboard.js"></script>
+<link href="../tenant-dashboard/css/dashboard.css" rel="stylesheet" type="text/css" media="all"/>
+<script type="text/javascript" src="../tenant-dashboard/js/configurations.js"></script>
+
+
+
+<%
+
+    CloudManagerServiceClient cloudManagerClient;
+    CloudService[] cloudServices = null;
+    String error = "Error in getting the available and active service details.";
+    try {
+        cloudManagerClient = new CloudManagerServiceClient(request, config, session);
+        cloudServices = cloudManagerClient.retrieveCloudServiceInfo();
+    } catch (Exception e) {
+        request.setAttribute(CarbonUIMessage.ID, new CarbonUIMessage(error, CarbonUIMessage.ERROR, e));
+%>
+<jsp:include page="../admin/error.jsp"/>
+<%
+        return;
+    }
+%>
+<fmt:bundle basename="org.wso2.stratos.manager.dashboard.ui.i18n.Resources">
+    <carbon:jsi18n
+            resourceBundle="org.wso2.stratos.manager.dashboard.ui.i18n.JSResources"
+            request="<%=request%>" namespace="org.wso2.stratos.manager.dashboard.ui"/>
+
+    <div id="middle">
+        <h2><fmt:message key="cloud.services"/></h2>
+        <%
+            try {
+                // if the account management permission there, we are showing the message to validate email address
+                if (CarbonUIUtil.isUserAuthorized(request, "/permission/admin/configure/account")) {
+                    try {
+                        AccountMgtClient client = new AccountMgtClient(config, session);
+                        boolean isEmailValidated = client.isEmailValidated();
+
+                        if (!isEmailValidated) {
+        %>
+
+        <div class="green-note">Your organization has not validated the contact email address
+            yet. Please validate it following
+            the instructions in the <a href="../account-mgt/account_mgt.jsp">Account
+                Management</a> page (Accessible from Configure-&gt;Account menu).
+        </div>
+        <%
+            }else{
+			%>
+			<div class="green-note"></div>
+			<%
+			}
+        } catch (Exception e) {
+            request.setAttribute(CarbonUIMessage.ID, new CarbonUIMessage(error, error, null));
+        %>
+        <jsp:include page="../admin/error.jsp?<%=error%>"/>
+        <%
+                    return;
+                }
+            }
+            String tenantDomain;
+            if (session.getAttribute(MultitenantConstants.TENANT_DOMAIN) != null) {
+                tenantDomain = (String) session.getAttribute(MultitenantConstants.TENANT_DOMAIN);
+            } else {
+                // user is not logged in or just logged out, but still they are inside url own to the domain
+                tenantDomain = (String) request.getAttribute(MultitenantConstants.TENANT_DOMAIN);
+            }
+            String linkSuffix = "";
+            if (tenantDomain != null) {
+                linkSuffix = "/" + MultitenantConstants.TENANT_AWARE_URL_PREFIX + "/" + tenantDomain;
+            }
+            %> <script type="text/javascript">
+            linkSuffix = '<%=linkSuffix%>';
+           </script> <%
+	  
+            for (CloudService cloudService : cloudServices) {
+                String name = cloudService.getName();
+                String projectPageUrl = cloudService.getProductPageURL();
+                String link = cloudService.getLink() + linkSuffix;
+                if (name.equals("WSO2 Stratos Application Server")) {
+        %>
+        <script type="text/javascript">
+            asUrl = '<%=link%>';
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Enterprise Service Bus")) {
+
+        %>
+        <script type="text/javascript">
+            esbUrl = '<%=link%>';
+        </script>
+        <%
+
+        } else if (name.equals("WSO2 Stratos Data Services Server")) {
+        %>
+        <script type="text/javascript">
+            dssUrl = '<%=link%>';
+
+        </script>
+        <%
+
+        } else if (name.equals("WSO2 Stratos Governance")) {
+
+        %>
+        <script type="text/javascript">
+            gregUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Identity")) {
+        %>
+        <script type="text/javascript">
+            isUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Business Process Server")) {
+        %>
+        <script type="text/javascript">
+            bpsUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Business Rules Server")) {
+        %>
+        <script type="text/javascript">
+            brsUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Mashup Server")) {
+        %>
+        <script type="text/javascript">
+            msUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Gadget Server")) {
+        %>
+        <script type="text/javascript">
+            gsUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Complex Event Processing Server")) {
+        %>
+        <script type="text/javascript">
+            cepUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Message Broker")) {
+        %>
+        <script type="text/javascript">
+            mbUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Business Activity Monitor")) {
+        %>
+        <script type="text/javascript">
+            bamUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else if (name.equals("WSO2 Stratos Cloud Gateway")) {
+        %>
+        <script type="text/javascript">
+            csgUrl = '<%=link%>';
+
+        </script>
+        <%
+        } else {
+        %>
+        <script type="text/javascript">
+            managerUrl = '<%=link%>';
+        </script>
+        <%
+                }
+            }
+        } catch (Exception e) {
+            request.setAttribute(CarbonUIMessage.ID, new CarbonUIMessage(error, error, null));
+        %>
+        <jsp:include page="../admin/error.jsp?<%=error%>"/>
+        <%
+                return;
+            }
+
+        %>
+
+        <div id="workArea">
+
+
+            <div id="dashboard">
+
+            </div>
+
+            <script type="text/javascript">
+
+                jQuery(document).ready(function() {
+                    jQuery('#dashboard').load('../../../../features-dashboard/tenant-dashboard/index.jsp');
+                });
+
+                var menuPanel = document.getElementById('menu-panel');
+                var menuSlider0 = document.getElementById('menu-panel-button0');
+                jQuery(menuPanel).hide();
+                jQuery(menuSlider0).removeClass('showToHidden');
+                jQuery(menuSlider0).addClass('hiddenToShow');
+                document.cookie = "menuPanel=none;path=/;expires=" + cookie_date.toGMTString();
+            </script>
+        </div>
+    </div>
+</fmt:bundle>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/29f27ad9/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/configurations.js
----------------------------------------------------------------------
diff --git a/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/configurations.js b/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/configurations.js
new file mode 100644
index 0000000..6a9d212
--- /dev/null
+++ b/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/configurations.js
@@ -0,0 +1,381 @@
+//service urls
+var managerUrl;
+var asUrl;
+var dssUrl;
+var esbUrl;
+var gregUrl;
+var msUrl;
+var gsUrl;
+var mbUrl;
+var cepUrl;
+var isUrl;
+var bpsUrl;
+var brsUrl;
+var bamUrl;
+var csgUrl;
+var linkSuffix;
+
+// array definitions to store service feature urls
+var managerFeaturesURL=new Array;
+var asFeaturesUrl = new Array;
+var dssFeaturesUrl = new Array;
+var esbFeaturesUrl = new Array;
+var gregFeaturesUrl = new Array;
+var msFeaturesUrl = new Array;
+var gsFeaturesUrl = new Array;
+var mbFeaturesUrl = new Array;
+var cepFeaturesUrl = new Array;
+var isFeaturesUrl = new Array;
+var bpsFeaturesUrl = new Array;
+var brsFeaturesUrl = new Array;
+var bamFeaturesUrl = new Array;
+var csgFeaturesUrl = new Array;
+
+
+// urls of features
+
+// Manager
+managerFeaturesURL[0]="/carbon/tenant-billing/past_invoice.jsp"; // link to billing component
+managerFeaturesURL[1]="/carbon/tenant-billing/docs/userguide.html"; // billing component docs
+managerFeaturesURL[2]="/carbon/tenant-usage/tenant_usage.jsp" ; // link to metering component
+managerFeaturesURL[3]="/carbon/tenant-usage/docs/userguide.html"
+managerFeaturesURL[4]="/carbon/account-mgt/account_mgt.jsp"
+managerFeaturesURL[5]="/carbon/account-mgt/docs/userguide.html"
+managerFeaturesURL[6]="/carbon/userstore/index.jsp"
+managerFeaturesURL[7]="/carbon/userstore/docs/userguide.html"
+//app server
+asFeaturesUrl[0]="/carbon/service-mgt/index.jsp";  // link to web service hosting
+asFeaturesUrl[1]="/carbon/service-mgt/docs/userguide.html"; //web service hosting docs
+asFeaturesUrl[2]="/carbon/webapp-mgt/upload.jsp";//web -app hosting
+asFeaturesUrl[3]="/carbon/webapp-mgt/docs/userguide.html";//web -app hosting docs
+asFeaturesUrl[4]="/carbon/tracer/index.jsp";//message tracing
+asFeaturesUrl[5]="/carbon/tracer/docs/userguide.html";//message tracing docs
+asFeaturesUrl[6]="/carbon/wsdl2code/index.jsp";//WSDL2Java Tool
+asFeaturesUrl[7]="/carbon/wsdl2code/docs/userguide.html";//WSDL2Java Tool docs
+asFeaturesUrl[8]="/carbon/java2wsdl/index.jsp";//Java2WSDL Tool
+asFeaturesUrl[9]="/carbon/java2wsdl/docs/userguide.html";//Java2WSDL Tool docs
+asFeaturesUrl[10]="/carbon/wsdl_validator/index.jsp";//WSDL Validator
+asFeaturesUrl[11]="/carbon/wsdl_validator/docs/userguide.html";//WSDL Validator docs
+asFeaturesUrl[12]="/carbon/modulemgt/index.jsp";//axis2 modules mgmnt
+asFeaturesUrl[13]="/carbon/modulemgt/docs/userguide.html";//axis2 modules mgmnt docs
+asFeaturesUrl[14]="/carbon/tryit/index.jsp";//Service testing
+asFeaturesUrl[15]="/carbon/tryit/docs/userguide.html";//service testing docs
+
+//bam server
+bamFeaturesUrl[0]="/carbon/bam-server-data/mediation_data.jsp";  // link to Real Time Mediation Monitoring
+bamFeaturesUrl[1]="/carbon/bam-server-data/docs/userguide.html";  // link to Real Time Mediation Monitoring docs
+bamFeaturesUrl[2]="/carbon/bam-server-data/mediation_analytics.jsp"; //link to Mediation Analysis
+bamFeaturesUrl[3]="/carbon/bam-server-data/docs/userguide.html"; //link to Mediation Analysis docs
+bamFeaturesUrl[4]="/carbon/bam-server-data/service_data.jsp";//link to Real time Service Monitoring
+bamFeaturesUrl[5]="/carbon/bam-server-data/docs/userguide.html";//link to Real time Service Monitoring docs
+bamFeaturesUrl[6]="";//link to Summary Generation
+bamFeaturesUrl[7]="";//link to Summary Generation
+bamFeaturesUrl[8]="/carbon/bam-server-data/service_stats.jsp";//link to Service Invocation Analysis
+bamFeaturesUrl[9]="/carbon/bam-server-data/docs/userguide.html";//link to Service Invocation Analysis docs
+bamFeaturesUrl[10]="/carbon/dashboard/index.jsp";//link to Dashboard
+bamFeaturesUrl[11]="/carbon/dashboard/docs/userguide.html";//link to Dashboard docs
+bamFeaturesUrl[12]="";//link to Activity Correlation and Monitoring
+bamFeaturesUrl[13]="";//link to Activity Correlation and Monitoring docs
+bamFeaturesUrl[14]="";//link to Message Collection and Archival
+bamFeaturesUrl[15]="";//link to Message Collection and Archival docs
+
+//bps server
+bpsFeaturesUrl[0]="";  // link to WS-BPEL 2.0 and BPELWS 1.1
+bpsFeaturesUrl[1]="/carbon/admin/docs/userguide.html";  // link to WS-BPEL 2.0 and BPELWS 1.1 docs
+bpsFeaturesUrl[2]="";  // link Secure Business Processes
+bpsFeaturesUrl[3]="/carbon/admin/docs/userguide.html";  // link Secure Business Processes docs
+bamFeaturesUrl[4]="";//link to Process Monitoring
+bamFeaturesUrl[5]="/carbon/admin/docs/userguide.html";//link to Process Monitoring docs
+bpsFeaturesUrl[6]=""; //link to Instance Data Cleanup
+bpsFeaturesUrl[7]="/carbon/admin/docs/userguide.html"; //link to Instance Data Cleanup docs
+bpsFeaturesUrl[8]=""; //link to BPEL Extensions
+bpsFeaturesUrl[9]="/carbon/admin/docs/userguide.html"; //link to BPEL Extensions docs
+bamFeaturesUrl[10]="";//link to Process Versioning
+bamFeaturesUrl[11]="/carbon/admin/docs/userguide.html";//link to Process Versioning docs
+
+//brs server
+brsFeaturesUrl[0]="/carbon/service-mgt/index.jsp";  // link to web service hosting support
+brsFeaturesUrl[1]="/carbon/service-mgt/docs/userguide.html"; //web service hosting docs
+brsFeaturesUrl[2]="/carbon/ruleservices/rule_service_wizard_step1.jsp";//Rule service creation support
+brsFeaturesUrl[3]="/carbon/ruleservices/docs/userguide.html";//Rule service creation support docs
+brsFeaturesUrl[4]="/carbon/resources/resource.jsp";//Registry as a Rule Repository
+brsFeaturesUrl[5]="/carbon/resources/docs/userguide.html";//Registry as a Rule Repository docs
+brsFeaturesUrl[6]="/carbon/tryit/index.jsp";//Service testing
+brsFeaturesUrl[7]="/carbon/tryit/docs/userguide.html";//service testing docs
+/*brsFeaturesUrl[8]="/carbon/tracer/index.jsp";//message tracing
+brsFeaturesUrl[9]="/carbon/tracer/docs/userguide.html";//message tracing docs
+brsFeaturesUrl[10]="/carbon/wsdl2code/index.jsp";//WSDL2Java Tool
+brsFeaturesUrl[11]="/carbon/wsdl2code/docs/userguide.html";//WSDL2Java Tool docs
+brsFeaturesUrl[12]="/carbon/java2wsdl/index.jsp";//Java2WSDL Tool
+brsFeaturesUrl[13]="/carbon/java2wsdl/docs/userguide.html";//Java2WSDL Tool docs
+brsFeaturesUrl[14]="/carbon/wsdl_validator/index.jsp";//WSDL Validator
+brsFeaturesUrl[15]="/carbon/wsdl_validator/docs/userguide.html";//WSDL Validator docs */
+
+//cep server
+cepFeaturesUrl[0]="/carbon/CEP/cep_queries.jsp"; // link to CEP buckets list
+cepFeaturesUrl[1]="/carbon/CEP/docs/userguide.html"; // link to CEP buckets doc
+cepFeaturesUrl[2]= "/carbon/resources/resource.jsp?region=region3&item=resource_browser_menu&viewType=std&path=/_system/governance/message" ; // path to registry stored message boxes
+cepFeaturesUrl[3]="/carbon/messagebox/docs/userguide.html"; // message box docs
+
+//dss server
+dssFeaturesUrl[0]="/carbon/service-mgt/index.jsp";  // link to Data Service Hosting
+dssFeaturesUrl[1]="/carbon/service-mgt/docs/userguide.html"; //Data Service Hosting docs
+dssFeaturesUrl[2]="/carbon/ds/scriptAddSource.jsp";//Data as a Service
+dssFeaturesUrl[3]="/carbon/ds/docs/userguide.html";//Data as a Service docs
+dssFeaturesUrl[4]="/carbon/tryit/index.jsp";//Service testing
+dssFeaturesUrl[5]="/carbon/tryit/docs/userguide.html";//service testing docs
+dssFeaturesUrl[6]="/carbon/tracer/index.jsp";//message tracing
+dssFeaturesUrl[7]="/carbon/tracer/docs/userguide.html";//message tracing docs
+dssFeaturesUrl[8]="/carbon/adminconsole/databases.jsp";//DB Explorer
+dssFeaturesUrl[9]="/carbon/adminconsole/docs/userguide.html";//DB Explorer docs
+/*dssFeaturesUrl[6]="/carbon/wsdl2code/index.jsp";//WSDL2Java Tool
+dssFeaturesUrl[7]="/carbon/wsdl2code/docs/userguide.html";//WSDL2Java Tool docs
+dssFeaturesUrl[8]="/carbon/java2wsdl/index.jsp";//Java2WSDL Tool
+dssFeaturesUrl[9]="/carbon/java2wsdl/docs/userguide.html";//Java2WSDL Tool docs
+dssFeaturesUrl[10]="/carbon/wsdl_validator/index.jsp";//WSDL Validator
+dssFeaturesUrl[11]="/carbon/wsdl_validator/docs/userguide.html";//WSDL Validator docs */
+
+//esb server
+esbFeaturesUrl[0]="/carbon/proxyservices/templates.jsp";  // Proxy Service
+esbFeaturesUrl[1]="/carbon/proxyservices/docs/userguide.html"; //Proxy Service docs
+esbFeaturesUrl[2]="/carbon/sequences/list_sequences.jsp";//Sequence
+esbFeaturesUrl[3]="/carbon/sequences/docs/userguide.html";//Sequence docs
+esbFeaturesUrl[4]="/carbon/endpoints/index.jsp";//Endpoint
+esbFeaturesUrl[5]="/carbon/endpoints/docs/userguide.html";//Endpoint docs
+esbFeaturesUrl[6]="/carbon/task/index.jsp";//Scheduled Tasks
+esbFeaturesUrl[7]="/carbon/task/docs/userguide.html";//Scheduled Tasks docs
+esbFeaturesUrl[8]="/carbon/message_processor/index.jsp";//Store and Forward
+esbFeaturesUrl[9]="/carbon/message_processor/docs/userguide.html";//Store and Forward docs
+esbFeaturesUrl[10]="/carbon/executors/list_executors.jsp";//Priority Execution
+esbFeaturesUrl[11]="/carbon/executors/docs/userguide.html";//Priority Execution docs
+esbFeaturesUrl[12]="/carbon/tryit/index.jsp";//Service testing
+esbFeaturesUrl[13]="/carbon/tryit/docs/userguide.html";//service testing docs
+esbFeaturesUrl[14]="/carbon/tracer/index.jsp";//message tracing
+esbFeaturesUrl[15]="/carbon/tracer/docs/userguide.html";//message tracing docs
+
+//greg server
+gregFeaturesUrl[0]="//carbon/services/services.jsp";  // Service
+gregFeaturesUrl[1]="/carbon/services/docs/userguide.html"; //Service docs
+gregFeaturesUrl[2]="/carbon/wsdl/wsdl.jsp";//WSDL
+gregFeaturesUrl[3]="/carbon/wsdl/docs/userguide.html";//WSDL docs
+gregFeaturesUrl[4]="/carbon/schema/schema.jsp";//Schema
+gregFeaturesUrl[5]="/carbon/schema/docs/userguide.html";//Schema docs
+gregFeaturesUrl[6]="/carbon/policy/policy.jsp";//Policy
+gregFeaturesUrl[7]="/carbon/policy/docs/userguide.html";//Policy docs
+gregFeaturesUrl[8]="/carbon/search/advancedSearch.jsp";//Search
+gregFeaturesUrl[9]="/carbon/search/docs/userguide.html";//Search docs
+gregFeaturesUrl[10]="/carbon/activities/activity.jsp";//Activities
+gregFeaturesUrl[11]="/carbon/activities/docs/userguide.html";//Activities docs
+gregFeaturesUrl[12]="/carbon/notifications/notifications.jsp";//Notifications
+gregFeaturesUrl[13]="/carbon/notifications/docs/userguide.html";//Notifications docs
+gregFeaturesUrl[14]="/carbon/extensions/add_extensions.jsp";//Extensions
+gregFeaturesUrl[15]="/carbon/extensions/docs/userguide.html";//Extensions docs
+
+//gs server
+gsFeaturesUrl[0]="";  // Enterprise Information Portal
+gsFeaturesUrl[1]=""; //Enterprise Information Portal docs
+gsFeaturesUrl[2]="";//Easy User Options
+gsFeaturesUrl[3]="";//Easy User Options docs
+gsFeaturesUrl[4]="";//Author Gadgets
+gsFeaturesUrl[5]="";//Author Gadgets docs
+gsFeaturesUrl[6]="";//Client-side Gadgets
+gsFeaturesUrl[7]="";//Client-side Gadgets docs
+gsFeaturesUrl[8]="";//Enterprise Gadget Repository
+gsFeaturesUrl[9]="";//Enterprise Gadget Repository docs
+gsFeaturesUrl[10]="";//Anonymous Mode
+gsFeaturesUrl[11]="";//Anonymous Mode docs
+gsFeaturesUrl[12]="";//Secure Sign-in Options
+gsFeaturesUrl[13]="";//Secure Sign-in Options docs
+gsFeaturesUrl[14]="";//Extensions Management Console
+gsFeaturesUrl[15]="";//Extensions Management Console docs
+
+//is server
+isFeaturesUrl[0]="/carbon/userprofile/index.jsp";  //User Profile
+isFeaturesUrl[1]="/carbon/userprofile/docs/userguide.html"; //User Profile docs
+isFeaturesUrl[2]="/carbon/identity-provider/index.jsp";//OpenID
+isFeaturesUrl[3]="/carbon/identity-provider/docs/userguide.html";//OpenID docs
+isFeaturesUrl[4]="/carbon/identity-provider/index.jsp";//Information Card
+isFeaturesUrl[5]="/carbon/identity-provider/docs/userguide.html";//Information Card docs
+isFeaturesUrl[6]="/carbon/sso-saml/manage_service_providers.jsp";//SAML 2.0 Single Sign-On
+isFeaturesUrl[7]="/carbon/sso-saml/docs/userguide.html";//SAML 2.0 Single Sign-On docs
+isFeaturesUrl[8]="/carbon/multi-factor/xmpp-config.jsp";//Multifactor Authentication
+isFeaturesUrl[9]="/carbon/multi-factor/docs/userguide.html";//Multifactor Authentication docs
+isFeaturesUrl[10]="/carbon/userstore/index.jsp";//Users and Roles
+isFeaturesUrl[11]="/carbon/userstore/docs/userguide.html";//Users and Roles docs
+isFeaturesUrl[12]="/carbon/identity-trusted-relying-parties/add-trusted-rp.jsp";//Relying Partie
+isFeaturesUrl[13]="/carbon/identity-trusted-relying-parties/docs/userguide.html";//Relying Partie docs
+isFeaturesUrl[14]="/carbon/keystoremgt/keystore-mgt.jsp";//Key Stores
+isFeaturesUrl[15]="/carbon/keystoremgt/docs/userguide.html";//Key Stores docs
+
+//mb server
+mbFeaturesUrl[0]="";  //Publish/Subscribe to Topics
+mbFeaturesUrl[1]=""; //Publish/Subscribe to Topics docs
+mbFeaturesUrl[2]="";//AMQP
+mbFeaturesUrl[3]="";//AMQP docs
+mbFeaturesUrl[4]="";//Topic Authorization
+mbFeaturesUrl[5]="";//Topic Authorization docs
+mbFeaturesUrl[6]="";//Manage topics and queues permissions
+mbFeaturesUrl[7]="";//Manage topics and queues permissions docs
+mbFeaturesUrl[8]="";//SQS support
+mbFeaturesUrl[9]="";//SQS support docs
+mbFeaturesUrl[10]="";//User based authorization for queues
+mbFeaturesUrl[11]="";//User based authorization for queues docs
+mbFeaturesUrl[12]="";//Manage message boxes
+mbFeaturesUrl[13]="";//Manage message boxes docs
+mbFeaturesUrl[14]="";//Message box as event sink
+mbFeaturesUrl[15]="";//Message box as event sink docs
+
+//ms server
+msFeaturesUrl[0]="/carbon/js_scraper/index.jsp";  //Scrape the Web
+msFeaturesUrl[1]="/carbon/js_scraper/docs/userguide.html"; //Scrape the Web docs
+msFeaturesUrl[2]="/carbon/js_service/newMashup.jsp";//Compose and Expose
+msFeaturesUrl[3]="/carbon/js_service/docs/userguide.html";//Compose and Expose docs
+msFeaturesUrl[4]="/carbon/task/index.jsp";//Schedule Tasks
+msFeaturesUrl[5]="/carbon/task/docs/userguide.html";//Schedule Tasks docs
+msFeaturesUrl[6]="";//Javascript Stubs
+msFeaturesUrl[7]="";//Javascript Stubs docs
+msFeaturesUrl[8]="/carbon/modulemgt/index.jsp";//Modules
+msFeaturesUrl[9]="/carbon/modulemgt/docs/userguide.html";//Modules docs
+msFeaturesUrl[10]="/carbon/tracer/index.jsp";//Message Tracing
+msFeaturesUrl[11]="/carbon/tracer/docs/userguide.html";//Message Tracing docs
+/*msFeaturesUrl[12]="";//Caching & Throttling
+msFeaturesUrl[13]="";//Caching & Throttling docs
+msFeaturesUrl[14]="";//service testing
+msFeaturesUrl[15]="";//service testing docs */
+
+
+//csg server
+csgFeaturesUrl[0]="/carbon/service-mgt/index.jsp";  
+csgFeaturesUrl[1]="/carbon/service-mgt/docs/userguide.html"; 
+
+// functions to generate urls of features upon onclick
+
+ function generateManagerFeatureUrl(which){
+	var featureUrl=managerFeaturesURL[which];
+	return window.open(featureUrl,'_self',false);
+ }
+
+
+function generateAsFeatureUrl(which){
+	var featureUrl=window.asUrl + asFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+
+function generateBamFeatureUrl(which){
+	var featureUrl=window.bamUrl + bamFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+
+function generateBpsFeatureUrl(which){
+	var featureUrl=window.bpsUrl + bpsFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+
+function generateBrsFeatureUrl(which){
+	var featureUrl=window.brsUrl + brsFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateCepFeatureUrl(which){
+	var featureUrl=window.cepUrl + cepFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateDssFeatureUrl(which){
+	var featureUrl=window.dssUrl + dssFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateEsbFeatureUrl(which){
+	var featureUrl=window.esbUrl + esbFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateGregFeatureUrl(which){
+	var featureUrl=window.gregUrl + gregFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateGsFeatureUrl(which){
+	var featureUrl=window.gsUrl + gsFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateIsFeatureUrl(which){
+	var featureUrl=window.isUrl + isFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+
+function generateMbFeatureUrl(which){
+	var featureUrl=window.mbUrl + mbFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateMsFeatureUrl(which){
+	var featureUrl=window.msUrl + msFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+function generateCsgFeatureUrl(which){
+	var featureUrl=window.csgUrl + csgFeaturesUrl[which];
+	window.open(featureUrl);
+ }
+
+
+// functions to set the urls of services
+
+
+function gotoAppServer(){
+  window.open(asUrl,'_newtab')  ;
+}
+
+function gotoDss(){
+  window.open(dssUrl,'_newtab')  ;
+}
+
+function gotoEsb(){
+  window.open(esbUrl,'_newtab')  ;
+}
+
+
+function gotoMs(){
+  window.open(msUrl,'_newtab')  ;
+}
+
+function gotoIs(){
+  window.open(isUrl,'_newtab')  ;
+}
+
+function gotoGreg(){
+  window.open(gregUrl,'_newtab')  ;
+}
+
+function gotoGs(){
+  window.open(gsUrl,'_newtab')  ;
+}
+
+function gotoBam(){
+  window.open(bamUrl,'_newtab')  ;
+}
+
+
+function gotoBps(){
+  window.open(bpsUrl,'_newtab')  ;
+}
+
+
+function gotoBrs(){
+  window.open(brsUrl,'_newtab')  ;
+}
+
+function gotoCep(){
+  window.open(cepUrl,'_newtab')  ;
+}
+
+function gotoMb(){
+  window.open(mbUrl,'_newtab')  ;
+}
+
+function gotoCsg(){
+  window.open(csgUrl,'_newtab')  ;
+}
+
+
+
+
+
+
+
+

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/29f27ad9/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/dashboard.js
----------------------------------------------------------------------
diff --git a/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/dashboard.js b/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/dashboard.js
new file mode 100644
index 0000000..e294f8c
--- /dev/null
+++ b/products/stratos_controller/modules/dashboard/src/main/resources/web/tenant-dashboard/js/dashboard.js
@@ -0,0 +1,12 @@
+function execOnPageLoad() {
+    // currently not used
+}
+
+function onChangeServiceSubscription() {
+    sessionAwareFunction(function() {
+        
+        var cloudServiceForm = document.getElementById("cloudService");
+        cloudServiceForm.submit();
+        
+    }, org_wso2_stratos_manager_dashboard_ui_jsi18n["session.timed.out"]);
+}

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/29f27ad9/products/stratos_controller/modules/distribution/INSTALL.txt
----------------------------------------------------------------------
diff --git a/products/stratos_controller/modules/distribution/INSTALL.txt b/products/stratos_controller/modules/distribution/INSTALL.txt
new file mode 100755
index 0000000..461c63e
--- /dev/null
+++ b/products/stratos_controller/modules/distribution/INSTALL.txt
@@ -0,0 +1,61 @@
+Installing  WSO2 Stratos Controller (SC) 1.0.1
+===============================================
+
+Standalone Mode
+===============
+1. The directory containing this INSTALL file will be the root and it will be
+   treated as Carbon home directory and let it be CARBON_HOME.
+
+2. All the shell scripts and .bat files are available in CARBON_HOME/bin directory.
+
+3. To start SC one can use either wso2server.sh or daemon.sh in all *nix
+   system & wso2server.bat file on Windows operating systems.
+
+4. Either of the following commands can be used to start Stratos-Manager
+      i)  ./wso2server.sh {console|start|stop|restart|status|dump|version}
+    ii)  wso2server.bat {start|stop|version}
+
+            Usage: wso2server.sh [command] [system-properties]
+
+            command:
+                --debug <port> 	Start the server in remote debugging mode.
+                        port: The remote debugging port.
+                --start		Start Carbon as a Unix daemon in the background
+                --stop		Stop the Carbon Unix daemon
+                --restart	Restart the Carbon Unix daemon
+                --cleanRegistry	Clean registry space. [CAUTION] All Registry data will be lost.
+                --version	What version of the product are you running?
+
+            system-properties:
+                -DhttpPort=<httpPort>		Overrides the HTTP port defined in the catalina-server.xml file
+                -DhttpsPort=<httpsPort>		Overrides the HTTPS port defined in the catalina-server.xml file
+                -DosgiConsole=[port]		Start Carbon with Equinox OSGi console.
+                                            If the optional 'port' parameter is provided, a telnet port will be opened
+                -DosgiDebugOptions=[options-file]
+                                            Start Carbon with OSGi debugging enabled.
+                                            If the optional 'options-file is provided, the OSGi debug options will be loaded from it.
+                -Dsetup				        Clean the Registry & other configuration, recreate DB, re-populate the configuration, and start Carbon
+                -DserverRoles=<roles>		A comma separated list of roles. Used in deploying cApps
+                -Dcarbon.use.registry.repo	Use registry based repository.
+                -DdisableHttpLog		    Disable HTTP access logging
+                -DapplyPatches			    Use this system property when there are patches to be applied/reverted to/from the system.
+                                            Drop the patches to $CARBON_HOME/repository/componenets/patches directory and restart the system with this property.
+                                            When you want to revert a patch, delete it from the patches directory and restart the system with this property
+                -DworkerNode=true			This is required in clustered setups with master and worker nodes, not applicable for Stratos Controller.
+
+
+
+System Requirements
+===================
+1. Minimum memory - 1 GB
+2. Processor      - Pentium 800MHz or equivalent at minimum
+3. JDK - 1.6.x (1.6.0_24 onwards recommended for production)
+4. The Management Console requires you to enable Javascript of the Web browser,
+   with MS IE 6 and 7. In addition to JavaScript, ActiveX should also be enabled
+   with IE. This can be achieved by setting your security level to
+   medium or lower.
+   NOTE:
+     On Windows Server 2003, it is not allowed to go below the medium security
+     level in Internet Explorer 6.x and the default medium security setting with
+     IE does not allow sufficient level of JS or ActiveX enablement for the
+     management console to run.

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/29f27ad9/products/stratos_controller/modules/distribution/LICENSE.txt
----------------------------------------------------------------------
diff --git a/products/stratos_controller/modules/distribution/LICENSE.txt b/products/stratos_controller/modules/distribution/LICENSE.txt
new file mode 100755
index 0000000..79ff255
--- /dev/null
+++ b/products/stratos_controller/modules/distribution/LICENSE.txt
@@ -0,0 +1,488 @@
+
+This product is licensed by WSO2 Inc. under Apache License 2.0. The license
+can be downloaded from the following locations:
+	http://www.apache.org/licenses/LICENSE-2.0.html
+	http://www.apache.org/licenses/LICENSE-2.0.txt
+
+This product also contains software under different licenses. This table below
+all the contained libraries (jar files) and the license under which they are 
+provided to you.
+
+At the bottom of this file is a table that shows what each license indicated
+below is and where the actual text of the license can be found.
+
+Name                                                                            Type           License   
+---------------------------------------------------------------------------------------------------------
+abdera_1.0.0.wso2v3.jar                                                         bundle         apache2   
+addressing-1.6.1-wso2v9.mar                                                     bundle         apache2   
+ajaxtags_1.3.0.beta-rc7-wso2v1.jar                                              bundle         apache2   
+andes-client_0.13.0.wso2v6.jar                                                  bundle         apache2   
+annogen_0.1.0.wso2v1.jar                                                        bundle         apache2   
+antlr-runtime_3.2.0.wso2v1.jar                                                  bundle         bsd       
+antlr_2.7.7.wso2v1.jar                                                          bundle         bsd       
+antlr_3.2.0.wso2v1.jar                                                          bundle         bsd       
+ant_1.7.0.wso2v1.jar                                                            bundle         apache2   
+apache-cassandra_1.1.3.wso2v2.jar                                               bundle         apache2   
+apache-zookeeper_3.3.6.wso2v1.jar                                               bundle         apache2   
+atomikos_3.8.0.wso2v1.jar                                                       bundle         apache2   
+authenticator_0.7.0.wso2v1.jar                                                  bundle         apache2   
+axiom_1.2.11.wso2v4.jar                                                         bundle         apache2   
+axis2-json_1.6.1.wso2v9.jar                                                     bundle         apache2   
+axis2-transport-jms_1.1.0.wso2v7.jar                                            bundle         apache2   
+axis2_1.6.1.wso2v9.jar                                                          bundle         apache2   
+axis_1.4.0.wso2v1.jar                                                           bundle         apache2   
+backport-util-concurrent_3.1.0.wso2v1.jar                                       bundle         public    
+batik-anim-1.7.jar                                                              jarinbundle    apache2   
+batik-awt-util-1.7.jar                                                          jarinbundle    apache2   
+batik-bridge-1.7.jar                                                            jarinbundle    apache2   
+batik-codec-1.7.jar                                                             jarinbundle    apache2   
+batik-css-1.7.jar                                                               jarinbundle    apache2   
+batik-dom-1.7.jar                                                               jarinbundle    apache2   
+batik-ext-1.7.jar                                                               jarinbundle    apache2   
+batik-extension-1.7.jar                                                         jarinbundle    apache2   
+batik-gui-util-1.7.jar                                                          jarinbundle    apache2   
+batik-gvt-1.7.jar                                                               jarinbundle    apache2   
+batik-js-1.7.jar                                                                jarinbundle    apache2   
+batik-parser-1.7.jar                                                            jarinbundle    apache2   
+batik-script-1.7.jar                                                            jarinbundle    apache2   
+batik-slideshow-1.7.jar                                                         jarinbundle    apache2   
+batik-svg-dom-1.7.jar                                                           jarinbundle    apache2   
+batik-svggen-1.7.jar                                                            jarinbundle    apache2   
+batik-swing-1.7.jar                                                             jarinbundle    apache2   
+batik-transcoder-1.7.jar                                                        jarinbundle    apache2   
+batik-util-1.7.jar                                                              jarinbundle    apache2   
+batik-xml-1.7.jar                                                               jarinbundle    apache2   
+batik_1.7.0.wso2v1.jar                                                          bundle         apache2   
+bcprov-jdk15-132.jar                                                            jarinbundle    bouncy    
+bcprov-jdk15-132.jar                                                            jar            bouncy    
+bcprov-jdk15.jar                                                                jar            mit       
+com.google.gson_2.1.0.jar                                                       bundle         apache2   
+commons-beanutils-1.7.0.jar                                                     jarinbundle    apache2   
+commons-beanutils-1.8.0.jar                                                     jarinbundle    apache2   
+commons-beanutils_1.8.0.wso2v1.jar                                              bundle         apache2   
+commons-codec_1.4.0.wso2v1.jar                                                  bundle         apache2   
+commons-collections-3.2.0.wso2v1.jar                                            bundle         apache2   
+commons-collections_3.2.0.wso2v1.jar                                            bundle         apache2   
+commons-configuration_1.6.0.wso2v1.jar                                          bundle         apache2   
+commons-dbcp_1.4.0.wso2v1.jar                                                   bundle         apache2   
+commons-digester-1.8.1.jar                                                      jarinbundle    apache2   
+commons-digester-1.8.jar                                                        jarinbundle    apache2   
+commons-digester_1.8.1.wso2v1.jar                                               bundle         apache2   
+commons-discovery-0.2.jar                                                       jarinbundle    apache2   
+commons-fileupload_1.2.2.wso2v1.jar                                             bundle         apache2   
+commons-httpclient_3.1.0.wso2v2.jar                                             bundle         apache2   
+commons-io_2.0.0.wso2v2.jar                                                     bundle         apache2   
+commons-lang-2.6.0.wso2v1.jar                                                   bundle         apache2   
+commons-lang_2.6.0.wso2v1.jar                                                   bundle         apache2   
+commons-pool_1.5.6.wso2v1.jar                                                   bundle         apache2   
+compass_2.0.1.wso2v2.jar                                                        bundle         apache2   
+drools_5.2.1.wso2v1.jar                                                         bundle         apache2   
+ehcache_1.5.0.wso2v3.jar                                                        bundle         apache2   
+el-impl_2.2.0.wso2v1.jar                                                        bundle         cddl1     
+fop-0.94.jar                                                                    jarinbundle    apache2   
+geronimo-jms_1.1_spec-1.1.0.wso2v1.jar                                          bundle         apache2   
+geronimo-saaj_1.3_spec_1.0.0.wso2v3.jar                                         bundle         apache2   
+geronimo-stax-api_1.0_spec-1.0.1.wso2v2.jar                                     bundle         apache2   
+gitblit_1.2.0.wso2v1.jar                                                        bundle         apache2   
+guava_12.0.0.wso2v1.jar                                                         bundle         apache2   
+guice_3.0.0.wso2v1.jar                                                          bundle         apache2   
+h2-1.2.140-wso2v3.jar                                                           bundle         epl1      
+h2-database-engine_1.2.140.wso2v3.jar                                           bundle         epl1      
+hadoop-core_0.20.203.wso2v2.jar                                                 bundle         apache2   
+hector-core_1.1.0.wso2v1.jar                                                    bundle         mit       
+high-scale-lib_1.1.2.wso2v1.jar                                                 bundle         public    
+httpclient-4.1.1-wso2v1.jar                                                     bundle         apache2   
+httpclient_4.1.1.wso2v1.jar                                                     bundle         apache2   
+httpcore_4.1.0.wso2v1.jar                                                       bundle         apache2   
+httpcore_4.2.3.wso2v1.jar                                                       bundle         apache2   
+infinispan-core_5.1.2.wso2v1.jar                                                bundle         lgpl2     
+itext-2.1.7.jar                                                                 jarinbundle    mpl10     
+itext_2.1.7.wso2v1.jar                                                          bundle         mpl11     
+janino_2.5.15.wso2v1.jar                                                        bundle         bsd       
+jasper-jdt_6.0.18.wso2v1.jar                                                    bundle         apache2   
+jasperreports_4.5.0.wso2v1.jar                                                  bundle         lgpl3     
+javasysmon_0.3.3.wso2v1.jar                                                     bundle         jsmon     
+javax.el_2.2.0.v201108011116.jar                                                bundle         cddl1     
+javax.servlet.jsp_2.2.0.v201112011158.jar                                       bundle         cddl1     
+javax.servlet_3.0.0.v201112011016.jar                                           bundle         cddl1     
+jaxb-api-2.2.6.jar                                                              jar            cddl+gpl  
+jaxb_2.2.5.wso2v1.jar                                                           bundle         cddl1     
+jboss-logging_3.1.0.wso2v1.jar                                                  bundle         lgpl2     
+jboss-transaction-api_1.1_spec-1.0.0.Final.jar                                  jar            lgpl2     
+jcommon-1.0.15.jar                                                              jarinbundle    lgpl2     
+jcommon_1.0.15.wso2v1.jar                                                       bundle         lgpl2     
+jdbc-pool_7.0.34.wso2v1.jar                                                     bundle         apache2   
+jdom_1.0.0.wso2v1.jar                                                           bundle         jdom      
+jericho-html-2.4.jar                                                            jarinbundle    epl1      
+jettison_1.1.0.wso2v1.jar                                                       bundle         apache2   
+jfreechart-1.0.13.jar                                                           jarinbundle    lgpl2     
+jfreechart_1.0.13.wso2v1.jar                                                    bundle         lgpl2     
+jgroups_3.0.6.wso2v1.jar                                                        bundle         lgpl2     
+joda-time_1.6.0.wso2v1.jar                                                      bundle         apache2   
+jsch_0.1.49.wso2v1.jar                                                          bundle         apache2   
+json_2.0.0.wso2v1.jar                                                           bundle         json      
+jsr107cache_1.1.0.wso2v3.jar                                                    bundle         apache2   
+jsr94_1.1.0.wso2v1.jar                                                          bundle         beajsr94  
+jstl_1.2.1.wso2v1.jar                                                           bundle         cddl1     
+jxl_2.6.8.wso2v1.jar                                                            bundle         lgpl2     
+kaptcha_2.3.0.wso2v1.jar                                                        bundle         apache2   
+libthrift_0.7.0.wso2v2.jar                                                      bundle         apache2   
+log4j-1.2.13.jar                                                                jar            apache2   
+marshalling_1.3.6.wso2v1.jar                                                    bundle         lgpl2     
+mvel2_2.1.0.wso2v1.jar                                                          bundle         apache2   
+neethi_2.0.4.wso2v4.jar                                                         bundle         apache2   
+nekohtml-1.9.7.jar                                                              jarinbundle    apache2   
+opencsv-1.8.jar                                                                 jarinbundle    apache2   
+opencsv_1.8.0.wso2v1.jar                                                        bundle         apache2   
+openid4java-nodeps_0.9.6.wso2v2.jar                                             bundle         apache2   
+opensaml-1.1.406.jar                                                            jarinbundle    apache2   
+opensaml-2.4.1.jar                                                              jarinbundle    apache2   
+opensaml2_2.4.1.wso2v1.jar                                                      bundle         apache2   
+openws-1.4.1.jar                                                                jarinbundle    apache2   
+openxri-client-1.2.0.jar                                                        jarinbundle    apache2   
+openxri-syntax-1.2.0.jar                                                        jarinbundle    apache2   
+org.apache.felix.gogo.command_0.8.0.v201108120515.jar                           bundle         apache2   
+org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar                           bundle         apache2   
+org.apache.felix.gogo.shell_0.8.0.v201110170705.jar                             bundle         apache2   
+org.apache.jasper.glassfish_2.2.2.v201205150955.jar                             bundle         apache2   
+org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar                         bundle         epl1      
+org.eclipse.core.expressions_3.4.401.v20120627-124442.jar                       bundle         epl1      
+org.eclipse.core.jobs_3.5.300.v20120622-204750.jar                              bundle         epl1      
+org.eclipse.core.runtime_3.8.0.v20120521-2346.jar                               bundle         epl1      
+org.eclipse.ecf.filetransfer_5.0.0.v20110531-2218.jar                           bundle         epl1      
+org.eclipse.ecf.identity_3.1.100.v20110531-2218.jar                             bundle         epl1      
+org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120319-0616.jar     bundle         epl1      
+org.eclipse.ecf.provider.filetransfer_3.2.0.v20110531-2218.jar                  bundle         epl1      
+org.eclipse.ecf_3.1.300.v20110531-2218.jar                                      bundle         epl1      
+org.eclipse.equinox.app_1.3.100.v20120522-1841.jar                              bundle         epl1      
+org.eclipse.equinox.common_3.6.100.v20120522-1841.jar                           bundle         epl1      
+org.eclipse.equinox.concurrent_1.0.300.v20120522-2049.jar                       bundle         epl1      
+org.eclipse.equinox.console_1.0.0.v20120522-1841.jar                            bundle         epl1      
+org.eclipse.equinox.ds_1.4.0.v20120522-1841.jar                                 bundle         epl1      
+org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120428-0117.jar           bundle         epl1      
+org.eclipse.equinox.frameworkadmin_2.0.100.v20120606-175127.jar                 bundle         epl1      
+org.eclipse.equinox.http.helper_1.1.0.wso2v1.jar                                bundle         epl1      
+org.eclipse.equinox.http.servlet_1.1.300.v20120522-1841.jar                     bundle         epl1      
+org.eclipse.equinox.jsp.jasper_1.0.400.v20120522-2049.jar                       bundle         epl1      
+org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar                           bundle         epl1      
+org.eclipse.equinox.p2.artifact.repository_1.1.100.v20110519.jar                bundle         epl1      
+org.eclipse.equinox.p2.console_1.0.300.v20110502-1955.jar                       bundle         epl1      
+org.eclipse.equinox.p2.core_2.1.0.v20110502-1955.jar                            bundle         epl1      
+org.eclipse.equinox.p2.director.app_1.0.300.v20110505.jar                       bundle         epl1      
+org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110502-1955.jar              bundle         epl1      
+org.eclipse.equinox.p2.director_2.1.0.v20110504-1715.jar                        bundle         epl1      
+org.eclipse.equinox.p2.engine_2.1.0.v20110511.jar                               bundle         epl1      
+org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110510.jar                  bundle         epl1      
+org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110510.jar                   bundle         epl1      
+org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110502-1955.jar                  bundle         epl1      
+org.eclipse.equinox.p2.metadata.repository_1.2.0.v20110511-1359.jar             bundle         epl1      
+org.eclipse.equinox.p2.metadata_2.1.0.v20110510.jar                             bundle         epl1      
+org.eclipse.equinox.p2.publisher_1.2.0.v20110511.jar                            bundle         epl1      
+org.eclipse.equinox.p2.repository.tools_2.0.100.v20110512-1320.jar              bundle         epl1      
+org.eclipse.equinox.p2.repository_2.1.0.v20110601.jar                           bundle         epl1      
+org.eclipse.equinox.p2.touchpoint.eclipse_2.1.0.v20110511-wso2v1.jar            bundle         epl1      
+org.eclipse.equinox.p2.touchpoint.natives_1.0.300.v20110502-1955.jar            bundle         epl1      
+org.eclipse.equinox.p2.transport.ecf_1.0.100.v20110902-0807.jar                 bundle         epl1      
+org.eclipse.equinox.p2.updatechecker_1.1.200.v20110502-1955.jar                 bundle         epl1      
+org.eclipse.equinox.p2.updatesite_1.0.300.v20110510.jar                         bundle         epl1      
+org.eclipse.equinox.preferences_3.5.0.v20120522-1841.jar                        bundle         epl1      
+org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar                         bundle         epl1      
+org.eclipse.equinox.security_1.1.100.v20120522-1841.jar                         bundle         epl1      
+org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar     bundle         epl1      
+org.eclipse.equinox.simpleconfigurator_1.0.301.v20120828-033635.jar             bundle         epl1      
+org.eclipse.equinox.util_1.0.400.v20120522-2049.jar                             bundle         epl1      
+org.eclipse.jgit_2.1.0.wso2v1.jar                                               bundle         apache2   
+org.eclipse.osgi.services_3.3.100.v20120522-1822.jar                            bundle         epl1      
+org.eclipse.osgi_3.8.1.v20120830-144521.jar                                     bundle         epl1      
+org.sat4j.core_2.3.0.v20110329.jar                                              bundle         epl1      
+org.sat4j.pb_2.3.0.v20110329.jar                                                bundle         epl1      
+org.wso2.carbon.account.mgt.stub_4.1.3.jar                                      bundle         apache2   
+org.wso2.carbon.account.mgt.ui_2.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.account.mgt_2.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.activation_2.1.2.jar                                            bundle         apache2   
+org.wso2.carbon.adc.mgt.stub_4.1.3.jar                                          bundle         apache2   
+org.wso2.carbon.adc.mgt_2.1.3.jar                                               bundle         apache2   
+org.wso2.carbon.adc.reponotification.service.stub_4.1.1.jar                     bundle         apache2   
+org.wso2.carbon.adc.topology.mgt_2.1.3.jar                                      bundle         apache2   
+org.wso2.carbon.addressing_4.1.0.jar                                            bundle         apache2   
+org.wso2.carbon.admin.mgt.stub_4.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.admin.mgt.ui_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.admin.mgt_4.1.0.jar                                             bundle         apache2   
+org.wso2.carbon.apache.jasper.fragment_4.1.0.jar                                bundle         apache2   
+org.wso2.carbon.application.deployer_4.1.0.jar                                  bundle         apache2   
+org.wso2.carbon.application.upload_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.authenticator.proxy_4.1.0.jar                                   bundle         apache2   
+org.wso2.carbon.authenticator.stub_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.base_4.1.0.jar                                                  bundle         apache2   
+org.wso2.carbon.billing.core_2.1.3.jar                                          bundle         apache2   
+org.wso2.carbon.billing.mgt.stub_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.billing.mgt.ui_2.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.billing.mgt_2.1.3.jar                                           bundle         apache2   
+org.wso2.carbon.bootstrap-4.1.0.jar                                             bundle         apache2   
+org.wso2.carbon.bridge-4.1.0.jar                                                bundle         apache2   
+org.wso2.carbon.business.messaging.paypal.integration.core_4.1.0.jar            bundle         apache2   
+org.wso2.carbon.caching.core_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.captcha.mgt_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.cartridge.mgt.ui_2.1.3.jar                                      bundle         apache2   
+org.wso2.carbon.cluster.mgt.core_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.coordination.common_4.1.0.jar                                   bundle         apache2   
+org.wso2.carbon.coordination.core_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.core.bootup.validator_4.1.0.jar                                 bundle         apache2   
+org.wso2.carbon.core.commons.stub_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.core.common_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.core.services_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.core_4.1.0.jar                                                  bundle         apache2   
+org.wso2.carbon.databridge.agent.thrift_4.1.0.jar                               bundle         apache2   
+org.wso2.carbon.databridge.commons.thrift_4.1.0.jar                             bundle         apache2   
+org.wso2.carbon.databridge.commons_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.email.sender_2.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.email.verification.stub_4.1.0.jar                               bundle         apache2   
+org.wso2.carbon.email.verification.ui_4.1.0.jar                                 bundle         apache2   
+org.wso2.carbon.email.verification_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.event.admin_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.event.client.stub-4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.event.client.stub_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.event.client_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.event.common_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.event.core_4.1.0.jar                                            bundle         apache2   
+org.wso2.carbon.event.ws_4.1.0.jar                                              bundle         apache2   
+org.wso2.carbon.feature.mgt.core_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.feature.mgt.services_4.1.0.jar                                  bundle         apache2   
+org.wso2.carbon.feature.mgt.stub_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.feature.mgt.ui_4.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.framework.exporter_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.google.analytics.ui_2.1.0.jar                                   bundle         apache2   
+org.wso2.carbon.http.bridge-4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.i18n_4.1.0.jar                                                  bundle         apache2   
+org.wso2.carbon.identity.authenticator.saml2.sso.common_4.1.0.jar               bundle         apache2   
+org.wso2.carbon.identity.authenticator.saml2.sso.stub_4.1.0.jar                 bundle         apache2   
+org.wso2.carbon.identity.authenticator.saml2.sso.ui_4.1.0.jar                   bundle         apache2   
+org.wso2.carbon.identity.authenticator.saml2.sso_4.1.0.jar                      bundle         apache2   
+org.wso2.carbon.identity.base_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.identity.core_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.identity.menu.ui_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.identity.provider.openid.stub_4.1.0.jar                         bundle         apache2   
+org.wso2.carbon.identity.provider.openid.ui_4.1.0.jar                           bundle         apache2   
+org.wso2.carbon.identity.provider.openid_4.1.0.jar                              bundle         apache2   
+org.wso2.carbon.identity.provider_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.identity.relyingparty.stub_4.1.0.jar                            bundle         apache2   
+org.wso2.carbon.identity.relyingparty.ui_4.1.0.jar                              bundle         apache2   
+org.wso2.carbon.identity.relyingparty_4.1.0.jar                                 bundle         apache2   
+org.wso2.carbon.identity.sso.saml.stub_4.1.0.jar                                bundle         apache2   
+org.wso2.carbon.identity.sso.saml.ui_4.1.0.jar                                  bundle         apache2   
+org.wso2.carbon.identity.sso.saml_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.jasper.patch_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.keystore.mgt_2.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.lb.common_4.1.3.jar                                             bundle         apache2   
+org.wso2.carbon.load.balance.agent_2.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.load.balance.cartridge.autoscaler.service.stub_4.1.3.jar        bundle         apache2   
+org.wso2.carbon.logging-4.1.0.jar                                               bundle         apache2   
+org.wso2.carbon.logging.admin.stub_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.logging.admin.ui_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.logging.service_4.1.1.jar                                       bundle         apache2   
+org.wso2.carbon.logging.view.stub_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.logging.view.ui_4.1.1.jar                                       bundle         apache2   
+org.wso2.carbon.logging_4.1.0.jar                                               bundle         apache2   
+org.wso2.carbon.mediator.bridge-4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.ndatasource.common_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.ndatasource.core_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.ndatasource.rdbms_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.ntask.common_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.ntask.core_4.1.0.jar                                            bundle         apache2   
+org.wso2.carbon.ntask.solutions_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.osgi.security_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.payment.paypal_2.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.payment.stub_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.payment.ui_2.1.0.jar                                            bundle         apache2   
+org.wso2.carbon.qpid.stub_4.1.0.jar                                             bundle         apache2   
+org.wso2.carbon.queuing_4.1.0.jar                                               bundle         apache2   
+org.wso2.carbon.redirector.servlet.stub_4.1.0.jar                               bundle         apache2   
+org.wso2.carbon.redirector.servlet.ui_2.1.0.jar                                 bundle         apache2   
+org.wso2.carbon.redirector.servlet_2.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.register.ui_2.1.1.jar                                           bundle         apache2   
+org.wso2.carbon.registry.admin.api_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.registry.api_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.registry.common.ui_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.registry.common_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.registry.core_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.registry.properties.stub_4.1.0.jar                              bundle         apache2   
+org.wso2.carbon.registry.properties.ui_4.1.0.jar                                bundle         apache2   
+org.wso2.carbon.registry.properties_4.1.0.jar                                   bundle         apache2   
+org.wso2.carbon.registry.resource.stub_4.1.0.jar                                bundle         apache2   
+org.wso2.carbon.registry.resource.ui_4.1.0.jar                                  bundle         apache2   
+org.wso2.carbon.registry.resource_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.registry.search.stub_4.1.0.jar                                  bundle         apache2   
+org.wso2.carbon.registry.search.ui_4.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.registry.search_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.registry.server_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.registry.servlet_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.remote-tasks.stub_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.reporting.api_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.reporting.core_4.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.reporting.util_4.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.roles.mgt.stub_4.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.roles.mgt.ui_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.roles.mgt_4.1.0.jar                                             bundle         apache2   
+org.wso2.carbon.rule.backend_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.rule.common_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.rule.kernel_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.rule.ws.admin_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.rule.ws_4.1.0.jar                                               bundle         apache2   
+org.wso2.carbon.securevault_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.security.mgt.stub_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.security.mgt.ui_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.security.mgt_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.server-4.1.0.jar                                                bundle         apache2   
+org.wso2.carbon.server.admin.common_4.1.0.jar                                   bundle         apache2   
+org.wso2.carbon.server.admin.stub_4.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.server.admin.ui_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.server.admin_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.service.mgt_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.servletbridge-4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.sso.redirector.ui_2.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.stratos.common.stub_4.1.0.jar                                   bundle         apache2   
+org.wso2.carbon.stratos.common_2.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.stratos.landing.page.deployer_2.1.0.jar                         bundle         apache2   
+org.wso2.carbon.stratos.manager.dashboard.stub_4.1.0.jar                        bundle         apache2   
+org.wso2.carbon.task.services_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.task_4.1.0.jar                                                  bundle         apache2   
+org.wso2.carbon.tenant.activity_2.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.tenant.dispatcher_2.1.0.jar                                     bundle         apache2   
+org.wso2.carbon.tenant.mgt.core_2.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.tenant.mgt.email.sender_2.1.0.jar                               bundle         apache2   
+org.wso2.carbon.tenant.mgt.stub_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.tenant.mgt.ui_2.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.tenant.mgt_2.1.0.jar                                            bundle         apache2   
+org.wso2.carbon.tenant.register.stub_4.1.0.jar                                  bundle         apache2   
+org.wso2.carbon.theme.mgt.stub_4.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.theme.mgt.ui_2.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.theme.mgt_2.1.0.jar                                             bundle         apache2   
+org.wso2.carbon.throttling.agent.stub_4.1.0.jar                                 bundle         apache2   
+org.wso2.carbon.throttling.agent_2.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.throttling.manager_2.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.throttling.stub_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.throttling.ui_2.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.tomcat.ext_4.1.0.jar                                            bundle         apache2   
+org.wso2.carbon.tomcat.fragment.dummy_4.1.0.jar                                 bundle         apache2   
+org.wso2.carbon.tomcat.patch_4.1.0.jar                                          bundle         apache2   
+org.wso2.carbon.tomcat_4.1.0.jar                                                bundle         apache2   
+org.wso2.carbon.transaction.manager_4.1.0.jar                                   bundle         apache2   
+org.wso2.carbon.transport.https_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.transport.http_4.1.0.jar                                        bundle         apache2   
+org.wso2.carbon.transport.local_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.transport.mgt_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.ui.menu.general_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.ui.menu.registry_4.1.0.jar                                      bundle         apache2   
+org.wso2.carbon.ui.menu.tools_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.ui_4.1.0.jar                                                    bundle         apache2   
+org.wso2.carbon.usage.agent_2.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.usage.stub_4.1.3.jar                                            bundle         apache2   
+org.wso2.carbon.usage.ui_2.1.3.jar                                              bundle         apache2   
+org.wso2.carbon.usage_2.1.3.jar                                                 bundle         apache2   
+org.wso2.carbon.user.api_4.1.0.jar                                              bundle         apache2   
+org.wso2.carbon.user.core_4.1.0.jar                                             bundle         apache2   
+org.wso2.carbon.user.mgt.common_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.user.mgt.stub_4.1.0.jar                                         bundle         apache2   
+org.wso2.carbon.user.mgt.ui_4.1.0.jar                                           bundle         apache2   
+org.wso2.carbon.user.mgt_4.1.0.jar                                              bundle         apache2   
+org.wso2.carbon.utils_4.1.0.jar                                                 bundle         apache2   
+org.wso2.carbon.validate.domain.stub_4.1.0.jar                                  bundle         apache2   
+org.wso2.carbon.validate.domain.ui_2.1.0.jar                                    bundle         apache2   
+org.wso2.carbon.validate.domain_2.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.webapp.deployer_4.1.0.jar                                       bundle         apache2   
+org.wso2.carbon.webapp.mgt_4.1.0.jar                                            bundle         apache2   
+org.wso2.ciphertool-1.0.0-wso2v2.jar                                            bundle         apache2   
+org.wso2.securevault_1.0.0.wso2v2.jar                                           bundle         apache2   
+org.wso2.stratos.identity.saml2.sso.mgt.ui_2.1.0.jar                            bundle         apache2   
+org.wso2.stratos.identity.saml2.sso.mgt_2.1.0.jar                               bundle         apache2   
+org.wso2.stratos.manager.dashboard.ui_1.0.1.jar                                 bundle         apache2   
+org.wso2.stratos.manager.login.ui_1.0.1.jar                                     bundle         apache2   
+org.wso2.stratos.manager.services.mgt_1.0.1.jar                                 bundle         apache2   
+org.wso2.stratos.manager.styles_1.0.1.jar                                       bundle         apache2   
+paypal-1.1.0.wso2v1.jar                                                         bundle         apache2   
+paypal_1.1.0.wso2v1.jar                                                         bundle         apache2   
+pdepublishing-ant.jar                                                           jar            epl1      
+pdepublishing.jar                                                               jar            epl1      
+perf4j_0.9.12.wso2v1.jar                                                        bundle         apache2   
+poi-ooxml_3.5.0.wso2v1.jar                                                      bundle         apache2   
+poi-scratchpad_3.5.0.wso2v1.jar                                                 bundle         apache2   
+poi_3.5.0.wso2v1.jar                                                            bundle         apache2   
+quartz_2.1.1.wso2v1.jar                                                         bundle         apache2   
+rampart-1.6.1-wso2v1.mar                                                        bundle         apache2   
+rampart-core_1.6.1.wso2v8.jar                                                   bundle         apache2   
+rampart-policy_1.6.1.wso2v8.jar                                                 bundle         apache2   
+rampart-trust_1.6.1.wso2v8.jar                                                  bundle         apache2   
+saxon_8.9.0.wso2v1.jar                                                          bundle         mpl10     
+slf4j-1.5.10.wso2v1.jar                                                         bundle         apache2   
+smack_3.0.4.wso2v1.jar                                                          bundle         apache2   
+spring.framework_3.1.0.wso2v1.jar                                               bundle         apache2   
+step2-common-1.0.0-wso2v1.jar                                                   bundle         apache2   
+step2-consumer-1.0.0-wso2v1.jar                                                 bundle         apache2   
+step2_1.0.0.wso2v1.jar                                                          bundle         apache2   
+synapse-commons_2.1.1.wso2v4.jar                                                bundle         apache2   
+synapse-core_2.1.1.wso2v4.jar                                                   bundle         apache2   
+synapse-extensions_2.1.1.wso2v4.jar                                             bundle         apache2   
+synapse-samples_2.1.1.wso2v4.jar                                                bundle         apache2   
+synapse-tasks_2.1.1.wso2v4.jar                                                  bundle         apache2   
+synapse-tasks_2.1.1.wso2v5.jar                                                  bundle         apache2   
+tcpmon-1.0.jar                                                                  jar            apache2   
+tiles-jsp_2.0.5.wso2v1.jar                                                      bundle         apache2   
+tomcat-ha_7.0.34.wso2v1.jar                                                     bundle         apache2   
+tomcat-juli-7.0.34.jar                                                          jar            apache2   
+tomcat_7.0.34.wso2v1.jar                                                        bundle         apache2   
+tribes_7.0.28.wso2v1.jar                                                        bundle         apache2   
+woden_1.0.0.M8-wso2v1.jar                                                       bundle         apache2   
+wsdl4j_1.6.2.wso2v4.jar                                                         bundle         cpl1      
+wss4j_1.5.11.wso2v5.jar                                                         bundle         apache2   
+xalan-2.7.1.wso2v1.jar                                                          bundle         apache2   
+xercesImpl-2.8.1.wso2v2.jar                                                     bundle         apache2   
+xkms_2.4.0.wso2v1.jar                                                           bundle         apache2   
+xml-apis-1.3.04.jar                                                             jarinbundle    unknown   
+xml-apis-1.3.04.wso2v2.jar                                                      bundle         apache2   
+xml-apis-ext-1.3.04.jar                                                         jarinbundle    unknown   
+xmlbeans-2.3.0.jar                                                              jarinbundle    apache2   
+xmlbeans_2.3.0.wso2v1.jar                                                       bundle         apache2   
+xmlgraphics-commons-1.3.1.jar                                                   jarinbundle    apache2   
+XmlSchema_1.4.7.wso2v2.jar                                                      bundle         apache2   
+xmltooling-1.3.1.jar                                                            jarinbundle    apache2   
+
+
+
+The license types used by the above libraries and their information is given below:
+
+lgpl3          GNU LESSER GENERAL PUBLIC LICENSE  Version 3
+               http://www.gnu.org/licenses/lgpl-3.0.txt
+epl1           Eclipse Public License
+               http://www.eclipse.org/legal/epl-v10.html
+lgpl2          Lesser GPL v2.1
+               http://www.opensource.org/licenses/lgpl-2.1.php
+mpl11          Mozilla Public License 1.1
+               http://www.mozilla.org/MPL/MPL-1.1.html
+mpl10          Mozilla Public License 1.0
+               http://www.mozilla.org/MPL/
+mit            MIT License
+               http://www.opensource.org/licenses/mit-license.php
+unknown        
+               unknown
+cddl1          Common Development and Distribution License
+               http://www.opensource.org/licenses/cddl1.php
+cddl+gpl       CDDL + GPLv2
+               https://glassfish.dev.java.net/public/CDDL+GPL.html
+cpl1           Common Public License 1.0
+               http://www.eclipse.org/legal/cpl-v10.html
+json           JSON.org License
+               null
+jsmon          ThoughtWorks Javasysmon License
+               https://github.com/jezhumble/javasysmon/blob/master/LICENSE
+jdom           JDOM License - Apache Styled
+               null
+apache2        Apache License Version 2.0
+               http://www.apache.org/licenses/LICENSE-2.0.html
+bsd            Berkeley License
+               http://www.opensource.org/licenses/bsd-license.php
+bouncy         Bouncy Castle License
+               http://www.bouncycastle.org/licence.html
+beajsr94       BEA License for JSR94 API
+               http://download.oracle.com/otndocs/jcp/jreng-1_0a-fr-spec-api-oth-JSpec/jreng-1_0a-fr-spec-api-oth-JSpec-license.html
+public         Public Domain
+               http://creativecommons.org/licenses/publicdomain/

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/29f27ad9/products/stratos_controller/modules/distribution/README.txt
----------------------------------------------------------------------
diff --git a/products/stratos_controller/modules/distribution/README.txt b/products/stratos_controller/modules/distribution/README.txt
new file mode 100755
index 0000000..ddd2116
--- /dev/null
+++ b/products/stratos_controller/modules/distribution/README.txt
@@ -0,0 +1,69 @@
+WSO2 Stratos Controller
+-----------------------
+
+Welcome to the WSO2 Stratos Controller
+
+The Stratos Controller (SC) mainly consists of the graphical user interface (GUI) and The Artifact Distribution 
+Coordinator that is responsible for the distribution of artifacts has been embedded into the Stratos Controller. 
+
+The Stratos Controller also defines the autoscaling policies that are defined for the Cartridges. 
+
+For more information about Stratos Controller, please refer WSO2 Stratos Wiki Docs:
+http://docs.wso2.org/wiki/display/Stratos200/WSO2+Stratos+Documentation
+
+Crypto Notice
+=============
+
+   This distribution includes cryptographic software.  The country in
+   which you currently reside may have restrictions on the import,
+   possession, use, and/or re-export to another country, of
+   encryption software.  BEFORE using any encryption software, please
+   check your country's laws, regulations and policies concerning the
+   import, possession, or use, and re-export of encryption software, to
+   see if this is permitted.  See <http://www.wassenaar.org/> for more
+   information.
+
+   The U.S. Government Department of Commerce, Bureau of Industry and
+   Security (BIS), has classified this software as Export Commodity
+   Control Number (ECCN) 5D002.C.1, which includes information security
+   software using or performing cryptographic functions with asymmetric
+   algorithms.  The form and manner of this Apache Software Foundation
+   distribution makes it eligible for export under the License Exception
+   ENC Technology Software Unrestricted (TSU) exception (see the BIS
+   Export Administration Regulations, Section 740.13) for both object
+   code and source code.
+
+   The following provides more details on the included cryptographic
+   software:
+
+   Apacge Rampart   : http://ws.apache.org/rampart/
+   Apache WSS4J     : http://ws.apache.org/wss4j/
+   Apache Santuario : http://santuario.apache.org/
+   Bouncycastle     : http://www.bouncycastle.org/
+
+
+
+Support
+-------
+As a fully open source solution WSO2 Stratos does not require any licensing fees. 
+
+WSO2 offers a range of service and support options, including evaluation support, CloudStart(SM) 
+consulting program, development support, and production support. 
+
+For additional support information please visit  http://wso2.com/support/
+
+About WSO2
+----------
+WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise 
+SOA middleware stack purpose-built as an integrated platform to support today.s heterogeneous 
+enterprise environments.internally and in the cloud. WSO2.s service and support team is led by 
+technical experts who have proven success in deploying enterprise SOAs and contribute to the technology 
+standards that enable them. 
+
+For more information, visit http://wso2.com and the WSO2 Oxygen Tank developer portal at http://wso2.org
+
+---------------------------------------------------------------------------------------------------
+
+WSO2 Stratos Team
+
+(c) 2009 - 2013, WSO2 Inc.