This repository was archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreqs.php
More file actions
36 lines (33 loc) · 1.72 KB
/
reqs.php
File metadata and controls
36 lines (33 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
session_start();
include_once('globals.php');
require('doctype.php');
require('appearance.php');
echo "<link rel=\"stylesheet\" href=\"skins/$skin/default.css\" type=\"text/css\" title=\"$skin\" />\n";
foreach($altskins as $altskin)
echo "<link rel=\"alternate stylesheet\" href=\"skins/$altskin/default.css\" type=\"text/css\" title=\"$altskin\" />\n";
?>
<title><?php echo $appname; ?> - Browser Requirements</title>
</head>
<body>
<?php
/**** begin html head *****/
require('htmlhead.php'); //starts main container
/****end html head content ****/
echo "<h1>$appname Browser Requirements</h1>\n";
echo "<p>$appname supports all modern browsers, \"modern\" being defined as a version released less than three years ago. JavaScript should be enabled (or iit.edu whitelisted in NoScript) for proper operation of $appname.</p>\n";
echo "<p>As of this writing (August 24, 2009), \"modern\" includes the following browsers:</p>\n";
echo "<ul>\n";
echo "<li>Internet Explorer ≥7</li>\n";
echo "<li>Firefox ≥2</li>\n";
echo "<li>Safari ≥3</li>\n";
echo "<li>Google Chrome (all)</li>\n";
echo "<li>Opera ≥9</li>\n";
echo "</ul>\n";
echo "<p>Older versions of these browsers <i>might</i> work fine, but often do not. Notably, the most common not-modern browser, Internet Explorer 6, may perform quirkily and $appname utilizes CSS2 attributes that IE 6 does not know about. Therefore, <b>the use of $appname with Internet Explorer 6 is neither supported nor recommended</b>; users should upgrade to Internet Explorer 7 or 8, or use an alternative browser.</p>\n";
?>
<?php
//include rest of html layout file
require('htmlcontentfoot.php');// ends main container
?>
</body></html>