Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/dict.bpmn
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="42" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_14za570_di" bpmnElement="EndEvent_1">
<dc:Bounds x="402" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_014wwzu_di" bpmnElement="Activity_0rjlb6d">
<dc:Bounds x="110" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_01bp2zm_di" bpmnElement="Activity_02ziaqh">
<dc:Bounds x="240" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_14za570_di" bpmnElement="EndEvent_1">
<dc:Bounds x="402" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_17db3yp_di" bpmnElement="Flow_17db3yp">
<di:waypoint x="78" y="177" />
<di:waypoint x="110" y="177" />
Expand Down
2 changes: 1 addition & 1 deletion examples/manual_tasks.bpmn
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</bpmn:manualTask>
<bpmn:manualTask id="Activity_1n7p3m4">
<bpmn:extensionElements>
<spiffworkflow:postScript>post_script_var = 2
<spiffworkflow:postScript>post_script_var = 22
del pre_script_var</spiffworkflow:postScript>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0lfoegg</bpmn:incoming>
Expand Down
4 changes: 2 additions & 2 deletions examples/manual_tasks_test.bpmn
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test():

class TestTaskData(unittest.TestCase):
def runTest(self):
self.assertEqual(post_script_var, 2)
self.assertEqual(post_script_var, 22)

return runTests([TestTaskData()])

Expand Down Expand Up @@ -72,7 +72,7 @@ spiff_testResult = test()</bpmn:script>
<bpmn:outgoing>Flow_0glzdyc</bpmn:outgoing>
<bpmn:script>spiff_testFixture = {
"pendingTaskStack": [
{ "id": "Activity_1n7p3m4", "data": {} },
#{ "id": "Activity_1n7p3m4", "data": {} },
{ "id": "Activity_1h7gm30", "data": {} },
]
}</bpmn:script>
Expand Down
8 changes: 4 additions & 4 deletions examples/user_task.bpmn
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<bpmn:userTask id="ut_task">
<bpmn:extensionElements>
<spiffworkflow:properties>
<spiffworkflow:property name="formJsonSchemaFilename" value="ut-schema.json" />
<spiffworkflow:property name="formJsonSchemaFilename" value="user_task-schema.json" />
<spiffworkflow:property name="formUiSchemaFilename" value="ut-uischema.json" />
</spiffworkflow:properties>
</bpmn:extensionElements>
Expand All @@ -25,12 +25,12 @@
<bpmndi:BPMNShape id="StartEvent_1770128055928_di" bpmnElement="StartEvent_1770128055928">
<dc:Bounds x="182" y="142" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0523rce_di" bpmnElement="ut_task">
<dc:Bounds x="260" y="120" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="EndEvent_1770128055928_di" bpmnElement="EndEvent_1770128055928">
<dc:Bounds x="412" y="142" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0523rce_di" bpmnElement="ut_task">
<dc:Bounds x="260" y="120" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow1_1770128055928_di" bpmnElement="Flow1_1770128055928">
<di:waypoint x="218" y="160" />
<di:waypoint x="260" y="160" />
Expand Down
Loading