summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeideus <erwan.ulrich@gmail.com>2018-09-11 10:30:39 +0200
committerFeideus <erwan.ulrich@gmail.com>2018-09-11 10:30:39 +0200
commitb245a8199e5a26a7e9c4037e8c73a224862c4c59 (patch)
treefb5d4e8ed17b682989236450bf4b714ab74a084b
parent076defc8dca31937efabe8319fb257325c543aca (diff)
downloadschemafuzz-b245a8199e5a26a7e9c4037e8c73a224862c4c59.tar.gz
schemafuzz-b245a8199e5a26a7e9c4037e8c73a224862c4c59.tar.bz2
schemafuzz-b245a8199e5a26a7e9c4037e8c73a224862c4c59.zip
added presentation
-rw-r--r--docs/EndToEndDiagram2.pdfbin0 -> 66124 bytes
-rw-r--r--docs/Presentation.pdfbin0 -> 550639 bytes
-rw-r--r--docs/StructuralDiagram.tex52
-rw-r--r--docs/TalerLogo.jpgbin0 -> 32752 bytes
4 files changed, 52 insertions, 0 deletions
diff --git a/docs/EndToEndDiagram2.pdf b/docs/EndToEndDiagram2.pdf
new file mode 100644
index 0000000..f40787b
--- /dev/null
+++ b/docs/EndToEndDiagram2.pdf
Binary files differ
diff --git a/docs/Presentation.pdf b/docs/Presentation.pdf
new file mode 100644
index 0000000..4581509
--- /dev/null
+++ b/docs/Presentation.pdf
Binary files differ
diff --git a/docs/StructuralDiagram.tex b/docs/StructuralDiagram.tex
new file mode 100644
index 0000000..8dd8aab
--- /dev/null
+++ b/docs/StructuralDiagram.tex
@@ -0,0 +1,52 @@
+\documentclass{article}
+
+\usepackage{tikz}
+\usetikzlibrary{shapes,arrows,shadows}
+\usepackage{amsmath,bm,times}
+\newcommand{\mx}[1]{\mathbf{\bm{#1}}} % Matrix command
+\newcommand{\vc}[1]{\mathbf{\bm{#1}}} % Vector command
+
+\begin{document}
+% Define the layers to draw the diagram
+\pgfdeclarelayer{background}
+\pgfdeclarelayer{foreground}
+\pgfsetlayers{background,main,foreground}
+
+% Define block styles used later
+
+\tikzstyle{sensor}=[draw, fill=blue!20, text width=5em,
+ text centered, minimum height=2.5em,drop shadow]
+\tikzstyle{ann} = [above, text width=5em, text centered]
+\tikzstyle{wa} = [sensor, text width=10em, fill=red!20,
+ minimum height=6em, rounded corners, drop shadow]
+ \tikzstyle{wa2} = [sensor, text width=10em, fill=blue!20,
+ minimum height=6em, rounded corners, drop shadow]
+ \tikzstyle{wa3} = [sensor, text width=10em, fill=green!20,
+ minimum height=6em, rounded corners, drop shadow]
+ \tikzstyle{wa4} = [sensor, text width=10em, fill=yellow!20,
+ minimum height=6em, rounded corners, drop shadow]
+ \tikzstyle{wa5} = [sensor, text width=10em, fill=orange!20,
+ minimum height=6em, rounded corners, drop shadow]
+\tikzstyle{sc} = [sensor, text width=13em, fill=red!20,
+ minimum height=10em, rounded corners, drop shadow]
+
+% Define distances for bordering
+\def\blockdist{2.3}
+\def\edgedist{2.5}
+
+\begin{tikzpicture}
+ \node (n1) [wa] {$Main$ $Loop$};
+ \path (n1)+(-4,-4) node (n2)[wa2] {$Target$ $Database$};
+ \path (n1)+(0,- 8) node (n3) [wa3] {$Target$ $Software$};
+ \path (n1)+(5,-6) node (n4) [wa4] {$C$ $Parser$ $Script$};
+ \path (n1)+(5,-2.5) node (n5) [wa5] {$Analyzer$};
+
+ \path [draw, ->] (n1.west) -| (n2.north) {} node [xshift=-60,yshift=40] {$Injects$ $SQL$ $Statement$};
+ \path [draw, ->] (n3.west) -| (n2.south) {} node [xshift=-30,yshift=-40]{$Runs$ $over$};
+ \path [draw, ->] (n3.east) -| (n4.south) {} node [yshift=-40] {$Returns$ $output$};
+ \path [draw, ->] (n4.north) -- (n5.south) {} node [xshift=50,yshift=-20] {$Gives$ $score$};
+ \path [draw, ->] (n5.north) |- (n1.east) node [xshift=90,yshift=20]{$Generates$ $human$ $readable$ $report$ $file$} {} ;
+
+\end{tikzpicture}
+
+\end{document} \ No newline at end of file
diff --git a/docs/TalerLogo.jpg b/docs/TalerLogo.jpg
new file mode 100644
index 0000000..5108c17
--- /dev/null
+++ b/docs/TalerLogo.jpg
Binary files differ