Aquarionics

Category > Accessibility

Can the users use the useless thing?

Wednesday 25th June 2003

Design Blind

The RNIB has launched it’s new site.

I’m appalled.

The RNIB are one of the people behind the UK’s recent push for web-accessibility, including full support of the WAI standards. The RNIB site is a prefect example of a site that, whilst filling most of the technical criteria for an accessible website, is terribly implemented.

The first thing is the worst. The internal URLs are broken. Some of the urls are using backslashes instead of forward slashes, meaning that whilst IE (Which is broken in this regard) displays and links properly, Browsers that actually support the standard (Like Mozilla) get links with backslashes, which don’t work. (An example of this, this page, is the link to “Sarah’s Story”) (The page linked to is mirrored in the link at the bottom of this article, just in case the thing is updated).

The second is the link colours. They define the background to white and the default text to black, but leave all other links alone. If someone (as many Vision Impaired People (ViPs) do) set their text colour to gray and the background to black for ease of reading, with the links as white, the links become invisible.

The menu system breaks at 800*600 resolution, displaying broken lines where none should be. I’m not even going to mention 640*480.

It doesn’t validate. Not even by a little. There is no DOCTYPE specified, and even if we override it there are 83 errors, including tables that aren’t closed properly.

The design also breaks at 1600*1200 resolution, though not by much.

The code is horrible. They’ve defined arbitrary meta tags, half the page is commented out.

In their defence, they’ve provided alt tags for every image on the page. In attack, they’ve also put in transparent pixels with alt-tags to signpost the page. Ten for idea, Zero for implementation, There are far better ways of doing it. display = hidden, for example.

The actual design, as far as it goes, isn’t bad (for me, as a slightly-colour-blind person with poor eyesight) and makes good use of colour, the menu system would be good if it worked in Mozilla.

They didn’t entity encode the symbols.

And the last, because it’s a personal issue, is the table-based design. The entire design is a table, CSS is used for styling the occasional link only. The site is filled with table & font design.

The entire web development team of RNIB should be forced to read Dive Into Accessibility at least twice.

Those who spoke on this:

gravatar image

AdrianO:

2003-06-25 21:12 10 hrs after the Original Article

You’d appreciate the badness of the code a lot more than I, but I think the
tag was enough to scare me…

Comment Link

gravatar image

dearg:

2003-06-25 22:50 2 hrs after AdrianO

But is valid XHTML. Although their page wasn’t typed as that, but, they tried at least…

Still, poor things. Maybe someone should redo one of their pages and send it to them. But not me, I’m busy, I am. Honest.

Comment Link


Tuesday 6th January 2004

Reasons IE Sucks chipmonks though chainlink fencing, Number 11 in a series of infinity

Given this URL:

http://www.aquarionics.com/gallery/Gid_[and]_Suzi’s_New_Year_2003

IE does the following:

http://www.aquarionics.com/gallery/Gid_%5Band%5D_Suzi/’s_New_Year_2003

Now, I realise the escaping error in the generated URL was my own stupid fault, but the fact that IE automatically reverses any backslashes in a URL - to retain compatibility with Windows’ broken directory seperator – is interesting. It means, for example, we can do this:

@import url(”/assets/cssspecial-ie-stylesheet.css”);

and IE will load it (It will try to “fix” the broken backslash) where Gecko/KHTML will attempt to load a file called “cssspecial-ie-stylesheet.css” in the assets directory is interesting. New browser-hack?

This isn’t news, really. When the first version of the new, all accessible RNIB site went live (And I ranted about it) some of the links contained backslashes, and thus broke for Mozilla, and it’s still annoying, but it might be useful.

What would be really interesting would be combining this with an IIS server. Does the server resolve it as the right path on the system (The Windows one) or as the RFC 2068 compliant one?

My solution, by the way, was to rename the album to “New Years 2003” and leave the escaping problem until I’ve got time to fix it properly.

Those who spoke on this:

gravatar image

Pingter:

2004-01-08 06:42 2 days after the Original Article

