forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.dot
More file actions
42 lines (34 loc) · 1.77 KB
/
example.dot
File metadata and controls
42 lines (34 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
digraph RegulatoryToolsArchitecture {
rankdir=LR;
node [shape=box, style=filled, color=lightgrey];
edge [color=black, arrowhead=open];
MainWebsite [label="Main Website" shape=ellipse color=lightblue];
RegulatoryTools [label="Regulatory Tools Section"];
RiskLocatorTool [label="Risk Locator Tool"];
CrystalFrontEnd [label="Crystal Front-End"];
CrystalBackEnd [label="Crystal Back-End\n(Sitecore CMS)"];
StampDecisionTool [label="Stamp Decision Tool"];
ITSupport [label="IT Department Support" shape=ellipse color=orange];
UserProfile [label="User Profile Customization"];
InquiryHistory [label="Inquiry History & Reporting"];
TerritoryManuals [label="Territory Manuals and Authorization Info"];
WhatIsNewArchive [label="What's New Archive"];
ComplianceGuidance [label="Regulatory & Tax Compliance Guidance"];
HelpFAQs [label="Help Section & FAQs"];
MainWebsite -> RegulatoryTools;
RegulatoryTools -> RiskLocatorTool;
RegulatoryTools -> CrystalFrontEnd;
RegulatoryTools -> StampDecisionTool;
RiskLocatorTool -> UserProfile;
RiskLocatorTool -> InquiryHistory;
InquiryHistory -> UserProfile [dir=none, constraint=false];
UserProfile -> RiskLocatorTool [dir=none, constraint=false];
CrystalFrontEnd -> TerritoryManuals;
CrystalFrontEnd -> WhatIsNewArchive;
CrystalFrontEnd -> HelpFAQs [dir=back];
CrystalFrontEnd -> ComplianceGuidance;
CrystalFrontEnd -> CrystalBackEnd [label=" Edits & Publishes", fontcolor=blue];
CrystalBackEnd -> ITSupport [label=" Raises Tickets for Edits & Issues", fontcolor=red];
StampDecisionTool -> ITSupport [label=" Changes & Maintenance", fontcolor=red];
ComplianceGuidance -> RiskLocatorTool [label=" Informs", fontcolor=green, dir=back];
}