summaryrefslogtreecommitdiff
path: root/docs/SystemModel.dot
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-01 23:18:45 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-01 23:18:45 -0500
commitfaa08e4f2dbc6fb37619df7375638c1a7749ef80 (patch)
tree2c09aeddb97a6aaea7722795ec49ab7d45569b12 /docs/SystemModel.dot
parent11be92e4bac671852fd03922049ca592ae4c9f4e (diff)
mv docs doc
Diffstat (limited to 'docs/SystemModel.dot')
-rw-r--r--docs/SystemModel.dot60
1 files changed, 0 insertions, 60 deletions
diff --git a/docs/SystemModel.dot b/docs/SystemModel.dot
deleted file mode 100644
index ea1836a..0000000
--- a/docs/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;
-}