[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]
***



[WSG] preserve whitespace

2007-12-11 Thread Simon Cockayne
Hi,

!-- Happy Holidays one and all! --

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 pre /pre around the data.

Or I could use an nbsp; 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 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 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 Константин Ефимов
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,

  !-- Happy Holidays one and all! --
  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 pre /pre around the data. 
  Or I could use an nbsp; 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 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 Christian Montoya
 - Original Message -
 From: Simon Cockayne
 To: wsg@webstandardsgroup.org
 Sent: Tuesday, December 11, 2007 8:09 PM
 Subject: [WSG] preserve whitespace

 Hi,

 !-- Happy Holidays one and all! --
 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 pre /pre around the data.
 Or I could use an nbsp; for each leading blank.
 Any others?
 What is the standard way to do it?

I would recommend pre over nbsp;, 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] 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.
 ! and  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

-- 
--- http://weblog.200ok.com.au/
--- 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] 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.
 ! and  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

--
--- http://weblog.200ok.com.au/
--- 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]
***



[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 a href= title=/a. 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] 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 a  
href= title=/a. 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]
***