properties.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Activiti Modeler component part of the Activiti project
  3. * Copyright 2005-2014 Alfresco Software, Ltd. All rights reserved.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. 'use strict';
  19. var KISBPM = KISBPM || {};
  20. KISBPM.PROPERTY_CONFIG =
  21. {
  22. "string": {
  23. "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
  24. "writeModeTemplateUrl": "editor-app/configuration/properties/string-property-write-mode-template.html"
  25. },
  26. "boolean": {
  27. "templateUrl": "editor-app/configuration/properties/boolean-property-template.html"
  28. },
  29. "text" : {
  30. "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
  31. "writeModeTemplateUrl": "editor-app/configuration/properties/text-property-write-template.html"
  32. },
  33. "kisbpm-multiinstance" : {
  34. "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
  35. "writeModeTemplateUrl": "editor-app/configuration/properties/multiinstance-property-write-template.html"
  36. },
  37. "oryx-formproperties-complex": {
  38. "readModeTemplateUrl": "editor-app/configuration/properties/form-properties-display-template.html",
  39. "writeModeTemplateUrl": "editor-app/configuration/properties/form-properties-write-template.html"
  40. },
  41. "oryx-executionlisteners-multiplecomplex": {
  42. "readModeTemplateUrl": "editor-app/configuration/properties/execution-listeners-display-template.html",
  43. "writeModeTemplateUrl": "editor-app/configuration/properties/execution-listeners-write-template.html"
  44. },
  45. "oryx-tasklisteners-multiplecomplex": {
  46. "readModeTemplateUrl": "editor-app/configuration/properties/task-listeners-display-template.html",
  47. "writeModeTemplateUrl": "editor-app/configuration/properties/task-listeners-write-template.html"
  48. },
  49. "oryx-eventlisteners-multiplecomplex": {
  50. "readModeTemplateUrl": "editor-app/configuration/properties/event-listeners-display-template.html",
  51. "writeModeTemplateUrl": "editor-app/configuration/properties/event-listeners-write-template.html"
  52. },
  53. "oryx-usertaskassignment-complex": {
  54. "readModeTemplateUrl": "editor-app/configuration/properties/assignment-display-template.html",
  55. "writeModeTemplateUrl": "editor-app/configuration/properties/assignment-write-template.html"
  56. },
  57. "oryx-servicetaskfields-complex": {
  58. "readModeTemplateUrl": "editor-app/configuration/properties/fields-display-template.html",
  59. "writeModeTemplateUrl": "editor-app/configuration/properties/fields-write-template.html"
  60. },
  61. "oryx-callactivityinparameters-complex": {
  62. "readModeTemplateUrl": "editor-app/configuration/properties/in-parameters-display-template.html",
  63. "writeModeTemplateUrl": "editor-app/configuration/properties/in-parameters-write-template.html"
  64. },
  65. "oryx-callactivityoutparameters-complex": {
  66. "readModeTemplateUrl": "editor-app/configuration/properties/out-parameters-display-template.html",
  67. "writeModeTemplateUrl": "editor-app/configuration/properties/out-parameters-write-template.html"
  68. },
  69. "oryx-subprocessreference-complex": {
  70. "readModeTemplateUrl": "editor-app/configuration/properties/subprocess-reference-display-template.html",
  71. "writeModeTemplateUrl": "editor-app/configuration/properties/subprocess-reference-write-template.html"
  72. },
  73. "oryx-sequencefloworder-complex" : {
  74. "readModeTemplateUrl": "editor-app/configuration/properties/sequenceflow-order-display-template.html",
  75. "writeModeTemplateUrl": "editor-app/configuration/properties/sequenceflow-order-write-template.html"
  76. },
  77. "oryx-conditionsequenceflow-complex" : {
  78. "readModeTemplateUrl": "editor-app/configuration/properties/condition-expression-display-template.html",
  79. "writeModeTemplateUrl": "editor-app/configuration/properties/condition-expression-write-template.html"
  80. },
  81. "oryx-signaldefinitions-multiplecomplex" : {
  82. "readModeTemplateUrl": "editor-app/configuration/properties/signal-definitions-display-template.html",
  83. "writeModeTemplateUrl": "editor-app/configuration/properties/signal-definitions-write-template.html"
  84. },
  85. "oryx-signalref-string" : {
  86. "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
  87. "writeModeTemplateUrl": "editor-app/configuration/properties/signal-property-write-template.html"
  88. },
  89. "oryx-messagedefinitions-multiplecomplex" : {
  90. "readModeTemplateUrl": "editor-app/configuration/properties/message-definitions-display-template.html",
  91. "writeModeTemplateUrl": "editor-app/configuration/properties/message-definitions-write-template.html"
  92. },
  93. "oryx-messageref-string" : {
  94. "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
  95. "writeModeTemplateUrl": "editor-app/configuration/properties/message-property-write-template.html"
  96. }
  97. };