the list of pages in the iframe is pretty long now, split it
authorWolfram Schneider <wosch@indexdata.dk>
Tue, 23 Jun 2015 16:39:06 +0000 (16:39 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Tue, 23 Jun 2015 16:39:06 +0000 (16:39 +0000)
into 2 pieces, one for example.indexdata.com sites and one
for all other hostnames.

test/widgets/Makefile

index b59bf67..695f237 100644 (file)
@@ -54,7 +54,8 @@ index:
 
 iframe: index-iframe-demo
 index-iframe-demo:
-       ( cat url.demos | perl -ne 'chomp; print qq{<h2>$$_</h2><iframe width="900px" height="600px" src="$$_"></iframe>\n}' ) > iframe-demos.html
+       ( egrep example.indexdata.com url.demos | perl -ne 'chomp; print qq{<h2>$$_</h2><iframe width="900px" height="600px" src="$$_"></iframe>\n}' ) > iframe-demos-example.html
+       ( egrep -v example.indexdata.com url.demos | perl -ne 'chomp; print qq{<h2>$$_</h2><iframe width="900px" height="600px" src="$$_"></iframe>\n}' ) > iframe-demos-other.html
 
 tidy:
        for i in iframe-demos.html index-*.html; do \