From 3ab4829870a90d7a3a7c359436776e0a96370ba5 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Sat, 21 Nov 2020 01:09:48 +0100 Subject: get rid of static folder --- docs/Makefile | 6 ++++++ docs/approach.dot | 13 +++++++++++++ docs/approach.png | Bin 0 -> 40516 bytes static/Makefile | 6 ------ static/approach.dot | 13 ------------- static/approach.png | Bin 40516 -> 0 bytes 6 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 docs/Makefile create mode 100644 docs/approach.dot create mode 100644 docs/approach.png delete mode 100644 static/Makefile delete mode 100644 static/approach.dot delete mode 100644 static/approach.png diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..9b84114 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,6 @@ +approach.png: approach.dot + dot -Tpng $^ > $@ + +.PHONY: clean +clean: + rm -rf approach.png diff --git a/docs/approach.dot b/docs/approach.dot new file mode 100644 index 0000000..0bf3cbb --- /dev/null +++ b/docs/approach.dot @@ -0,0 +1,13 @@ +digraph f { + "matching" -> "strings"; + "matching" -> "entities"; + + "strings" -> "lookups"; + "strings" -> "normalization"; + "strings" -> "fuzzy"; + + "entities" -> "identifiers"; + "entities" -> "field subsets"; + + "field subsets" -> "strings"; +} diff --git a/docs/approach.png b/docs/approach.png new file mode 100644 index 0000000..cce18d7 Binary files /dev/null and b/docs/approach.png differ diff --git a/static/Makefile b/static/Makefile deleted file mode 100644 index 9b84114..0000000 --- a/static/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -approach.png: approach.dot - dot -Tpng $^ > $@ - -.PHONY: clean -clean: - rm -rf approach.png diff --git a/static/approach.dot b/static/approach.dot deleted file mode 100644 index 0bf3cbb..0000000 --- a/static/approach.dot +++ /dev/null @@ -1,13 +0,0 @@ -digraph f { - "matching" -> "strings"; - "matching" -> "entities"; - - "strings" -> "lookups"; - "strings" -> "normalization"; - "strings" -> "fuzzy"; - - "entities" -> "identifiers"; - "entities" -> "field subsets"; - - "field subsets" -> "strings"; -} diff --git a/static/approach.png b/static/approach.png deleted file mode 100644 index cce18d7..0000000 Binary files a/static/approach.png and /dev/null differ -- cgit v1.2.3