Re: [WSG] Downloading a WAV

2007-12-11 Thread David Dorward


On 12 Dec 2007, at 05:39, Hayden's Harness Attachment wrote:

I appologize if this is off topic. On a web site I would like to  
create an accessible link that will download a WAV file to a user's  
computer to pplay in their own media player. I am only aware of href="" title="">. any help and comments welcome?


What is inaccessible about that?

--
David Dorward
http://dorward.me.uk/
http://blog.dorward.me.uk/




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



[WSG] Downloading a WAV

2007-12-11 Thread Hayden's Harness Attachment
I appologize if this is off topic. On a web site I would like to create an 
accessible link that will download a WAV file to a user's computer to pplay in 
their own media player. I am only aware of . any help 
and comments welcome?

Angus



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] Comment mark

2007-12-11 Thread Michael Horowitz
Ultimately IE is "right" in that you can never tell a client their site 
doesn't work in IE but it fits the written technical standards. A client 
will always prefer a non web standard site that works in IE to one that 
is technically correct but errors out in the worlds most popular browser.


Michael Horowitz
Your Computer Consultant
http://yourcomputerconsultant.com
561-394-9079



Ben Buchanan wrote:


>> For an HTML comment, you should use  (no ! in the 
closing tag). The reason it worked in
>> Firefox is that it interprets *any* instance of "--" as a closing 
comment tag. As far as I know,

>> all other browsers will wait until they get the standard "-->".
> Firefox gets it right since these ("--") are the comment delimeters.
> "" are markup declaration delimiters.

True, although I see it as one of those times that it's "right" in the 
strict technical sense rather than a practical sense :) In general 
usage I think it's reasonable to expect the closing delimiter.


cheers,
Ben

--
--- 
--- The future has arrived; it's just not
--- evenly distributed. - William Gibson


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*** 



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] Comment mark

2007-12-11 Thread Ben Buchanan
>> For an HTML comment, you should use  (no ! in the closing
tag). The reason it worked in
>> Firefox is that it interprets *any* instance of "--" as a closing comment
tag. As far as I know,
>> all other browsers will wait until they get the standard "-->".
> Firefox gets it right since these ("--") are the comment delimeters.
> "" are markup declaration delimiters.

True, although I see it as one of those times that it's "right" in the
strict technical sense rather than a practical sense :) In general usage I
think it's reasonable to expect the closing delimiter.

cheers,
Ben

-- 
--- 
--- The future has arrived; it's just not
--- evenly distributed. - William Gibson


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

Re: [WSG] preserve whitespace

2007-12-11 Thread James Ellis
Hi

You'd have to define a "blank"

is it a tab -> \t, a newline -> \n, a carriage return \r 

You can use pre or you can use "white-space : pre;" to PREserve the whitespace 
in the string appearing in the cell.

  is an html entity for the non breaking space character. You should use 
it when you want just that - a non breaking space to stop a line from 
wrapping (or user white-space : nowrap) - rather than to define any sort of 
fixed width padding or margin, as nbsp is a wide as a piece of string is 
long.

HTH
James


On Wed, 12 Dec 2007 03:09:03 am Simon Cockayne wrote:
> Hi,
>
> 
>
> I have an HTML page and I want to (well my client wants me to) preserve
> leading blanks in the value of a table data cell.
>
> I could use   around the data.
>
> Or I could use an   for each leading blank.
>
> Any others?
>
> What is the "standard" way to do it?
>
>
> Cheers,
>
> Simon
>
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: [EMAIL PROTECTED]
> ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] preserve whitespace

2007-12-11 Thread Christian Montoya
> - Original Message -
> From: Simon Cockayne
> To: wsg@webstandardsgroup.org
> Sent: Tuesday, December 11, 2007 8:09 PM
> Subject: [WSG] preserve whitespace
>
> Hi,
>
> 
> I have an HTML page and I want to (well my client wants me to) preserve
> leading blanks in the value of a table data cell.
> I could use   around the data.
> Or I could use an   for each leading blank.
> Any others?
> What is the "standard" way to do it?

