Re: [WSG CORE] RE: 'users with disabilities' WAS: [WSG] New front page for http: //ab c.net.au/

2005-08-06 Thread James Ellis
Hi

I think John, Betty, Steve or Jane are always more preferable
labels, if my drift is seen ;), otherwise, the person tends to become
the label in societal eyes.

Interestingly, dis comes from the latin and can mean absence,
bad or similar. See: http://dictionary.reference.com/search?q=dis-
http://www.answers.com/topic/dis-prefix?method=6
definitely a negative prefix.

So, disability could literally mean bad ability or an abscence of
ability. Well, everyone has this in some form or another : lack of a
sense (smelling, hearing... whatever), someone with their blinkers on,
someone with selective hearing etc etc.

The moral for us? Accessibility is for everyone, not just for a group
deemed disabled... and politics sometimes gets in the way).

HTH
James
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



[WSG] Form labels - What is correct usage?

2005-08-06 Thread leenath1



Hoping some of you may help with a question that I 
frequently see implemented differently? Should the form 'label' element 
(label/label) wrap around the form elements that they are a 
label for (almost like a container), or should they be left on their own? I have 
seen some keep the form labels separate from say a input field, but then wrapped 
around multiple elements, like say radio buttons. 

I hope I am making myself clear? For example: 


LABEL - NOT WRAPPING:
 label for=""Rate this 
example/label select 
name="rating_select" id="rating_select"size="3" 
multiple="multiple" 
option 
value="1"1/option 
option 
value="2"2/option 
option 
value="3"3/option 
option 
value="4"4/option 
option 
value="5"5/option 
/select


LABEL -WRAPPING:
 label for=""Rate this 
example
 
select name="rating_select" id="rating_select"size="3" 
multiple="multiple" 
option 
value="1"1/option 
option 
value="2"2/option 
option 
value="3"3/option 
option 
value="4"4/option 
option 
value="5"5/option 
/select
 /label
I assume the first example provides for more 
power/control over the design/positioning of a label, but I guess my question is 
about semantic correctness rather than the best option for presentation (CSS) 
control.

Regards

Nathan





Re: [WSG] Form labels - What is correct usage?

2005-08-06 Thread taka1112

Hello.

I think your first sample (LABEL - NOT WRAPPING)
is favorable for semantic markup.
Because it shows 'directly connection.'

Label element doesn't exist as a container (e.g., fieldset),
and should be related to a control individually.

WCAG 1.0 needs to associate labels explicitly with
their controls, that is, in HTML use LABEL and its 'for'
attribute as priority 2. 
http://www.w3.org/TR/WCAG10/#gl-complex-elements


T. Mashiko
[EMAIL PROTECTED]

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] Form labels - What is correct usage?

2005-08-06 Thread leenath1

I think your first sample (LABEL - NOT WRAPPING)
is favorable for semantic markup.
Because it shows 'directly connection.'

WCAG 1.0 needs to associate labels explicitly with
their controls, that is, in HTML use LABEL and its 'for'
attribute as priority 2. http://www.w3.org/TR/WCAG10/#gl-complex-elements



Thanks for your reply, but now Im confused. Have a look at the example here: 
http://www.w3.org/TR/WCAG10-HTML-TECHS/#forms-grouping and now just a little 
later down the page there is this example: 
http://www.w3.org/TR/WCAG10-HTML-TECHS/#forms-labels which shows a different 
technique for using labels. 



**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] Form labels - What is correct usage?

2005-08-06 Thread taka1112

We might think implicit labels (LABEL - WRAPPING) as
a transitional markup :-)

In HTML Techniques fo WCAG 2.0 (status: WD),
explicit labels are favorable, and implicit labels are 'deprecated', 
said do not use the label element implicitly. 
http://www.w3.org/TR/WCAG20-HTML-TECHS/#label


I think this is a good judgment for semantic markup.

T. Mashiko
[EMAIL PROTECTED]

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] a:hover delayed

2005-08-06 Thread Zachary Hopkins

I tested the page in both Internet Explore 6  7.
I do not see any signs that the browser is slow, nor any evidence of 
flickering.


--Zachary

José de Jesús Sanchez Betanzos wrote:


Hi, I'm jesus.

Look how the a:hover effect in the following menu make the browser slow...
http://www.jesusbet.net/tmp/sp/

I wanted to do something like the menu on the web standards group 
homepage:

http://webstandardsgroup.org/

And I did it, but when you browse the menu using Internet Explorer,it 
makes the browser slow...


I was checking my code and it looks the same as the CSS code in 
cssbeauty menu... but i couldn't fix it...


Thanks for your help... (and sorry for my english :D)



