diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-02-10 12:03:37 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-02-10 12:03:37 -0500 |
commit | 9c0602208200dcffa970ac8268fd6d12bf3f6524 (patch) | |
tree | 2b704506934272fe1cdcc15ef886e8a86412e6d1 /SystemModel.dot | |
parent | c601081dca86abf4c0e5083e242022b7f9373436 (diff) | |
parent | 23a094098d5b4232dc9715d5d42531096b02bf5b (diff) |
Merge https://github.com/LukeShu/leaguer
Diffstat (limited to 'SystemModel.dot')
-rw-r--r-- | SystemModel.dot | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/SystemModel.dot b/SystemModel.dot deleted file mode 100644 index ea1836a..0000000 --- a/SystemModel.dot +++ /dev/null @@ -1,60 +0,0 @@ -digraph SystemModel { - rankdir=LR; - peripheries=0; - - /* users */ - { - node [image="stickman.png", labelloc="b", shape="none"]; - player[label="Player"]; - host[label="Host"]; - spectator[label="Spectator"]; - } - - /* subsystems */ - /* if you want to rename any of these, it is probably easiest - * to leave the ID the same, and just change the label */ - subgraph clusterSystem { - label = "System Boundry"; - style = filled; - - node [style=solid]; - peerReview[label="Peer Review"]; - performance[label="Performance"]; - standings[label="Standings"]; - gs[label="Game Score"]; - search[label="Search"]; - pm[label="Private Message"]; - alerts[label="Alerts"]; - pairings[label="Pairings"]; - details[label="Tournament Details"]; - backup[label="Backup"]; - registration[label="Registration"]; - } - - /* all the relationships */ - spectator -> search; - standings -> spectator; - alerts -> spectator; - pairings -> spectator; - - player -> spectator [arrowhead="onormal"]; - player -> peerReview; - player -> performance; - player -> registration; - player -> pm; - pm -> player; - - host->spectator [arrowhead="onormal"]; - host->alerts; - host->details; - host->registration; - host -> pm; - pm -> host; - - peerReview -> standings; - performance-> standings; - gs -> performance; - details -> backup; - details -> pairings; - registration -> pairings; -} |