123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- digraph "notify"
- {
- bgcolor = "#ffffff"
- node [
- class = "node"
- ,fillcolor = "#ffaa00",style = "filled"
- ,width = "0.194444",height = "0.194444"
- ,shape = "ellipse"
- ,color = "#000000"
- ,penwidth = "1"
- ];
- "N1" [
- label = "Pending"
- ]
- "N6" [
- label = "Blocked"
- ]
- "N7" [
- label = "None"
- ]
- "N5" [
- label = "Accepted"
- ]
- edge [
- class = "edge"
- ,weight = "1"
- ,penwidth = "1"
- ,"_vis_" = "label"
- ,"color" = "#a0a0a4"
- ,"style" = "solid"
- ];
- "N1" -> "N6" [id = "E3"
- label = "block"
- ];
- "N5" -> "N7" [id = "E2"
- label = "unfollow"
- ,"style" = "dashed"
- ];
- "N7" -> "N6" [id = "E5"
- ,dir=both
- label = "un/block"
- ];
- "N1" -> "N5" [id = "E1"
- label = "accept"
- ];
- "N7" -> "N1" [id = "E6"
- ,dir=both
- label = "un/follow"
- ,"style" = "dashed"
- ];
- "N5" -> "N6" [id = "E4"
- label = "block"
- ];
- "N1" -> "N7" [id = "E9"
- label = "reject"
- ];
- }
|