From 5f44abe653fc4bd899d824b141943477e94f1e20 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Tue, 23 Jun 2015 16:39:06 +0000 Subject: [PATCH] the list of pages in the iframe is pretty long now, split it into 2 pieces, one for example.indexdata.com sites and one for all other hostnames. --- test/widgets/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/widgets/Makefile b/test/widgets/Makefile index b59bf67..695f237 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -54,7 +54,8 @@ index: iframe: index-iframe-demo index-iframe-demo: - ( cat url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos.html + ( egrep example.indexdata.com url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos-example.html + ( egrep -v example.indexdata.com url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos-other.html tidy: for i in iframe-demos.html index-*.html; do \ -- 1.7.10.4