Diff -- /var/www/vhosts/3dshawn.com/admin.3dshawn.com/cgi-bin/test/test.cgi

O Operator
Diff

/var/www/vhosts/3dshawn.com/admin.3dshawn.com/cgi-bin/test/test.cgi

added on local at 2026-06-21 23:16:00

Added
+0
lines
Removed
-0
lines
Context
32
unchanged
Blobs
from 3117bf3ce1f3
to 3117bf3ce1f3
Restore this content →
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
11#!/usr/bin/perl
22
33print <<HTML;
44Content-type: text/html
55
66<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
77<html>
88<head>
99<title></title>
1010<meta http-equiv="Content-Type" content="text/html">
1111<link rel="stylesheet" type="text/css" href="../../css/style.css">
1212</head>
1313<body>
1414<table cellspacing="0" cellpadding="0" border="0">
1515<tr class="subhead" align="Left"><th>Name</th><th>Value</th></tr>
1616HTML
1717
1818my $class;
1919
2020foreach (sort keys %ENV) {
2121 next unless /^HTTP_|^REQUEST_/;
2222 $class = ($class ne 'normal')? 'normal': 'alt';
2323 print <<HTML;
2424<tr class="$class"><td valign="top">$_</td><td>$ENV{$_}</td></tr>
2525HTML
2626}
2727
2828print <<HTML;
2929</table>
3030</body>
3131</html>
3232HTML