summaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-07-17 09:29:37 +0100
committerVincent Sanders <vince@kyllikki.org>2015-07-17 09:29:37 +0100
commit3b9df4f79655f80acbb508f85181f795319801a9 (patch)
tree5098afd7310f19c5670260e99d380187ec55ab14 /javascript
parent989bc6e190ac37f60c273dafa8556741b28618b0 (diff)
downloadnetsurf-3b9df4f79655f80acbb508f85181f795319801a9.tar.gz
netsurf-3b9df4f79655f80acbb508f85181f795319801a9.tar.bz2
Fix IDL update from spec
Diffstat (limited to 'javascript')
-rw-r--r--javascript/WebIDL/Makefile14
1 files changed, 9 insertions, 5 deletions
diff --git a/javascript/WebIDL/Makefile b/javascript/WebIDL/Makefile
index 77d54e21e..d53446a15 100644
--- a/javascript/WebIDL/Makefile
+++ b/javascript/WebIDL/Makefile
@@ -18,19 +18,23 @@ all: dom.idl html.idl
dom-spec.html:
- curl -s http://dom.spec.whatwg.org/ -o $@
+ curl -s https://dom.spec.whatwg.org/ -o $@
html-spec.html:
- curl -s http://www.whatwg.org/specs/web-apps/current-work/ -o $@
+ curl -s https://html.spec.whatwg.org/ -o $@
%-spec.xml: %-spec.html
- -tidy -q -f $@.errors --new-blocklevel-tags header,hgroup,figure -o $@ -asxml $<
+ -tidy -q -f $@.errors --new-blocklevel-tags header,hgroup,figure,time,main,nav,svg,rect,text,image,mark,figcaption -o $@ -asxml $<
%-idl.html: %-spec.xml
- hxselect pre.idl < $< > $@
+ hxselect 'pre[class="idl"]' < $< > $@
%.idl: %-idl.html
- cat $< | w3m -dump -T text/html >$@
+ @echo "// Retrived from " >$@
+ @echo "// $$(date)" >>$@
+ @echo "" >>$@
+ @echo "" >>$@
+ cat $< | w3m -dump -T text/html >>$@