|
AccVerify Report
Verified File Name: http://online.csustan.edu/ Date and Time: 6/12/2007 10:00:10 AM Failed Automated Verification |
| The level of detail setting for the report is to show all detail. |
| Checkpoints | Passed | ||
|---|---|---|---|
| 508 Standards, Section 1194.22 | Yes | No | Other |
A. 508 Standards, Section 1194.22, (a) A text equivalent for every non-text element shall be provided (e.g., via "alt", "longdesc", or in element content).
|
No | ||
B. 508 Standards, Section 1194.22, (b) Equivalent alternatives for any multimedia presentation shall be synchronized with the presentation.
|
N/A | ||
| C. 508 Standards, Section 1194.22, (c) Web pages shall be designed so that all information conveyed with color is also available without color, for example from context or markup. | N/A | ||
D. 508 Standards, Section 1194.22, (d) Documents shall be organized so they are readable without requiring an associated style sheet.
|
Yes | ||
E. 508 Standards, Section 1194.22, (e) Redundant text links shall be provided for each active region of a server-side image map.
|
N/A | ||
F. 508 Standards, Section 1194.22, (f) Client-side image maps shall be provided instead of server-side image maps except where the regions cannot be defined with an available geometric shape.
|
N/A | ||
G. 508 Standards, Section 1194.22, (g) Row and column headers shall be identified for data tables.
|
N/A | ||
H. 508 Standards, Section 1194.22, (h) Markup shall be used to associate data cells and header cells for data tables that have two or more logical levels of row or column headers.
|
N/A | ||
I. 508 Standards, Section 1194.22, (i) Frames shall be titled with text that facilitates frame identification and navigation.
|
N/A | ||
J. 508 Standards, Section 1194.22, (j) Pages shall be designed to avoid causing the screen to flicker with a frequency greater than 2 Hz and lower than 55 Hz.
|
Yes | ||
| K. 508 Standards, Section 1194.22, (k) A text-only page, with equivalent information or functionality, shall be provided to make a web site comply with the provisions of this part, when compliance cannot be accomplished in any other way. The content of the text-only page shall be updated whenever the primary page changes. | N/A | ||
| (k) Option A - Check for the string 'Text Version' within the document. | N/V | ||
| (k) Option B - Check for a Global Text Version Link within the document. | N/V | ||
| (k) Option C - Check for an Accessibility Policy Link within the document. | N/V | ||
L. 508 Standards, Section 1194.22, (l) When pages utilize scripting languages to display content, or to create interface elements, the information provided by the script shall be identified with functional text that can be read by assistive technology.
|
Yes | ||
M. 508 Standards, Section 1194.22, (m) When a web page requires that an applet, plug-in or other application be present on the client system to interpret page content, the page must provide a link to a plug-in or applet that complies with §1194.21(a) through (l).
|
Yes | ||
N. 508 Standards, Section 1194.22, (n) When electronic forms are designed to be completed on-line, the form shall allow people using assistive technology to access the information, field elements, and functionality required for completion and submission of the form, including all directions and cues.
|
|||
O. 508 Standards, Section 1194.22, (o) A method shall be provided that permits users to skip repetitive navigation links.
|
N/A | ||
| P. 508 Standards, Section 1194.22, (p) When a timed response is required, the user shall be alerted and given sufficient time to indicate more time is required. | N/A | ||
Checkpoint Result Legend: Yes = Passed Automated Verification, No = Failed Automated Verification, Warning = Failed Automated Verification, however, configured not to cause page to fail (Priority 2 or 3 only), N/V = Not selected for verification, N/A = No related elements were found in document (Visual only), No Value = Visual Checkpoint
Report generated by HiSoftware AccVerify®
AccVerify® is a registered trademark of Hiawatha Island Software Inc. (www.hisoftware.com)
1:
2:
3: <HTML>
4: <HEAD>
5: <META NAME="Keywords" CONTENT="Online, education, distance learning, continuing education, Higher Education, electronic learning">
6: <META http-equiv="Description" Content="The NAME located in CITY providing online education and services to COMMUNITY">
7: <!-- Labeled for push on 07.05.01 by CK -->
8:
9: <script language="JavaScript">
10: <!-- hide from silly old browsers
11: //this error catcher is to deal with some of the Problematic Net 3 errors, that aren't really and which seem to emanate from nowhere. Also to keep QA happy.
12: //This script will catch ALL errors - even the ones you want to know about during development
13: //NOTE - if you are getting odd things or problems that you believe may be related to JavaScript, comment out these lines so that you can see any JS error messages being generated.
14: window.onerror = myOnError;
15: function myOnError() {
16: return true;
17: }
18: //Multiple versions for compatability with all our EP's
19: //script to focus the cursor in the login box
20: //it uses the FORMS array and the ELEMENTS array. If the form is not the first one on the page change the number (0 is the first elements in any array)
21: //Errors may be generated if the first element in the form is NOT a Text or TEXTAREA input field. No other elements can accept the .focus method. All hidden fields should be moved to the END of the form to prevent problems.
22: function selfoc2(){
23: if (document.forms[0]) {
24: document.forms[0].elements[0].focus();
25: }
26: }
27: function selfoc1(){
28: if (document.forms[1]) {
29: document.forms[1].elements[0].focus();
30: }
31: }
32:
33: function selfoc(){
34: if (document.forms) {
35: document.forms[0].elements[0].focus();
36: }
37: }
38: // done hiding -->
39: </script>
40:
41: <script language="JavaScript">
42: <!--
43: function openwindow(URL){
44: HI=window.open(URL,"HI","toolbar=1,location=0,status=0,menubar=1,scrollbars,width=600,height=400,top=50,left=50,resizable")
45: }
46: // -->
47:
48:
49: /*
50: This function either checks all boxes in a list or clears all boxes in a list.
51: form = DOM reference to the form
52: val = 1 or 0. 1 checks all boxes, 0 clears them
53: ElName = String value that is the name of the checkboxes
54: example of href:
55: <a href="javascript:SetChecked(document.userList,1,'UserID')">Check All</a>
56: -
57: <a href="javascript:SetChecked(document.userList,0,'UserID')">Clear All</a>
58: */
59: function SetChecked(form,val,ElName) {
60: len = form.elements.length;
61: var i=0;
62: for( i=0 ; i<len ; i++) {
63: if (form.elements[i].name==ElName) {
64: form.elements[i].checked=val;
65: }
66: }
67: }
68: //-->
69: </script><!-- Labeled for push on 07.05.01 by CK -->
70:
71:
72: <TITLE>California State University Stanislaus | WELCOME</TITLE>
73:
74: <LINK REL=STYLESHEET HREF="CaStyle.css" TYPE="text/css">
75: <!-- added the styles below for formatting the tile in IE 5.0 --><STYLE Type="text/css">
76: <!--
77: BODY { background-color : #FFFFFF;
78: background-image : url(resources/tilebottom.gif);
79: background-repeat : repeat-y;
80: margin : 0pt;
81: margin-top : 0pt;
82: }
83: -->
84: </STYLE>
85: </HEAD>
86: <BODY BGColor="#FFFFFF" Marginheight="0" Marginwidth="0" Topmargin="0" Leftmargin="0" onLoad=selfoc2()>
87:
88:
89: <script Language="JavaScript">
90: <!--
91:
92: if (document.images) {
93: //1 count
94: var button1Off=new Image();
95: button1Off.src="resources/button1_off.gif"
96: var button1On=new Image();
97: button1On.src="resources/button1_on.gif"
98: var button1Over=new Image();
99: button1Over.src="resources/button1_on.gif"
100: //2 count
101: var button2Off=new Image();
102: button2Off.src="resources/button2_off.gif"
103: var button2On=new Image();
104: button2On.src="resources/button2_on.gif"
105: var button2Over=new Image();
106: button2Over.src="resources/button2_on.gif"
107: //3 count
108: var button3Off=new Image();
109: button3Off.src="resources/button3_off.gif"
110: var button3On=new Image();
111: button3On.src="resources/button3_on.gif"
112: var button3Over=new Image();
113: button3Over.src="resources/button3_on.gif"
114: //4 count
115: var button4Off=new Image();
116: button4Off.src="resources/button4_off.gif"
117: var button4On=new Image();
118: button4On.src="resources/button4_on.gif"
119: var button4Over=new Image();
120: button4Over.src="resources/button4_on.gif"
121: //5 count
122: var button5Off=new Image();
123: button5Off.src="resources/button5_off.gif"
124: var button5On=new Image();
125: button5On.src="resources/button5_on.gif"
126: var button5Over=new Image();
127: button5Over.src="resources/button5_on.gif"
128: }
129: function turnOn(imgName) {
130: if (document.images)
131: document[imgName].src = eval(imgName + 'On.src'); }
132: function turnOff(imgName) {
133: if (document.images)
134: document[imgName].src = eval(imgName + 'Off.src'); }
135: //-->
136: </script><noscript>This JavaScript is used for validating the form fields.</noscript>
137:
138:
139: <TABLE CellPadding="0" CellSpacing="0" Border="0" Width="450">
140: <TR Align="Left" Valign="Top">
141: <TD ColSpan="2" Align="Left" Valign="Top"><A HREF="../"><IMG Src="resources/banner.gif" Alt="Welcome to California State University Stanislaus" Width="744" Height="124" Border="0" HSpace="0" VSpace="0"></A></TD>
142: </TR>
143: <TR Align="Left" Valign="Top">
144: <TD Colspan="2" Align="Left" Valign="Top">
145: <TABLE CellPadding="0" CellSpacing="0" Border="0" Width="100%">
146: <TR>
147: <TD Rowspan="2" Width="177" Height="100%" Align="Left" Valign="Top">
148: <Center>
149: <TABLE>
150: <TR>
151: <TD Align="Left">
152:
153: <SPAN Class="navOn"><A HREF="index.learn?action=welcome">Welcome</A></SPAN><BR><BR>
154:
155:
156: <!--
157:
158: <SPAN Class="navOff"><A HREF="index.learn?action=login">Login</A></SPAN><BR><BR>
159:
160: -->
161:
162:
163: <SPAN Class="navOff"><A HREF="index.learn?action=technical">Technical Requirements</A></SPAN><BR><BR>
164:
165: <SPAN Class="navOff"><A HREF="index.learn?action=quiz">Is Online Learning For Me?</A></SPAN><BR><BR>
166:
167: <SPAN Class="navOff"><A HREF="index.learn?action=inquiry">Contact Us</A></SPAN><BR><BR>
168:
169: <FORM Action="/verifpwd.learn" Method="POST" Name="loginForm">
170: <Div Align="center">
171: <TABLE width="155" cellpadding="0" cellspacing="0" border="0">
172: <TR>
173: <TD bgcolor="#06385d" align="left" valign="top"><br></td>
174: <TD bgcolor="#06385d" align="right" valign="top"><br></td>
175: </TR>
176: <TR>
177: <TD bgcolor="#06385d" colspan="2" align="center"><label for="Username"><span class="login">User ID</span></label></TD>
178: </TR>
179: <TR>
180: <TD bgcolor="#06385d" colspan="2" align="center"><input type="text" name="Username" id="UserName" Size="11"></TD>
181: </TR>
182: <TR>
183: <TD bgcolor="#06385d" colspan="2" align="center"><label for="Password"><span class="login">Password</span></label></TD>
184: </TR>
185: <TR>
186: <TD bgcolor="#06385d" colspan="2" align="center"><input type="Password" name="Password" id="Password" Size="11"></TD>
187: </TR>
188: <TR>
189: <TD bgcolor="#06385d" colspan="2" align="center"><br><input type="submit" value="Go to Class" id=submit1 name=submit1><input type="hidden" name="URL" value="A_PSH.real"></TD>
190: </TR>
191: <TR>
192: <TD bgcolor="#06385d" align="left" valign="bottom"><br></td>
193: <TD bgcolor="#06385d" align="right" valign="bottom"><br></td>
194: </TR>
195: </TABLE>
196: </DIV>
197: </FORM><div style="padding-left: 5px;">
198:
199: </div>
200: </Center>
201: </TD>
202: </TR>
203: </TABLE>
204: </TD>
205:
206: <TD Width="543" Valign="Top">
207:
208: <div class="left_margin">
209: <!--DownTimeNotice-->
210: </div>
211:
212:
213:
214: <!-- this style is used because of problems with the contents butting up against the "tile" -->
215: <STYLE>
216: <!--
217: .left_margin {
218: margin-left : 15
219: }
220: -->
221: </STYLE>
222:
223:
224:
225: <DIV Class="left_margin">
226: <H1>Welcome</H1>
227:
228: <!--BEGIN CAMPUS AUTHOR CONTENT BLOCK WELCOME1-->
229: <p>
230: <P>Welcome to CSU Stanislaus<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></P>
231: <P>If you have problems accessing the course homepage, feel free to call or e-mail the College HelpDesk. This service is available to you at any time of the day or night. Contact the HelpDesk at the toll-free number <SPAN style="COLOR: black">1.888.729.1953</SPAN> or e-mail them with questions at <SPAN style="COLOR: navy"><a href="mailto:helpdesk@online.csustan.edu">helpdesk@online.csustan.edu</A></SPAN><o:p></o:p></P>
232: <P></EM></FONT></P>
233: </p>
234: <!--END CAMPUS AUTHOR CONTENT BLOCK WELCOME1-->
235:
236: </DIV>
237:
238:
239: <BR><BR><BR>
240: <table>
241: <tr>
242: <td><a href="http://www.ecollege.com">
243: <!--img below is pointing to re/global/resources folder-->
244: <img src="/Resources/eCollege.gif" width=79 height=42 border=0 alt="Empowered by eCollege"></a>
245: </td>
246: <td><FONT Size="-2" Color="#000000" Face="arial,verdana,geneva"><span class="copyright">All course content is copyrighted by California State University Stanislaus. The
247: delivery system is copyrighted by <a href="http://www.ecollege.com">eCollege</a><sup>sm</sup>. eCollege, the
248: eCollege logo, and the eCollege System<sup>sm</sup> are trademarks or registered trademarks of eCollege. All rights reserved.
249:
250:
251: © 2004 eCollege<sup>sm</sup>
252:
253: </span>
254: </FONT>
255: </td>
256: </tr>
257: </table>
258:
259:
260:
261:
262: </TD>
263: </TR>
264: </TABLE>
265: </TD>
266: </TR>
267: </TABLE>
268: <P> </P>
269: <!--AGDHDIFNOFRANPULLSOMEHEPCAADDER--><!--IFSOMENOFORAAPAAthena15AOUAFTG--><!--AGDHDERJOSRIPTFOOORYUNONIHTSSSQERF--><!--AGDHDERJOSRIPTFOOORYUNONIHTSSSQERF-->
270: </BODY>
271: </HTML>
272: