Update files

This commit is contained in:
Stian
2026-01-21 11:21:55 +01:00
parent 59a22c99d9
commit d28a170729
5 changed files with 64 additions and 14 deletions
Vendored Executable → Regular
+37 -11
View File
@@ -1,18 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<title>Cache Test</title>
<link rel="stylesheet" href="style1.css">
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Author" content="Made by 'tree'">
<meta name="GENERATOR" content="$Version: $ tree v1.7.0 (c) 1996 - 2014 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro $">
<title>cache</title>
<style type="text/css">
<!--
BODY { font-family : ariel, monospace, sans-serif; color: lime; background: black; }
P { font-weight: normal; font-family : ariel, monospace, sans-serif; color: lime; background-color: transparent;}
B { font-weight: normal; color: lime; background-color: transparent;}
A:visited { font-weight : normal; text-decoration : none; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:link { font-weight : normal; text-decoration : none; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:hover { color : #000000; font-weight : normal; text-decoration : underline; background-color : yellow; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:active { color : #000000; font-weight: normal; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
.VERSION { font-size: small; font-family : arial, sans-serif; }
.NORM { color: lime; background-color: transparent;}
.FIFO { color: mediumpurple; background-color: transparent;}
.CHAR { color: yellow; background-color: transparent;}
.DIR { color: deepskyblue; background-color: transparent;}
.BLOCK { color: yellow; background-color: transparent;}
.LINK { color: aqua; background-color: transparent;}
.SOCK { color: fuchsia;background-color: transparent;}
.EXEC { color: limegreen; background-color: transparent;}
-->
</style>
</head>
<body>
<img width=400 height=225 src="vivaldi.jpg">
<form method="get" action="touch.php">
<h1>cache</h1><p>
<a class="NORM" href="..">..</a><br>
[&nbsp;540]&nbsp;&nbsp;<a class="EXEC" href="./index.php">index.php</a><br>
[&nbsp;&nbsp;28]&nbsp;&nbsp;<a class="EXEC" href="./style1.css">style1.css</a><br>
[&nbsp;&nbsp;29]&nbsp;&nbsp;<a class="EXEC" href="./style2.css">style2.css</a><br>
[&nbsp;248]&nbsp;&nbsp;<a class="EXEC" href="./touch.php">touch.php</a><br>
[&nbsp;53K]&nbsp;&nbsp;<a class="EXEC" href="./vivaldi.jpg">vivaldi.jpg</a><br>
<br><br>
</p>
<p>
<input type="submit" value="Touch Image" alt="Touch Image">
</p>
</form>
</body>
0 directories, 5 files
<br><br>
</p>
</html>
Vendored Executable
+24
View File
@@ -0,0 +1,24 @@
<html>
<head>
<title>Cache Test</title>
<link rel="stylesheet" href="style1.css">
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
</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>
<?php
// outputs e.g. somefile.txt was last modified: December 29 2002 22:16:23.
echo "Image last modified: " . date ("F d Y H:i:s.", filemtime('vivaldi.jpg'));
?>
</body>
</html>
+1 -1
View File
@@ -1 +1 @@
body { background: black; }
body { background: gray; }
+1 -1
View File
@@ -1 +1 @@
body { background: gray; }
body { background: black; }
+1 -1
View File
@@ -7,6 +7,6 @@ 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");
header("Location: ./");
?>