Implementing Acessibility in Liferay 6.1

Post on 27-Jun-2015

1,730 views 3 download

Tags:

transcript

Implementing Accessibility in Liferay 6.1

Julio CamareroLiferay Core Developer, WCM Lead

Accessibility?

Accessibility is the degree to which a product, device, service, or environment is available to

as many people as possible

.. some numbers ...

Almost 1 out of 5 people suffers some disability(half of them are can be considered severe)

48.9 million people in the USA

202,860,000 (80.6%)

24,819,000 (9.9%)

24,117,000 (9.6%)

with a disability, not severe

with a severe disability

with no disability

... some numbers ...

birthdisease

accident old age

other No specified

... some numbers ...

birthdisease

accident old age

other No specified

77.4%

... some numbers ...

walk or move

see listen talk personal care

capacity to lear

mental

.. and what about the web?

Inclusive practice of making websites usable by people of all abilities and disabilities.

When sites are correctly designed, developed and edited, all users can have equal access to

information and functionality

Why ?

c

Number of potential users increases

same

opportun

ities...

Better user experience

Motivation for accessibility

• The number of potential users increases

• Let’s give the same opportunities to everyone

• Technical Advantages:

• SEO improvement

• Usability

• Legal requirement (section 508)

let me show you one example...

Users who will take advantage...

• Disabled users and ...

• old people

• people with slow internet connections

• people with old computers or old software

• unexperienced users in the internet

• people using a mobile phone

• people who don’t understand well the website language

• Robots! (search engines...)

Technology is changing the game...

Technology is changing the game...

x

Technology is changing the game...

x

How do disabled people use the web?

How do disabled people use the web?

Resize the page

How do disabled people use the web?

Resize the page

change contrast,

remove css

How do disabled people use the web?

Resize the page

change contrast,

remove css

screen readers

How do disabled people use the web?

How do disabled people use the web?

Use the keyboard

How do disabled people use the web?

Use the keyboard

Specific devices for interacting with focused items

is my website accessible?

Validation and Certifications

• There are standards to validate a site is accessible (WCAG1.0, WCAG2.0, Section 508, RGAA...)

• There are automatic validators that can help you detect commons errors but they can’t certificate accessibility

• There are entities that certificate the Accessibility of your website regarding a standard

WCAG2.0 (by W3C)

• Guidelines independent of the technology (flash, html...)

• They provide “enough” successful criterion (but not necessary) so that your website is accessible.

• 3 levels of conformity: A, AA y AAA.

• Based on 4 principles:

• Perceptible, Operable, Understandable, Robust

ARIA

• Recommended technique by WCAG2.0• Provides semantic information to our HTML to give more

context to users using a screen-reader (menu, progressbar, popup...)

• Already applied in most of our components

... and is Liferay accessible?

Your theme50%

Your Content35%

Liferay15%

Yes, but keep in mind...

Liferay Validation

• Our Goal

• Validate AA level of WCAG2.0 in all the portal

• Validate HTML5

• Where are we right now?

• We guarantee AA Level para non-authenticated users (covered by EE support)

• Around 80% AA Level for signed in users collaborating and creating content

• Around 70% AA Level for administration tasks

...and we keep improving

• We have worked hard to validate WCAG2.0:• apply ARIA

• improve our markup

• more details in my blog:http://www.liferay.com/es/web/julio.camarero/blog

• Partners and community contributors• Liferay is open source , any part of the code can be modified,

improved and CONTRIBUTED!! :)

• Problem notifications and suggestions in forums/JIRA

• Adding accessibility tests to our automated QA tests

Our goal

• All Liferay Portlets and Themes should be accessible out of the box

• Provide tools to make it easier to create accessible sites using Liferay.

• Even more, make it hard to make your website non accessible if you use the tools we provide.

Are there any Websites built with Liferay with certified Accessibility?

Accessible Websites

http://www.liferay.com/es/community/wiki/-/wiki/Main/Accessible+Liferay+Websites

what about WCAG2.0?

Level A and Level AA

Perceptible

Content must be perceptible by all users (visually, by sound...)

Perceptible

Content must be perceptible by all users (visually, by sound...)

Information can not be only visual!• information base on colors or css

• images without alt attribute (alt=””)

• multimedia files without transcription

Additional and Hidden text

• Use CSS classes to hide/show elements dynamically.

• aui-helper-hidden: Hides the element to all users

