blob: 20c4e5c57ed2c785155e0db326fdc4bc3ccde467 [file] [log] [blame]
#!/usr/bin/perl -w
# flush the buffers after each print
select (STDOUT);
$| = 1;
print "Content-Type: image/svg+xml\r\n";
print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\r\n";
print "Cache-Control: no-store, no-cache, must-revalidate\r\n";
print "Pragma: no-cache\r\n";
print "\r\n";
sleep 2;
open(FILE, "embedded.svg");
while (<FILE>) {
print $_;
}
close(FILE);