Diff -- /var/www/vhosts/3dshawn.com/crm.3dshawn.com/test/perl/test.pl

O Operator
Diff

/var/www/vhosts/3dshawn.com/crm.3dshawn.com/test/perl/test.pl

added on local at 2026-07-01 15:03:19

Added
+0
lines
Removed
-0
lines
Context
34
unchanged
Blobs
from b1726f5146b7
to b1726f5146b7
Restore this content →
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
11# Copyright 1999-2017. Parallels IP Holdings GmbH. All Rights Reserved.
22use ExtUtils::Installed;
33my ($inst) = ExtUtils::Installed->new();
44my (@modules) = $inst->modules();
55
66print <<HTML;
77Content-type: text/html
88
99<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
1010"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1111<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1212<head>
1313<title></title>
1414<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
1515<link rel="stylesheet" type="text/css" href="../../css/style.css" />
1616</head>
1717<body class="test-data">
1818<table cellspacing="0" cellpadding="0" border="0">
1919<tr class="subhead" align="Left"><th>Name</th><th>Value</th></tr>
2020HTML
2121
2222for my $i ($[ .. $#modules) {
2323 my $version = $inst->version($modules[$i]) || "???";
2424 my $class = ($i % 2) ? "alt" : "normal";
2525 print <<HTML;
2626<tr class="$class"><td valign="top">$modules[$i]</td><td>$version</td></tr>
2727HTML
2828}
2929
3030print <<HTML;
3131</table>
3232</body>
3333</html>
3434HTML