summaryrefslogtreecommitdiffstats
path: root/tests/auto/qabstractnetworkcache/tests/httpcachetest_cachecontrol200.cgi
blob: e44d5ed570302ec09d4e7f818bc41f20410da428 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
cc=`echo "${QUERY_STRING}" | sed -e s/%20/\ /g`
echo "Status: 200"
echo "Cache-Control: $cc"
echo "Last-Modified: Sat, 31 Oct 1981 06:00:00 GMT"
echo "Content-type: text/html";
echo "X-Script: $0"
echo ""
echo "Hello World!"