Difference between revisions of "Accessibility legislation"

From SmartWiki
Jump to: navigation, search
(Created page with "As of January 1st 2012, the AODA Act legally requires all organizations providing goods or services to the public or to other organizations in Ontario to provide accessible cu...")
 
Line 1: Line 1:
As of January 1st 2012, the AODA Act legally requires all organizations providing goods or services to the public or to other organizations in Ontario to provide accessible customer service to all people, including those with disabilities.
+
Web Content Accessibility Guidelines (WCAG) is a set of recommendations for making web content more accessible.
  
One step towards achieving this goal is to ensure that any HTML templates configured within the system includes the following section of HTML code:   
+
The Accessibility for Ontarians with Disabilities Act, 2005 (AODA) legally requires all organizations providing goods or services to the public in Ontario to provide accessible customer service to all people, including those with disabilities.
  
<pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">
+
'''You can learn more about these:'''
<!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
*Web Content Accessibility Guidelines (WCAG) 2.0 http://www.w3.org/TR/WCAG20/
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+
*The Accessibility for Ontarians with Disabilities Act (AODA) http://www.ontario.ca/laws/statute/05a11
<head>
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
<title>appropriate title goes here </title>
 
</pre>
 
  
Areas in the system where this HTML code should be added includes . . .  
+
'''How SmartSimple adheres to these:'''
 +
Below is a list of some of these accessibility guidelines and how SmartSimple meets them.
  
* [[Template Page|L1, L2 and L3 template pages]]
+
Inputs need a label
* [[Sign-Up Pages|Registration pages]]
+
Example: On the login page the password input has a label called password. On the signup page each input has a label. For custom fields the label name will be the same as the caption; if there is no caption the label will take the name of the field.  Labels are automatically added for inputs by SmartSimple.
* [[Login Screen Content|Login page template]]
+
 
* [[Report Template|Report Templates]]
+
Images need alternate text
* [[Custom Field Type: Display Only – Web Page View|Web Page Views]]
+
Example: Your logo is given an alternate text tag. The custom field “Display Only – Image” will give an image uploaded an alternate text tag. The tag will take the name of the caption and if no caption is present it will take the field name.  Alt tags are added automatically for logos and display only images.
* [[Custom Field Type: Special - XML Data|XML Sections]]
+
 
 +
Language needs to be declared
 +
Example: Language is declared in pages (lang="fr" for French , lang="en" for English ). This is automatically added to pages and it changes dynamically when the user changes their language.
 +
 
 +
Use descriptive names for links
 +
Example: When including links in your content, use text that properly describes where the link will go. Using "click here" is not considered descriptive, and is ineffective for a screen reader user. Link names are customizable in SmartSimple.

Revision as of 13:04, 3 September 2015

Web Content Accessibility Guidelines (WCAG) is a set of recommendations for making web content more accessible.

The Accessibility for Ontarians with Disabilities Act, 2005 (AODA) legally requires all organizations providing goods or services to the public in Ontario to provide accessible customer service to all people, including those with disabilities.

You can learn more about these:

How SmartSimple adheres to these: Below is a list of some of these accessibility guidelines and how SmartSimple meets them.

Inputs need a label Example: On the login page the password input has a label called password. On the signup page each input has a label. For custom fields the label name will be the same as the caption; if there is no caption the label will take the name of the field. Labels are automatically added for inputs by SmartSimple.

Images need alternate text Example: Your logo is given an alternate text tag. The custom field “Display Only – Image” will give an image uploaded an alternate text tag. The tag will take the name of the caption and if no caption is present it will take the field name. Alt tags are added automatically for logos and display only images.

Language needs to be declared Example: Language is declared in pages (lang="fr" for French , lang="en" for English ). This is automatically added to pages and it changes dynamically when the user changes their language.

Use descriptive names for links Example: When including links in your content, use text that properly describes where the link will go. Using "click here" is not considered descriptive, and is ineffective for a screen reader user. Link names are customizable in SmartSimple.