mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-16 16:42:00 -04:00
change to tests
This commit is contained in:
Vendored
+17
-16
@@ -1,16 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Cache Test</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<img width=400 height=225 src="vivaldi.jpg">
|
||||
|
||||
<form method="get" action="touch.php">
|
||||
<p>
|
||||
<input type="submit" value="Touch Image" alt="Touch Image">
|
||||
</p>
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Cache Test</title>
|
||||
<link rel="stylesheet" href="style1.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<img width=400 height=225 src="vivaldi.jpg">
|
||||
|
||||
<form method="get" action="touch.php">
|
||||
<p>
|
||||
<input type="submit" value="Touch Image" alt="Touch Image">
|
||||
</p>
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
body { background: black; }
|
||||
+1
@@ -0,0 +1 @@
|
||||
body { background: gray; }
|
||||
Vendored
+12
-9
@@ -1,9 +1,12 @@
|
||||
<?php
|
||||
$wd = getcwd();
|
||||
$image = "$wd/vivaldi.jpg";
|
||||
|
||||
ignore_user_abort(true);
|
||||
system("touch $image");
|
||||
header("Location: index.html");
|
||||
|
||||
?>
|
||||
<?php
|
||||
$wd = getcwd();
|
||||
$image = "$wd/vivaldi.jpg";
|
||||
|
||||
ignore_user_abort(true);
|
||||
system("touch vivaldi.jpg");
|
||||
system("mv style1.css style.tmp; mv style2.css style1.css; mv style.tmp style2.css");
|
||||
system("touch style1.css");
|
||||
|
||||
header("Location: index.html");
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user