Commit aafa515ee90264ee59de2ec2dc548f50c1bc320a
1 parent
6ba3d804af
Exists in
master
R2 and R3
Showing 3 changed files with 36 additions and 2 deletions Side-by-side Diff
Makefile
View file @
aafa515
1 | -PNGS = built/use_cases_diagram.png built/schema_diagram.png built/schema_graph.png | |
1 | +PNGS = built/use_cases_diagram.png built/schema_diagram.png built/schema_graph.png built/review_notification.png built/configure_account_notifications.png | |
2 | 2 | PDFS = built/DesignUseCases.pdf built/screen_sequence_diagram.pdf |
3 | -SCREEN_SEQUENCE_PNGS = built/add_class.png built/drop_class.png built/push_flashcard.png | |
3 | +SCREEN_SEQUENCE_PNGS = built/add_class.png built/drop_class.png built/push_flashcard.png built/study_deck.png | |
4 | 4 | |
5 | 5 | all: built/ $(PNGS) $(PDFS) |
6 | 6 |
configure_account_notifications.dot
View file @
aafa515
1 | +digraph G{ | |
2 | + ratio=0.75; | |
3 | + //rankdir="LR"; | |
4 | + node[shape = box]; | |
5 | + //splines=ortho; | |
6 | + nodesep=1.4; | |
7 | + "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
8 | + "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond]; | |
9 | + "SettingView"[center=true, fillcolor="#aaaaff", style=filled]; | |
10 | + "User Check"[center=true, fillcolor="#aaaaff", style=filled]; | |
11 | + "FAILURE"[shape=none]; | |
12 | + labelfloat=true; | |
13 | + lp=100; | |
14 | + "SUCCESS"[shape=none]; | |
15 | + | |
16 | + "Sidebar Menu" -> "SettingView"; | |
17 | + "SettingView" -> "User Check"[label="POST"]; | |
18 | + "User Check" -> "FAILURE"; | |
19 | + "FAILURE" -> "SettingView"[label="Setting was not changed."]; | |
20 | + "User Check" -> "SUCCESS"[label="Setting was changed."]; | |
21 | + "SUCCESS" -> "SettingView"; | |
22 | +} |
review_notification.dot
View file @
aafa515
1 | +digraph G{ | |
2 | + ratio=0.75; | |
3 | + //rankdir="LR"; | |
4 | + node[shape = box]; | |
5 | + //splines=ortho; | |
6 | + nodesep=1.4; | |
7 | + "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
8 | + "Server"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
9 | + | |
10 | + "Server" -> "Controller" [label="UPDATE"]; | |
11 | + "Controller" -> "Notification"; | |
12 | +} |