cl
2024-02-23 73bc0656dc15cd9cc95c6f4f51949ef0437088ce
提交 | 用户 | 时间
71e81e 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
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19 'use strict';
20
21 var KISBPM = KISBPM || {};
22 KISBPM.PROPERTY_CONFIG =
23 {
24     "string": {
25         "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
26         "writeModeTemplateUrl": "editor-app/configuration/properties/string-property-write-mode-template.html"
27     },
28     "boolean": {
29         "templateUrl": "editor-app/configuration/properties/boolean-property-template.html"
30     },
31     "text" : {
32         "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
33         "writeModeTemplateUrl": "editor-app/configuration/properties/text-property-write-template.html"
34     },
35     "kisbpm-multiinstance" : {
36         "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
37         "writeModeTemplateUrl": "editor-app/configuration/properties/multiinstance-property-write-template.html"
38     },
39     "oryx-formproperties-complex": {
40         "readModeTemplateUrl": "editor-app/configuration/properties/form-properties-display-template.html",
41         "writeModeTemplateUrl": "editor-app/configuration/properties/form-properties-write-template.html"
42     },
43     "oryx-executionlisteners-multiplecomplex": {
44         "readModeTemplateUrl": "editor-app/configuration/properties/execution-listeners-display-template.html",
45         "writeModeTemplateUrl": "editor-app/configuration/properties/execution-listeners-write-template.html"
46     },
47     "oryx-tasklisteners-multiplecomplex": {
48         "readModeTemplateUrl": "editor-app/configuration/properties/task-listeners-display-template.html",
49         "writeModeTemplateUrl": "editor-app/configuration/properties/task-listeners-write-template.html"
50     },
51     "oryx-eventlisteners-multiplecomplex": {
52         "readModeTemplateUrl": "editor-app/configuration/properties/event-listeners-display-template.html",
53         "writeModeTemplateUrl": "editor-app/configuration/properties/event-listeners-write-template.html"
54     },
55     "oryx-usertaskassignment-complex": {
56         "readModeTemplateUrl": "editor-app/configuration/properties/assignment-display-template.html",
57         "writeModeTemplateUrl": "editor-app/configuration/properties/assignment-write-template.html"
58     },
59     "oryx-servicetaskfields-complex": {
60         "readModeTemplateUrl": "editor-app/configuration/properties/fields-display-template.html",
61         "writeModeTemplateUrl": "editor-app/configuration/properties/fields-write-template.html"
62     },
63     "oryx-callactivityinparameters-complex": {
64         "readModeTemplateUrl": "editor-app/configuration/properties/in-parameters-display-template.html",
65         "writeModeTemplateUrl": "editor-app/configuration/properties/in-parameters-write-template.html"
66     },
67     "oryx-callactivityoutparameters-complex": {
68         "readModeTemplateUrl": "editor-app/configuration/properties/out-parameters-display-template.html",
69         "writeModeTemplateUrl": "editor-app/configuration/properties/out-parameters-write-template.html"
70     },
71     "oryx-subprocessreference-complex": {
72         "readModeTemplateUrl": "editor-app/configuration/properties/subprocess-reference-display-template.html",
73         "writeModeTemplateUrl": "editor-app/configuration/properties/subprocess-reference-write-template.html"
74     },
75     "oryx-sequencefloworder-complex" : {
76         "readModeTemplateUrl": "editor-app/configuration/properties/sequenceflow-order-display-template.html",
77         "writeModeTemplateUrl": "editor-app/configuration/properties/sequenceflow-order-write-template.html"
78     },
79     "oryx-conditionsequenceflow-complex" : {
80         "readModeTemplateUrl": "editor-app/configuration/properties/condition-expression-display-template.html",
81         "writeModeTemplateUrl": "editor-app/configuration/properties/condition-expression-write-template.html"
82     },
83     "oryx-signaldefinitions-multiplecomplex" : {
84         "readModeTemplateUrl": "editor-app/configuration/properties/signal-definitions-display-template.html",
85         "writeModeTemplateUrl": "editor-app/configuration/properties/signal-definitions-write-template.html"
86     },
87     "oryx-signalref-string" : {
88         "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
89         "writeModeTemplateUrl": "editor-app/configuration/properties/signal-property-write-template.html"
90     },
91     "oryx-messagedefinitions-multiplecomplex" : {
92         "readModeTemplateUrl": "editor-app/configuration/properties/message-definitions-display-template.html",
93         "writeModeTemplateUrl": "editor-app/configuration/properties/message-definitions-write-template.html"
94     },
95     "oryx-messageref-string" : {
96         "readModeTemplateUrl": "editor-app/configuration/properties/default-value-display-template.html",
97         "writeModeTemplateUrl": "editor-app/configuration/properties/message-property-write-template.html"
98     }
99 };