Module: tools Branch: master Commit: a9dba0a918b483816f489189147b76d28787ea8c URL: http://source.winehq.org/git/tools.git/?a=commit;h=a9dba0a918b483816f4891891...
Author: Jacek Caban jacek@codeweavers.com Date: Sat Mar 12 19:21:54 2011 +0100
winetest: Added data.php for use in http tests.
---
winetest/tests/.htaccess | 2 ++ winetest/tests/data.php | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/winetest/tests/.htaccess b/winetest/tests/.htaccess index b3a256c..f6c2d00 100644 --- a/winetest/tests/.htaccess +++ b/winetest/tests/.htaccess @@ -1,6 +1,8 @@ Order Allow,Deny Allow From All
+SetEnv no-gzip dont-vary + <Files chunked> Allow from All Options ExecCGI diff --git a/winetest/tests/data.php b/winetest/tests/data.php new file mode 100644 index 0000000..3c42734 --- /dev/null +++ b/winetest/tests/data.php @@ -0,0 +1,15 @@ +<?php +header("Cache-Control: no-store"); +?> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>Page for winetest tests purposes</title> +</head> +<body> +<?php +echo str_repeat("test ", 10000); +?> +</body> +</html>