--
==
The best way to predict the future is to invent it.

[EMAIL PROTECTED]
http://www.hopkinsprogramming.net

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] a:hover delayed

2005-08-06 Thread David Laakso

José de Jesús Sanchez Betanzos wrote:


Hi, I'm jesus.
Look how the a:hover effect in the following menu make the browser slow...
http://www.jesusbet.net/tmp/sp/
I wanted to do something like the menu on the web standards group 
homepage:

http://webstandardsgroup.org/
And I did it, but when you browse the menu using Internet Explorer,it 
makes the browser slow...


Jesus,
I did not see the problem you describe in XP_SP2 IE6.0.
Trivial pursuits: You may want to consider using relative font-sizes so 
that IE users will be able to zoom the fonts. I noticed also, you 
specified justified at one point-- hot-metal typographers avoid setting 
unserifed fonts justified as if it was a plague; and serif fonts when 
set justified for the Web are prone to white acne and pigs 
bristles(lakes and rivers).

Regards,
David Laakso

--
David Laakso
http://www.dlaakso.com/


**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] a:hover delayed

2005-08-06 Thread José de Jesús Sanchez Betanzos
Hi, thanks for your answers.

May be you didn't see the problem because your RAM speed is very fast,
I don't see the problem when I am using a PC with 1.5GB of RAM speed,
but my PC has 512MB of speed...

I'm so thankful for your help...



[WSG] standards form?

2005-08-06 Thread Jad Madi
Hi, 
I'm working on multi purpose form, registration and purchase 
so it become so boring form, while I was trying to have simple form,
and excited process of registration and purchase
please if you have any suggestion let me know, I'm having headache
because of this form



## Personal information ##
first name
Middle name
sure name 

## Contact Information ##
Country 
City
State
Street 
Zip code
Phone number
Fax number
Email address

## Billing information ###
Credit card type
Credit number
Expire date
CVV2
Billing address
Name on card

## Account Package information ## 
username 
password 
Package
Domain name 


-- 
Regards
Jad madi
Personal Blogger
http://EasyHTTP.com/jad/
Web standards Planet 
http://w3planet.info/site/
EasyHTTP Network
http://EasyHTTP.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] standards form?

2005-08-06 Thread Svip
I wouldn't suggest doing a single multi-porpuse form, as it would
simply just confuse people using the website.

Split them up. Though I am not quite sure what your question is.

Svip - sviip.dk

On 06/08/05, Jad Madi [EMAIL PROTECTED] wrote:
 Hi,
 I'm working on multi purpose form, registration and purchase
 so it become so boring form, while I was trying to have simple form,
 and excited process of registration and purchase
 please if you have any suggestion let me know, I'm having headache
 because of this form
 
 
 
 ## Personal information ##
 first name
 Middle name
 sure name
 
 ## Contact Information ##
 Country
 City
 State
 Street
 Zip code
 Phone number
 Fax number
 Email address
 
 ## Billing information ###
 Credit card type
 Credit number
 Expire date
 CVV2
 Billing address
 Name on card
 
 ## Account Package information ##
 username
 password
 Package
 Domain name
 
 
 --
 Regards
 Jad madi
 Personal Blogger
 http://EasyHTTP.com/jad/
 Web standards Planet
 http://w3planet.info/site/
 EasyHTTP Network
 http://EasyHTTP.com
 **
 The discussion list for  http://webstandardsgroup.org/
 
  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **
 

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] firefox for OS9?

2005-08-06 Thread Kay Smoljak
On 8/6/05, Drake, Ted C. [EMAIL PROTECTED] wrote:
 Sorry for a possibly off-topic post.  We have a client on our intranet that
 needs to look at our site on OS9.2.  I couldn't find information on the
 Firefox web site about compatibility with this platform. Does anyone know
 where I could send this person for more advice?

I had a client with OS9 who were using Netscape 4 (!), and I got them
to upgrade to Netscape 7. The later builds don't support OS9, but
earlier ones do, so if you look around you should be able to find one.

-- 
Kay Smoljak
http://kay.smoljak.com/
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Form labels - What is correct usage?

2005-08-06 Thread David Hucklesby
On Sat, 6 Aug 2005 Nathan wrote:

 ... Should the form 'label' element
 (label/label) wrap around the form elements that they are a
 label for (almost like a container), or should they be left on
 their own? I have seen some keep the form labels separate from say
 a input field, but then wrapped around multiple elements, like say
 radio buttons.


Well, Nathan, I don't claim to know which is semantically correct,
but I use both wrapping and non-wrapping, depending on what I want
to do. In either case, though, I discovered long ago that the for
attribute is needed for some browsers to associate the label with
the form element so that it is clickable.

