summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Klemkow <j.klemkow@wemelug.de>2013-01-31 00:18:57 +0100
committerJan Klemkow <j.klemkow@wemelug.de>2013-01-31 00:19:39 +0100
commitc93b252257a8efb35ced2bd6c7629b04d8e449c1 (patch)
treeb2efb518cddc868ee61721852366db287dda3e6c
parent7a19e2ba6089c7b5143f5da743a4156a64d4946b (diff)
downloadsqltutor-plugin-c93b252257a8efb35ced2bd6c7629b04d8e449c1.tar.gz
sqltutor-plugin-c93b252257a8efb35ced2bd6c7629b04d8e449c1.tar.bz2
sqltutor-plugin-c93b252257a8efb35ced2bd6c7629b04d8e449c1.zip
add imaes for presentation
-rw-r--r--doc/Makefile9
-rw-r--r--doc/image/conflict.diabin0 -> 1483 bytes
-rw-r--r--doc/image/multi-db.diabin0 -> 1534 bytes
-rw-r--r--doc/image/read-only.diabin0 -> 1549 bytes
-rw-r--r--doc/image/transaction.diabin0 -> 1483 bytes
-rw-r--r--doc/presentation.txt6
6 files changed, 14 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 5c9e7f4..2b5e91f 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,6 +1,9 @@
+DIA_IMAGES!=ls image/*.dia
+SVG_IMAGES=${DIA_IMAGES:S/dia$/svg/}
+
.PHONY: all clean
-all: documentation.pdf presentation.html
+all: ${SVG_IMAGES} documentation.pdf presentation.html
clean:
rm -rf documentation.pdf
@@ -9,5 +12,9 @@ clean:
.txt.html:
asciidoc --backend=slidy $<
+.SUFFIXES: .dia .svg
+.dia.svg:
+ dia --export=$@ --filter=svg $<
+
include asciidoc-boilerplate/thesis.mk
diff --git a/doc/image/conflict.dia b/doc/image/conflict.dia
new file mode 100644
index 0000000..cb18dfc
--- /dev/null
+++ b/doc/image/conflict.dia
Binary files differ
diff --git a/doc/image/multi-db.dia b/doc/image/multi-db.dia
new file mode 100644
index 0000000..aa13e3e
--- /dev/null
+++ b/doc/image/multi-db.dia
Binary files differ
diff --git a/doc/image/read-only.dia b/doc/image/read-only.dia
new file mode 100644
index 0000000..6d3403c
--- /dev/null
+++ b/doc/image/read-only.dia
Binary files differ
diff --git a/doc/image/transaction.dia b/doc/image/transaction.dia
new file mode 100644
index 0000000..cb18dfc
--- /dev/null
+++ b/doc/image/transaction.dia
Binary files differ
diff --git a/doc/presentation.txt b/doc/presentation.txt
index add576d..6382533 100644
--- a/doc/presentation.txt
+++ b/doc/presentation.txt
@@ -10,10 +10,16 @@
== Benutzertrennung
+image:conflict.svg[]
+
== Transaktionen
== Separate Datenbanken
+image:multi-db.svg[]
+
== Read-Only
+image:read-only.svg[]
+
// vim: syntax=asciidoc :