From aafa515ee90264ee59de2ec2dc548f50c1bc320a Mon Sep 17 00:00:00 2001 From: Chung Kang Wang Date: Wed, 13 May 2015 03:20:07 -0400 Subject: [PATCH] R2 and R3 --- Makefile | 4 ++-- configure_account_notifications.dot | 22 ++++++++++++++++++++++ review_notification.dot | 12 ++++++++++++ 3 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 configure_account_notifications.dot create mode 100644 review_notification.dot diff --git a/Makefile b/Makefile index 1d75fd6..ea1b448 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -PNGS = built/use_cases_diagram.png built/schema_diagram.png built/schema_graph.png +PNGS = built/use_cases_diagram.png built/schema_diagram.png built/schema_graph.png built/review_notification.png built/configure_account_notifications.png PDFS = built/DesignUseCases.pdf built/screen_sequence_diagram.pdf -SCREEN_SEQUENCE_PNGS = built/add_class.png built/drop_class.png built/push_flashcard.png +SCREEN_SEQUENCE_PNGS = built/add_class.png built/drop_class.png built/push_flashcard.png built/study_deck.png all: built/ $(PNGS) $(PDFS) diff --git a/configure_account_notifications.dot b/configure_account_notifications.dot new file mode 100644 index 0000000..8c5f836 --- /dev/null +++ b/configure_account_notifications.dot @@ -0,0 +1,22 @@ +digraph G{ + ratio=0.75; + //rankdir="LR"; + node[shape = box]; + //splines=ortho; + nodesep=1.4; + "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; + "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond]; + "SettingView"[center=true, fillcolor="#aaaaff", style=filled]; + "User Check"[center=true, fillcolor="#aaaaff", style=filled]; + "FAILURE"[shape=none]; + labelfloat=true; + lp=100; + "SUCCESS"[shape=none]; + + "Sidebar Menu" -> "SettingView"; + "SettingView" -> "User Check"[label="POST"]; + "User Check" -> "FAILURE"; + "FAILURE" -> "SettingView"[label="Setting was not changed."]; + "User Check" -> "SUCCESS"[label="Setting was changed."]; + "SUCCESS" -> "SettingView"; +} diff --git a/review_notification.dot b/review_notification.dot new file mode 100644 index 0000000..e9035eb --- /dev/null +++ b/review_notification.dot @@ -0,0 +1,12 @@ +digraph G{ + ratio=0.75; + //rankdir="LR"; + node[shape = box]; + //splines=ortho; + nodesep=1.4; + "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; + "Server"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; + + "Server" -> "Controller" [label="UPDATE"]; + "Controller" -> "Notification"; +} -- 1.9.1