Blame view

screen_sequence_diagrams/review_notification.dot 598 Bytes
aafa515ee   Chung Wang   R2 and R3
1
2
3
  digraph G{
  	ratio=0.75;
  	//rankdir="LR";
7efd8311a   Rohan Rangray   Added title for R...
4
5
  	labelloc="t";
  	label="[R2] Review Notifications";
2bbd17a0c   Rohan Rangray   Removed the arrow...
6
  	node[shape=box, style="rounded,filled,bold"];
f6eb24b4b   Masud Rahman   Fixed review noti...
7
  	splines=ortho;
aafa515ee   Chung Wang   R2 and R3
8
  	nodesep=1.4;
4d0105257   Masud Rahman   Beautified the sc...
9
  	"Navbar"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"];
aafa515ee   Chung Wang   R2 and R3
10
  	"Server"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"];
4d0105257   Masud Rahman   Beautified the sc...
11
  	"Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond, fixedsize=true, width=1.1, height=1.1];
aafa515ee   Chung Wang   R2 and R3
12

f6eb24b4b   Masud Rahman   Fixed review noti...
13
14
  	"Notification"[shape=none];
  	"UPDATE"[shape=none];
c27a6bc7d   Masud Rahman   Fixed the rest of...
15
  	"Server" -> "Notification";
f6eb24b4b   Masud Rahman   Fixed review noti...
16
  	"Notification" -> "Controller";
c27a6bc7d   Masud Rahman   Fixed the rest of...
17
  	"Controller" -> "UPDATE";
4d0105257   Masud Rahman   Beautified the sc...
18
  	"UPDATE" -> "Navbar";
f6eb24b4b   Masud Rahman   Fixed review noti...
19
  	
aafa515ee   Chung Wang   R2 and R3
20
  }