").css("width",
- d+"px").css("background-color",a.isDark(e,i)?h.foreground:h.background).appendTo(f)}}a=c;jQuery(a).appendTo(this)})}})(jQuery);
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.nav-menu/public/js/nav-menu.js b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.nav-menu/public/js/nav-menu.js
deleted file mode 100755
index 679e330792..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.nav-menu/public/js/nav-menu.js
+++ /dev/null
@@ -1,351 +0,0 @@
-/*
- * Copyright (c) 2016, 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.
- */
-
-var modalPopup = ".wr-modalpopup",
- modalPopupContainer = modalPopup + " .modalpopup-container",
- modalPopupContent = modalPopup + " .modalpopup-content";
-
-var emmAdminBasePath = "/api/device-mgt/v1.0";
-
-/*
- * set popup maximum height function.
- */
-function setPopupMaxHeight() {
- var maxHeight = "max-height";
- var marginTop = "margin-top";
- var body = "body";
- $(modalPopupContent).css(maxHeight, ($(body).height() - ($(body).height() / 100 * 30)));
- $(modalPopupContainer).css(marginTop, (-($(modalPopupContainer).height() / 2)));
-}
-
-/*
- * show popup function.
- */
-function showPopup() {
- $(modalPopup).show();
- setPopupMaxHeight();
-}
-
-/*
- * hide popup function.
- */
-function hidePopup() {
- $(modalPopupContent).html("");
- $(modalPopupContent).removeClass("operation-data");
- $(modalPopup).hide();
-}
-
-var updateNotificationCount = function (data, textStatus, jqXHR) {
- if (jqXHR.status == 200 && data) {
- var responsePayload = JSON.parse(data);
- var newNotificationsCount = responsePayload.count;
- if (newNotificationsCount > 0) {
- $("#notification-bubble").html(newNotificationsCount);
- }
-// } else {
-// $("#notification-bubble").html("Error");
-// }
- }
-};
-
-function loadNotificationsPanel() {
- if ("true" == $("#right-sidebar").attr("is-authorized")) {
- var serviceURL = emmAdminBasePath + "/notifications?status=NEW";
- invokerUtil.get(serviceURL, updateNotificationCount, hideNotificationCount);
- loadNewNotifications();
- } else {
- $("#notification-bubble-wrapper").remove();
- }
-}
-
-function hideNotificationCount(jqXHR) {
- if (jqXHR.status == 404) {
- // this means "no new notifications to show"
- $("#notification-bubble").hide();
- } else {
- $("#notification-bubble").html("Error");
- }
-}
-
-function loadNewNotifications() {
- var messageSideBar = ".sidebar-messages";
- if ($("#right-sidebar").attr("is-authorized") == "true") {
- var notifications = $("#notifications");
- var currentUser = notifications.data("currentUser");
-
- $.template("notification-listing", notifications.attr("src"), function (template) {
- var serviceURL = emmAdminBasePath + "/notifications?status=NEW";
-
- var successCallback = function (data, textStatus, jqXHR) {
- if (jqXHR.status == 200 && data) {
- var viewModel = {};
- var responsePayload = JSON.parse(data);
-
- if (responsePayload.notifications) {
- viewModel.notifications = responsePayload.notifications;
- if (responsePayload.count > 0) {
- $(messageSideBar).html(template(viewModel));
- } else {
- $(messageSideBar).html("No new notifications found...
");
- }
- } else {
- $(messageSideBar).html("Unexpected error occurred while loading new notifications.
");
- }
- }
- };
- var errorCallback = function (jqXHR) {
- if (jqXHR.status = 500) {
- $(messageSideBar).html("Unexpected error occurred while trying " +
- "to retrieve any new notifications.
");
- }
- };
- invokerUtil.get(serviceURL, successCallback, errorCallback);
- });
- } else {
- $(messageSideBar).html("You are not authorized to view notifications
");
- }
-}
-
-/**
- * Toggle function for
- * notification listing sidebar.
- * @return {Null}
- */
-$.sidebar_toggle = function (action, target, container) {
- var elem = '[data-toggle=sidebar]',
- button,
- containerOffsetLeft,
- containerOffsetRight,
- targetOffsetLeft,
- targetOffsetRight,
- targetWidth,
- targetSide,
- relationship,
- pushType,
- buttonParent;
-
- var sidebar_window = {
- update: function (target, container, button) {
- containerOffsetLeft = $(container).data('offset-left') ? $(container).data('offset-left') : 0;
- containerOffsetRight = $(container).data('offset-right') ? $(container).data('offset-right') : 0;
- targetOffsetLeft = $(target).data('offset-left') ? $(target).data('offset-left') : 0;
- targetOffsetRight = $(target).data('offset-right') ? $(target).data('offset-right') : 0;
- targetWidth = $(target).data('width');
- targetSide = $(target).data("side");
- pushType = $(container).parent().is('body') == true ? 'padding' : 'margin';
-
- if (button !== undefined) {
- relationship = button.attr('rel') ? button.attr('rel') : '';
- buttonParent = $(button).parent();
- }
- },
-
- show: function () {
- if ($(target).data('sidebar-fixed') == true) {
- $(target).height($(window).height() - $(target).data('fixed-offset'));
- }
- $(target).trigger('show.sidebar');
- if (targetWidth !== undefined) {
- $(target).css('width', targetWidth);
- }
- $(target).addClass('toggled');
- if (button !== undefined) {
- if (relationship !== '') {
- // Removing active class from all relative buttons
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').removeClass("active");
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').attr('aria-expanded', 'false');
- }
- // Adding active class to button
- if (button.attr('data-handle') !== 'close') {
- button.addClass("active");
- button.attr('aria-expanded', 'true');
- }
- if (buttonParent.is('li')) {
- if (relationship !== '') {
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').parent().removeClass("active");
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').parent().
- attr('aria-expanded', 'false');
- }
- buttonParent.addClass("active");
- buttonParent.attr('aria-expanded', 'true');
- }
- }
- // Sidebar open function
- if (targetSide == 'left') {
- if ((button !== undefined) && (button.attr('data-container-divide'))) {
- $(container).css(pushType + '-' + targetSide, targetWidth + targetOffsetLeft);
- }
- $(target).css(targetSide, targetOffsetLeft);
- } else if (targetSide == 'right') {
- if ((button !== undefined) && (button.attr('data-container-divide'))) {
- $(container).css(pushType + '-' + targetSide, targetWidth + targetOffsetRight);
- }
- $(target).css(targetSide, targetOffsetRight);
- }
- $(target).trigger('shown.sidebar');
- },
-
- hide: function () {
- $(target).trigger('hide.sidebar');
- $(target).removeClass('toggled');
- if (button !== undefined) {
- if (relationship !== '') {
- // Removing active class from all relative buttons
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').removeClass("active");
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').attr('aria-expanded', 'false');
- }
- // Removing active class from button
- if (button.attr('data-handle') !== 'close') {
- button.removeClass("active");
- button.attr('aria-expanded', 'false');
- }
- if ($(button).parent().is('li')) {
- if (relationship !== '') {
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').parent().removeClass("active");
- $(elem + '[rel=' + relationship + ']:not([data-handle=close])').parent().
- attr('aria-expanded', 'false');
- }
- }
- }
- // Sidebar close function
- if (targetSide == 'left') {
- if ((button !== undefined) && (button.attr('data-container-divide'))) {
- $(container).css(pushType + '-' + targetSide, targetOffsetLeft);
- }
- $(target).css(targetSide, -Math.abs(targetWidth + targetOffsetLeft));
- } else if (targetSide == 'right') {
- if ((button !== undefined) && (button.attr('data-container-divide'))) {
- $(container).css(pushType + '-' + targetSide, targetOffsetRight);
- }
- $(target).css(targetSide, -Math.abs(targetWidth + targetOffsetRight));
- }
- $(target).trigger('hidden.sidebar');
- }
- };
- if (action === 'show') {
- sidebar_window.update(target, container);
- sidebar_window.show();
- }
- if (action === 'hide') {
- sidebar_window.update(target, container);
- sidebar_window.hide();
- }
- // binding click function
- var body = 'body';
- $(body).off('click', elem);
- $(body).on('click', elem, function (e) {
- e.preventDefault();
- button = $(this);
- container = button.data('container');
- target = button.data('target');
- sidebar_window.update(target, container, button);
- /**
- * Sidebar function on data container divide
- * @return {Null}
- */
- if (button.attr('aria-expanded') == 'false') {
- sidebar_window.show();
- } else if (button.attr('aria-expanded') == 'true') {
- sidebar_window.hide();
- }
- });
-};
-
-$.fn.collapse_nav_sub = function () {
- var navSelector = 'ul.nav';
-
- if (!$(navSelector).hasClass('collapse-nav-sub')) {
- $(navSelector + ' > li', this).each(function () {
- var position = $(this).offset().left - $(this).parent().scrollLeft();
- $(this).attr('data-absolute-position', (position + 5));
- });
-
- $(navSelector + ' li', this).each(function () {
- if ($('ul', this).length !== 0) {
- $(this).addClass('has-sub');
- }
- });
-
- $(navSelector + ' > li', this).each(function () {
- $(this).css({
- 'left': $(this).data('absolute-position'),
- 'position': 'absolute'
- });
- });
-
- $(navSelector + ' li.has-sub', this).on('click', function () {
- var elem = $(this);
- if (elem.attr('aria-expanded') !== 'true') {
- elem.siblings().fadeOut(100, function () {
- elem.animate({'left': '15'}, 200, function () {
- $(elem).first().children('ul').fadeIn(200);
- });
- });
- elem.siblings().attr('aria-expanded', 'false');
- elem.attr('aria-expanded', 'true');
- } else {
- $(elem).first().children('ul').fadeOut(100, function () {
- elem.animate({'left': $(elem).data('absolute-position')}, 200, function () {
- elem.siblings().fadeIn(100);
- });
- });
- elem.siblings().attr('aria-expanded', 'false');
- elem.attr('aria-expanded', 'false');
- }
- });
-
- $(navSelector + ' > li.has-sub ul', this).on('click', function (e) {
- e.stopPropagation();
- });
- $(navSelector).addClass('collapse-nav-sub');
- }
-};
-
-$(document).ready(function () {
- loadNotificationsPanel();
- $.sidebar_toggle();
-
- $("#right-sidebar").on("click", ".new-notification", function () {
- var notificationId = $(this).data("id");
- var redirectUrl = $(this).data("url");
- var markAsReadNotificationsAPI = "/mdm-admin/notifications/" + notificationId + "/CHECKED";
- var messageSideBar = ".sidebar-messages";
-
- invokerUtil.put(
- markAsReadNotificationsAPI,
- null,
- function (data) {
- data = JSON.parse(data);
- if (data.statusCode == responseCodes["ACCEPTED"]) {
- location.href = redirectUrl;
- }
- }, function () {
- var content = "Warning
" +
- "Unexpected error occurred while loading notification. Please refresh the page and" +
- " try again
";
- $(messageSideBar).html(content);
- }
- );
- });
-
- if (typeof $.fn.collapse == 'function') {
- $('.navbar-collapse.tiles').on('shown.bs.collapse', function () {
- $(this).collapse_nav_sub();
- });
- }
-});
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.nav-menu/public/templates/notifications.hbs b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.nav-menu/public/templates/notifications.hbs
deleted file mode 100755
index 82edfc498f..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.nav-menu/public/templates/notifications.hbs
+++ /dev/null
@@ -1,14 +0,0 @@
-{{#each notifications}}
-
-
- {{description}}
-
-{{/each}}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.notifications/notifications.json b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.notifications/notifications.json
deleted file mode 100755
index bcab0a4d30..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.notifications/notifications.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "version": "1.0.0",
- "extends": "uuf.unit.navbar.notifications",
- "disabled": true
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.popover/popover.json b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.popover/popover.json
deleted file mode 100755
index 2fba2db148..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.popover/popover.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "version": "1.0.0",
- "extends": "uuf.unit.navbar.popover",
- "disabled": true
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.toggle-menu.left/left.json b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.toggle-menu.left/left.json
deleted file mode 100755
index 3c39b5235e..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.toggle-menu.left/left.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "version": "1.0.0",
- "extends": "uuf.unit.navbar.toggle-menu.left",
- "disabled": true
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.toggle-menu.right/right.json b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.toggle-menu.right/right.json
deleted file mode 100755
index e8a79dae67..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.navbar.toggle-menu.right/right.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "version": "1.0.0",
- "extends": "uuf.unit.navbar.toggle-menu.right",
- "disabled": true
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-common.css b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-common.css
deleted file mode 100755
index fbb2d80832..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-common.css
+++ /dev/null
@@ -1,366 +0,0 @@
-
-/* Regular */
-@font-face {
- font-family: 'Open Sans';
-
- src: url('../fonts/OpenSans-Regular-webfont.eot');
- src: url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
- url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
- font-weight: normal;
- font-weight: 400;
- font-style: normal;
-
-}
-
-/* Italic */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-Italic-webfont.eot');
- src: url('../fonts/OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-Italic-webfont.woff') format('woff'),
- url('../fonts/OpenSans-Italic-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-Italic-webfont.svg#OpenSansItalic') format('svg');
- font-weight: normal;
- font-weight: 400;
- font-style: italic;
-
-}
-
-/* Light */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-Light-webfont.eot');
- src: url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-Light-webfont.woff') format('woff'),
- url('../fonts/OpenSans-Light-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
- font-weight: 200;
- font-style: normal;
-
-}
-
-/* Light Italic */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-LightItalic-webfont.eot');
- src: url('../fonts/OpenSans-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-LightItalic-webfont.woff') format('woff'),
- url('../fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-LightItalic-webfont.svg#OpenSansLightItalic') format('svg');
- font-weight: 200;
- font-style: italic;
-
-}
-
-/* Semibold */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-Semibold-webfont.eot');
- src: url('../fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-Semibold-webfont.woff') format('woff'),
- url('../fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
- font-weight: 500;
- font-style: normal;
-
-}
-
-/* Semibold Italic */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-SemiboldItalic-webfont.eot');
- src: url('../fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'),
- url('../fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
- font-weight: 500;
- font-style: italic;
-
-}
-
-/* Bold */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-Bold-webfont.eot');
- src: url('../fonts/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-Bold-webfont.woff') format('woff'),
- url('../fonts/OpenSans-Bold-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-Bold-webfont.svg#OpenSansBold') format('svg');
- font-weight: bold;
- font-weight: 700;
- font-style: normal;
-
-}
-
-/* Bold Italic */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-BoldItalic-webfont.eot');
- src: url('../fonts/OpenSans-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-BoldItalic-webfont.woff') format('woff'),
- url('../fonts/OpenSans-BoldItalic-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-BoldItalic-webfont.svg#OpenSansBoldItalic') format('svg');
- font-weight: bold;
- font-weight: 700;
- font-style: italic;
-
-}
-
-/* Extra Bold */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-ExtraBold-webfont.eot');
- src: url('../fonts/OpenSans-ExtraBold-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-ExtraBold-webfont.woff') format('woff'),
- url('../fonts/OpenSans-ExtraBold-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-ExtraBold-webfont.svg#OpenSansExtrabold') format('svg');
- font-weight: 900;
- font-style: normal;
-
-}
-
-/* Extra Bold Italic */
-@font-face {
- font-family: 'Open Sans';
- src: url('../fonts/OpenSans-ExtraBoldItalic-webfont.eot');
- src: url('../fonts/OpenSans-ExtraBoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('../fonts/OpenSans-ExtraBoldItalic-webfont.woff') format('woff'),
- url('../fonts/OpenSans-ExtraBoldItalic-webfont.ttf') format('truetype'),
- url('../fonts/OpenSans-ExtraBoldItalic-webfont.svg#OpenSansExtraboldItalic') format('svg');
- font-weight: 900;
- font-style: italic;
-
-}
-
-html {
- position: relative;
- min-height: 100%;
- margin:0;
- padding:0;
- height: 100%;
-}
-
-body {
- font-family:'Open Sans';
- background:#fff;
- font-weight: 100;
- color: #444444;
- font-size: 14px;
- margin:0;
- padding:0;
- /*height: 100%;*/
-}
-
-.container {
- position: relative;
- padding-bottom: 20px;
- min-height: 100%;
-}
-
-.wr-content {
- padding-left:33px;
- padding-right:33px;
-}
-
-/* application top level header */
-h2.app-title {
- font-weight:400;
- font-size:17px;
- margin:0;
- padding:3px 0 0 0;
- color:#fafafa;
- /*text-transform: uppercase;*/
-}
-
-.wr-global-header {
- background:#11375B;
-}
-
-.app-logo {
- height:50px;
- padding:12px 10px;
-}
-
-.app-logo a {
- text-decoration: none;
-}
-
-.app-logo img {
- float:left;
- margin-right:10px;
-}
-
-@media (max-width: 768px) {
- .app-logo {
- padding: 16px 10px;
- }
- .app-logo img {
- width: 50px;
- height: auto;
- margin-right:10px;
- }
- h2.app-title {
- font-size: 15px;
- }
-}
-
-@media (max-width: 570px) {
- h2.app-title:after {
- content: "IoT Server";
- }
- h2.app-title span {
- display: none;
- }
-}
-
-.wr-app-bar {
- background:#526A84;
- height:53px;
-}
-
-header {
- height:50px;
-}
-
-#nav.affix {
- position: fixed;
- top: 0;
- width: 100%;
- z-index:100000;
-}
-
-.auth-user {
- display:none;
-}
-
-.wr-auth-container {
- padding-right:0;
-}
-
-.auth-img {
- float: left;
- display:inline-block;
- height:50px;
- padding:8px 10px;
- font-size: 14px;
- color:#fff;
- text-decoration: none;
-}
-
-.auth-img:hover {
- background:#526A84;
-}
-
-.wr-auth.open .auth-img {
- background: #526A84;
-}
-
-
-/* sticky footer styles */
-.footer {
- height: 40px;
- background-color: #222;
- color:#fff;
- font-weight: 500;
- font-size:12px;
- letter-spacing: 1px;
- position:absolute;
- width: 100%;
- bottom: 0;
-}
-
-.footer p {
- margin: 0;
-}
-
-/* misc */
-br.c-both {
- clear:both;
-}
-
-.wr-input-control .helper {
- font-weight:100;
-}
-
-.wr-input-control .cus-col-25 {
- float:left;
- width:25%;
-}
-
-.wr-input-control .cus-col-50 {
- float:left;
- width:60%;
-}
-
-.wr-input-control .cus-col-70 {
- float:left;
- width:70%;
-}
-
-.wr-input-control .cus-col-50 input {
- width:100%;
-}
-
-.wr-input-control .cus-col-70 input {
- width:95%;
-}
-
-.wr-input-control .cus-col-25 input {
- width:65%;
-}
-
-/*.wr-input-control .cus-col-50 span, .wr-input-control .cus-col-25 span {*/
- /*padding-left:20px;*/
-/*}*/
-
-/* wizard */
-.wr-wizard {
-
-}
-
-.itm-wiz-current .wiz-no {
- border:1px solid #444;
- color:#fff;
- background:#444;
-}
-
-.itm-wiz {
- font-weight:100;
-}
-
-.itm-wiz div {
- display:inline-block;
- float:left;
-}
-
-.wiz-no {
- width:50px;
- height:50px;
- font-size:33px;
- font-weight: 100;
- border-radius: 80px;
- border:1px solid #ccc;
- color:#fff;
- padding:0 12px 10px;
- display:inline-block;
- text-align: center;
- background:#ccc;
- margin-right: 10px;
-}
-
-.wiz-lbl {
- width:190px;
- font-size:17px;
-}
-
-.wiz-lbl > span {
- padding-top:0;
- display:inline-block;
-}
-
-
-
-
-
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-mobile.css b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-mobile.css
deleted file mode 100755
index b455f24b93..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-mobile.css
+++ /dev/null
@@ -1,137 +0,0 @@
-/* forms */
-.input-control {
- margin-bottom:20px;
-}
-
-.input-control input, .input-control textarea {
- border: 1px #999 solid;
- width: 100%;
- height: 100%;
- padding: 6px 10px;
- z-index: 1;
- -webkit-appearance: none;
-}
-
-.input-control input:focus, .input-control textarea:focus {
- border-color: #555;
- box-shadow: 0 0px 0px rgba(229, 103, 23, 0.075) inset, 0 0 0px rgba(229, 103, 23, 0.6);
- outline: 0 none
-}
-
-.input-control file {
- border: 1px #d9d9d9 solid !important;
- width: 100%;
- height: 100%;
- padding: 8px 15px;
- z-index: 1;
- -webkit-appearance: none;
-}
-
-.input-label {
- font-weight:100;
- font-size:18px;
- color:#555;
-}
-
-.input-label {
- font-weight:400;
- font-size:14px;
- color:#555;
-}
-
-.help-tip {
- font-size:14px;
- padding:0px 10px;
- color:#666;
-}
-
-.wr-notification {
- background:#ff5353;
- padding:10px 20px;
-}
-
-.form-val-error {
- font-size:13px;
- color:#ff2353;
- font-weight:400;
- display:inline-block;
- padding-top:3px;
-}
-
-.wr-validation-summary {
- padding: 15px 0px 10px 0;
- border-top: 1px solid #ffe8e8;
- border-bottom: 1px solid #ffe8e8;
- background: #fff4f4;
- text-align: center;
- display:block;
- margin-bottom:15px;
-}
-
-span.wr-validation-summary p {
- font-size:17px;
- font-weight:400;
-}
-
-/* button group */
-.wr-buttons {
- margin-top:20px;
-}
-
-/* text content */
-.wr-head h2 {
- font-weight:400;
- margin-bottom:20px;
-}
-
-.wr-text p {
- font-size:24px;
- font-weight:100;
- color:#555;
-}
-
-a.btn-download-agent {
- display:block;
- padding:15px 20px;
- background:#11375B;
- color:#fff;
- font-size:18px;
- font-weight:100;
- text-align: center;
- text-decoration: none;
-}
-
-a.btn-download-agent:hover {
- background:#16436D;
-}
-
-.wr-agreement {
- padding:15px;
- border:1px solid #f0f0f0;
- background:#fafafa;
- height:320px;
- overflow-y:auto;
-}
-
-.wr-agreement p {
- font-weight:400;
- margin-bottom:20px;
- font-size:14px;
-}
-
-h3 {
- font-weight:400;
- margin-bottom:20px;
- font-size:18px;
-}
-
-h4 {
- font-weight:700;
- margin-bottom:20px;
- font-size:15px;
- text-transform: uppercase;
-}
-
-.itm-wiz {
- margin-top: 20px;
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-theme.css b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-theme.css
deleted file mode 100755
index a3e2fe3ffe..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/css/custom-theme.css
+++ /dev/null
@@ -1,567 +0,0 @@
-body {
- overflow-x: hidden;
- -ms-overflow-x: hidden;
-}
-
-a {
- color: #526A84;
-}
-
-textarea { width: 100%; }
-
-h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
- font-weight: 300;
-}
-
-h1, .h1 {
- font-size: 32px;
-}
-
-.well {
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* asset type switcher */
-.wr-asset-type-switcher .popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1060;
- display: none;
- max-width: 451px;
- padding: 1px;
- font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
- font-size: 14px;
- font-weight: 400;
- line-height: 1.42857143;
- text-align: left;
- white-space: normal;
- background-color: #232323;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 0 solid #232323;
- border: 0 solid rgba(0,0,0,.2);
- border-radius: 0;
- -webkit-box-shadow: 0 0 0 rgba(0,0,0,.2);
- box-shadow: 0 0 0 rgba(0,0,0,.2);
- padding-bottom:8px;
-}
-
-.wr-asset-type-switcher .popover.bottom>.arrow {
- top: -11px;
- left: 50%;
- margin-left: -11px;
- border-top-width: 0;
- border-bottom-color: #232323;
-}
-
-.wr-asset-type-switcher .popover>.arrow {
- border-width: 11px;
-}
-
-.wr-asset-type-switcher .popover.bottom>.arrow:after {
- top: 1px;
- margin-left: -10px;
- content: " ";
- border-top-width: 0;
- border-bottom-color: #232323;
-}
-
-.wr-asset-type-switcher .popover>.arrow, .popover>.arrow:after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-
-.wr-asset-type-switcher .popover-content {
- padding: 6px 6px;
-}
-
-.wr-asset-type-switcher .arrow {
- left:25px !important;
-}
-
-.wr-asset-type-switcher .popover {
- left:10px !important;
-}
-
-
-/* sorting */
-.dropdown-menu {
- position: absolute;
- top: 40px;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 5px 0;
- margin: 2px 10px 0;
- font-size: 14px;
- text-align: left;
- list-style: none;
- background-color: transparent;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 0 solid #ccc;
- border: 0 solid rgba(0,0,0,.15);
- border-radius: 0;
- -webkit-box-shadow: 0 0 0 rgba(0,0,0,.175);
- box-shadow: 0 0 0 rgba(0,0,0,.175);
-
-}
-
-.dropdown-menu-content {
- background-color: #e4e4e4;
- padding:10px 20px;
- color:#fff;
-}
-
-.dropdown-menu-content a {
- color:#333;
- cursor:pointer;
- display:block;
-}
-
-.wr-auth .cu-arrow {
- width: 0;
- height: 0;
- border-left: 8px solid transparent;
- border-right: 8px solid transparent;
- border-bottom: 8px solid #e4e4e4;
- left:87%;
- position:relative;
-}
-
-/* filter */
-.dropdown-menu {
- position: absolute;
- top: 40px;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 5px 0;
- margin: 2px 5px 0;
- font-size: 14px;
- text-align: left;
- list-style: none;
- background-color: transparent;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 0 solid #ccc;
- border: 0 solid rgba(0,0,0,.15);
- border-radius: 0;
- -webkit-box-shadow: 0 0px 0px rgba(0,0,0,.175);
- box-shadow: 0 0 0 rgba(0,0,0,.175);
-
-}
-
-.dropdown-menu-content {
- background-color: #e4e4e4;
- padding:5px;
- color:#fff;
-}
-
-.dropdown-menu-content a {
- color: #11375B;
- padding: 8px 10px;
- cursor:pointer;
- display:block;
-}
-
-.dropdown-menu-content a:hover {
- color:#fff;
- background: #11375B;
-}
-
-
-/* category selection */
-a.ctrl-filter-category {
- display:inline-block;
- background:#237bd5;
- border:1px solid #237bd5;
- color:#fff;
- text-decoration:none;
- padding:7px 10px 7px 20px;
- width:230px;
- font-size:18px;
- font-weight:100;
-}
-
-a.ctrl-filter-category:hover {
- background:#666;
- color:#e4e4e4;
- text-decoration: none;
- border:1px solid #666;
-}
-
-.wr-filter-category .dropdown-menu {
- border:0px solid #237bd5;
- background:#237bd5;
- top:53px;
- left:20px;
- width:230px;
- padding-top:0;
- padding-bottom:0;
- color:#fff;
- font-size:17px;
-}
-
-.wr-filter-category .dropdown-menu li a {
- padding-top:7px;
- padding-bottom:7px;
- font-weight:100;
- color:#fff;
-}
-
-.wr-filter-category .dropdown-menu li a:hover {
- background:#61a3e6;
-}
-
-.ctrl-filter-category .glyphicon {
- font-size:13px;
- font-weight:100;
- margin-left:33px;
-}
-
-
-
-/* panel */
-.panel-group .panel {
- margin-bottom: 0;
- border-radius: 0;
-}
-
-.panel {
- margin-bottom: 0;
- background-color: transparent;
- border: 0 solid #e4e4e4;
- border-radius: 0;
- -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, .05);
- box-shadow: 0 0 0 rgba(0, 0, 0, .05);
-}
-
-.panel-default > .panel-heading {
- background-color: #999;
- border-color: #e4e4e4;
-}
-
-.cu-acc-head-title {
- font-weight:400;
- font-size:22px;
-}
-
-.cu-acc-head-title:hover {
- text-decoration: none;
-}
-
-.panel-title a {
- text-decoration: none;
-}
-
-.panel-heading {
- padding: 0 0 0 15px;
- border-bottom: 0 solid transparent;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-.panel-title table, .panel-body table {
- width:100%;
- border: 1px solid #c8c8c8;
-}
-
-.panel-title a {
- color:#fff;
-}
-
-.cu-acc-head-created {
- font-weight:200;
- font-size:16px;
-}
-
-.cu-acc-head-workflow {
- font-weight:200;
- font-size:16px;
-}
-
-.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
- border-top: 0 solid #e4e4e4;
-}
-
-.panel-body {
- padding: 10px;
- background:#f9f9f9;
-}
-
-/* input */
-.form-control {
- width: 100%;
- background-color: #fff;
- background-image: none;
- border: 1px solid #999;
- border-radius: 0;
- -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, .075);
- box-shadow: inset 0 0 0 rgba(0, 0, 0, .075);
- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-}
-
-.form-control:focus {
- border-color: #555;
- outline: 0;
- -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
- box-shadow: inset 0 0 0 rgba(0,0,0,.075), 0 0 0 rgba(102, 175, 233, .6);
-}
-
-.form-control.modal-input, .form-control.modal-input:focus {
- border: 1px solid #fff;
-}
-
-
-/* progress bar */
-.progress {
- height: 20px;
- margin-bottom: 20px;
- overflow: hidden;
- background-color: #e4e4e4;
- border-radius: 0;
- -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, .1);
- box-shadow: inset 0 0 0 rgba(0, 0, 0, .1);
-}
-
-.progress-bar {
- background-color: #6c5c76;
-}
-
-.t-data-file {
- padding-right:20px;
-}
-
-/* tabs */
-.nav-tabs {
- border-bottom: 1px solid #6c5c76;
-}
-
-.nav-tabs > li > a {
- margin-right: 2px;
- line-height: 1.42857143;
- border: 1px solid transparent;
- border-radius: 0;
- color:#6c5c76;
-}
-
-.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
- color: #555;
- cursor: default;
- background-color: #fff;
- border: 1px solid #6c5c76;
- border-top:1px solid #6c5c76;
- border-bottom-color: transparent;
-}
-
-.nav-tabs > li > a:hover {
- border-color: #6c5c76 #6c5c76 #6c5c76;
-}
-.nav > li > a:hover, .nav > li > a:focus {
- text-decoration: none;
- background-color: #6c5c76;
- color:#fff;
-}
-
-/* nav pills */
-.wr-tabs-grphs .nav-pills > li.active > a, .wr-tabs-grphs .nav-pills > li.active > a:hover, .wr-tabs-grphs .nav-pills > li.active > a:focus {
- color: #fff;
- background-color: #888;
-}
-
-.wr-tabs-grphs .nav-pills > li > a {
- border-radius: 0;
-}
-
-.wr-tabs-grphs {
- border-bottom:1px solid #e4e4e4;
- padding-bottom:10px;
-}
-
-/* buttons */
-.btn-group {
- margin: 30px 0;
-}
-
-.btn-primary {
- color: #fff;
- background-color: #11375b;
- border-color: #11375b;
-}
-
-.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
- color: #fff;
- background-color: #526A84;
- border-color: #526A84;
-}
-
-.btn {
- display: inline-block;
- padding: 8px 20px;
- margin-bottom: 0;
- font-size: 16px;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 0;
- transition: background 0.2s;
-}
-
-.col-centered {
- float: none;
- margin: 0 auto;
-}
-
-b, strong {
- font-weight: 500;
-}
-
-.form-horizontal .control-label {
- font-weight: 500;
-}
-
-.form-horizontal .control-value {
- padding-top: 7px;
- margin-bottom: 0;
-}
-
-.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
- border-top: none;
-}
-
-.panel-default > .panel-heading {
- background: transparent;
- padding: 0;
-}
-
-.panel-title a {
- color: #333333;
- padding:15px 0;
- display: inline-block;
-}
-
-.panel-body {
- background: transparent;
- padding: 0;
-}
-
-.list-group-item:first-child, .list-group-item:last-child { border-radius: 0; }
-
-.row.no-gutter {
- margin-right: 0;
- margin-left: 0;
-}
-
-.row.no-gutter > [class*='col-']:not(:first-child), .row.no-gutter > [class*='col-']:not(:last-child) {
- padding-right: 0;
- padding-left: 0;
-}
-
-.table tr.row.no-gutter > td {
- border-top: none;
- padding: 0;
-}
-
-.table thead th {
- font-weight: 200;
- text-transform: none;
-}
-
-select.select2 {
- height:0 !important;
- overflow: hidden;
- padding: 0;
- margin: 0;
- border: none;
- outline: none;
-}
-
-.select2-container {
- width: 100% !important;
-}
-
-.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
- border-radius: 0;
- height: 34px;
- border: 1px solid #999;
-}
-
-.select2-container .select2-search--inline .select2-search__field {
- margin-top: 0;
- padding: 0;
-}
-.select2-container--default .select2-selection--multiple .select2-selection__rendered {
- padding: 5px 8px;
-}
-
-.select2-container--default .select2-selection--single .select2-selection__rendered {
- line-height: 34px;
-}
-
-.select2-container--default .select2-selection--multiple .select2-selection__choice {
- margin-bottom: 0;
- margin-top: 0;
- color: #ffffff;
- background: #526A84;
- font-size: 11px;
- display: inline-block;
- cursor: pointer;
- padding: 3px 6px;
- border-radius: 0;
- border: none;
-}
-
-.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
- color: #ffffff;
- font-weight: 500;
- font-size: 11px;
-}
-
-.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
- color: #ffffff;
-}
-.select2-container--default .select2-results__option--highlighted[aria-selected] {
- background-color: #526A84;
-}
-
-.select2-dropdown {
- z-index: 10000;
-}
-
-.ui-autocomplete {
- max-height: 400px;
- overflow-y: auto;
- overflow-x: hidden;
-}
-* html .ui-autocomplete {
- height: 400px;
-}
-
-.qr-code canvas{
- border: 2px solid white;
-}
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.eot
deleted file mode 100755
index 5d4a1c4777..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.svg
deleted file mode 100755
index 1557f68074..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.svg
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.ttf
deleted file mode 100755
index 7ab5d85bfd..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.woff
deleted file mode 100755
index 869a9ed8af..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Bold-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.eot
deleted file mode 100755
index ad6518076e..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.svg
deleted file mode 100755
index 24661f35f9..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.svg
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.ttf
deleted file mode 100755
index 6a30fa9dd3..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.woff
deleted file mode 100755
index 46778a2179..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-BoldItalic-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.eot
deleted file mode 100755
index 2f7ae28d4c..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.svg
deleted file mode 100755
index c3d6642a2c..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.svg
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.ttf
deleted file mode 100755
index dacc5bbb58..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.woff
deleted file mode 100755
index de4f8e77e8..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBold-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.eot
deleted file mode 100755
index e4f4ab0db8..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.svg
deleted file mode 100755
index a699015a37..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.svg
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.ttf
deleted file mode 100755
index 7e636eb4c0..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.woff
deleted file mode 100755
index f81b21618a..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-ExtraBoldItalic-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.eot
deleted file mode 100755
index c31595212f..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.svg
deleted file mode 100755
index 537d20ca6f..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.svg
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.ttf
deleted file mode 100755
index cb3fda65e9..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.woff
deleted file mode 100755
index 03eaf58618..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Italic-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.eot
deleted file mode 100755
index f17617e039..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.svg
deleted file mode 100755
index c7ae13a29c..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.svg
+++ /dev/null
@@ -1,252 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.ttf
deleted file mode 100755
index b83078a607..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.woff
deleted file mode 100755
index ff882b6aca..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Light-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.eot
deleted file mode 100755
index 95c6c619d3..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.svg
deleted file mode 100755
index 535e688236..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.svg
+++ /dev/null
@@ -1,252 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.ttf
deleted file mode 100755
index 3162ff8eb1..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.woff
deleted file mode 100755
index f6e97d5afd..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-LightItalic-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.eot
deleted file mode 100755
index 545b7c15e5..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.svg
deleted file mode 100755
index ead219a569..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.svg
+++ /dev/null
@@ -1,252 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.ttf
deleted file mode 100755
index a5b2378e5c..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.woff
deleted file mode 100755
index 11698afc2c..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Regular-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.eot
deleted file mode 100755
index acc32c425d..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.svg
deleted file mode 100755
index 9eaa0b710f..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.svg
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.ttf
deleted file mode 100755
index a5b9691c1f..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.woff
deleted file mode 100755
index 17fb5dc324..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-Semibold-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.eot b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.eot
deleted file mode 100755
index 0048da006d..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.eot and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.svg b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.svg
deleted file mode 100755
index 316b8186d4..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.svg
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.ttf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.ttf
deleted file mode 100755
index 61d58bfa37..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.ttf and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.woff b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.woff
deleted file mode 100755
index 611b39028f..0000000000
Binary files a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/fonts/OpenSans-SemiboldItalic-webfont.woff and /dev/null differ
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/js/responsive-text.js b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/js/responsive-text.js
deleted file mode 100755
index 83f177a472..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/js/responsive-text.js
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright (c) 2016, 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.
- */
-
-var resTextRatio = 0.2;
-
-(function($){
-
- /* ========================================================================
- * responsive text function
- * ======================================================================== */
- $.fn.res_text = function(compress, options){
-
- // Setup options
- var compressor = compress || 1,
- settings = $.extend({
- 'minFontSize' : Number.NEGATIVE_INFINITY,
- 'maxFontSize' : Number.POSITIVE_INFINITY
- }, options);
-
- return this.each(function(){
-
- /**
- * store the object
- */
- var $this = $(this);
-
- /**
- * resizer() resizes items based on the object width divided by the compressor * 10
- */
- var resizer = function() {
- $this.css('font-size', Math.max(Math.min($this.width() / (compressor*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
- };
-
- /**
- * call once to set.
- */
- resizer();
-
- /**
- * call on resize. Opera debounces their resize by default.
- */
- $(window).on('resize.fittext orientationchange.fittext', resizer);
-
- });
-
- };
-
-}(jQuery));
-
-$(document).ready(function(){
- $(".icon .text").res_text(resTextRatio);
-});
-
-$(window).scroll(function(){
- $(".icon .text").res_text(resTextRatio);
-});
-
-$(document).bind('click', function() {
- $(".icon .text").res_text(resTextRatio);
-});
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/less/theme-variables.less b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/less/theme-variables.less
deleted file mode 100755
index 8095451680..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/public/less/theme-variables.less
+++ /dev/null
@@ -1,48 +0,0 @@
-/* ========================================================================
- * WSO2 CDMF Theme Variables
- * ======================================================================== */
-@font-default: 'Open Sans', Arial, Helvetica, sans-serif;
-
-@base-dark-color: #11375B;
-@base-light-color: #ffffff;
-@base-success-color: #5cb85c;
-@base-info-color: #526A84;
-@base-warning-color: #f0ad4e;
-@base-danger-color: #d9534f;
-
-@primary-color: #11375b;
-@secondary-color: #e4e4e4;
-@optional-color: #F47415;
-
-@navbar-height: 50px;
-@navbar-padding: 0 15px;
-@navbar-color1: #4D5461;
-@navbar-background-color: #526A84;
-@navbrand-background-color: darken(@navbar-background-color, 5%);
-
-@footer-height: 40px;
-@footer-background: #000000;
-@footer-color: #FFFFFF;
-@footer-font-size: 12px;
-@footer-letter-spacing: 1px;
-@footer-font-weight: 500;
-
-@inverse-layout-background: @primary-color;
-@inverse-layout-color: @base-light-color;
-
-@loading-background-opacity: 0.9;
-@loading-background-color: @base-dark-color;
-@loading-color: @base-light-color;
-@loading-inverse-background-color: @base-light-color;
-@loading-inverse-color: @base-dark-color;
-
-@dropdown-menu-dark-background-color: #132D45;
-@dropdown-menu-dark-color: @base-light-color;
-@dropdown-menu-dark-tiles-background-color: #132D45;
-@dropdown-menu-dark-tiles-hover-background-color: #526A84;
-@dropdown-menu-dark-tiles-color: @base-light-color;
-
-@button-primary-background-color: @primary-color;
-@button-primary-color: @base-light-color;
-@button-border: @button-primary-background-color;
-@button-primary-hover-background-color: lighten(@button-primary-background-color, 10%);
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/theme.hbs b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/theme.hbs
deleted file mode 100755
index d1b4855ef6..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/theme.hbs
+++ /dev/null
@@ -1,27 +0,0 @@
-{{!
- Copyright (c) 2016, 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.
-}}
-{{#zone "topCss" override=false}}
- {{css "css/custom-theme.css"}}
- {{css "css/custom-common.css" combine=false}}
- {{css "css/custom-mobile.css"}}
-{{/zone}}
-
-{{#zone "bottomJs" override=false}}
-{{!-- Responsive JS Library--}}
- {{js "js/responsive-text.js"}}
-{{/zone}}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/theme.json b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/theme.json
deleted file mode 100755
index da92b2608f..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.theme/theme.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "version": "1.0.0",
- "extends": "uuf.unit.theme"
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.title/title.hbs b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.title/title.hbs
deleted file mode 100755
index 5fbe77d385..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.title/title.hbs
+++ /dev/null
@@ -1,21 +0,0 @@
-{{!
- Copyright (c) 2016, 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.
-}}
-
-{{#zone "title"}}
- {{@unit.params.pageTitle}} | {{@app.conf.appName}}
-{{/zone}}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.title/title.json b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.title/title.json
deleted file mode 100755
index 50380954de..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.ui.title/title.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "version": "1.0.0",
- "isAnonymous": true,
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/public/css/wizard-stepper.css b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/public/css/wizard-stepper.css
deleted file mode 100755
index cd3e25dba5..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/public/css/wizard-stepper.css
+++ /dev/null
@@ -1,45 +0,0 @@
-/* wizard */
-.wr-wizard {
-
-}
-
-.itm-wiz-current .wiz-no {
- border:1px solid #444;
- color:#fff;
- background:#444;
-}
-
-.itm-wiz {
- font-weight:100;
-}
-
-.itm-wiz div {
- display:inline-block;
- float:left;
-}
-
-.wiz-no {
- width:50px;
- height:50px;
- font-size:33px;
- font-weight: 100;
- border-radius: 80px;
- border:1px solid #ccc;
- color:#fff;
- padding:0px 12px;
- padding-bottom:10px;
- display:inline-block;
- text-align: center;
- background:#ccc;
- margin-right: 10px;
-}
-
-.wiz-lbl {
- width:190px;
- font-size:17px;
-}
-
-.wiz-lbl > span {
- padding-top:0px;
- display:inline-block;
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.hbs b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.hbs
deleted file mode 100755
index 439dd43deb..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.hbs
+++ /dev/null
@@ -1,66 +0,0 @@
-{{!-- Copyright (c) 2016, 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. --}}
-
-
- {{#unequal steps.length 1}}
- {{!-- stepper numbering pane is visible, if steps.length > 1 --}}
- {{#each steps}}
-
- {{#equal @index @unit.params.currentStepIndex}}
-
-
{{math @index "+" 1}}
-
- {{this}}
-
-
- {{/equal}}
- {{#unequal @index @unit.params.currentStepIndex}}
-
-
{{math @index "+" 1}}
-
- {{this}}
-
-
- {{/unequal}}
-
- {{/each}}
-
-
- {{/unequal}}
-
-
- {{#unequal steps.length 1}}
- {{!-- following stepper title format is visible, if steps.length > 1 --}}
-
- Step {{math @unit.params.currentStepIndex "+" 1}} :
-
- {{@unit.params.currentStep}}
-
- {{/unequal}}
- {{#equal steps.length 1}}
- {{!-- following stepper title format is visible, if steps.length == 1 --}}
-
- One step to go :
-
- {{@unit.params.currentStep}}
-
- {{/equal}}
-
-
-
-{{#zone "topCss"}}
- {{css "/css/wizard-stepper.css"}}
-{{/zone}}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.js b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.js
deleted file mode 100755
index ea88f0013f..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.js
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (c) 2016, 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.
- */
-
-function onRequest (context) {
- var log = new Log("wizard-stepper-unit");
- log.debug("Calling wizard-stepper-unit backend js");
-
- context.handlebars.registerHelper('equal', function (lvalue, rvalue, options) {
- if (arguments.length < 3)
- throw new Error("Handlebars Helper equal needs 2 parameters");
- if( lvalue!=rvalue ) {
- return options.inverse(this);
- } else {
- return options.fn(this);
- }
- });
-
- context.handlebars.registerHelper('unequal', function (lvalue, rvalue, options) {
- if (arguments.length < 3)
- throw new Error("Handlebars Helper equal needs 2 parameters");
- if ( lvalue == rvalue ) {
- return options.inverse(this);
- } else {
- return options.fn(this);
- }
- });
-
- //TODO: remove these logical calculations from helpers as it violates the vision of handlebars
- context.handlebars.registerHelper("math", function (lvalue, operator, rvalue) {
- if (arguments.length < 4)
- throw new Error("Handlebars Helper math needs 3 parameters");
-
- lvalue = parseFloat(lvalue);
- rvalue = parseFloat(rvalue);
-
- return {
- "+": lvalue + rvalue,
- "-": lvalue - rvalue,
- "*": lvalue * rvalue,
- "/": lvalue / rvalue,
- "%": lvalue % rvalue
- }[operator];
- });
-
- var viewModel = {};
- // converting the comma-separated list of steps in a string format in to an array
- var wizardSteps;
- if (context.unit.params.steps) {
- wizardSteps = context.unit.params.steps.split(",");
- }
- viewModel.steps = wizardSteps;
- return viewModel;
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.json b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.json
deleted file mode 100755
index f2f22da9a9..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/units/mdm.unit.wizard-stepper/wizard-stepper.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "version": "1.0.0",
- "isAnonymous": true
-}
\ No newline at end of file
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/jaggery.conf b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/jaggery.conf
deleted file mode 100755
index 1c4d77b3df..0000000000
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/jaggery.conf
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "displayName": "EMM Web Agent",
- "logLevel": "error",
- "initScripts": ["/app/modules/init.js"],
- "urlMappings": [
- {
- "url": "/enrollment",
- "path": "/lib/pages.jag"
- },
- {
- "url": "/api/invoker/*",
- "path": "/api/invoker-api.jag"
- },
- {
- "url": "/uuf/login",
- "path": "/lib/modules/auth/login.jag"
- },
- {
- "url": "/uuf/logout",
- "path": "/lib/modules/auth/logout.jag"
- },
- {
- "url": "/uuf/sso/acs",
- "path": "/lib/modules/auth/acs.jag"
- },
- {
- "url": "/public/*",
- "path": "/lib/static-files.jag"
- },
- {
- "url": "/unit/*",
- "path": "/lib/units.jag"
- },
- {
- "url": "/*",
- "path": "/lib/pages.jag"
- }
- ],
- "securityConstraints": [
- {
- "securityConstraint": {
- "webResourceCollection": {
- "name": "ANDROID-WEB-AGENT",
- "urlPatterns": [
- "/*"
- ]
- },
- "userDataConstraint": {
- "transportGuarantee": "CONFIDENTIAL"
- }
- }
- },
- {
- "securityConstraint": {
- "webResourceCollection": {
- "name": "ANDROID-WEB-AGENT-http",
- "urlPatterns": [
- "/public/*",
- "/enrollments/windows/*",
- "/enrollment/windows/*"
- ]
- },
- "userDataConstraint": {
- "transportGuarantee": "NONE"
- }
- }
- }
- ]
-}
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/pages/mdm.page.enrollments.android.download-agent/public/asset/android-agent.apk b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.type-view/public/assets/android-agent.apk
similarity index 100%
rename from components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/android-web-agent/app/pages/mdm.page.enrollments.android.download-agent/public/asset/android-agent.apk
rename to components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.type-view/public/assets/android-agent.apk
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.type-view/type-view.hbs b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.type-view/type-view.hbs
index c0c19ae382..61c2105fd7 100644
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.type-view/type-view.hbs
+++ b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.type-view/type-view.hbs
@@ -44,18 +44,13 @@
{{else}}
{{/if}}
{{/if}}
-
{{#if isCloud}}
Need help? Read
android-plugin
org.wso2.carbon.devicemgt-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml
index 351478eb23..4a39a9031d 100644
--- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml
+++ b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml
@@ -22,7 +22,7 @@
android-plugin
org.wso2.carbon.devicemgt-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/components/mobile-plugins/android-plugin/pom.xml b/components/mobile-plugins/android-plugin/pom.xml
index e582ad5c77..4d275a17bb 100644
--- a/components/mobile-plugins/android-plugin/pom.xml
+++ b/components/mobile-plugins/android-plugin/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
mobile-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/components/mobile-plugins/pom.xml b/components/mobile-plugins/pom.xml
index 5a0a84f2c4..262b3a58ec 100644
--- a/components/mobile-plugins/pom.xml
+++ b/components/mobile-plugins/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
carbon-device-mgt-plugins-parent
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../../pom.xml
diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/pom.xml b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/pom.xml
index 8478d51a65..bb1ad3c9b6 100644
--- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/pom.xml
+++ b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/pom.xml
@@ -21,7 +21,7 @@
windows-plugin
org.wso2.carbon.devicemgt-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.ui/pom.xml b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.ui/pom.xml
index 0d8288c83b..6ab3b1b80f 100644
--- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.ui/pom.xml
+++ b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.ui/pom.xml
@@ -23,13 +23,13 @@
windows-plugin
org.wso2.carbon.devicemgt-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.mobile.windows.ui
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - Mobile Windows UI
pom
diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows/pom.xml b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows/pom.xml
index c473bc9460..eec44e3f1a 100644
--- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows/pom.xml
+++ b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows/pom.xml
@@ -22,7 +22,7 @@
windows-plugin
org.wso2.carbon.devicemgt-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/components/mobile-plugins/windows-plugin/pom.xml b/components/mobile-plugins/windows-plugin/pom.xml
index 719476dfbf..c41919b5b2 100644
--- a/components/mobile-plugins/windows-plugin/pom.xml
+++ b/components/mobile-plugins/windows-plugin/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
mobile-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/components/test-coverage/pom.xml b/components/test-coverage/pom.xml
index 876fd4229b..5e77c56fe0 100644
--- a/components/test-coverage/pom.xml
+++ b/components/test-coverage/pom.xml
@@ -22,7 +22,7 @@
carbon-device-mgt-plugins-parent
org.wso2.carbon.devicemgt-plugins
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/features/analytics-feature/org.wso2.carbon.device.mgt.cdmf.analytics.feature/pom.xml b/features/analytics-feature/org.wso2.carbon.device.mgt.cdmf.analytics.feature/pom.xml
index c4a1607dd7..3f9ec34e05 100644
--- a/features/analytics-feature/org.wso2.carbon.device.mgt.cdmf.analytics.feature/pom.xml
+++ b/features/analytics-feature/org.wso2.carbon.device.mgt.cdmf.analytics.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
analytics-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml
index bec3f67831..fa6080d661 100644
--- a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml
+++ b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml
@@ -23,13 +23,13 @@
org.wso2.carbon.devicemgt-plugins
analytics-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.iot.analytics.feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - IoT Server Analytics Feature
http://wso2.org
diff --git a/features/analytics-feature/org.wso2.carbon.iot.device.statistics.dashboard.feature/pom.xml b/features/analytics-feature/org.wso2.carbon.iot.device.statistics.dashboard.feature/pom.xml
index 83172927cc..53e204d305 100644
--- a/features/analytics-feature/org.wso2.carbon.iot.device.statistics.dashboard.feature/pom.xml
+++ b/features/analytics-feature/org.wso2.carbon.iot.device.statistics.dashboard.feature/pom.xml
@@ -23,13 +23,13 @@
org.wso2.carbon.devicemgt-plugins
analytics-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.iot.device.statistics.dashboard.feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - IoT Server Analytics Feature
http://wso2.org
diff --git a/features/analytics-feature/org.wso2.carbon.iot.geo.dashboard.feature/pom.xml b/features/analytics-feature/org.wso2.carbon.iot.geo.dashboard.feature/pom.xml
index d9c906e5a9..702cab8fd5 100644
--- a/features/analytics-feature/org.wso2.carbon.iot.geo.dashboard.feature/pom.xml
+++ b/features/analytics-feature/org.wso2.carbon.iot.geo.dashboard.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
analytics-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/analytics-feature/pom.xml b/features/analytics-feature/pom.xml
index cb07e921d3..de959156c3 100644
--- a/features/analytics-feature/pom.xml
+++ b/features/analytics-feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
carbon-device-mgt-plugins-parent
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../../pom.xml
diff --git a/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.analytics.feature/pom.xml b/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.analytics.feature/pom.xml
index a31bcc457e..4199d1a17d 100644
--- a/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.analytics.feature/pom.xml
+++ b/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.analytics.feature/pom.xml
@@ -23,13 +23,13 @@
org.wso2.carbon.devicemgt-plugins
androidsense-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.iot.androidsense.analytics.feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - IoT Server Android Sense Analytics Feature
http://wso2.org
diff --git a/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.backend.feature/pom.xml b/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.backend.feature/pom.xml
index 588a633c63..4c88c18e27 100644
--- a/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.backend.feature/pom.xml
+++ b/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.backend.feature/pom.xml
@@ -23,13 +23,13 @@
org.wso2.carbon.devicemgt-plugins
androidsense-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.iot.androidsense.backend.feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - IoT Server Android Sense Backend Feature
http://wso2.org
diff --git a/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.ui.feature/pom.xml b/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.ui.feature/pom.xml
index 312a83ed02..5c0e931732 100644
--- a/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.ui.feature/pom.xml
+++ b/features/device-types-feature/androidsense-plugin-feature/org.wso2.carbon.device.mgt.iot.androidsense.ui.feature/pom.xml
@@ -23,13 +23,13 @@
org.wso2.carbon.devicemgt-plugins
androidsense-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.iot.androidsense.ui.feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - IoT Server Android Sense UI Feature
http://wso2.org
diff --git a/features/device-types-feature/androidsense-plugin-feature/pom.xml b/features/device-types-feature/androidsense-plugin-feature/pom.xml
index 6555cd8931..f2835da642 100644
--- a/features/device-types-feature/androidsense-plugin-feature/pom.xml
+++ b/features/device-types-feature/androidsense-plugin-feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
device-types-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.analytics.feature/pom.xml b/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.analytics.feature/pom.xml
index b4fab50ab1..d41dfe3ba2 100644
--- a/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.analytics.feature/pom.xml
+++ b/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.analytics.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
arduino-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.backend.feature/pom.xml b/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.backend.feature/pom.xml
index 6607cd7478..03efab000b 100644
--- a/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.backend.feature/pom.xml
+++ b/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.backend.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
arduino-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.ui.feature/pom.xml b/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.ui.feature/pom.xml
index aba73c7392..c0a93129f6 100644
--- a/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.ui.feature/pom.xml
+++ b/features/device-types-feature/arduino-plugin-feature/org.wso2.carbon.device.mgt.iot.arduino.ui.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
arduino-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/arduino-plugin-feature/pom.xml b/features/device-types-feature/arduino-plugin-feature/pom.xml
index cdf4408e6e..ae190dc168 100644
--- a/features/device-types-feature/arduino-plugin-feature/pom.xml
+++ b/features/device-types-feature/arduino-plugin-feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
device-types-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/pom.xml b/features/device-types-feature/pom.xml
index e69053a75a..09a04fa637 100644
--- a/features/device-types-feature/pom.xml
+++ b/features/device-types-feature/pom.xml
@@ -22,13 +22,13 @@
org.wso2.carbon.devicemgt-plugins
carbon-device-mgt-plugins-parent
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../../pom.xml
4.0.0
device-types-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - Device Management IoT Plugins Feature
http://wso2.org
diff --git a/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.analytics.feature/pom.xml b/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.analytics.feature/pom.xml
index 1e624d548b..cf3d578556 100644
--- a/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.analytics.feature/pom.xml
+++ b/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.analytics.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
raspberrypi-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.backend.feature/pom.xml b/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.backend.feature/pom.xml
index 565da2dd87..36d63dbc21 100644
--- a/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.backend.feature/pom.xml
+++ b/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.backend.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
raspberrypi-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.ui.feature/pom.xml b/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.ui.feature/pom.xml
index fa6e06054b..5c41b77f8b 100644
--- a/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.ui.feature/pom.xml
+++ b/features/device-types-feature/raspberrypi-plugin-feature/org.wso2.carbon.device.mgt.iot.raspberrypi.ui.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
raspberrypi-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/raspberrypi-plugin-feature/pom.xml b/features/device-types-feature/raspberrypi-plugin-feature/pom.xml
index 529b28f0b7..efd43d9490 100644
--- a/features/device-types-feature/raspberrypi-plugin-feature/pom.xml
+++ b/features/device-types-feature/raspberrypi-plugin-feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
device-types-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.analytics.feature/pom.xml b/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.analytics.feature/pom.xml
index daea3cba51..1b63bd16e6 100644
--- a/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.analytics.feature/pom.xml
+++ b/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.analytics.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
virtual-fire-alarm-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.backend.feature/pom.xml b/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.backend.feature/pom.xml
index 075070ca54..66246754f6 100644
--- a/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.backend.feature/pom.xml
+++ b/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.backend.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
virtual-fire-alarm-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.ui.feature/pom.xml b/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.ui.feature/pom.xml
index dd2ee38d69..b6a224ed8c 100644
--- a/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.ui.feature/pom.xml
+++ b/features/device-types-feature/virtual-fire-alarm-plugin-feature/org.wso2.carbon.device.mgt.iot.virtualfirealarm.ui.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
virtual-fire-alarm-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/device-types-feature/virtual-fire-alarm-plugin-feature/pom.xml b/features/device-types-feature/virtual-fire-alarm-plugin-feature/pom.xml
index 6bfa1a5576..d5eec1d498 100644
--- a/features/device-types-feature/virtual-fire-alarm-plugin-feature/pom.xml
+++ b/features/device-types-feature/virtual-fire-alarm-plugin-feature/pom.xml
@@ -22,7 +22,7 @@
org.wso2.carbon.devicemgt-plugins
device-types-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.api.feature/pom.xml b/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.api.feature/pom.xml
index 03ffb624b6..31608487cd 100644
--- a/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.api.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.api.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.mqtt.authorization.feature/pom.xml b/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.mqtt.authorization.feature/pom.xml
index 9672e8b01d..e7abcbe5e8 100644
--- a/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.mqtt.authorization.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.carbon.andes.extensions.device.mgt.mqtt.authorization.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/extensions-feature/org.wso2.carbon.appmgt.mdm.osgiconnector.feature/pom.xml b/features/extensions-feature/org.wso2.carbon.appmgt.mdm.osgiconnector.feature/pom.xml
index 7d600d09b6..509a1c3889 100644
--- a/features/extensions-feature/org.wso2.carbon.appmgt.mdm.osgiconnector.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.carbon.appmgt.mdm.osgiconnector.feature/pom.xml
@@ -20,13 +20,13 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
org.wso2.carbon.appmgt.mdm.osgiconnector.feature
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - App management MDM OSGI Connector
http://wso2.org
This feature contains the core bundles required for APP management OSGI MDM connection
@@ -36,7 +36,7 @@
org.wso2.carbon.devicemgt-plugins
org.wso2.carbon.appmgt.mdm.osgiconnector
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
org.apache.ws.commons.axiom
diff --git a/features/extensions-feature/org.wso2.carbon.appmgt.mdm.restconnector.feature/pom.xml b/features/extensions-feature/org.wso2.carbon.appmgt.mdm.restconnector.feature/pom.xml
index 3845ad63a6..c29651cbbd 100644
--- a/features/extensions-feature/org.wso2.carbon.appmgt.mdm.restconnector.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.carbon.appmgt.mdm.restconnector.feature/pom.xml
@@ -20,13 +20,13 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
org.wso2.carbon.appmgt.mdm.restconnector.feature
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - App management MDM REST Connector
http://wso2.org
This feature contains the core bundles required for APP management MDM REST connection
@@ -36,7 +36,7 @@
org.wso2.carbon.devicemgt-plugins
org.wso2.carbon.appmgt.mdm.restconnector
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
org.apache.ws.commons.axiom
diff --git a/features/extensions-feature/org.wso2.carbon.device.mgt.adapter.feature/pom.xml b/features/extensions-feature/org.wso2.carbon.device.mgt.adapter.feature/pom.xml
index 25e392472b..a89f47b852 100644
--- a/features/extensions-feature/org.wso2.carbon.device.mgt.adapter.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.carbon.device.mgt.adapter.feature/pom.xml
@@ -23,14 +23,14 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.adapter.feature
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - Device Management Adapters Feature
http://wso2.org
This feature contains the adapter bundles required for IoT Server
diff --git a/features/extensions-feature/org.wso2.carbon.device.mgt.notification.listener.feature/pom.xml b/features/extensions-feature/org.wso2.carbon.device.mgt.notification.listener.feature/pom.xml
index 59c714a9ac..34f290cd94 100644
--- a/features/extensions-feature/org.wso2.carbon.device.mgt.notification.listener.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.carbon.device.mgt.notification.listener.feature/pom.xml
@@ -3,14 +3,14 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.notification.listener.feature
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - Notification Listener
http://wso2.org
This feature contains the core bundles required iot core listeners
diff --git a/features/extensions-feature/org.wso2.carbon.device.mgt.remote.session.feature/pom.xml b/features/extensions-feature/org.wso2.carbon.device.mgt.remote.session.feature/pom.xml
index b57274f1d6..aa68f16cea 100644
--- a/features/extensions-feature/org.wso2.carbon.device.mgt.remote.session.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.carbon.device.mgt.remote.session.feature/pom.xml
@@ -21,7 +21,7 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
diff --git a/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml
index b4513a03af..755c619971 100644
--- a/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml
@@ -20,7 +20,7 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml
index 19c32ab8fd..f64a296ed1 100644
--- a/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml
@@ -20,13 +20,13 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
org.wso2.extension.siddhi.execution.json.feature
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Siddhi Execution Extension - Json Feature
http://wso2.org
This feature contains Siddhi extension feature for changing a json string to individual properties.
diff --git a/features/extensions-feature/org.wso2.gpl.siddhi.extension.geo.script.feature/pom.xml b/features/extensions-feature/org.wso2.gpl.siddhi.extension.geo.script.feature/pom.xml
index 122fd3b2fe..f913b02e5e 100644
--- a/features/extensions-feature/org.wso2.gpl.siddhi.extension.geo.script.feature/pom.xml
+++ b/features/extensions-feature/org.wso2.gpl.siddhi.extension.geo.script.feature/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
diff --git a/features/extensions-feature/pom.xml b/features/extensions-feature/pom.xml
index a5c1cae0c9..fe996b5c0a 100644
--- a/features/extensions-feature/pom.xml
+++ b/features/extensions-feature/pom.xml
@@ -22,13 +22,13 @@
org.wso2.carbon.devicemgt-plugins
carbon-device-mgt-plugins-parent
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../../pom.xml
4.0.0
extensions-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - Device Management Extensions
http://wso2.org
diff --git a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml
index 4b8732a07d..9fd7476603 100644
--- a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml
+++ b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgt-plugins
android-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.mobile.android.feature
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - Android Device Management Feature
http://wso2.org
This feature contains the core bundles required for Android Device Management
diff --git a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/email/templates/android-enrollment-invitation.vm b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/email/templates/android-enrollment-invitation.vm
index 206f74cc88..0a7195e28b 100644
--- a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/email/templates/android-enrollment-invitation.vm
+++ b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/email/templates/android-enrollment-invitation.vm
@@ -39,7 +39,7 @@
You have been invited by $first-name to enrol your android device in WSO2 IoT Server.
- Click here to begin device enrolment from
+ Click here to download device agent in to
your Android device.
diff --git a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/p2.inf b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/p2.inf
index 2da1d8f517..e97190bd3b 100644
--- a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/p2.inf
+++ b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/src/main/resources/p2.inf
@@ -2,7 +2,6 @@ instructions.configure = \
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.mobile.android_${feature.version}/webapps/api#device-mgt#android#v1.0.war,target:${installFolder}/../../deployment/server/webapps/api#device-mgt#android#v1.0.war,overwrite:true);\
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.mobile.android_${feature.version}/webapps/api#device-mgt#android#v0.9.war,target:${installFolder}/../../deployment/server/webapps/api#device-mgt#android#v0.9.war,overwrite:true);\
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.mobile.android_${feature.version}/jaggeryapps/devicemgt,target:${installFolder}/../../deployment/server/jaggeryapps/devicemgt,overwrite:true);\
-org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.mobile.android_${feature.version}/jaggeryapps/android-web-agent,target:${installFolder}/../../deployment/server/jaggeryapps/android-web-agent,overwrite:true);\
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.mobile.android_${feature.version}/datasources/,target:${installFolder}/../../conf/datasources/,overwrite:true);\
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.mobile.android_${feature.version}/conf/mobile-config.xml,target:${installFolder}/../../conf/mobile-config.xml,overwrite:true);\
org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.mobile.android_${feature.version}/dbscripts/plugins/,target:${installFolder}/../../../dbscripts/cdm/plugins/android,overwrite:true);\
@@ -19,7 +18,6 @@ instructions.unconfigure = \
org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/webapps/mdm-android-agent.war);\
org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../conf/datasources/android-datasources.xml);\
org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/webapps/mdm-android-agent);\
-org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/jaggeryapps/android-web-agent);\
org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.operation-bar);\
org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.device-view);\
org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/jaggeryapps/devicemgt/app/units/cdmf.unit.device.type.android.policy-edit);\
diff --git a/features/mobile-plugins-feature/android-plugin-feature/pom.xml b/features/mobile-plugins-feature/android-plugin-feature/pom.xml
index b575130912..b126d56dd0 100644
--- a/features/mobile-plugins-feature/android-plugin-feature/pom.xml
+++ b/features/mobile-plugins-feature/android-plugin-feature/pom.xml
@@ -22,13 +22,13 @@
org.wso2.carbon.devicemgt-plugins
mobile-plugins-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
android-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - Device Management Android Plugin Feature
http://wso2.org
diff --git a/features/mobile-plugins-feature/pom.xml b/features/mobile-plugins-feature/pom.xml
index 97b4b406c4..c93b9b169c 100644
--- a/features/mobile-plugins-feature/pom.xml
+++ b/features/mobile-plugins-feature/pom.xml
@@ -22,13 +22,13 @@
org.wso2.carbon.devicemgt-plugins
carbon-device-mgt-plugins-parent
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../../pom.xml
4.0.0
mobile-plugins-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - Device Management EMM Plugins Feature
http://wso2.org
diff --git a/features/mobile-plugins-feature/windows-plugin-feature/org.wso2.carbon.device.mgt.mobile.windows.feature/pom.xml b/features/mobile-plugins-feature/windows-plugin-feature/org.wso2.carbon.device.mgt.mobile.windows.feature/pom.xml
index 16ee789033..4e2c5fb0d6 100644
--- a/features/mobile-plugins-feature/windows-plugin-feature/org.wso2.carbon.device.mgt.mobile.windows.feature/pom.xml
+++ b/features/mobile-plugins-feature/windows-plugin-feature/org.wso2.carbon.device.mgt.mobile.windows.feature/pom.xml
@@ -22,14 +22,14 @@
org.wso2.carbon.devicemgt-plugins
windows-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
org.wso2.carbon.device.mgt.mobile.windows.feature
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - Windows Device Management Feature
http://wso2.org
This feature contains the core bundles required for Windows Device Management
diff --git a/features/mobile-plugins-feature/windows-plugin-feature/pom.xml b/features/mobile-plugins-feature/windows-plugin-feature/pom.xml
index 3dacf9c417..238717ae7e 100644
--- a/features/mobile-plugins-feature/windows-plugin-feature/pom.xml
+++ b/features/mobile-plugins-feature/windows-plugin-feature/pom.xml
@@ -22,13 +22,13 @@
org.wso2.carbon.devicemgt-plugins
mobile-plugins-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
../pom.xml
4.0.0
windows-plugin-feature
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
pom
WSO2 Carbon - Device Management Windows Plugin Feature
http://wso2.org
diff --git a/pom.xml b/pom.xml
index d120bf6cdf..94f52c965b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
org.wso2.carbon.devicemgt-plugins
carbon-device-mgt-plugins-parent
pom
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
WSO2 Carbon - Device Management Plugins Parent
http://wso2.org
WSO2 Carbon - Device Management Plugins Parent
@@ -1222,7 +1222,7 @@
1.2.40
- 4.0.108-SNAPSHOT
+ 4.0.109-SNAPSHOT
4.4.8