enable to run tidy several times
[mkws-moved-to-github.git] / test / widgets / Makefile
index e693a15..e91e13c 100644 (file)
@@ -28,7 +28,7 @@ test: check
 
 screenshot:
        file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g; s/-$$//;'); \
-         ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \
+         ${PHANTOMJS} ${PROG} "${PHANTOMJS_URL}" ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \
          mv -f  ${IMAGES}/tmp.$$file.png  ${IMAGES}/$$file.png
 
 screenshots: clean estimate-time iframe
@@ -39,6 +39,11 @@ screenshots: clean estimate-time iframe
            done; \
            ${MAKE} PREFIX=$$t index; \
        done
+       ${MAKE} tidy help-url
+
+help-url:
+       @echo ""
+       @echo "Please check now: http://localhost/test/widgets/"
 
 estimate-time:
        @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }'
@@ -51,10 +56,16 @@ 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
 
+tidy:
+       for i in iframe-demos.html index-*.html; do \
+           tidy -i -m $$i >/dev/null 2>&1; \
+           perl -i -npe 's,(^\s*</head>),<link type="text/css" rel="stylesheet" href="screenshots.css" />\n$$1,' $$i; \
+       done
+
 help:
        @echo "make [ all | clean | distclean ]"
        @echo "     [ screenshots ]"
-       @echo "     [ screenshot | index | iframe ]"
+       @echo "     [ screenshot | index | iframe | tidy ]"
        @echo ""
        @echo "Examples: "
        @echo ""