Compare View
Commits (2)
Diff
Showing 10 changed files Side-by-side Diff
- screen_sequence_diagrams/pull_flashcard.dot
- screen_sequence_diagrams/push_flashcard.dot
- screen_sequence_diagrams/remove_card.dot
- screen_sequence_diagrams/review_notification.dot
- screen_sequence_diagrams/section_limit_access.dot
- screen_sequence_diagrams/study_deck.dot
- screen_sequence_diagrams/user_login_out.dot
- screen_sequence_diagrams/user_register.dot
- screen_sequence_diagrams/view_by_pull_time.dot
- screen_sequence_diagrams/view_feed.dot
screen_sequence_diagrams/pull_flashcard.dot
View file @
204cdfc
... | ... | @@ -23,14 +23,14 @@ digraph G{ |
23 | 23 | fixedsize=true, width=1.4, height=1.4]; |
24 | 24 | "Flashcard added to User's Deck"[center=true, fillcolor="#aaaaff", style=filled]; |
25 | 25 | "POST"[shape=none]; |
26 | - "Pull Flashcard Button" -> "POST"[dir=none]; | |
26 | + "Pull Flashcard Button" -> "POST"; | |
27 | 27 | "POST" -> "Controller"; |
28 | - "Controller" -> "FAILURE"[dir=none]; | |
28 | + "Controller" -> "FAILURE"; | |
29 | 29 | "FAILURE" -> "Pull Flashcard Button"; |
30 | 30 | "Controller" -> "Hide Flashcard from Feed"; |
31 | 31 | "POST" -> "Server"; |
32 | - "Server"-> "SUCCESS"[dir=none]; | |
32 | + "Server"-> "SUCCESS"; | |
33 | 33 | "SUCCESS" -> "Flashcard added to User's Deck"; |
34 | - "Flashcard added to User's Deck" -> "Update Card Rating"[dir=none]; | |
34 | + "Flashcard added to User's Deck" -> "Update Card Rating"; | |
35 | 35 | "Update Card Rating" -> "Pull Flashcard Button"; |
36 | 36 | } |
screen_sequence_diagrams/push_flashcard.dot
View file @
204cdfc
... | ... | @@ -23,15 +23,15 @@ digraph G{ |
23 | 23 | fixedsize=true, width=1.4, height=1.4]; |
24 | 24 | "Flashcard Record \n Created in Database"[center=true, fillcolor="#aaaaff", style=filled]; |
25 | 25 | "POST"[shape=none]; |
26 | - "Push Flashcard Button" -> "POST"[dir=none]; | |
26 | + "Push Flashcard Button" -> "POST"; | |
27 | 27 | "POST" -> "Controller"; |
28 | - "Controller" -> "FAILURE"[dir=none]; | |
28 | + "Controller" -> "FAILURE"; | |
29 | 29 | "FAILURE" -> "Push Flashcard Button"; |
30 | - "Controller" -> "POST"[dir=none]; | |
30 | + "Controller" -> "POST"; | |
31 | 31 | "POST" -> "Server"; |
32 | - "Server"-> "SUCCESS"[dir=none]; | |
32 | + "Server"-> "SUCCESS"; | |
33 | 33 | "SUCCESS" -> "Flashcard Record \n Created in Database"; |
34 | - "Flashcard Record \n Created in Database" -> "Card Published in Feed"[dir=none]; | |
34 | + "Flashcard Record \n Created in Database" -> "Card Published in Feed"; | |
35 | 35 | "Card Published in Feed" -> "Push Flashcard Button"; |
36 | 36 | |
37 | 37 | } |
screen_sequence_diagrams/remove_card.dot
View file @
204cdfc
... | ... | @@ -22,14 +22,14 @@ digraph G{ |
22 | 22 | "POST"[shape=none]; |
23 | 23 | "Card Removed from Deck"[shape=none]; |
24 | 24 | "Flashcard Position\nUpdated in Live Feed"[shape=none]; |
25 | - "View Deck" -> "POST"[dir=none]; | |
25 | + "View Deck" -> "POST"; | |
26 | 26 | "POST" -> "Controller"; |
27 | - "Controller" -> "FAILURE"[dir=none]; | |
27 | + "Controller" -> "FAILURE"; | |
28 | 28 | "FAILURE" -> "View Deck"; |
29 | 29 | "Controller" -> "Remove Flashcard Button"; |
30 | - "Remove Flashcard Button" -> "DELETE"[dir=none]; | |
30 | + "Remove Flashcard Button" -> "DELETE"; | |
31 | 31 | "DELETE" -> "Server"; |
32 | - "Server" -> "Card Removed from Deck"[dir=none]; | |
33 | - "Card Removed from Deck" -> "Flashcard Position\nUpdated in Live Feed"[dir=none]; | |
32 | + "Server" -> "Card Removed from Deck"; | |
33 | + "Card Removed from Deck" -> "Flashcard Position\nUpdated in Live Feed"; | |
34 | 34 | "Flashcard Position\nUpdated in Live Feed" -> "View Deck"; |
35 | 35 | } |
screen_sequence_diagrams/review_notification.dot
View file @
204cdfc
... | ... | @@ -12,9 +12,9 @@ digraph G{ |
12 | 12 | "Notification"[shape=none]; |
13 | 13 | "UPDATE"[shape=none]; |
14 | 14 | |
15 | - "Server" -> "Notification"[dir=none]; | |
15 | + "Server" -> "Notification"; | |
16 | 16 | "Notification" -> "Controller"; |
17 | - "Controller" -> "UPDATE"[dir=none]; | |
17 | + "Controller" -> "UPDATE"; | |
18 | 18 | "UPDATE" -> "Sidebar Menu"; |
19 | 19 | |
20 | 20 | } |
screen_sequence_diagrams/section_limit_access.dot
View file @
204cdfc
... | ... | @@ -24,14 +24,14 @@ digraph G{ |
24 | 24 | fixedsize=true, width=1.5, height=1.5]; |
25 | 25 | |
26 | 26 | // Graph |
27 | - "Instructor's\nEmail Client" -> "EMAIL"[dir=none]; | |
27 | + "Instructor's\nEmail Client" -> "EMAIL"; | |
28 | 28 | "EMAIL" -> "Admins Page"; |
29 | - "Admins Page" -> "POST"[dir=none]; | |
29 | + "Admins Page" -> "POST"; | |
30 | 30 | "POST" -> "Controller"; |
31 | 31 | |
32 | - "Controller" -> "SUCCESS"[dir=none]; | |
32 | + "Controller" -> "SUCCESS"; | |
33 | 33 | "SUCCESS" -> "Instructor's\nEmail Client"; |
34 | 34 | |
35 | - "Controller" -> "FAILURE"[dir=none]; | |
35 | + "Controller" -> "FAILURE"; | |
36 | 36 | "FAILURE" -> "Admins Page"; |
37 | 37 | } |
screen_sequence_diagrams/study_deck.dot
View file @
204cdfc
... | ... | @@ -8,7 +8,7 @@ digraph G{ |
8 | 8 | node[shape=box, style="rounded,filled,bold"]; |
9 | 9 | splines=ortho; |
10 | 10 | nodesep=1.4; |
11 | - "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
11 | + "Navbar"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
12 | 12 | "ClassView"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; |
13 | 13 | "StudyView Blank"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; |
14 | 14 | "StudyView Response"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; |
... | ... | @@ -21,16 +21,16 @@ digraph G{ |
21 | 21 | "SUCCESS\nUser has at least a card in the deck."[shape=none]; |
22 | 22 | "FAILURE:\nUser has no card in the deck."[shape=none]; |
23 | 23 | |
24 | - "Sidebar Menu" -> "ClassView"; | |
25 | - "ClassView" -> "POST"[dir=none]; | |
24 | + "Navbar" -> "ClassView"; | |
25 | + "ClassView" -> "POST"; | |
26 | 26 | "POST" -> "Controller"; |
27 | - "Controller" -> "FAILURE:\nUser has no card in the deck."[dir=none]; | |
28 | - "Controller" -> "SUCCESS\nUser has at least a card in the deck."[dir=none]; | |
27 | + "Controller" -> "FAILURE:\nUser has no card in the deck."; | |
28 | + "Controller" -> "SUCCESS\nUser has at least a card in the deck."; | |
29 | 29 | "FAILURE:\nUser has no card in the deck." -> "Sidebar Menu"; |
30 | 30 | "SUCCESS\nUser has at least a card in the deck." -> "StudyView Blank"; |
31 | - "StudyView Blank" -> "POST"[dir=none]; | |
31 | + "StudyView Blank" -> "POST"; | |
32 | 32 | "Controller" -> "StudyView Response"; |
33 | - "StudyView Response" -> "POST"[dir=none]; | |
33 | + "StudyView Response" -> "POST"; | |
34 | 34 | "Controller" -> "StudyView Blank"; |
35 | 35 | |
36 | 36 | } |
screen_sequence_diagrams/user_login_out.dot
View file @
204cdfc
... | ... | @@ -7,7 +7,7 @@ digraph G{ |
7 | 7 | node[shape=box, style="rounded,filled,bold"]; |
8 | 8 | splines=ortho; |
9 | 9 | nodesep=1.4; |
10 | - "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
10 | + "Navbar"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
11 | 11 | "Login/Register Page"[center=true, fillcolor="#aaaaff", style=filled]; |
12 | 12 | "Logout Controller"[center=true, fillcolor="#aaaaff", style=filled, shape=diamond, |
13 | 13 | fixedsize=true, width=1.8, height=1.8]; |
... | ... | @@ -28,18 +28,18 @@ digraph G{ |
28 | 28 | fixedsize=true, width=1.8, height=1.8]; |
29 | 29 | |
30 | 30 | // Graph |
31 | - "Sidebar Menu" -> "POST"[dir=none]; | |
31 | + "Navbar" -> "POST"[dir=none]; | |
32 | 32 | "POST" -> "Logout Controller"; |
33 | 33 | "Logout Controller" -> "Logout FAILURE"[dir=none]; |
34 | 34 | "Logout FAILURE" -> "Sidebar Menu"; |
35 | 35 | |
36 | - "Logout Controller" -> "SUCCESS:\n User logged out"[dir=none]; | |
36 | + "Logout Controller" -> "SUCCESS:\n User logged out"; | |
37 | 37 | "SUCCESS:\n User logged out" -> "Login/Register Page"; |
38 | 38 | |
39 | 39 | "Login/Register Page" -> "Login Controller"; |
40 | - "Login Controller" -> "SUCCESS:\n User logged in"[dir=none]; | |
40 | + "Login Controller" -> "SUCCESS:\n User logged in"; | |
41 | 41 | "SUCCESS:\n User logged in" -> "Sidebar Menu"; |
42 | 42 | |
43 | - "Login Controller" -> "Login FAILURE"[dir=none]; | |
43 | + "Login Controller" -> "Login FAILURE"; | |
44 | 44 | "Login FAILURE" -> "Login/Register Page"; |
45 | 45 | } |
screen_sequence_diagrams/user_register.dot
View file @
204cdfc
... | ... | @@ -10,7 +10,7 @@ digraph G{ |
10 | 10 | splines=ortho; |
11 | 11 | // nodesep=1.3; |
12 | 12 | nodesep=3.0; |
13 | - ranksep=0.05; | |
13 | + ranksep=0.05; | |
14 | 14 | "Login/Register Page"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; |
15 | 15 | "POST"[shape=none]; |
16 | 16 | labelfloat=true; |
... | ... | @@ -20,25 +20,25 @@ digraph G{ |
20 | 20 | "SUCCESS:\nValid, unverified user created.\nEmail verification message displayed."[shape=none]; |
21 | 21 | "FAILURE"[shape=none]; |
22 | 22 | "FAILURE:\nData invalid"[shape=none]; |
23 | - | |
23 | + | |
24 | 24 | "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond, |
25 | - fixedsize=true, width=1.5, height=1.5]; | |
25 | + fixedsize=true, width=1.5, height=1.5]; | |
26 | 26 | "Server"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond, |
27 | - fixedsize=true, width=1.5, height=1.5]; | |
27 | + fixedsize=true, width=1.5, height=1.5]; | |
28 | 28 | |
29 | 29 | // Graph |
30 | - "Login/Register Page" -> "POST"[dir=none]; | |
30 | + "Login/Register Page" -> "POST"; | |
31 | 31 | "POST" -> "Controller"; |
32 | 32 | |
33 | - "Controller" -> "FAILURE"[dir=none]; | |
33 | + "Controller" -> "FAILURE"; | |
34 | 34 | "FAILURE" -> "Login/Register Page"; |
35 | 35 | |
36 | - "Controller" -> "SUCCESS:\nValid, send JSON."[dir=none]; | |
37 | - "SUCCESS:\nValid, send JSON." -> "Server"; | |
36 | + "Controller" -> "SUCCESS:\nValid, send JSON."; | |
37 | + "SUCCESS:\nValid, send JSON." -> "Server"; | |
38 | 38 | |
39 | - "Server" -> "FAILURE:\nData invalid"[dir=none]; | |
40 | - "FAILURE:\nData invalid" -> "Login/Register Page"; | |
39 | + "Server" -> "FAILURE:\nData invalid"; | |
40 | + "FAILURE:\nData invalid" -> "Login/Register Page"; | |
41 | 41 | |
42 | - "Server" -> "SUCCESS:\nValid, unverified user created.\nEmail verification message displayed."[dir=none]; | |
43 | - "SUCCESS:\nValid, unverified user created.\nEmail verification message displayed." -> "Login/Register Page"; | |
42 | + "Server" -> "SUCCESS:\nValid, unverified user created.\nEmail verification message displayed."; | |
43 | + "SUCCESS:\nValid, unverified user created.\nEmail verification message displayed." -> "Login/Register Page"; | |
44 | 44 | } |
screen_sequence_diagrams/view_by_pull_time.dot
View file @
204cdfc
... | ... | @@ -18,9 +18,9 @@ digraph G{ |
18 | 18 | "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond, |
19 | 19 | fixedsize=true, width=1.4, height=1.4]; |
20 | 20 | "POST"[shape=none]; |
21 | - "View Deck" -> "POST"[dir=none]; | |
21 | + "View Deck" -> "POST"; | |
22 | 22 | "POST" -> "Controller"; |
23 | - "Controller" -> "FAILURE"[dir=none]; | |
23 | + "Controller" -> "FAILURE"; | |
24 | 24 | "FAILURE" -> "View Deck"; |
25 | 25 | "Controller" -> "Sort by Ascending\nor Descending Time"; |
26 | 26 | "Sort by Ascending\nor Descending Time" -> "View Deck"; |
screen_sequence_diagrams/view_feed.dot
View file @
204cdfc
... | ... | @@ -17,10 +17,10 @@ digraph G{ |
17 | 17 | |
18 | 18 | "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond, |
19 | 19 | fixedsize=true, width=1.4, height=1.4]; |
20 | - "Root" -> "GET"[dir=none]; | |
20 | + "Root" -> "GET"; | |
21 | 21 | "GET" -> "Controller"; |
22 | - "Controller" -> "FAILURE:\nno cards"[dir=none]; | |
23 | - "Controller" -> "SUCCESS"[dir=none]; | |
22 | + "Controller" -> "FAILURE:\nno cards"; | |
23 | + "Controller" -> "SUCCESS"; | |
24 | 24 | "FAILURE:\nno cards" -> "Feed"; |
25 | 25 | "SUCCESS" -> "Feed"; |
26 | 26 | } |