summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cc6cfff..7e9d11a 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,14 @@ $(rdfxmlfiles): %.rdf : %.ttl
$(eval base = $(call getbase, $<))
rapper $(base:%=-I "%") -i turtle -o rdfxml-abbrev "$<" > "$@"
+# Fetch and tidy programme rendering
+# * add doctype and title to validate
+# * add charset to not rely on server hinting
+# * refer to plaintext serialization (not self) of dataset
$(htmlprogrammefiles): %.html : %.ttl
$(eval base = $(call getbase, $<))
wget -O"$@" "http://programme.ecs.soton.ac.uk/tool.php?src=$(base)"
- perl -pi -e 's,$(base)\K,/index.txt,' "$@"
+ perl -pi -0 \
+ -e 's,^(.*?<h1[^>]*>)(.*?)(?=</h1>),<!DOCTYPE html>\n<meta charset="utf-8">\n<title>$$2$$1$$2,ms;' \
+ -e 's,$(base)\K,/index.txt,;' \
+ "$@"