For text input boxes, with labels lined up to the left, I use a label
followed by the input. I can then float the label left with a specific
width to align all labels.

For radio buttons, on the other hand, I put the label on the right
and wrap it around the button. I can then apply a hover effect to
the background of the entire label/button combination to indicate
that the label is clickable.

I also add a focus behavior to the label for those who, like me,
tend to use the keyboard for navigating forms.

Cordially,
David
--
David Hucklesby, on 8/6/2005
http://www.hucklesby.com/
--


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] a:hover delayed

2005-08-06 Thread Terrence Wood
I didn't see the problem... maybe the tool tips appearing contribute to 
the *perception* that the hover effect is slow?


kind regards
Terrence Wood.

On 6 Aug 2005, at 5:19 PM, José de Jesús Sanchez Betanzos wrote:


Hi, I'm jesus.

Look how the a:hover effect in the following menu make the browser 
slow...

http://www.jesusbet.net/tmp/sp/

I wanted to do something like the menu on the web standards group 
homepage:

http://webstandardsgroup.org/


**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] Form labels - What is correct usage?

2005-08-06 Thread Terrence Wood

This question was discussed recently on this list:

http://www.mail-archive.com/wsg%40webstandardsgroup.org/msg19456.html


kind regards
Terrence Wood.


On 6 Aug 2005, at 8:48 PM, [EMAIL PROTECTED] wrote:

Hoping some of you may help with a question that I frequently see 
implemented
differently? Should the form 'label' element (label/label) wrap 
around the
form elements that they are a label for (almost like a container), or 
should

they be left on their own?


**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



[WSG] list-style-image in horizonal menu

2005-08-06 Thread standards
Goodevening All,

I have a slight problem. I can't seem to get the list-style-image to work, 
which is part of a
unordered list set to display inline in a horizonal menu bar. I've reviewed my 
books, The CSS
Anthology and Web Standards Solutions, but I must be missing something 
therefore any advice or
suggestions would be greatly appreciated.

CSS:

#topnav
{font: bold 12px trebuchet ms, serif;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #000;
  background-color: #00563E;}

#topnav ul
{margin: 0;
  padding: 0;}

#topnav ul li
{display: inline;
  list-style-image: url(../images/star.gif);
  line-height: 30px;}

#topnav a:link, #topnav a:active , #topnav a:visited
{color: #fff;
  padding: 5px 20px 5px 15px;
  text-decoration: none;
  border-right: 1px solid #B8C5BD;}

#topnav a:hover
{color: #B8C5BD;
  text-decoration: underline;}

Respectfully yours,
Mario S. Cisneros


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] list-style-image in horizonal menu

2005-08-06 Thread russ - maxdesign
I agree with Patrick - I'd use background-image instead of list-style-image
as you have far more control over the placement of the image using the
background-position property.

Russ


 Alternatively, you could try and add left-hand padding and place the
 star as a non-repeating background image


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] list-style-image in horizonal menu

2005-08-06 Thread Patrick H. Lauke

Terrence Wood wrote:


display:inline prevents your bullet from displaying.

Try float:left; and adjust your margins to suit.


Alternatively, you could try and add left-hand padding and place the 
star as a non-repeating background image


#topnav ul li {
display: inline;
padding-left: 30px;
background: url(../images/star.gif) no-repeat left center;
line-height: 30px;
}

--
Patrick H. Lauke
__
re·dux (adj.): brought back; returned. used postpositively
[latin : re-, re- + dux, leader; see duke.]
www.splintered.co.uk | www.photographia.co.uk
http://redux.deviantart.com
__
Web Standards Project (WaSP) Accessibility Task Force
http://webstandards.org/
__

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] list-style-image in horizonal menu

2005-08-06 Thread Terrence Wood
In fact, you could put the background image in the anchor to achieve a 
rollover affect by adjusting the background position, or changing the 
the image.


Here's a good article on single background images and positioning:

http://superfluousbanter.org/archives/2004/05/navigation_matr.php

kind regards
Terrence Wood.

On 7 Aug 2005, at 11:23 AM, [EMAIL PROTECTED] wrote:


Goodevening All,

I have a slight problem. I can't seem to get the list-style-image to 
work, which is part of a unordered list set to display inline in a 
horizonal menu bar.

On 7 Aug 2005, at 1:16 PM, russ - maxdesign wrote:

I agree with Patrick - I'd use background-image instead of 
list-style-image

as you have far more control over the placement of the image using the
background-position property.

Russ



Alternatively, you could try and add left-hand padding and place the
star as a non-repeating background image



