| 1 |
<?php |
|---|
| 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 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
$loginNoKick=true; |
|---|
| 40 |
$loginNoDisplayError=true;; |
|---|
| 41 |
require("include/session.php"); |
|---|
| 42 |
|
|---|
| 43 |
$pageTitle = "phpBMS Browser Requirements"; |
|---|
| 44 |
|
|---|
| 45 |
$phpbms->cssIncludes[] = "pages/requirements.css"; |
|---|
| 46 |
|
|---|
| 47 |
$phpbms->showMenu = false; |
|---|
| 48 |
$phpbms->showFooter = false; |
|---|
| 49 |
|
|---|
| 50 |
include("header.php") |
|---|
| 51 |
?><div class="bodyline" id="container"> |
|---|
| 52 |
<div class="box" id="logo" style=""><span>phpBMS</span></div> |
|---|
| 53 |
<h1>phpBMS Browser Requirements</h1> |
|---|
| 54 |
<h2 id="cba">Client Browser Aplication</h2> |
|---|
| 55 |
|
|---|
| 56 |
<h3>JavaScript v2.0</h3> |
|---|
| 57 |
<p>This application makes heavy use of newer JavaScript functions, including the paradigm known as AJAX. Without Javascript, enabled, phpBMS will not run correctly.</p> |
|---|
| 58 |
|
|---|
| 59 |
<h3>Window pop-ups:</h3> |
|---|
| 60 |
<p>This application utilizes JavaScript to open new windows. If you disable Javascript window opening (like in Firefox or Opera) or are utilizing a 3rd-party application to stop Internet Explorer from opening unwanted windows, this application might not work correctly.</p> |
|---|
| 61 |
|
|---|
| 62 |
<h3>Cookies</h3> |
|---|
| 63 |
<p>A single cookie is set to identify the user during a session.</p> |
|---|
| 64 |
|
|---|
| 65 |
<h3>Style Sheets (CSS) v1.1</h3> |
|---|
| 66 |
<p>Your browser must support the rendering of Cascading Style Sheets. Without this support, the application will not work correctly.</p> |
|---|
| 67 |
|
|---|
| 68 |
<h2>Tested Browsers</h2> |
|---|
| 69 |
<table border="0" cellpadding="0" cellspacing="0" class="querytable" id="browserTable"> |
|---|
| 70 |
<tr> |
|---|
| 71 |
<th class="queryheader" nowrap="nowrap">Browser Application</th> |
|---|
| 72 |
<th class="queryheader">Version</th> |
|---|
| 73 |
<th class="queryheader">Platform(s)</th> |
|---|
| 74 |
<th align="center" class="queryheader">Compatibility</th> |
|---|
| 75 |
</tr> |
|---|
| 76 |
<tr class="row2"> |
|---|
| 77 |
<td>Firefox</td> |
|---|
| 78 |
<td>1.5.0.7</td> |
|---|
| 79 |
<td>Windows/Macintosh</td> |
|---|
| 80 |
<td align="center" class="important">X</td> |
|---|
| 81 |
</tr> |
|---|
| 82 |
<tr class="row1"> |
|---|
| 83 |
<td>Internet Explorer</td> |
|---|
| 84 |
<td>6.0.2900.2190</td> |
|---|
| 85 |
<td>Windows</td> |
|---|
| 86 |
<td align="center" class="important">X</td> |
|---|
| 87 |
</tr> |
|---|
| 88 |
<tr class="row2"> |
|---|
| 89 |
<td>Opera</td> |
|---|
| 90 |
<td>9.02</td> |
|---|
| 91 |
<td>Windows</td> |
|---|
| 92 |
<td align="center" class="important">X</td> |
|---|
| 93 |
</tr> |
|---|
| 94 |
<tr class="row1"> |
|---|
| 95 |
<td>Internet Explorer</td> |
|---|
| 96 |
<td>6.0.2900.2190</td> |
|---|
| 97 |
<td>Windows</td> |
|---|
| 98 |
<td align="center" class="important">X</td> |
|---|
| 99 |
</tr> |
|---|
| 100 |
<tr class="queryfooter"><td> </td><td> </td><td> </td><td> </td></tr> |
|---|
| 101 |
</table> |
|---|
| 102 |
<p align="right"> |
|---|
| 103 |
<input type="button" value="Log In" class="Buttons" onclick="document.location='./'" id="loginButton"/> |
|---|
| 104 |
</p> |
|---|
| 105 |
</div><?php include("footer.php");?> |
|---|
| 106 |
|
|---|