diff --git a/entity/ActivityLink_entity/recordcontainers/db/conditionProcess.js b/entity/ActivityLink_entity/recordcontainers/db/conditionProcess.js index df774bc81f15531af6733fbe0d56c0f80d6e46aa..6e4af217f1b188cb44d3218b7acd239b5f1723c5 100644 --- a/entity/ActivityLink_entity/recordcontainers/db/conditionProcess.js +++ b/entity/ActivityLink_entity/recordcontainers/db/conditionProcess.js @@ -1,4 +1,3 @@ -import("system.logging"); import("system.vars"); import("system.db"); import("system.result"); diff --git a/entity/AddressValidation_entity/recordcontainers/jdito/contentProcess.js b/entity/AddressValidation_entity/recordcontainers/jdito/contentProcess.js index 70adc4396fe4f943d4aeddddf70479e1dcfdeb9e..5e2e5870c7195119f5df38e56725201094ccb404 100644 --- a/entity/AddressValidation_entity/recordcontainers/jdito/contentProcess.js +++ b/entity/AddressValidation_entity/recordcontainers/jdito/contentProcess.js @@ -1,4 +1,3 @@ -import("system.logging"); import("system.result"); import("WsValidation_lib"); import("system.vars"); diff --git a/entity/BulkMail_entity/entityfields/bindata/onValueChange.js b/entity/BulkMail_entity/entityfields/bindata/onValueChange.js index 182b975448ffafa092e85fe591aa4c3aca92c06b..6d44df798cb5934ec06db2f9e7155a14190bed3a 100644 --- a/entity/BulkMail_entity/entityfields/bindata/onValueChange.js +++ b/entity/BulkMail_entity/entityfields/bindata/onValueChange.js @@ -1,4 +1,3 @@ -import("system.logging"); import("DocumentTemplate_lib"); import("system.neon"); import("system.vars"); @@ -8,7 +7,6 @@ import("system.vars"); if(vars.get("$sys.viewmode") == neon.FRAME_VIEWMODE_DATASET) { [content, type] = DocumentTemplateUtils.getTemplateContent(vars.get("$field.DOCUMENTTEMPLATE_ID"), new FileUpload(vars.get("$local.value"))); - logging.log(JSON.stringify(["valChange", type], null, "\t")) vars.set("$field.DOCUMENTTEMPLATE_ID", ""); vars.set("$field.content", content); vars.set("$context.currentTemplateType", type); diff --git a/entity/BulkMail_entity/entityfields/content/stateProcess.js b/entity/BulkMail_entity/entityfields/content/stateProcess.js index ec3055e1fdf9f702bf62f857b34610c996a4ff4d..d48b2b6f0074a0be65f266402613082c57db6f84 100644 --- a/entity/BulkMail_entity/entityfields/content/stateProcess.js +++ b/entity/BulkMail_entity/entityfields/content/stateProcess.js @@ -1,16 +1,13 @@ -import("system.logging"); import("system.result"); import("system.vars"); import("system.neon"); import("DocumentTemplate_lib"); -logging.log(JSON.stringify(["stateProcess"], null, "\t")) // in edit mode if (vars.get("$sys.recordstate") != neon.OPERATINGSTATE_VIEW && (vars.get("$context.currentTemplateType") == DocumentTemplate.types.EML || vars.get("$context.currentTemplateType") == DocumentTemplate.types.HTML)) // TODO: invisible for html as there are problems with images which are removed by the html-editor { - logging.log(JSON.stringify(["state", vars.get("$context.currentTemplateType")], null, "\t")) result.string(neon.COMPONENTSTATE_INVISIBLE); } @@ -18,11 +15,9 @@ if (vars.get("$sys.recordstate") != neon.OPERATINGSTATE_VIEW && // For EML-files or other large files this is very bad, as the editor needs a very long time to initialize else if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_VIEW) { - logging.log(JSON.stringify(["state2", vars.get("$context.currentTemplateType")], null, "\t")) result.string(neon.COMPONENTSTATE_INVISIBLE); } else { - logging.log(JSON.stringify(["edit", vars.get("$context.currentTemplateType")], null, "\t")) result.string(neon.COMPONENTSTATE_EDITABLE); } \ No newline at end of file diff --git a/entity/DocumentTemplateTypeCategory_entity/recordcontainers/db/conditionProcess.js b/entity/DocumentTemplateTypeCategory_entity/recordcontainers/db/conditionProcess.js index 81f2bd0e017ce8f7db15d66f65bceb761e223789..2a0223f142376d5c40f758dfc128c78c6f581001 100644 --- a/entity/DocumentTemplateTypeCategory_entity/recordcontainers/db/conditionProcess.js +++ b/entity/DocumentTemplateTypeCategory_entity/recordcontainers/db/conditionProcess.js @@ -1,4 +1,3 @@ -import("system.logging"); import("system.db"); import("system.vars"); import("system.result"); diff --git a/entity/DocumentTemplate_entity/onValidation.js b/entity/DocumentTemplate_entity/onValidation.js index 92d9ab9bfb1085749ce3486843d78f4329dd2505..001768435bafd335685a74bde7725f3a37e707ff 100644 --- a/entity/DocumentTemplate_entity/onValidation.js +++ b/entity/DocumentTemplate_entity/onValidation.js @@ -1,4 +1,3 @@ -import("system.logging"); import("system.neon"); import("system.translate"); import("system.result");