I think some ’s have been lost in that post somewhere, and if I write that without the apostrophe it disappears in the comment preview as well…

Comment Link

gravatar image

Peter:

2004-01-08 09:35 3 hrs after Pingter

Well, I can’t see any instances of the character causing the problem at all – pingter, in your comment I just see ’s, without whatever character should be before the ’

I assume the little beastie is the diagonal slash that isn’t /, yesno?

Comment Link

gravatar image

Pingter:

2004-01-08 19:07 10 hrs after Peter

Indeed. It did appear in the preview though…

\\\\\\\

^ Are there any there? :-)

Comment Link

gravatar image

Aquarion:

2004-01-08 19:48 41 mins after Pingter

Yeah, half as many as you put in :-)

I wrote the [E]2 commenting system with PHP’s “Magic Slashes” turned on, which caused fun when taking things out of the database and previews. As I recall I strip all escape systems at least three times {stripslashes(stripslashes(stripslashes($string)))} before display, just to be sure.

  • Aquarion adds this to the “Bugs to be fixed” list

Comment Link

gravatar image

Pingter:

2004-01-09 07:55 12 hrs after Aquarion

Oops.

It works much better if you turn it off and do it manually, once ;-) (But you know that)

Comment Link


Thursday 4th March 2004

Calm

Have calmed down. No longer feel like the world is out to get me. This is probably temporary.

The worst possible thing you can do to a heavy user of Firefox is to redefine the middle mouse button in Windows to switch between applications. It’s driving me absolutly insane…

Those who spoke on this:

gravatar image

Bumpy Carrot:

2004-03-05 00:52 2 hrs after the Original Article

That’s just plain wrong…

Comment Link

gravatar image

cat:

2004-03-05 12:09 11 hrs after Bumpy Carrot

I’d have to agree…

Comment Link

gravatar image

cat:

2004-03-05 12:52 12 hrs after Bumpy Carrot

I’d have to agree…

Comment Link


Thursday 29th July 2004

Evil

So, having seen Thunderbirds (Capsule review: The fact that the plot is microns thick, the acting questionable and the directing iffy is rendered completely and totally moot by the sheer “Oooh, Shiny!” factor of seeing the swimming pool slide back so Thunderbird One can launch. Also: The intro sequence is the best thing ever), I decided to check out the Ben Kingsley (who plays The Hood) Official Site.

DO NOT CLICK THIS LINK IN ANYTHING BUT IE UNTIL YOU HAVE TURNED OFF JAVASCRIPT

Ben Kingsley’s official site is one of the worst travesties of Javascript I have ever had the misfortune to encounter

Turn off Javascript (If you’re not using IE4+) and go there, then view the source. If you go there with JS enabled, you get thrown into an infinate loop of “You need a version 4 browser” alert boxes until you either close the tab or the browser. This is horrible. And god forbid you try to enter with a site reader, or any kind of spider.

Ick.

Those who spoke on this:

gravatar image

Sarabian:

2004-07-29 20:28 3 hrs after the Original Article

So of course I had to click on the link thinking that I could just close the browser when it goes into the loop.

What I forgot was that I’d created a new profile and in this profile, the tabbrowser extension was set to reopen any tabs upon restart.

After the forth kill, I got a bit worried.

After the 7th go, I won the game of clicking the close icon before the page loaded and I was out of the loop.

/me will listen to Aquarion next time.

Comment Link

gravatar image

Peter:

2004-07-29 22:23 2 hrs after Sarabian

Works fine in Opera (no popup), whether I set it to identify as IE6, Mozilla 3 or Opera.

Comment Link

gravatar image

Rory Parle:

2004-07-29 23:43 6 hrs after the Original Article

So you sent them an angry email right? It’s the only decent thing to do. The address is mraproductions@benkingsley.com.

Comment Link

gravatar image

MP:

2004-07-30 08:28 15 hrs after the Original Article

OK… So you are complaining about the website of the evil Hood being evil… Maybe that’s the idea… :-)

Comment Link


Lazyweb - Digital Guardian