• aui-helper-hidden-accessible: Hides an element visually but it is still found and ready by screen readers

Content must be operable by users with differnet devices (mouse, keyboard...)

Operable

All these are implemented in our classic theme! :)

Content must be operable by users with differnet devices (mouse, keyboard...)

Avoid using mouse-only events in javascript: onMouseOver, onDoubleClick, onRightClick... (onclick is ok)

• navigation menus

• trapped users!

• Users with a keyboard should be able to reach any level of the navigation menus

Operable

All these are implemented in our classic theme! :)

Use ckEditor

• WCAG2.0 compliant<liferay-ui:input-editor />

• Provides a good user experience in most screen readers.

Understandable

Users must be able to understand the content, how it is organized and how to interact with it.

Understandable

Users must be able to understand the content, how it is organized and how to interact with it.

Show in a simple and consistent way to the user where she is and how to get to other places

• menus always in the same position

• use breadcrumbs

• link to the begining of content

• avoid weird things :S

Robust

Content must be properly structured to allow user applications understand it.

Robust

Content must be properly structured to allow user applications understand it.

• Avoid tables for layouts

• use the proper markup for tables when organizing data

• use the proper markup for forms

• apply ARIA to js components

Use Liferay Components

• Maintained and improved by Liferay incorporating feedback from millions of users

• Alloy Forms

• Visual consistency with the portal

• Tested to generate accessible forms: <aui:form>, <aui:fieldset>, <aui:input>, <aui:select>, <aui:a> ...

• <aui:column> and <aui:layout> to achieve “table” layout using only css

• Alloy UI Widgets (http://alloyui.liferay.com)

• valid markup

• using ARIA

• work using the keyboard (without mouse)

Write Semantic Html

• A link should be a link (<a>)• Headers should go in order (<h1>, <h2>, <h3>...)• A list should be a list (<li>)

• Html 5 provides a lot of new semantic tags: header, section, footer...

• etc...

Html validation

• We have some tricks which improve performance but don’t validate html.

• It can be enabled in the configuration (portal.properties)

com.liferay.portal.servlet.filters.validhtml.ValidHtmlFilter=true

Some Advices

Common mistakes

Specific-device Events

• Avoid using javascript events which only work with some devices:

• onMouseOver, onMouseOut, onMouseUp, onMouseDown, onDoubleClick, onRightClick...

• if you use them, provide alternative for other devices (at least the keyboard but only consider touch mobile devices)

• onClick works with the keyboard (enter)

• Tablets and mobile phones won’t work with mouse events (although they have their own events: touchStart, touchMove... etc)

How can I test if my website is

accessible?

How to test 90% of user experiences

25%

1. Is it easy to use?

Would my mother be able to use it by herself?

How to test 90% of user experiences

50%

2. Resize the text, disable CSS and Images

can it still be used?

How to test 90% of user experiences

75%

3. Does it work without the mouse?

How to test 90% of user experiences

90%

4. And if I blind my eyes?

using a screenreader...

How to test 90% of user experiences

1. Is it easy to use? Would my mother be able to use it by herself?

2.Resize the text, disable CSS and images. Can it still be used?

3.Does it work without the mouse?

4.and if I blind my eyes? Using a screen-reader

Conclusions

• Accessibility is becoming more and more a key element in the success of a project

• Liferay provides tools, examples and guidelines to create accessible websites...we don’t want to leave anybody out!

• It is important to test your developments. Technology is changing and we are all learning about web accessibility.

Images Used (Creative Commons)• Population: http://www.flickr.com/photos/anirudhkoul/3786725982/sizes/l/

• wall: http://www.flickr.com/photos/adrianismyname/6207758517/sizes/l/

• woman: http://www.flickr.com/photos/adonis_pulatus/5881940531/sizes/l/

• wheelchair: http://www.flickr.com/photos/yourdon/2819627118/sizes/l/

• mother stroller: http://www.flickr.com/photos/paul-w-locke/6849441063/sizes/l/

• wheelchair injured: http://www.flickr.com/photos/elizabethclaireoleary/4815049279/sizes/l/

• Elevator: http://www.flickr.com/photos/25103209@N06/2625260355/sizes/l/

• crutches: http://www.flickr.com/photos/repose/4930951225/sizes/l/

• biking: http://www.flickr.com/photos/cityeyes/4005533058/sizes/z/