From 8f2301aba41bf1ccaf661e8eb4929b077d6517f3 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Mon, 17 Aug 2020 13:49:06 +0100 Subject: Remove apex policy editor gui The apex policy editor has been moved to policy-gui. This review removes the code from the apex-pdp repo. Issue-ID: POLICY-2621 Change-Id: Ib5b90386d0da8af6eec8870fbcaf01b94975d5c6 Signed-off-by: liamfallon --- .../resources/webapp/js/ApexContextSchemaTab.js | 104 --------------------- 1 file changed, 104 deletions(-) delete mode 100644 client/client-editor/src/main/resources/webapp/js/ApexContextSchemaTab.js (limited to 'client/client-editor/src/main/resources/webapp/js/ApexContextSchemaTab.js') diff --git a/client/client-editor/src/main/resources/webapp/js/ApexContextSchemaTab.js b/client/client-editor/src/main/resources/webapp/js/ApexContextSchemaTab.js deleted file mode 100644 index fa4080a7c..000000000 --- a/client/client-editor/src/main/resources/webapp/js/ApexContextSchemaTab.js +++ /dev/null @@ -1,104 +0,0 @@ -/* - * ============LICENSE_START======================================================= - * Copyright (C) 2016-2018 Ericsson. All rights reserved. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - * ============LICENSE_END========================================================= - */ - -function contextSchemaTab_reset() { - contextSchemaTab_deactivate(); - contextSchemaTab_activate(); -} -function contextSchemaTab_activate() { - contextSchemaTab_create(); - - var requestURL = restRootURL + "/ContextSchema/Get?name=&version="; - - ajax_get(requestURL, function(data) { - $("#contextSchemaTableBody").find("tr:gt(0)").remove(); - - for (var i = 0; i < data.messages.message.length; i++) { - var contextSchema = JSON.parse(data.messages.message[i]).apexContextSchema; - - var contextSchemaRow_tr = document.createElement("tr"); - var contextSchemaid = contextSchema.key.name + ":" + contextSchema.key.version; - - var contextSchemaRow = - "" + - contextSchemaid + - "" + - "" + - contextSchema.schemaFlavour + - "" + - "" + - apexUtils_escapeHtml(contextSchema.schemaDefinition) + - ""; - - contextSchemaRow_tr.innerHTML = contextSchemaRow; - contextSchemaRow_tr.addEventListener('contextmenu', rightClickMenu_scopePreserver("contextSchemaTabContent", "ContextSchema", contextSchema.key.name, contextSchema.key.version)); - - $("#contextSchemaTableBody").append(contextSchemaRow_tr); - } - }); -} - -function contextSchemaTab_deactivate() { - apexUtils_removeElement("contextSchemaTabContent"); -} - -function contextSchemaTab_create() { - var contextSchemaTab = document.getElementById("contextSchemasTab"); - - var contextSchemaTabContent = document.getElementById("contextSchemaTabContent"); - if (contextSchemaTabContent != null) { - return - } - - var contextSchemaTabContent = document.createElement("contextSchemaTabContent"); - contextSchemaTab.appendChild(contextSchemaTabContent); - contextSchemaTabContent.setAttribute("id", "contextSchemaTabContent"); - contextSchemaTabContent.addEventListener('contextmenu', rightClickMenu_scopePreserver("contextSchemaTabContent", "ContextSchema",null,null)); - - var contextSchemaTable = createTable("contextSchemaTable"); - contextSchemaTabContent.appendChild(contextSchemaTable); - - var contextSchemaTableHeader = document.createElement("thead"); - contextSchemaTable.appendChild(contextSchemaTableHeader); - contextSchemaTableHeader.setAttribute("id", "contextSchemaTableHeader"); - - var contextSchemaTableHeaderRow = document.createElement("tr"); - contextSchemaTableHeader.appendChild(contextSchemaTableHeaderRow); - contextSchemaTableHeaderRow.setAttribute("id", "contextSchemaTableHeaderRow"); - - var contextSchemaTableKeyHeader = document.createElement("th"); - contextSchemaTableHeaderRow.appendChild(contextSchemaTableKeyHeader); - contextSchemaTableKeyHeader.setAttribute("id", "contextSchemaTableKeyHeader"); - contextSchemaTableKeyHeader.appendChild(document.createTextNode("Context Item")); - - var contextSchemaTableSchemaFlavourHeader = document.createElement("th"); - contextSchemaTableHeaderRow.appendChild(contextSchemaTableSchemaFlavourHeader); - contextSchemaTableSchemaFlavourHeader.setAttribute("id", "contextSchemaTableJavatypeHeader"); - contextSchemaTableSchemaFlavourHeader.appendChild(document.createTextNode("Schema Flavour")); - - var contextSchemaTableSchemaDefHeader = document.createElement("th"); - contextSchemaTableHeaderRow.appendChild(contextSchemaTableSchemaDefHeader); - contextSchemaTableSchemaDefHeader.setAttribute("id", "contextSchemaTableJavatypeHeader"); - contextSchemaTableSchemaDefHeader.appendChild(document.createTextNode("Context Item Schema Definition")); - - var contextSchemaTableBody = document.createElement("tbody"); - contextSchemaTable.appendChild(contextSchemaTableBody); - contextSchemaTable.setAttribute("id", "contextSchemaTableBody"); -} \ No newline at end of file -- cgit 1.2.3-korg