<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 14.0 Accessibility</title>
	<atom:link href="http://www.d7ux.org/accessibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.d7ux.org/accessibility/</link>
	<description>making Drupal7 an amazing user experience</description>
	<lastBuildDate>Sun, 10 Jan 2010 11:19:49 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hobi</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-1122</link>
		<dc:creator>hobi</dc:creator>
		<pubDate>Mon, 15 Jun 2009 10:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-1122</guid>
		<description>Hello Leisa Reichelt,

As I have heard, Drupal 6.12 and 5.18 released somehow I found your link.

Thank you very much for your explanation,

Best regards from Istanbul</description>
		<content:encoded><![CDATA[<p>Hello Leisa Reichelt,</p>
<p>As I have heard, Drupal 6.12 and 5.18 released somehow I found your link.</p>
<p>Thank you very much for your explanation,</p>
<p>Best regards from Istanbul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ann McMeekin</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-872</link>
		<dc:creator>Ann McMeekin</dc:creator>
		<pubDate>Wed, 20 May 2009 22:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-872</guid>
		<description>Hi Jeff,

I think conventions are a good idea, but half the trouble (fun?) of accessibility is that it often depends on context and requires a considered decision to be made about which technique best solves the problem.

I&#039;ve been thinking a bit about this, and trying to identify the various use-cases and user groups/needs and have made a start with a comment (http://drupal.org/node/386462#comment-1611534) on the thread about skip links because that&#039;s an easily identified and very specific use-case with a reasonably easy solution (that can also be easily overridden if the site builder chooses).

With any luck that&#039;ll be more clarifying than confusing and we can then move on to the others and perhaps reach some kind of consensus (over-optimistic? moi?) on the best way to resolve the hiding/showing content issue.</description>
		<content:encoded><![CDATA[<p>Hi Jeff,</p>
<p>I think conventions are a good idea, but half the trouble (fun?) of accessibility is that it often depends on context and requires a considered decision to be made about which technique best solves the problem.</p>
<p>I&#8217;ve been thinking a bit about this, and trying to identify the various use-cases and user groups/needs and have made a start with a comment (<a href="http://drupal.org/node/386462#comment-1611534" rel="nofollow">http://drupal.org/node/386462#comment-1611534</a>) on the thread about skip links because that&#8217;s an easily identified and very specific use-case with a reasonably easy solution (that can also be easily overridden if the site builder chooses).</p>
<p>With any luck that&#8217;ll be more clarifying than confusing and we can then move on to the others and perhaps reach some kind of consensus (over-optimistic? moi?) on the best way to resolve the hiding/showing content issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Gifford</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-783</link>
		<dc:creator>Mike Gifford</dc:creator>
		<pubDate>Tue, 19 May 2009 17:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-783</guid>
		<description>I&#039;ve recommended a couple of CSS options to hide the text here -&gt; http://drupal.org/node/58941#comment-1606290

Perhaps though having something like this would help clarify the purpose:

.remove {
  display: none;
  visibility: hidden;
}
.invisible {
  height:0;
  overflow: hidden; 
}
.offscreen {
  position: absolute;
  left: -999em;
  width: 1em;
  overflow: hidden;
}

I also didn&#039;t set up a .hide class as it&#039;s already been used so many times (and not used well).</description>
		<content:encoded><![CDATA[<p>I&#8217;ve recommended a couple of CSS options to hide the text here -&gt; <a href="http://drupal.org/node/58941#comment-1606290" rel="nofollow">http://drupal.org/node/58941#comment-1606290</a></p>
<p>Perhaps though having something like this would help clarify the purpose:</p>
<p>.remove {<br />
  display: none;<br />
  visibility: hidden;<br />
}<br />
.invisible {<br />
  height:0;<br />
  overflow: hidden;<br />
}<br />
.offscreen {<br />
  position: absolute;<br />
  left: -999em;<br />
  width: 1em;<br />
  overflow: hidden;<br />
}</p>
<p>I also didn&#8217;t set up a .hide class as it&#8217;s already been used so many times (and not used well).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-782</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Tue, 19 May 2009 15:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-782</guid>
		<description>Thank-you for the reply Anne. With regards to hiding content what I would like to see is the establishment of a sort of &quot;best practice conventions&quot;, so that Drupal module and theme developers have a standard set of tools, perhaps classes they can use.

The problem is there are very few conventions, and module and theme developers love inventing new classes and using 3 different techniques to do the same thing. 

If we could have  a couple of classes to use such as:

.remove {}
.hide {}

That would at least be a convention everyone would be familiar with and could trust, meaning we know it gives the desired behaviour.

BTW, thanks for your input in the Accessibility theming documentation on drupal.org, must appreciated and nice to see you there!</description>
		<content:encoded><![CDATA[<p>Thank-you for the reply Anne. With regards to hiding content what I would like to see is the establishment of a sort of &#8220;best practice conventions&#8221;, so that Drupal module and theme developers have a standard set of tools, perhaps classes they can use.</p>
<p>The problem is there are very few conventions, and module and theme developers love inventing new classes and using 3 different techniques to do the same thing. </p>
<p>If we could have  a couple of classes to use such as:</p>
<p>.remove {}<br />
.hide {}</p>
<p>That would at least be a convention everyone would be familiar with and could trust, meaning we know it gives the desired behaviour.</p>
<p>BTW, thanks for your input in the Accessibility theming documentation on drupal.org, must appreciated and nice to see you there!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Gifford</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-778</link>
		<dc:creator>Mike Gifford</dc:creator>
		<pubDate>Mon, 18 May 2009 15:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-778</guid>
		<description>Great to hear your input in this process Ann.  Wanted to point out the Accessibility Group that has a long series of concerns about this issue - http://groups.drupal.org/accessibility

That being said, accessibility for contributors &amp; administrators (ATAG) is a problem in all CMS&#039;s.  I think that Drupal 7 holds the promise of being the most accessible CMS of 2010.  

One of the big outstanding issues is CSS &amp; display:none; that we really need to get resolved for D7 - http://drupal.org/node/58941

I&#039;ve got a sandbox up here which is working to demonstrate some of the accessibility patches http://drupal7.dev.openconcept.ca/</description>
		<content:encoded><![CDATA[<p>Great to hear your input in this process Ann.  Wanted to point out the Accessibility Group that has a long series of concerns about this issue &#8211; <a href="http://groups.drupal.org/accessibility" rel="nofollow">http://groups.drupal.org/accessibility</a></p>
<p>That being said, accessibility for contributors &amp; administrators (ATAG) is a problem in all CMS&#8217;s.  I think that Drupal 7 holds the promise of being the most accessible CMS of 2010.  </p>
<p>One of the big outstanding issues is CSS &amp; display:none; that we really need to get resolved for D7 &#8211; <a href="http://drupal.org/node/58941" rel="nofollow">http://drupal.org/node/58941</a></p>
<p>I&#8217;ve got a sandbox up here which is working to demonstrate some of the accessibility patches <a href="http://drupal7.dev.openconcept.ca/" rel="nofollow">http://drupal7.dev.openconcept.ca/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Gifford</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-777</link>
		<dc:creator>Mike Gifford</dc:creator>
		<pubDate>Mon, 18 May 2009 15:27:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-777</guid>
		<description>If there is a commitment to the best practice of Progressive Enhancement then this isn&#039;t too early in the process - http://www.alistapart.com/articles/understandingprogressiveenhancement/

There are a number of issues that need to get resolved before we start styling up the admin interface for usability as far as I am concerned.  This is a reasonable example - http://drupal.org/node/451980</description>
		<content:encoded><![CDATA[<p>If there is a commitment to the best practice of Progressive Enhancement then this isn&#8217;t too early in the process &#8211; <a href="http://www.alistapart.com/articles/understandingprogressiveenhancement/" rel="nofollow">http://www.alistapart.com/articles/understandingprogressiveenhancement/</a></p>
<p>There are a number of issues that need to get resolved before we start styling up the admin interface for usability as far as I am concerned.  This is a reasonable example &#8211; <a href="http://drupal.org/node/451980" rel="nofollow">http://drupal.org/node/451980</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Gifford</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-776</link>
		<dc:creator>Mike Gifford</dc:creator>
		<pubDate>Mon, 18 May 2009 15:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-776</guid>
		<description>I&#039;ve reported an issue with a patch here - http://drupal.org/node/405360

Unfortunately, I think that simple test needs to be updated before this patch is accepted. 

This is one of many known form issues that are identified in this list of issues - http://drupal.org/node/364629</description>
		<content:encoded><![CDATA[<p>I&#8217;ve reported an issue with a patch here &#8211; <a href="http://drupal.org/node/405360" rel="nofollow">http://drupal.org/node/405360</a></p>
<p>Unfortunately, I think that simple test needs to be updated before this patch is accepted. </p>
<p>This is one of many known form issues that are identified in this list of issues &#8211; <a href="http://drupal.org/node/364629" rel="nofollow">http://drupal.org/node/364629</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ann McMeekin</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-766</link>
		<dc:creator>Ann McMeekin</dc:creator>
		<pubDate>Thu, 14 May 2009 22:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-766</guid>
		<description>Thanks for the pointer Jeff. I plan on hopping over and getting involved in the accessibility group too so I&#039;ll respond over there, rather than splinter the discussion.

I agree that support for ARIA roles would be great, but but for the moment it feels more sensible to concentrate on getting the basic interaction solid and as close to right as we can get, and then move on to the enhancements, but it&#039;s duly noted :)

On the subject of techniques for hiding/showing content - the optimum technique varies depending on the desired behaviour.

If it&#039;s intended to be hidden from all users, then display: none is appropriate, but if it&#039;s something which is intended to be hidden from view but available to screen reader/non-css users, then moving it out of the viewport is more appropriate.

Of course, like so many things, it will often depend on the specific context, which can make giving a straight answer more complicated.

Still, it wouldn&#039;t be any fun if we didn&#039;t invent new ways of doing things that cause us to revisit techniques to determine whether or not they continue to be appropriate :)</description>
		<content:encoded><![CDATA[<p>Thanks for the pointer Jeff. I plan on hopping over and getting involved in the accessibility group too so I&#8217;ll respond over there, rather than splinter the discussion.</p>
<p>I agree that support for ARIA roles would be great, but but for the moment it feels more sensible to concentrate on getting the basic interaction solid and as close to right as we can get, and then move on to the enhancements, but it&#8217;s duly noted <img src='http://www.d7ux.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>On the subject of techniques for hiding/showing content &#8211; the optimum technique varies depending on the desired behaviour.</p>
<p>If it&#8217;s intended to be hidden from all users, then display: none is appropriate, but if it&#8217;s something which is intended to be hidden from view but available to screen reader/non-css users, then moving it out of the viewport is more appropriate.</p>
<p>Of course, like so many things, it will often depend on the specific context, which can make giving a straight answer more complicated.</p>
<p>Still, it wouldn&#8217;t be any fun if we didn&#8217;t invent new ways of doing things that cause us to revisit techniques to determine whether or not they continue to be appropriate <img src='http://www.d7ux.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ann McMeekin</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-765</link>
		<dc:creator>Ann McMeekin</dc:creator>
		<pubDate>Thu, 14 May 2009 21:44:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-765</guid>
		<description>Do you have any specific concerns about the accessibility of Drupal, Simon?

If you can itemise them (for want of a better term) then I/we can either set your mind at rest, or add them to the list of things that still need a bit of accessibility love.</description>
		<content:encoded><![CDATA[<p>Do you have any specific concerns about the accessibility of Drupal, Simon?</p>
<p>If you can itemise them (for want of a better term) then I/we can either set your mind at rest, or add them to the list of things that still need a bit of accessibility love.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ann McMeekin</title>
		<link>http://www.d7ux.org/accessibility/comment-page-1/#comment-764</link>
		<dc:creator>Ann McMeekin</dc:creator>
		<pubDate>Thu, 14 May 2009 21:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.d7ux.org/?p=190#comment-764</guid>
		<description>Thanks for the vote of support, Paddy.

Seeing accessibility as something that can be &quot;fixed&quot; in implementation can often result in something which is technically accessible but the user experience leaves a lot to be desired (or makes it completely unusuable)... and that doesn&#039;t even begin to cover the issues that arise when you try to shoe-horn accessibility features in at the last minute.

So I&#039;m really excited to have the opportunity to get involved at this stage of the project, where I get to be a collaborator rather than an auditor, and also to be able to be so open about the work we&#039;re doing.

Watch this space :)</description>
		<content:encoded><![CDATA[<p>Thanks for the vote of support, Paddy.</p>
<p>Seeing accessibility as something that can be &#8220;fixed&#8221; in implementation can often result in something which is technically accessible but the user experience leaves a lot to be desired (or makes it completely unusuable)&#8230; and that doesn&#8217;t even begin to cover the issues that arise when you try to shoe-horn accessibility features in at the last minute.</p>
<p>So I&#8217;m really excited to have the opportunity to get involved at this stage of the project, where I get to be a collaborator rather than an auditor, and also to be able to be so open about the work we&#8217;re doing.</p>
<p>Watch this space <img src='http://www.d7ux.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