I would recommend  over  , that way the data itself would stay clean.

-- 
--
Christian Montoya
christianmontoya.net


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] preserve whitespace

2007-12-11 Thread David Hucklesby
On Tue, 11 Dec 2007 16:09:03 +, Simon Cockayne wrote:
>
> I have an HTML page and I want to (well my client wants me to) preserve 
> leading blanks
> in the value of a table data cell. ...
>

 td {white-space: pre;} /* perhaps? */


Cordially,
David
--
www.hucklesby.com




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] preserve whitespace

2007-12-11 Thread Константин Ефимов
The "standard" way is to use paddings (if your HTML page really contains table 
data) or not to use tables for layout purpose at all.

-
Konstantin Efimov
http://webstandards.org.ru


  - Original Message - 
  From: Simon Cockayne 
  To: wsg@webstandardsgroup.org 
  Sent: Tuesday, December 11, 2007 8:09 PM
  Subject: [WSG] preserve whitespace


  Hi,

  
  I have an HTML page and I want to (well my client wants me to) preserve 
leading blanks in the value of a table data cell.
  I could use   around the data. 
  Or I could use an   for each leading blank.
  Any others?
  What is the "standard" way to do it?

  Cheers,

  Simon

***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] preserve whitespace

2007-12-11 Thread Patrick H. Lauke

Quoting Simon Cockayne <[EMAIL PROTECTED]>:


I have an HTML page and I want to (well my client wants me to) preserve
leading blanks in the value of a table data cell.


Depending on the data...right-align the text?

--
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
__
Co-lead, Web Standards Project (WaSP) Accessibility Task Force
http://webstandards.org/
__
Take it to the streets ... join the WaSP Street Team
http://streetteam.webstandards.org/
__



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] preserve whitespace

2007-12-11 Thread Stepan Reznikov
td {text-indent: 1em;}


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] preserve whitespace

2007-12-11 Thread Max A. Shpack
Hi

It is non-schematic way and usually you can solve this problem with
css padding property. If you don't -- use   to keep whitespace.

Max.

2007/12/11, Simon Cockayne <[EMAIL PROTECTED]>:
> Hi,
>
> 
>
> I have an HTML page and I want to (well my client wants me to) preserve
> leading blanks in the value of a table data cell.
>
> I could use   around the data.
>
> Or I could use an   for each leading blank.
>
> Any others?
>
> What is the "standard" way to do it?
>
>
> Cheers,
>
> Simon
>
>
>
> ***
> List Guidelines:
> http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe:
> http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: [EMAIL PROTECTED]
> ***


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



[WSG] preserve whitespace

2007-12-11 Thread Simon Cockayne
Hi,



I have an HTML page and I want to (well my client wants me to) preserve
leading blanks in the value of a table data cell.

I could use   around the data.

Or I could use an   for each leading blank.

Any others?

What is the "standard" way to do it?


Cheers,

Simon


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

[WSG] Out of Office AutoReply: WSG Digest

2007-12-11 Thread wendy . pang
I am out of the office today Tues 11 Dec. Please contact Corporate
Communication [EMAIL PROTECTED] for any internet requirements, or
[EMAIL PROTECTED] for intranet requirements.


IMPORTANT:

* This transmission is intended for the use of the addressee only and might 
contain sensitive or legally privileged information. If you are NOT the 
intended recipient, you are notified that any use or dissemination of this 
communication is strictly prohibited. If you receive this transmission in 
error, please notify the author immediately by telephone and delete all copies 
of this transmission together with any attachments. 

* The Australian Customs Service DOES NOT AUTHORISE the recipient to further 
disclose this email or its contents without permission of the originator.

* Unsolicited commercial emails MUST NOT be forwarded to the originator of this 
transmission unless prior consent has been given.


***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***