I spend a couple of hours every day sitting on trains. Soon, I’ll be spending 4 hours a day sitting on buses. Ideally, I’d like to read a newspaper or something while I’m doing this, but I hate fiddling around with broadsheets on the standing-room-only commuter cattle-pens into London. The solution to this appears to be the Digital Guardian, but it’s useless to me since it requires a web connection to read. You can’t just download a PDF of the entire newspaper (though you can get PDFs of every seperate page & story) and take it away.

So, has anyone heard of any inititives to automatically grab each page PDF of today’s Guardian (With my subscription details, naturally) automatically? Stiching them together isn’t really important.


Sites of Evil

Today I was going to buy some Sluggy Freelance books for christmas.

I went to Plan 9 Europe, the European distributor for the comics and…

Well, go see. Your mission is to buy the first three Sluggy books without smashing your monitor.

Your time starts now.

Those who spoke on this:

gravatar image

A Nameless One:

2004-12-05 13:04 2 hrs after the Original Article

Well, it’s an appalling interface.

Would it get worse if I registered? I got as far as clicking ‘Buy’ on the first book before I decided that no, unless I actually want to buy one of the books, I wouldn’t be going further…

Comment Link

gravatar image

Bluebottle:

2004-12-05 14:12 3 hrs after the Original Article

AIEEEEE!

Comment Link

gravatar image

Rory Parle:

2004-12-05 14:18 3 hrs after the Original Article

All I see is a big sign saying “we don’t want your business”. Interesting approach to commerce.

Comment Link

gravatar image

Martyn Clapham:

2004-12-05 16:52 5 hrs after the Original Article

The site claims to be the product of people at Lancaster University. Dunno which one, as I’d assume that being in the North West the students at the English Lancaster University would be too flaming sensible to come up with that lump of garbage. BTW, given the current exchange rate, is it worth trying the main Sluggy site?

Comment Link

gravatar image

Aquarion:

2004-12-05 18:06 1 hr after Martyn Clapham

Yeah, but the shipping would mean it doesn’t arrive until after Christmas from the US

Comment Link

gravatar image

Martyn Clapham:

2004-12-05 22:33 4 hrs after Aquarion

Um, yeah, you did actually mention Christmas in the original entry, didn’t you.

Can I blame it on getting old?

Comment Link

gravatar image

Corinne:

2004-12-06 10:27 1 day after the Original Article

Uuuuuh…I …uhh..think it’s quite nifty. Needs a little more organisation to make it functional but I love the idea.

Comment Link

gravatar image

Jester:

2004-12-09 16:37 4 days after the Original Article

Don’t worry about it too much, they’re out of stock on book 3 anyway.

Getting to the books was relatively painless using the full site menu (however, that was the only way I could get to them).

Would it be nasty to write to the comic authors:
Dear Plan9 Europe are going out of their way to stop people buying your books, perhaps you should look for a distributor who wants to make you money.

Comment Link

gravatar image

ruthi:

2004-12-10 23:21 1 day after Jester

No, I think it would not be nasty to email the authors of the comics). It would be helpful and kind.

Then they’ll ask you who they should get instead…

Comment Link


Nicholas 'Aquarion' Avenell is a web developer in London, you can find out more about him or how to get in touch.

There are more Articles, Projects, Journal Entries, Photographs and things that defy description here, too.

If you're looking for something specific, there are Calendar & Category -based lists of everything.

And if you want to follow stuff that appears here, try a Syndication Feed, or the generic Feed of everything.


Aquarion's last Twitter was: [updating]
Twitter last updated


[RSS Icon][ESF Icon][CDF Icon]
© 2000 to 2008 inclusive Nicholas Avenell
All comments are the property of their creators, published with permission
(Unless otherwise indicated, the opinions and sentiments expressed on this site are those of the author and not of any organisation of which he is an affiliate, including his employer. Caveat Lector, E&OE. sigh)
0.902 seconds, 135 queries, 2.75Mb on Thu, 02 Oct 2008 00:33:31 +0000
Generated by Epistula Version 2.0.3