Skip to content

Instantly share code, notes, and snippets.

@heshanjse
Last active June 21, 2021 12:50
Show Gist options
  • Save heshanjse/25e727ce17e8b76619f70fbb91b4226f to your computer and use it in GitHub Desktop.
Save heshanjse/25e727ce17e8b76619f70fbb91b4226f to your computer and use it in GitHub Desktop.

Revisions

  1. heshanjse revised this gist Aug 23, 2016. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -144,7 +144,6 @@ August 24 : Final Evaluations

    <p align="center">
    <img src="http://i64.tinypic.com/2910ydi.png" />
    <h3><b>Directory Layout</b></h3>
    </p>
    <h3><b>Directory Layout</b></h3>
    ```
  2. heshanjse revised this gist Aug 23, 2016. 1 changed file with 26 additions and 1 deletion.
    27 changes: 26 additions & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -144,8 +144,33 @@ August 24 : Final Evaluations

    <p align="center">
    <img src="http://i64.tinypic.com/2910ydi.png" />
    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    <h3><b>Directory Layout</b></h3>
    </p>
    <h3><b>Directory Layout</b></h3>
    ```
    BPMNEditor/
    |—app/
    |— drawingpage/
    | |— endevent/
    | | |—endevent.js —> End Event Controller
    | |—flow/
    | | |—flow.js —> Flow Controller
    | |—gateway/
    | | |—gateway.js —> Gateway Controller
    | |—startevent/
    | | |—startevent.js —> Start Event Contoller
    | |—task/
    | | |—task.js —> Task Controller
    | |—bpmnjsonUpdater.js —> Recreate a BPMN graph after JSON import
    | |—bpmnuploader.js —> Push BPMN elements to JSON file
    | |—devider.js —> Declare second level app module
    | |—drawing.js —> Declare top level app module
    |— img/ —> All images
    |—public/
    | |—css/ —> All css libraries
    | |— js/ —> All javascript libraries
    |— index.js —> Canvas and toolbox HTML page
    ```

    Known Issues

  3. heshanjse revised this gist Aug 23, 2016. No changes.
  4. heshanjse revised this gist Aug 23, 2016. No changes.
  5. heshanjse revised this gist Aug 23, 2016. 1 changed file with 7 additions and 7 deletions.
    14 changes: 7 additions & 7 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -24,24 +24,24 @@ Demo : http://heshanjse.github.io/BPMNEditor/app/
    Business Process Model and Notation (BPMN) is a standard way of representing business processes in graphical form.
    This project will involve implementing a Web based BPMN editor to construct business process diagrams. Users can implement BPMN diagrams using tasks,gateways,start events and end events.

    - task-User task,Script task,Mail task,Manual task
    - Gateway-Parallel gateway,Exclusive gateway,Inclusive gateway,Event gateway
    - Start event-Start event,Time start event,Message start event,Error start event
    - End event-End event,Error end event,Terminate end event,Cancel end event
    - task-User Task,Script Task,Mail Task,Manual Task
    - Gateway-Parallel Gateway,Exclusive Gateway,Inclusive Gateway,Event Gateway
    - Start event-Start Event,Time Start Event,Message Start Event,Error Start Event
    - End event-End Event,Error End Event,Terminate End Event,Cancel End Event

    This BPMN editor has the capability to build complete Business Process diagrams; download Business Process diagrams files in Json format; upload json format file and generate Business Process diagrams.

    <p>
    <h4><b>BPMN element Overview</b></h4>
    Start event&nbsp;&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;&nbsp;Error start event
    Start Event&nbsp;&nbsp;&nbsp;&nbsp;Time Start Event&nbsp;&nbsp;&nbsp;&nbsp;Message Start Event&nbsp;&nbsp;&nbsp;&nbsp;Error Start Event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="485"/>
    <br>
    End event&nbsp;&nbsp;&nbsp;&nbsp;Terminate end event&nbsp;&nbsp;&nbsp;&nbsp;Error end event&nbsp;&nbsp;&nbsp;&nbsp;Cancel end event
    End Event&nbsp;&nbsp;&nbsp;&nbsp;Terminate End Event&nbsp;&nbsp;&nbsp;&nbsp;Error End Event&nbsp;&nbsp;&nbsp;&nbsp;Cancel End Event
    <br>
    <img src="http://i66.tinypic.com/2ahcpqf.png" width="485"/>
    <br>
    Parallel gateway&nbsp;&nbsp;&nbsp;&nbsp;Exclusive gateway&nbsp;&nbsp;&nbsp;&nbsp;Inclusive gateway&nbsp;&nbsp;&nbsp;&nbsp;Event gateway
    Parallel Gateway&nbsp;&nbsp;&nbsp;&nbsp;Exclusive Gateway&nbsp;&nbsp;&nbsp;&nbsp;Inclusive Gateway&nbsp;&nbsp;&nbsp;&nbsp;Event Gateway
    <br>
    <img src="http://i65.tinypic.com/6oookg.png" width="485"/>
    <br>
  6. heshanjse revised this gist Aug 23, 2016. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -141,6 +141,12 @@ August 14, 2016 - August 23, 2016 : Coding Week 13

    August 24 : Final Evaluations


    <p align="center">
    <img src="http://i64.tinypic.com/2910ydi.png" />
    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>

    Known Issues

    - The changes made to a BPMN flow using the connection points are not saved.
  7. heshanjse revised this gist Aug 23, 2016. 1 changed file with 8 additions and 7 deletions.
    15 changes: 8 additions & 7 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -127,25 +127,26 @@ July 25, 2016 - July 31, 2016 : Coding Week 10

    August 01, 2016 - August 07, 2016 : Coding Week 11

    - Flow change from multiple connection points
    - Flow point take task edge and draw flow after drag resized task
    - Implemented the functionality to allow BPMN Flow change using multiple connection points
    - Enabled the BPMN flow to capture the bounding box of Task Element after it has been resized.

    August 08, 2016 - August 14, 2016 : Coding Week 12

    - Import and export feature is created
    - Created the JSON import and JSON export feature

    August 14, 2016 - August 23, 2016 : Coding Week 13

    - Text editor bug fixed
    - Import and export bug fixed
    - JSON import and JSON export bug fixed

    August 24 : Final Evaluations

    Known Issues

    - Can't save the flow with the changes have been made to a BPMN graph using the multiple connection points.
    - if connected element have the same x codinate flow does not connect properly
    - task element text not saved in json array
    - The changes made to a BPMN flow using the connection points are not saved.
    - If two connected elements have the same x coordinate those elements will not maintain a connection.
    - The text of a Task element is not saved to a JSON array.
    - Problem with multiple inbound connections to a BPMN element.



  8. heshanjse revised this gist Aug 23, 2016. No changes.
  9. heshanjse revised this gist Aug 23, 2016. 1 changed file with 11 additions and 2 deletions.
    13 changes: 11 additions & 2 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -54,6 +54,15 @@ This BPMN editor has the capability to build complete Business Process diagrams;
    <img src="http://i66.tinypic.com/34htpfk.png" />
    </p>

    User can drag and drop BPMN elements from the tool box to the drawing canvas.Those BPMN elements can be dragged in the canvas and upon clicking on any of those elements will cause a tooltip to appear. Also, the artefacts inside any of tooltips depend on the BPMN element selected. eg:- End Event element does not have a flow drawing artefact whereas the Task elements has all of the available artefacts

    BPMN flows(connect elements) can be drawn using the flow artefact from either the toolbox or the element tooltip. That BPMN flow can be changed using multiple connection points.When the drawn elements move about, connected flows will also respond accordingly by maintaining the connections.

    A BPMN Task can be resized using its bounding box, additionally, the text of a BPMN Task can be changed after pressing the relevant artefact in tooltip. Every element can be deleted using the delete artefact of a tool tip, which means that all its connected flows will get deleted too. However, the user has the ability to delete a flow without deleting it’s constituent BPMN elements.
    Every BPMN element can add properties using the given property artefact in its tooltip, which will create a popup window showing the applicable properties.

    Any BPMN graph drawn can be downloaded as a JSON file. The users can also recreate a BPMN graph in the editor by importing a BPMN JSON file. This recreated graph will be editable just as a fresh one.

    completed tasks with Timeline

    March 22 April : publish GSOC selected students
    @@ -71,8 +80,8 @@ May 22, 2016 - May 29, 2016 : Coding Week 1

    May 30, 2016 - June 05, 2016 : Coding Week 2

    - added drag events to the Start Event. (Start Event can be dragged around,inside the canvas)
    - created Gateway,Task and End Event elements.
    - Added drag events to the Start Event. (Start Event can be dragged around,inside the canvas)
    - Created Gateway,Task and End Event elements.

    June 06, 2016 - June 10, 2016 : Coding Week 3

  10. heshanjse revised this gist Aug 23, 2016. 1 changed file with 23 additions and 23 deletions.
    46 changes: 23 additions & 23 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -66,69 +66,69 @@ April 23, 2016 - May 22 2016 : Community bonding

    May 22, 2016 - May 29, 2016 : Coding Week 1

    - Create toolbox and add basic elements to the tool box
    - create start event (draw start event canvas)
    - Created the toolbox and added basic elements to the tool box
    - Created Start Event element (drew Start Event elemnet in the canvas)

    May 30, 2016 - June 05, 2016 : Coding Week 2

    - add drag events to the start event. (start event can drag inside the canvas)
    - create gateway,task and end event.
    - added drag events to the Start Event. (Start Event can be dragged around,inside the canvas)
    - created Gateway,Task and End Event elements.

    June 06, 2016 - June 10, 2016 : Coding Week 3

    - add drag events to gateway,task and end event.
    - create flow drawing using toolbox the flow button
    - Added drag events to Gateway,task and end event.
    - Created the flow drawing using the flow artefact of the toolbox

    June 13, 2016 - June 19, 2016 : Coding Week 4

    - BPMN element drag and drop from toolbox to drawing canvas.
    - basic json array added to the project for record BPMN elements
    - Basic JSON array added to the project for recording BPMN elements

    June 20, 2016 - June 26, 2016 : Coding Week 5

    - structure the code and remove code duplicates.
    - push elements to the json array when drag and drop element from tool box.
    - Structured the code and removed the code duplicates.
    - The elements, which were dragged and dropped into the canvas were pushed to the JSON array.

    June 28 : Midterm Evaluations

    June 27, 2016 - July 03, 2016 : Coding Week 6

    - create a tooltip to the element.(This tooltip is open when clicking a node,tooltip contain flow drawing,delete option,set property,adding text.)These tooltip features changed according to BPMN element type.
    - element delete completed.
    - Created a tooltip to an element.(This tooltip is opened when clicking a node,tooltip contain such artefacts as ‘flow drawing’,’delete option’,’set property’ and ‘adding text’). These tooltip artefacts are changed according to the BPMN element type.
    - Element deletion completed.
    - flow drawing using tooltip completed

    July 04, 2016 - July 10, 2016 : Coding Week 7

    - finish creating task resizing
    - finish creating sub elements of main BPMN elements and add icons to those elements
    - Finished creating the bounding box (used for resizing) feature for elements.
    - Finished creating sub elements of main BPMN elements and added icons to those elements

    July 11, 2016 - July 17, 2016 : Coding Week 8

    - finished (creating draging and deleting funtionalities) with sub elemnts
    - Finished creating ‘drag’ and ’delete’ functionalities for all the elements and their subelements.

    July 18, 2016 - July 24, 2016 : Coding Week 9

    - structure the code and remove code duplicates.
    - when element is draging with the flow x and y coordinates will be update in the json array.
    - Structured the code and removed code duplicates.
    - Created a mechanism to update the ‘x’ and ‘y’ coordinates of an element when it is dragged around the canvas (the corresponding JSON array will be updated with the relevant coordinates).

    July 25, 2016 - July 31, 2016 : Coding Week 10

    - text position change when resizing a task
    - text editor resize with task width and height
    - Created the functionality to change the text position when a task is resized.
    - Created the functionality to allow the text editor to resize automatically when the task width or height is altered.

    August 01, 2016 - August 07, 2016 : Coding Week 11

    - flow change from multiple connection points
    - flow point take task edge and draw flow after drag resized task
    - Flow change from multiple connection points
    - Flow point take task edge and draw flow after drag resized task

    August 08, 2016 - August 14, 2016 : Coding Week 12

    - import and export feature is created
    - Import and export feature is created

    August 14, 2016 - August 23, 2016 : Coding Week 13

    - text editor bug fixed
    - import and export bug fixed
    - Text editor bug fixed
    - Import and export bug fixed

    August 24 : Final Evaluations

  11. heshanjse revised this gist Aug 23, 2016. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -21,15 +21,15 @@ Demo : http://heshanjse.github.io/BPMNEditor/app/

    BPMN Editor

    Business Process Model and Notation (BPMN) is a standard way of representing business processes in graphical representation.
    This project will involve to implement Web based BPMN editor to construct business process diagrams. User can implement BPMN diagrams using tasks,gateways,start events and end events.
    Business Process Model and Notation (BPMN) is a standard way of representing business processes in graphical form.
    This project will involve implementing a Web based BPMN editor to construct business process diagrams. Users can implement BPMN diagrams using tasks,gateways,start events and end events.

    - task-User task,Script task,Mail task,Manual task
    - Gateway-Parallel gateway,Exclusive gateway,Inclusive gateway,Event gateway
    - Start event-Start event,Time start event,Message start event,Error start event
    - End event-End event,Error end event,Terminate end event,Cancel end event

    This BPMN editor has the capability to build complete Business process diagrams,download Business process diagram in Json format file and upload json format file and generate Business process diagram.
    This BPMN editor has the capability to build complete Business Process diagrams; download Business Process diagrams files in Json format; upload json format file and generate Business Process diagrams.

    <p>
    <h4><b>BPMN element Overview</b></h4>
  12. heshanjse revised this gist Aug 23, 2016. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -24,12 +24,12 @@ Demo : http://heshanjse.github.io/BPMNEditor/app/
    Business Process Model and Notation (BPMN) is a standard way of representing business processes in graphical representation.
    This project will involve to implement Web based BPMN editor to construct business process diagrams. User can implement BPMN diagrams using tasks,gateways,start events and end events.

    task-User task,Script task,Mail task,Manual task
    Gateway-Parallel gateway,Exclusive gateway,Inclusive gateway,Event gateway
    Start event-Start event,Time start event,Message start event,Error start event
    End event-End event,Error end event,Terminate end event,Cancel end event
    - task-User task,Script task,Mail task,Manual task
    - Gateway-Parallel gateway,Exclusive gateway,Inclusive gateway,Event gateway
    - Start event-Start event,Time start event,Message start event,Error start event
    - End event-End event,Error end event,Terminate end event,Cancel end event

    This Editor has the capability to build complete Business process diagrams,download Business process diagram in Json format file and upload json format file and generate Business process diagram.
    This BPMN editor has the capability to build complete Business process diagrams,download Business process diagram in Json format file and upload json format file and generate Business process diagram.

    <p>
    <h4><b>BPMN element Overview</b></h4>
  13. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -51,7 +51,7 @@ This Editor has the capability to build complete Business process diagrams,downl

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    <h4><b>How to Use</b></h4>
    <img src="http://i67.tinypic.com/2vuc32p.png" />
    <img src="http://i66.tinypic.com/34htpfk.png" />
    </p>

    completed tasks with Timeline
  14. heshanjse revised this gist Aug 23, 2016. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -50,6 +50,8 @@ This Editor has the capability to build complete Business process diagrams,downl
    <img src="http://i66.tinypic.com/2f0fvk9.png" width="490"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    <h4><b>How to Use</b></h4>
    <img src="http://i67.tinypic.com/2vuc32p.png" />
    </p>

    completed tasks with Timeline
  15. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -45,7 +45,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <br>
    <img src="http://i65.tinypic.com/6oookg.png" width="485"/>
    <br>
    User Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Script Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mail Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manual Task
    User Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Script Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mail Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manual Task
    <br>
    <img src="http://i66.tinypic.com/2f0fvk9.png" width="490"/>

  16. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -45,7 +45,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <br>
    <img src="http://i65.tinypic.com/6oookg.png" width="485"/>
    <br>
    User Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Script Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mail Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manual Task
    User Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Script Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mail Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manual Task
    <br>
    <img src="http://i66.tinypic.com/2f0fvk9.png" width="490"/>

  17. heshanjse revised this gist Aug 23, 2016. 1 changed file with 8 additions and 8 deletions.
    16 changes: 8 additions & 8 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -33,21 +33,21 @@ This Editor has the capability to build complete Business process diagrams,downl

    <p>
    <h4><b>BPMN element Overview</b></h4>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    Start event&nbsp;&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="465"/>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="485"/>
    <br>
    End event&nbsp;&nbsp;&nbsp;Terminate end event&nbsp;&nbsp;&nbsp;Error end event&nbsp;&nbsp;&nbsp;Cancel end event
    End event&nbsp;&nbsp;&nbsp;&nbsp;Terminate end event&nbsp;&nbsp;&nbsp;&nbsp;Error end event&nbsp;&nbsp;&nbsp;&nbsp;Cancel end event
    <br>
    <img src="http://i66.tinypic.com/2ahcpqf.png" width="465"/>
    <img src="http://i66.tinypic.com/2ahcpqf.png" width="485"/>
    <br>
    Parallel gateway&nbsp;&nbsp;&nbsp;Exclusive gateway&nbsp;&nbsp;&nbsp;Inclusive gateway&nbsp;&nbsp;&nbsp;Event gateway
    Parallel gateway&nbsp;&nbsp;&nbsp;&nbsp;Exclusive gateway&nbsp;&nbsp;&nbsp;&nbsp;Inclusive gateway&nbsp;&nbsp;&nbsp;&nbsp;Event gateway
    <br>
    <img src="http://i65.tinypic.com/6oookg.png" width="465"/>
    <img src="http://i65.tinypic.com/6oookg.png" width="485"/>
    <br>
    User Task&nbsp;&nbsp;&nbsp;Script Task&nbsp;&nbsp;&nbsp;Mail Task&nbsp;&nbsp;&nbsp;Manual Task
    User Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Script Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mail Task&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manual Task
    <br>
    <img src="http://i66.tinypic.com/2f0fvk9.png" width="465"/>
    <img src="http://i66.tinypic.com/2f0fvk9.png" width="490"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  18. heshanjse revised this gist Aug 23, 2016. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -41,13 +41,13 @@ This Editor has the capability to build complete Business process diagrams,downl
    <br>
    <img src="http://i66.tinypic.com/2ahcpqf.png" width="465"/>
    <br>
    Parallel Gateway&nbsp;&nbsp;&nbsp;Exclusive Gateway&nbsp;&nbsp;&nbsp;Inclusive Gateway&nbsp;&nbsp;&nbsp;Event Gateway
    Parallel gateway&nbsp;&nbsp;&nbsp;Exclusive gateway&nbsp;&nbsp;&nbsp;Inclusive gateway&nbsp;&nbsp;&nbsp;Event gateway
    <br>
    <img src="http://i65.tinypic.com/6oookg.png" width="465"/>
    <br>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    User Task&nbsp;&nbsp;&nbsp;Script Task&nbsp;&nbsp;&nbsp;Mail Task&nbsp;&nbsp;&nbsp;Manual Task
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="465"/>
    <img src="http://i66.tinypic.com/2f0fvk9.png" width="465"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  19. heshanjse revised this gist Aug 23, 2016. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -41,9 +41,9 @@ This Editor has the capability to build complete Business process diagrams,downl
    <br>
    <img src="http://i66.tinypic.com/2ahcpqf.png" width="465"/>
    <br>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    Parallel Gateway&nbsp;&nbsp;&nbsp;Exclusive Gateway&nbsp;&nbsp;&nbsp;Inclusive Gateway&nbsp;&nbsp;&nbsp;Event Gateway
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="465"/>
    <img src="http://i65.tinypic.com/6oookg.png" width="465"/>
    <br>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
  20. heshanjse revised this gist Aug 23, 2016. 1 changed file with 12 additions and 0 deletions.
    12 changes: 12 additions & 0 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -36,6 +36,18 @@ This Editor has the capability to build complete Business process diagrams,downl
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="465"/>
    <br>
    End event&nbsp;&nbsp;&nbsp;Terminate end event&nbsp;&nbsp;&nbsp;Error end event&nbsp;&nbsp;&nbsp;Cancel end event
    <br>
    <img src="http://i66.tinypic.com/2ahcpqf.png" width="465"/>
    <br>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="465"/>
    <br>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="465"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  21. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -35,7 +35,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <h4><b>BPMN element Overview</b></h4>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="480"/>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="465"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  22. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -35,7 +35,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <h4><b>BPMN element Overview</b></h4>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="450"/>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="480"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  23. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -35,7 +35,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <h4><b>BPMN element Overview</b></h4>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="300"/>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="450"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  24. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -35,7 +35,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <h4><b>BPMN element Overview</b></h4>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i63.tinypic.com/210irsx.png" width="300"/>
    <img src="http://i68.tinypic.com/jjsdh1.png" width="300"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  25. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -34,6 +34,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <p>
    <h4><b>BPMN element Overview</b></h4>
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <br>
    <img src="http://i63.tinypic.com/210irsx.png" width="300"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
  26. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -33,7 +33,7 @@ This Editor has the capability to build complete Business process diagrams,downl

    <p>
    <h4><b>BPMN element Overview</b></h4>
    Start event Time start event Message start event Error start event
    Start event&nbsp;&nbsp;&nbsp;Time start event&nbsp;&nbsp;&nbsp;Message start event&nbsp;&nbsp;&nbsp;Error start event
    <img src="http://i63.tinypic.com/210irsx.png" width="300"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
  27. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -34,7 +34,7 @@ This Editor has the capability to build complete Business process diagrams,downl
    <p>
    <h4><b>BPMN element Overview</b></h4>
    Start event Time start event Message start event Error start event
    <img src="http://i63.tinypic.com/210irsx.png"/>
    <img src="http://i63.tinypic.com/210irsx.png" width="300"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
  28. heshanjse revised this gist Aug 23, 2016. 1 changed file with 3 additions and 10 deletions.
    13 changes: 3 additions & 10 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -33,16 +33,9 @@ This Editor has the capability to build complete Business process diagrams,downl

    <p>
    <h4><b>BPMN element Overview</b></h4>
    <div>
    <div>
    <img src="http://i66.tinypic.com/162i53.png"/>
    </div>
    <div>
    start venet
    end event


    </div>
    Start event Time start event Message start event Error start event
    <img src="http://i63.tinypic.com/210irsx.png"/>

    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>

  29. heshanjse revised this gist Aug 23, 2016. 1 changed file with 15 additions and 0 deletions.
    15 changes: 15 additions & 0 deletions Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -31,6 +31,21 @@ End event-End event,Error end event,Terminate end event,Cancel end event

    This Editor has the capability to build complete Business process diagrams,download Business process diagram in Json format file and upload json format file and generate Business process diagram.

    <p>
    <h4><b>BPMN element Overview</b></h4>
    <div>
    <div>
    <img src="http://i66.tinypic.com/162i53.png"/>
    </div>
    <div>
    start venet
    end event


    </div>
    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>

    completed tasks with Timeline

    March 22 April : publish GSOC selected students
  30. heshanjse revised this gist Aug 23, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Bpmneditordoc.md
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    Google Summer of Code 2016
    <p align="center">
    <img src="http://i67.tinypic.com/fuakxg.png" height="350"/>
    <img src="http://i67.tinypic.com/fuakxg.png" height="250"/>
    <!--<img src="your_relative_path_here_number_2_large_name" width="350"/>-->
    </p>
    Student : Heshan Jayasinghe