**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**


**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



[WSG] Editor Controls

2005-08-06 Thread Tatham Oddie \(Fuel Advance\)








Hi
all,



Im
looking for some advice on editor controls (like JS controls) for a CMS type thing
Im building.



Basically,
it needs to be a rich edit control thats simple for users to use.



However:




 Must produce XHTML
 Must only produce p, ul, ol, li, a, img, code,
 dl, dt, dd, strong, em, del
 Must only allow the user to format by
 
  bold = strong
  italics = em
  strike = del
  or a selection of classnames
  that I specify in the configuration
 
 Must allow embedding of images
 Could allow upload of images




Any
ideas?



Most
of the controls out there seems to generate crappy HTML4 then hack it across to
something thats mostly XHTML. If I cant find one, Ill probably
start writing one then make it open source down the track, however I dont
really have that much time to wait for it.







Thanks,



Tatham Oddie

Fuel Advance - Ignite Your Idea

www.fueladvance.com










Re: [WSG] Editor Controls

2005-08-06 Thread Joshua Street
On Sun, 2005-08-07 at 15:08 +1000, Tatham Oddie (Fuel Advance) wrote:
 Hi all,
 I’m looking for some advice on editor controls (like JS controls) for
 a CMS type ‘thing’ I’m building.

First off, I'm foreseeing an admin saying this should be on the CMS list
instead...

 Any ideas?

... but yes, since you asked, I've got an idea.

Matt Mullenweg of the WordPress project announced a few days ago
( http://photomatt.net/2005/08/05/wysi/ ) they were planning to
integrate the TinyMCE Javascript WYSIWYG editor
( http://tinymce.moxiecode.com/ ).

I'm assuming they've got that working in full XHTML happiness, given the
general history of that project (WordPress, that is) in terms of
adherence to validation (semantically always been pretty good, too)...
but, until that comes out (version 1.6, probably a few months still),
this post on the TinyMCE forum
( http://tinymce.moxiecode.com/punbb/viewtopic.php?id=27 ) appears to be
the best guide to making it spit out nice code.  I think.  I haven't
actually tried it yet, though.

 Most of the controls out there seems to generate crappy HTML4 then
 hack it across to something that’s mostly XHTML. If I cant find one,
 I’ll probably start writing one then make it open source down the
 track, however I don’t really have that much time to wait for it.

This may be doing the same thing, I'm uncertain.

Kind Regards,
Joshua Street

base10solutions
Website:
http://www.base10solutions.com.au/
Phone: (02) 9898-0060  Fax: (02)
8572-6021
Mobile: 0425 808 469

Multimedia  Development  Agency



E-mails and any attachments sent from base10solutions are to be regarded
as confidential. Please do not distribute or publish any of the contents
of this e-mail without the sender’s consent. If you have received this
e-mail in error, please notify the sender by replying to the e-mail, and
then delete the message without making copies or using it in any way.

Although base10solutions takes precautions to ensure that e-mail sent
from our accounts are free of viruses, we encourage recipients to
undertake their own virus scan on each e-mail before opening, as
base10solutions accepts no responsibility for loss or damage caused by
the contents of this e-mail. 


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Editor Controls

2005-08-06 Thread development



www.xstandard.com they 
are very serious about standars =) even got some firefox/mozilla behavior 
modified to allow better compatibility with their editor

  - Original Message - 
  From: 
  Tatham Oddie (Fuel Advance) 
  
  To: wsg@webstandardsgroup.org 
  Sent: Sunday, August 07, 2005 1:08 
  AM
  Subject: [WSG] Editor Controls
  
  
  Hi 
  all,
  
  I’m 
  looking for some advice on editor controls (like JS controls) for a CMS type 
  ‘thing’ I’m building.
  
  Basically, it needs to be a rich edit control that’s 
  simple for users to use.
  
  However:
  
  
Must produce 
XHTML 
Must only produce p, ul, ol, li, a, 
img, code, dl, dt, dd, strong, em, del 
Must only allow the user to format 
by 

  bold = 
  strong 
  italics = 
  em 
  strike = del 
  or a selection of classnames that I 
  specify in the configuration 
Must allow embedding of 
images 
Could allow upload of 
images 
  
  Any 
  ideas?
  
  Most of the controls out there seems to generate 
  crappy HTML4 then hack it across to something that’s mostly XHTML. If I cant 
  find one, I’ll probably start writing one then make it open source down the 
  track, however I don’t really have that much time to wait for 
  it.
  
  
  
  Thanks,
  
  Tatham 
  Oddie
  Fuel 
  Advance - Ignite Your Idea
  www.fueladvance.com