Re: [WSG]

2011-04-20 Thread Anthony Gr.
Interesting )

2011/4/20 Carl Heaton 

> HI Everyone,
>
> I was just chatting with some of my instructors and I think it would be of
> semantic value to have a  or  tag so that paid adverts can
> be taken out of the documents semantic value.
>
> Thoughts?
>
> C
>
> --
> Carl Heaton
> Managing Director and Instructor
> www.WebCoursesBangkok.com
>
>
>
> Training Centre
> 253 Building 18th Floor,
> Sukhumvit 21
> Asoke
> Bangkok
> 10110
>
>
> Mobile: 0867824118
> Skype: carl68
> Twitter: @webcoursesbkk
>
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Re: [WSG] why :first-child pseudo-class doesn't work for some selectors/elements?

2011-03-10 Thread Anthony Gr.
I think, it's doesn't work but h2 is not a first child element in
parent element (div).


This is the first child
First header
A paragraph
Second header
A paragraph


2011/3/10 tee :
>
> On Mar 6, 2011, at 4:52 PM, Rob Crowther wrote:
>
>> On 06/03/11 20:22, tee wrote:
>>> but I can never get h2:first-child works
>>>
>> Here's an example, specifically using h2 elements since you mentioned them:
>>
>> http://www.boogdesign.com/examples/css3/first-child.html
>>
>> By default, every element has a blue border, but any element which is a 
>> :first-child has a red border:
>>
>> :first-child {
>>    border: 1px solid red;
>> }
>>
>> In addition, h2 elements which are children of #content and first-child 
>> within their parent have white text on a black background:
>>
>> #content h2:first-child {
>>    color: #fff;
>>    background: #000;
>> }
>
> Indeed. I'd just got a chance to check one of the sites that the h2 is used 
> for accordion title and still doesn't work. But if I bring it to JSBin 
> without other code, it works. So something must be conflicting with it.
>
> Thanks!
>
> tee
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***
>
>


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [SPAM] [WSG] html5 and iframes?

2011-03-09 Thread Anthony Schultz
I asked because I do not have access to the browsers in question at the
moment. Take a look at this StackOverflow link.

http://stackoverflow.com/questions/1625835/ie-8-iframe-border-problem
<http://stackoverflow.com/questions/1625835/ie-8-iframe-border-problem>
http://stackoverflow.com/questions/1516803/how-to-remove-border-from-iframe-in-ie-using-javsascript

<http://stackoverflow.com/questions/1516803/how-to-remove-border-from-iframe-in-ie-using-javsascript>Another
option might be to set the width of the border to zero, or attempt to change
its color to match the background.

HTML5 has an attribute "seamless" for iFrame. I imagine you have this, but
those two browsers aren't respecting it. I am going to have to say that you
will probably need to use JS to modify the iFrame by specifically targeting
ie7 and ie8 browsers.

I do not think there is a way to make those two conform nicely.

Anthony

On Wed, Mar 9, 2011 at 9:18 AM, designer
wrote:

> Thanks to all who responded, but I should perhaps point out that
> 'frameborder' is not supported in html5. Also, let me stress : the code
> validates fine, and works fine - except IE7 and 8. IE6 is OK.
> I just don't understand that and I wondered if anyone else has encountered
> this (surely, 6000+ folk - at least one person must have . . . ) - or am I
> missing something obvious?
>
> Anthony asked if I could sent out a screen capture? Well, the 'actual' page
> can be seen at http://www.marscovista.fsnet.co.uk/index_beta.html
> , as I said before.
>
> Thanks again,
>
> Bob
>
>
>
> - Original Message - From: "Birendra" 
> To: 
> Sent: Wednesday, March 09, 2011 1:50 PM
> Subject: RE: [SPAM] [WSG] html5 and iframes?
>
>
>
>> Use this code
>> ""
>>
>>
>> Birendra Patel
>> http://www.viteb.com
>>
>>
>>
>>
>> ***
>> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
>> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
>> Help: memberh...@webstandardsgroup.org
>> ***
>>
>>
>>
>>
>
>
>
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***
>
>


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Re: [WSG] html5 and iframes?

2011-03-09 Thread Anthony Schultz
Try frameBorder="0". Can you send out a screencap?

anthony

On Wed, Mar 9, 2011 at 5:46 AM, designer
wrote:

> I am having a problem with iframes in html5. I am trying to put a facebook
> 'like' link on a website and the results are not always as expected.
> Particularly, IE 7 and 8 show a border AND the box size is different! I am
> using this:
>
>
> http://www.facebook.com/plugins/like.php?href=www.marscovista.co.uk&layout=standard&show_faces=false&action=like&font=verdana&colorscheme=light&<http://www.facebook.com/plugins/like.php?href=www.marscovista.co.uk&layout=standard&show_faces=false&action=like&font=verdana&colorscheme=light&>
> ;">
>   
>
> in conjunction with
>
> #noborder {
>  border : 0!important;
>  height : 35px;
>  width : 600px;
> }
>
> It's fine in Firefox, Safari and IE6 (amazingly!), but not in IE7 and 8. Am
> I missing something?  You can see it in situ here:
>
> http://www.marscovista.fsnet.co.uk/index_beta.html
>
> Any help gratefully recvd!
>
> Thanks,
>
> Bob
>
>
>
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***
>
>


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


Re: [WSG] disallow IE6 to load the main style sheet

2010-12-18 Thread Anthony Gr.
Sorry :)

...
of course.

Best,
Anton.


2010/12/18 Anthony Gr. :
> Hi. I think, this example will help you:
>
> 
> 
> 
>
>
> Best,
> Anton
>
>
> 2010/12/18 tee :
>> I am finally to begin to stop supporting IE6 starts from 2011 as the usage 
>> has fallen below 5%. I don't want the IE6 users to see a broken page due to 
>> no special treatment made for the browser, rather, I would like them to see 
>> an un-styled page as if the style sheet has switch off.
>>
>> Can this be done?
>>
>> Thanks!
>>
>> tee
>>
>> ***
>> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
>> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
>> Help: memberh...@webstandardsgroup.org
>> ***
>>
>>
>
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***
>
>


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] disallow IE6 to load the main style sheet

2010-12-18 Thread Anthony Gr.
Hi. I think, this example will help you:






Best,
Anton


2010/12/18 tee :
> I am finally to begin to stop supporting IE6 starts from 2011 as the usage 
> has fallen below 5%. I don't want the IE6 users to see a broken page due to 
> no special treatment made for the browser, rather, I would like them to see 
> an un-styled page as if the style sheet has switch off.
>
> Can this be done?
>
> Thanks!
>
> tee
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***
>
>


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



[WSG] Out of Office AutoReply: WSG Digest

2010-01-21 Thread Anthony Earl
Hello, 
 Thank you for your email. I am out of the office from Thursday 21 Jamuary 
until Wednesday 27 January.
  I apologise for any inconvenience and will endeavour to get back to you as 
soon as possible.

Kind regards,
Anthony Earl.
Accessibility Resource Officer
Equality and Diversity Centre
La Trobe University


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Problem with onclick and onClick

2009-10-14 Thread Anthony Gr.
How does "onclick" become to "onClick"?

2009/10/14 designer :
> Can anyone help me with what is a basic question please?
>
> I have a library item (in Dreamweaver) which includes an onclick:
>
>  . . . etc
>
> When the library item is inserted (into 37 pages) the format remains lower
> case and all pages validate, but when uploaded to the server the pages don't
> validate because they change to "onClick".  How can I stop this?
>
> What's going on? Anyone come across this?
>
> Any help gratefully received.
>
> Bob
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Implication of empty divs

2009-02-08 Thread Anthony Ziebell




If you use a tool such as tidy html in xhtml mode it
will delete your empty tags... probably a setting to turn that feature
off, but something to think about...

Cheers,
Anthony.

Gerard Hynes (Gmail) wrote:

  My advice below. Cheers, Gerard

On Mon, Feb 9, 2009 at 9:33 AM, Ben Lau  wrote:
  
  
Hi all,

Are there any (seriously) bad implications of having empty DIVs around your
HTML document? I try to avoid using them personally, but there are cases
where the visual design has forced me to add empty divs (or spans) just to
achieve the look.
Apart from adding extra weight and cluttering the document, I understand
screen readers do not pick up divs and spans?

  
  
I'm not expert about screen readers, but I did run a site I upgraded
through JAWS with some interesting results. The site had alot of
  due to the CMS they were using and JAWS would translate
this to/speak out "blank" which wasn't ideal. Am not sure if it would
do the same for  or  or .

  
  
Would I be better off to insert these meaningless decorative tags using
_javascript_ and modifying the DOM, while non-_javascript_ users would see a
more cut down version of the design? Do screen readers pick up _javascript_
and events?

  
  
_javascript_ solution could work, but I would run your page through a
screen reader first and see if you're happy with the result. You can
download demo of JAWS from
http://www.freedomscientific.com/products/fs/jaws-product-page.asp

You'll probably identify other areas of content that could be improved
for screen readers. He's a good article about the topic
http://www.webaim.org/techniques/screenreader/

  
  
Cheers,
ben

***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

  
  

***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] Users who deliberately disable JavaScript

2009-01-26 Thread Anthony Ziebell




_javascript_ should be implemented only to supplement
/ layer existing functionality. Your site should operate just fine
without it... There are always exceptions to this rule however you
shouldn't let _javascript_ dictate how you code.

Thanks,
Anthony.

Sven Dowideit wrote:

  I have JS disabled, and only enable it for sites which I decide I need
it working.

Due to the way I work, I often have hundreds of browser tabs open
and I can leave them open for weeks with JS off.

I also find it educational to see which sites have non-functional forms
because they have used JS only to drive them, or who's layout is totally
governed by multimedia

For example, this last month we were looking into buying a car, and the
only conclusion I could come to, is that most car manufacturers are not
interested in selling cars, rather than they are failing media outlet
wannabes.


Sven

  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] Validating (X)HTML + ARIA

2009-01-20 Thread Anthony Ziebell
Oh, also... there is a requirement for our pages to validate (hence I 
can only see JavaScript as a valid option at this point?)


Benjamin Hawkes-Lewis wrote:

On 20/1/09 22:47, Anthony Ziebell wrote:

It's more of a business decision... do we enhance our sites and make
them a whole lot more accessible, meanwhile dropping support for
older browsers?


Other than an accessibility technology inspecting the DOM for ARIA 
attributes, what makes you think that the presence or absence of ARIA 
attributes in particular makes any (real world) difference to 
compatibility if the user is using a browser that does not implement 
any functionality for those attributes other than inserting them into 
the DOM?


Surely what makes the big difference to accessibility for users of 
older user agents is the absence of an accessibility infrastructure 
for certain DHTML widgets and behaviours that works in those user agents?



Or do we sit
and wait until older browsers no longer have a market share and leave
our visually impaired visitors in the dark?

Someone mentioned using JavaScript to implement ARIA parameters. This is
a good idea...


Why?


but just how accessible would that be to a vision
impaired visitor with JavaScript turned off?


As accessible as your page normally is with JavaScript turned off to 
the same user.


--
Benjamin Hawkes-Lewis


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Validating (X)HTML + ARIA

2009-01-20 Thread Anthony Ziebell
Benjamin, namely because an implementation of ARIA without using 
JavaScript to do so would essentially mean a drop of support of legacy 
browsers (right? Or do I have my wires crossed here?). At this point a 
JavaScript solution looks to fit inline with a requirement to support 
legacy browsers.




Benjamin Hawkes-Lewis wrote:

On 20/1/09 22:47, Anthony Ziebell wrote:

It's more of a business decision... do we enhance our sites and make
them a whole lot more accessible, meanwhile dropping support for
older browsers?


Other than an accessibility technology inspecting the DOM for ARIA 
attributes, what makes you think that the presence or absence of ARIA 
attributes in particular makes any (real world) difference to 
compatibility if the user is using a browser that does not implement 
any functionality for those attributes other than inserting them into 
the DOM?


Surely what makes the big difference to accessibility for users of 
older user agents is the absence of an accessibility infrastructure 
for certain DHTML widgets and behaviours that works in those user agents?



Or do we sit
and wait until older browsers no longer have a market share and leave
our visually impaired visitors in the dark?

Someone mentioned using JavaScript to implement ARIA parameters. This is
a good idea...


Why?


but just how accessible would that be to a vision
impaired visitor with JavaScript turned off?


As accessible as your page normally is with JavaScript turned off to 
the same user.


--
Benjamin Hawkes-Lewis


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Validating (X)HTML + ARIA

2009-01-20 Thread Anthony Ziebell




Thanks Benjamin. The only troubles we face with
>= XHTML 1.1 and >= HTML5 is related to progressive enhancement.
It's more of a business decision... do we enhance our sites and make
them a whole lot more accessible, meanwhile dropping support for older
browsers? Or do we sit and wait until older browsers no longer have a
market share and leave our visually impaired visitors in the dark?

Someone mentioned using _javascript_ to implement ARIA parameters. This
is a good idea... but just how accessible would that be to a vision
impaired visitor with _javascript_ turned off?

Thanks,
Anthony.


Benjamin Hawkes-Lewis wrote:
On
20/1/09 06:24, Anthony Ziebell wrote:
  
  Is it true XHTML 1.1 supports modularization
and thus, ARIA, except for

the role attribute / values?

  
  
I'm not sure I understand the question.
  
  
"Modularization", in XHTML's case, refers to the splitting of XHTML
itself into modules. This allows the definition of profiles of XHTML by
adding modules together or the definition of compound "XHTML family"
schema that mix a selection of XHTML modules with elements, attributes,
and entities from other namespaces. See:
  
  
http://www.w3.org/TR/1999/WD-html-in-xml-19990224/#mods
  
  
http://www.w3.org/TR/xhtml-modularization/introduction.html#s_intro_whatismod
  
  
XHTML 1.1 is a profile of XHTML defined by adding XHTML modules
together.
  
  
A strictly conforming XHTML 1.1 document cannot include ARIA
attributes:
  
  
http://www.w3.org/TR/2001/REC-xhtml11-20010531/conformance.html#strict
  
  
http://www.w3.org/TR/xhtml11/conformance.html#docconf
  
  
Modularization doesn't mean much either way for ARIA usage, since:
  
  
1. If you wanted to mix ARIA and XHTML in an XHTML family schema, all
modularization would allow you to do is ban existing bits of XHTML
(say, presentational elements) from that schema.
  
  
2. If you just want to mix ARIA and XHTML in an XML document, you don't
need an XHTML family schema - especially if you want to use XHTML 1.1's
profile wholesale.
  
  
  XHTML 1.1 (latest draft) allows XHTML 1.1

to be served as text/html as defined in RFC2854 or
application/xhtml+xml

as defined in RFC3236.

  
  
The first edition of XHTML 1.1 doesn't mention media types:
  
  
http://www.w3.org/TR/2001/REC-xhtml11-20010531/
  
  
The latest public draft of the second edition (February 2007) says:
  
  
"XHTML 1.1 documents SHOULD be labeled with the Internet Media Type
text/html as defined in [RFC2854] or application/xhtml+xml as defined
in [RFC3236]."
  
  
The latest editor's draft (January 2009) says:
  
  
"XHTML 1.1 documents SHOULD be labeled with the Internet Media Type
"application/xhtml+xml" as defined in [RFC3236]"
  
  
http://www.w3.org/MarkUp/2009/ED-xhtml11-20090106/conformance.html#strict
  
  
Note that "SHOULD" has a specific meaning defined in RFC 2119:
  
  
http://www.ietf.org/rfc/rfc2119.txt .
  
  
Both the drafts refer us to W3C's note on XHTML media types:
  
  
http://www.w3.org/TR/xhtml-media-types/
  
  
Which has no normative status, but was a summary of the HTML Working
Group's view of best practice in 2002, and says XHTML 1.1 "SHOULD NOT"
be served as text/html, "MAY" be served as application/xml or text/xml,
and "SHOULD" be served as application/xhtml+xml. (Again, these are RFC
2119 terms).
  
  
But this note is itself being revised by the XHTML 2 Working Group:
  
  
http://www.w3.org/MarkUp/2009/ED-xhtml-media-types-20090116/
  
  
It is still a note with no normative status, and this time "should"
etc. are not defined with reference to RFC 2119. The note suggests best
practices for serving XHTML documents as text/html:
  
  
* They should "conform" to a set of guidelines, ultimately a reworking
of the guidelines at the end of XHTML 1.0
  
  
* They should not be XHTML Family documents that mix XHTML with
features from other namespaces (e.g. SVG, MathML, YourMadeUpML).
  
  
What rather confuses all this is that there is _another_ W3C Working
Group that is simultaneously defining how text/html and XML features in
the XHTML namespace ( http://www.w3.org/1999/xhtml/ ) should actually
be processed, the new HTML WG:
  
  
http://www.w3.org/html/wg/
  
  
  This is exciting as it looks like we are so
close

to being able to implement websites which have a much higher level of

accessibility.

  
  
If you think a major barrier to ARIA adoption is that there is no way
to use ARIA in your document and conform to a W3C Standard, then
discussions around including ARIA in HTML5, the drafting of XHTML 1.2
(which includes ARIA), and the gradual standardization of ARIA itself
are of significantly more interest than any draft of XHTML 1.1.
  
  
--
  
Benjamin Hawkes-Lewis
  
  
  
*

Re: [WSG] Validating (X)HTML + ARIA

2009-01-19 Thread Anthony Ziebell
Is it true XHTML 1.1 supports modularization and thus, ARIA, except for 
the role attribute / values? XHTML 1.1 (latest draft) allows XHTML 1.1 
to be served as text/html as defined in RFC2854 or application/xhtml+xml 
as defined in RFC3236. This is exciting as it looks like we are so close 
to being able to implement websites which have a much higher level of 
accessibility.


Frank Palinkas wrote:

Hi All,

If you haven't seen this yet, it may be of practical use when and if 
needed:


Validating (X)HTML + ARIA: http://www.paciellogroup.com/blog/?p=107

Written by Steve Faulkner, Technical Director - TPG (The Paciello 
Group) Europe, Director - Web Accessibility Tools Consortium from his 
blog.



Med vennlig hilsen / Kind regards,

Frank M. Palinkas
Technical Writer, Opera Software
http://dev.opera.com/articles/accessibility/
http://frank.helpware.net


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*** 



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] JavaScript and Accessibility

2009-01-19 Thread Anthony Ziebell




My only concern with a draft is that things change...

Chris Knowles wrote:

  Anthony Ziebell wrote:
  
  
ARIA looks good, looking forward to it getting out of draft status.

  
  
I wouldn't be waiting for ARIA to get out of draft before using it :) It
has pretty good support in browsers already so get stuck in. And because
essentially all you are doing with ARIA is adding attributes to tags,
the worst that can happen is your pages no longer validate - but who
cares if you are making them more accessible?

  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] JavaScript and Accessibility

2009-01-19 Thread Anthony Ziebell




Server side validation is of course a must...
however, if the visually impaired visitor has _javascript_ turned on and
these error elements are created, they won't exactly get to the server
side validation now, will they? ARIA looks good, looking forward to it
getting out of draft status.

Thanks,
Anthony.


james.duc...@gmail.com wrote:

  Hmm, I made a typo. Coffee time.

On 1/20/09, james.duc...@gmail.com  wrote:
  
  

  after all it's impossible to tell those users using an accessibility aid
like a screen reader
from those who do not, and hey, the growing number of users who
purposefully disable
_javascript_ won't see the glitzy _javascript_ injected errors anyway.
  

Agreed, and any decent validation is going to be done server-side
validation anyway, so you're going to have to (or at least you should)
implement the server-side responses in any case.

- James

--
James Ducker
Web Developer
http://www.studioj.net.au


  
  

  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] JavaScript and Accessibility

2009-01-18 Thread Anthony Ziebell




Isn't 'aria-required' a non-standard attribute?

Rimantas Liubertas wrote:

  
Without using alerts, you could add the warning into the actual
document. But how does a screen reader know the document has changed?

  
  
For starters: http://dev.opera.com/articles/view/introduction-to-wai-aria/

Regards,
Rimantas
--
http://rimantas.com/


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



[WSG] JavaScript and Accessibility

2009-01-18 Thread Anthony Ziebell




Hey group,

Does anyone have any ideas on standards based form validation, which is
non-obtrusive, however remains accessible?

Reason I ask, is that some form validations inject an element say under
a form input, explaining the error. Now, without any alerts, how would
a blind person / screen reader pick up the fact that the element is now
there and read out this error?

Has anyone been able to cater for this requirement?

Thanks,
Anthony.




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] Microformats & Accessibility

2009-01-18 Thread Anthony Ziebell




Yes, well thankfully there is a workaround. The ABBR
element and title with machine code is a serious problem so far as
accessibility is concerned.

Regards,
Anthony.

Patrick H. Lauke wrote:
Anthony
Ziebell wrote:
  
  Yes, until the brainstorm is approved and
made standard. Hopefully soon, 
  
As the lord of microformats Tantek seems so vehemently opposed  to it,
I sincerely doubt it will happen any time soon. It's now been roughly
three years since the debate around ABBR issues first started, and
little visible progress seems to have been made. Who knows, maybe the
cynic in me will be pleasantly surprised, but I won't hold my breath...
  
  
P
  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] Microformats & Accessibility

2009-01-18 Thread Anthony Ziebell




Yes, until the brainstorm is approved and made
standard. Hopefully soon, to remove the requirement of extra CSS. You
could apply a span.value style, or alternatively add 'hidden' as an
extra class style and apply it to that.

span.value style would probably be sufficient.

Regards,
Anthony.

Patrick H. Lauke wrote:
Anthony
Ziebell wrote:
  
  
  Just a note... for now the following should
be used instead:


/human valuemachine
value/

  
  
And rely on CSS to display:none that nested span?
  
  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] Microformats & Accessibility

2009-01-18 Thread Anthony Ziebell




Hey Ben,

Just a note... for now the following should be used instead:

human valuemachine value

The  is
still in brainstorming so should not be used yet.

Reference:
http://microformats.org/wiki/value-excerption-pattern-brainstorming#parsing_title_from_empty_value_elements

Cheers,
Anthony.


Patrick H. Lauke wrote:
Ben
Rowe wrote:
  
  
  Obviously it is a clash of HTML standards VS
accessibility.

  
  
Actually, it's a clash of microformats' misappropriation of HTML
standards VS accessibility...
  
  
An empty span won't kill anybody though. What you lose in code purity
you gain in a slightly more accessible solution (as long as tools that
consume those microformats actually recognise the span solution...been
a while since I checked if that's the case - otherwise, it's purely
academic).
  
  
P
  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



Re: [WSG] Title attribute

2009-01-13 Thread Anthony Ziebell




Hello,

The title attribute is especially useful if you need to explain the
content of a page to your visitor and your link text is not so
meaningful. I would advise that you attempt to use meaningful text in
your links. It might be a good idea to change the structure of your
sentence so that meaningful text can be used for linking.

You can read up on good link architecture here:

http://googlewebmastercentral.blogspot.com/2008/10/importance-of-link-architecture.html

Regards,
Anthony.


Chris Dimmock wrote:

  Hi Jens

Actually, using the 'title' attribute in a link does NOT add a little
bit of SEO. Title element ('Page Title') - yes for SEO - but title
attribute - no.

Try it yourself. Put a few words in a title attribute - words which
don't otherwise appear on your page. The once Google has re-indexed
the page, (look at the date in the Google cache); then search your
sitein Google for the words you included in the title attribute.

Here's an example. The words "Australian DDA" appear in a title
element of a link on http://www.cogentis.com.au/ but no where else on
that page, i.e. only here:

Web accessibility
issues

But a search in Google will not return this page.
http://www.google.com.au/search?hl=en&q=site%3Acogentis.com.au+Australian+DDA&btnG=Google+Search&meta=cr%3DcountryAU

It only returns another page on the site which does have those words
on the page.

Google won't find them, because it doesn't index them; just like
Google doesn't index the content of e.g. meta name ="keywords" field.

Chris



On Mon, Jan 12, 2009 at 11:00 AM, Jens-Uwe Korff
 wrote:
  
  

  I was wondering how valuable the Title attribute is
  

Use the 'title' attribute when the link text needs to be short and
doesn't convey all a user needs to know, eg. Local news. In this case you also add a bit
of SEO.

I found that, contrary to what I believed previously, this is not
required for assistive technologies, ie. screenreaders. They usually
pick up the anchor text well.

Cheers,

Jens

  
  

***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: memberh...@webstandardsgroup.org***



[WSG] .NET sites which are XHTML 1.0 strict

2008-12-15 Thread Anthony Milner
Glad to report that I've found a .NET site that validates XHTML 1.0 strict
(hat tip to Craig Bailey
http://www.craigbailey.net/live/post/2008/12/14/Microsoft-Oxite-coverage.aspx
for
leading me to it.)

It's the Mix Online site which is built on a Microsoft Open Source CMS
platform (yes you read that right Microsoft and open source in the same
sentence, I was also surprised) called Oxite. http://visitmix.com/

Oxite is still in beta and is built on the MVC platform which appears to be
a good news story for building .NET web standards compliant websites.

Anthony

> -Original Message-
> From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org]
> On Behalf Of Anthony Milner
> Sent: 08 October 2008 03:23
> To: wsg@webstandardsgroup.org
> Subject: [WSG] .NET sites which are XHTML 1.0 strict
>
> Hi,
>
> I was having a *chat* with some .NET developer colleagues and they
> challenged me to find a .NET site that achieves XHTML 1.0 strict
> compliance. Hoping to prove to them that it can be done.
>
> Does anybody know of some .NET sites which are XHTML 1.0 strict (or even
> transitional)?
>
> Thanks,
> Anthony


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Re: [OT] Re: [WSG] Fw: The Great Firewall of Australia

2008-12-03 Thread Anthony

See you there. Bring your friends

Regards,
Anthony.

Sent from my iPhone!

On 03/12/2008, at 6:19 PM, "Michael MD" <[EMAIL PROTECTED]> wrote:



This just arrived in my email:

Event: Sydney Townhall Protest to Stop Internet censorship & filtering
What: Protest
Host: http://nocensorship.info ; http://wiki.efp.org.au/
Start Time: Saturday, December 13 at 11:00am
End Time: Saturday, December 13 at 4:00pm
Where: Sydney Town Hall Square



list of protests in other cities from http://nocensorship.info


Brisbane:
13th of December
11am - 3pm
Brisbane Square


Melbourne:
13th of December
12pm-5pm
State Library


Adelaide:
13th of December
12pm - 4pm
Parliament


Hobart:
13th of December
11am-1:30pm
Parliament Lawns


Perth:
13th of December
12pm-3:00pm
Stirling Gardens



***
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] Fw: The Great Firewall of Australia

2008-11-26 Thread Anthony Ziebell




As I understand it, tests have already been
completed in TAS? I'm not sure how accurate this is, though... as I
have not seen any results.

Andrew Barnett wrote:

  This is currently at the stage of the government looking for
expressions of interest from ISP's to set this up for a trial.

I only hope that this trial shows that this proposal is the crock of
sh*t that everyone says it is.

The previous Liberal government's proposal is a much more viable, and
better suited proposal. They were providing web monitoring software to
be run on each PC (at the request of the owner) rather than scanning
the incoming data in real-time.


Andrew



2008/11/27 Hassan Schroeder <[EMAIL PROTECTED]>:
  
  
Brett Patterson wrote:


  1) That, I do believe is a crock of shit!
2) If he does anything like that, he will be dead!!!

--and--

3) Anyone who believes in those ideas are fucked up, stupid, and this I
can promise, will NOT make it in this world, dead or alive!
4) Like I said, I think this a crock of shit, and possibly spam.
  

Very expressive. Though you might want to adjust your meds a bit :-)

And you might want to google, say, "Australia firewall censorship"...

FWIW,
--
Hassan Schroeder - [EMAIL PROTECTED]
Webtuitive Design ===  (+1) 408-621-3445   === http://webtuitive.com

 dream.  code.


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


  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] Fw: The Great Firewall of Australia

2008-11-26 Thread Anthony Ziebell




Oh, it's certainly not spam. It's been all over
news, whirlpool, everywhere.

Brett Patterson wrote:
1)
That, I do believe is a crock of shit!
  2) If he does anything like that, he will be dead!!!
  
  
  --and--
  
  
  3) Anyone who believes in those ideas are fucked up, stupid, and
this I can promise, will NOT make it in this world, dead or alive!
  4) Like I said, I think this a crock of shit, and possibly spam.
  
  On Wed, Nov 26, 2008 at 9:56 PM, IceKat <[EMAIL PROTECTED]>
wrote:
  Hi,

Usually I'm suspicious of this stuff but I happen to know that Get Up
is legit and thought the Aussie members of this list might like to know
about this.

IceKat.


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

Thought you might be interested
 
Love Mum
 
 
-
Original Message -
From:
GetUp 
To: [EMAIL PROTECTED] 
Sent: Wednesday, November 26, 2008 4:17 PM
Subject: The Great Firewall of Australia



 
Dear Helen,

Imagine a government proposing an internet censorship system that went
further than any other democracy - one that made the internet up to 87%
slower, more expensive, accidentally blocked up to one in 12 legitimate
sites, and missed the vast majority of inappropriate content.

This is not China, Saudi Arabia or Iran - this is the vision of Senator
Stephen Conroy for Australia. Testing has already begun.
The community must now move to stop this plan. Click here to
save the net:

www.getup.org.au/campaign/SaveTheNet

The system that Senator Conroy wants is a mandatory filter of
all internet traffic, with the government of the day able to
add any unwanted site to a secret blacklist. Already, the wrangling has
begun for the inclusion of material relating to anorexia, euthanasia
and gambling. It isn't difficult to see the scheme is open to
abuse. 

Even when it comes to preventing child p-rnography, the filter will not
prevent peer-to-peer sharing and is very simple to sidestep. The
protection of our children is vitally important - that's why
we can't afford to waste funds on this deeply flawed system. We should
be concentrating on solutions that are more effective and won't
undermine our digital economy or our democratic freedoms.

This must rank as one of the most ill-thought decisions of the Rudd
Government's first year in power. We need to act now to tell
big brother the mandatory internet filter is incompatible with the
principles of a modern democracy and modern economy:

www.getup.org.au/campaign/SaveTheNet

Our government should be doing all in its power to take Australia into
the 21st century economy, and to protect our children. This
proposed internet censorship does neither. Take action to save
the net today.

Thanks for being a part of the solution,
The GetUp team 

PS - The proposed scheme will pass all internet traffic through a
government filter - it's like asking Australia Post to filter every
letter sent in Australia. Click here to save the net. 

__

GetUp
is an independent, not-for-profit community campaigning group. We use
new technology to empower Australians to have their say on important
national issues. We receive no political party or government funding,
and every campaign we run is entirely supported by voluntary donations.
If you'd like to contribute to help fund GetUp's work, please donate
now! If you have trouble with any links in this email, please
go directly to www.getup.org.au.
To unsubscribe from GetUp, please click here.


Authorised
by Simon Sheikh, Level 2, 294 Pitt St, Sydney NSW 2000



No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.175 / Virus Database: 270.9.10/1812 - Release Date:
11/25/2008 7:53 PM


  
  
  
  
  
-- 
Brett P.
  
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] XHTML Standard question

2008-11-19 Thread Anthony Ziebell




Remember to use server side validation and you don't
need to worry about rewriting standards :)

Brett Patterson wrote:
I
know that most, if not possible to say all, Web page designers use
_javascript_ for form validation. During a recent poll done by a few
local colleges, 41.2% of the people who responded stated that they
would rather not have to enable _javascript_, but on rare occasion they
do for certain sites that require JS for use of their forms to buy or
sign up for something. After reading this, I did some research, and
could not find any tag attributes for form elements that would not
require the use JS for form validation.
  
Therefore, I was wondering if it would be feasible to include a
standard that would use a syntax similar (does not actually have
to be this way) to selected="selected"? In which case, the syntax would
be required="required". Or, if it is an email input (i.e. Your e-mail
address:).
  
-- 
Brett P.
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] Question on servers and Email campaign

2008-11-11 Thread Anthony Ziebell




Sounds like a death-trap.

Graphics & Web Designing, LLC wrote:

  I am sorry to ask this question but I am very curious as to how others feel about this.

I have a client that is purchasing E-mail listings from a company called expedia mail and I
Was called and asked for my server's root access information so that they can download their
Software onto my server for my clients email campaign.

I refuse to give anyone access to MY server let alone my root access.

Am I being rude and uncooperative on this or am I right?

According to the lady I spoke with she claims that I am uncooperative and that they have many
Companies give out there root access information to their servers.

I just can NOT put my other clients at risk and give some other company access to my server 
Where they have full access to my server and all of my clients and my servers information and in 
Addition they can do as they please once I give them my root access information.

Again, I would like to thank all for reading this post and I do hope this is not against WSG standards. 
But I am really needing confirmation that I am not losing it and that I was right in protecting
My clients as well as my server.




Sherri 
Graphic’s & Web Designing, LLC
(941)876-4609  (941)889-8336 Cell
 

Have a great day.

http://www.webgraphicdesigning.com




  


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


  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-27 Thread Anthony Ziebell




Ok, great.

It was my intent to acknowledge some standards / submissions for OO
which inferred classes / native inheritance were needed.

Thanks for your help :)

Cheers,
Anthony.

Keryx Web wrote:
Anthony
Ziebell skrev:
  
  Still confuses me though - if someone is
object-orientated but is in essence prototype-based (with regards to
object, inheritance, etc), why is it incorrect to say _javascript_ is
prototype-based?


  
  
Your confusion comes from comparing apples to steam trains.
  
  
Prototypes are an inheritance mechanism for objects.
  
  
Classes are another inheritance mechanism.
  
  
A language may implement either one or both (very rare).
  
  
It does not matter which inheritance mechanism that is used. It is
still an OO language.
  
  
It is *not* incorrect to say _javascript_ is prototype based. It is. No
one is denying it.
  
  
It is *not* incorrect to say _javascript_ is OO. It is, since OO is a
paradigm for programming which JS fits very neatly in. It is de facto
called OO in the ECMAScript spec.
  
  
It is *not* incorrect to say _javascript_ is object based. It is - since
it has object wrappers for all primitive values.
  
  
You really did seem to say that classes are needed for a language to be
called OO. Now you have stated that you did not intend to say that.
Case closed.
  
  
  
Lars Gunther
  
  
  
***
  
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-27 Thread Anthony Ziebell




Thanks Keryx,

Some interesting information. Nice point on the arrays actually being
objects. At one point you did mention _javascript_ is object-based, then
in another, prototype-based. So that confuses me a little. If your
point is that it is object-based and uses prototype to inherit objects,
I think I understand your point.

Still confuses me though - if someone is object-orientated but is in
essence prototype-based (with regards to object, inheritance, etc), why
is it incorrect to say _javascript_ is prototype-based?

Cheers,
Anthony.



Keryx Web wrote:
Brett
Patterson skrev:
  
> I am in the middle of a conversation with this guy who says that
_javascript_ is an object-oriented language. Is he correct? Could you
please site some references?
  
  
I have read the whole thread up until now, but will answer your
starting message, since I am not addressing a single specific
respondent.
  
  
I am in charge of developing DOM Scripting courses for the Curriculum
Framework of the WaSP Education Task Force[1]
  
  
I have therefore tried to read every single resource about _javascript_,
ECMAScript and the DOM that has been written from a computer science
perspective. There are not that many, which might be a reason behind
the confusion.
  
  
Anyway: _javascript_ (a term owned by Sun, licensed to Mozilla, and used
by all browser vendors but Microsoft) is in all essence, as Liorean has
stated, a superset of ECMAScript 3.0. That is also the sentiment of
Brendan Eich - and should therefore be taken as a final word. (Anthony
was indeed wrong about this.) JScript as implemented in Internet
Explorer is roughly equivalent, but deviates in some small ways.
  
  
_javascript_ is a mix of Self, Scheme and C (according to the ECMAScript
3.1 draft, the "love child between Scheme and C" according to Brendan
Eich).
  
  
_javascript_ is indeed Object Oriented, but even though every script is
run within a host object - usually the window object of a browser - a
procedural style is possible to use. 90's DHTML scripts were usually
procedural and used document.write (which is not ECMAScript but part of
the DOM) in a way that reminds me of *standard streams*, which could be
provided by the host object, but usually aren't.
  
  
Public, private and protected methods and properties are not easily
implemented. Object Oriented design patterns (singletons, factories,
registry, adaptors...) can usually be emulated. Sometimes this is only
done through considerable wizardry using concepts like lambda and
closures.
  
  
ECMAScript 4.0 aka _javascript_ 2.0 was supposed to get a limited class
based inheritance mechanism to *complement* the prototype based one we
use today. Those plans have been halted. ECMAScript "Harmony" will most
probably *not* get any class based inheritance.
  
  
(At least two _javascript_ engines (V8 and Squirrelfish Extreme) emulate
class based object creation as part of their just in time compilation,
but that really is a compiler issue.)
  
  
ECMASCript 3.1 will get a few new methods to facilitate easier
inheritance patterns. E.g. Object.freeze(). Many popular libraries also
have methods that facilitate OO-patterns.
  
  
As old school cut' n' paste coding is getting superseded by libraries
procedural code is becoming less seen and OO-style coding is getting
more used.
  
  
Indeed, using object chaining in JQuery et al, the programming is even
well on its way to become *declarative*.
  
  
Summary:
  
  
1. _javascript_ *is* OO.
  
2. _javascript_ uses a prototypal - class-less - inheritance mechanism.
  
3. Anyone writing a script can use procedural style, OO-style or even
make forays into a declarative style.
  
  
Nit picking on some stuff in the thread:
  
  
_javascript_ has no pure hash-tables, aka associative arrays. Object
properties can be used to emulate associative arrays, though. A PHP
programmer will feel very limited, though.
  
  
A _javascript_ object *is* not an array (once again Anthony got it
wrong). It can have methods as well as properties. Arrays
are however objects, and confusingly
  
  
typeof [ 1, 2 ]
  
  
evalutes to "object", not "array". A major design flaw.
  
  
The best known way to test for an array is:
  
  
Object.prototype.toString.apply(value) === '[object Array]'
  
  
Discovered by Mark Miller of Google.
  
  
>From a very strict computer science point of view averything in
_javascript_ is *not* an object. (No matter how much Alex "Dojo" Russel
et al. reiterates that mantra.) In practice everything is. _javascript_
has got a few "primitives" (numbers, strings, booleans, undefined).
Whenever a primitive is referenced with an OO-syntax it is converted
into its corresponding wrapper object. This was modeled after Java
according to Brendan, and he has stated that it probably was a bad
idea. (Search the ES4 mailing list for a reference.)
  
  
  
Lars Gunther
  
  
Sources:

Re: [WSG] JavaScript clarification please

2008-10-27 Thread Anthony Ziebell




Hey Breton,

I think the examples you gave are implemented in the PHP object and are
relatively simple to implement.

Cheers,
Anthony.

Breton Slivka wrote:

  It is my understanding that the bulk of those OOP design patterns are
useful to get around the limitations of static languages like C++ and
Java, that don't allow you to arbitrarily add/remove properties from
instances, change the type of a value, or allow higher order functions
(functions that return functions values), or allow you to pass in
functions as values.   Given that _javascript_ allows all those things,
much of those traditional OOP design patterns don't make much sense,
because they're getting around a limitation that doesn't exist.

I haven't extensively used the OOP facilities in PHP, I've always
found the syntax to be ugly as hell, I could never bring myself to
type that crap willingly. So unfortunately, I cannot speak
knowledgably about how difficult or hard it is in PHP.




On Tue, Oct 28, 2008 at 1:17 AM, James Jeffery
<[EMAIL PROTECTED]> wrote:
  
  
My statement was not worded correctly.

I use Java, C++, PHP and _javascript_ and I can tell you that out of the lot
of them, _javascript_ is the most difficult to incorperate conventional Object
Orientated design. For example you cannot simply define classes, or use
visability keywords (you can do it, but not the conventional way) and some
of the OOP design patterns are difficult to put into _javascript_.

I have the Apress book on _javascript_ Design Patterns, which helped alot when
learning OOP in JS.

Sorry my wording was wrong. I think the above is what I meant.

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


  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] how come

2008-10-27 Thread Anthony Ziebell




Hi Kevin,

The list-style-type (I assume that's what you meant) sets the list-item
marker. So giving the anchor a list-style-type wouldn't effect the
list-item.

Cheers,
Anthony.

kevin mcmonagle wrote:
hi,
  
How come you cant change the list-type from none to circle(or anything
else) on li a:hover?
  
-kevin
  
  
  
  
  
  
***
  
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-27 Thread Anthony
Not once did I hear someone say it was prototype-based. Intact others  
have flat out denied it.


The question was is it either object or prototype. I merely stated if  
anything it should be seen as prototype, but it does have objects.


Then, it followed with all sorts of garbage from those trying to  
debunk the notion of javascript being prototype. Not once did I say it  
does not have objects. Intact I offered that it does.


Regards,
Anthony.

Sent from my iPhone!

On 28/10/2008, at 7:40 AM, liorean <[EMAIL PROTECTED]> wrote:


2008/10/27 Anthony <[EMAIL PROTECTED]>:

My arguement was that while javascript has objects, it is indeed
prototype-based


Oh, we're not disputing that. But look at some of your earlier  
comments.




This for instance:
2008/10/24 Anthony Ziebell <[EMAIL PROTECTED]>:
Sure, that's what an "object" is. But OOP is not just about an  
"object".

There is a lot more involved.

Don't get me wrong, I am a fan of JavaScript - but it has faux  
classes and
objects, and this is why my opinion of JavaScript is that it is  
prototype,

not object.


First of all I'm assuming you meaning object-based and prototype-based
there, because the sentence as written just does not make sense.
Anyway, it's a false dichotomy because JavaScript is object-based AND
prototype-based. It's also object oriented.

Also, while you can say it's got faux classes (it actually has in the
ECMAScript specification, but nothing author accessible) those classes
have no greater importance to the author as they are not available to
user JavaScript.


Here's another such statement of yours:
2008/10/24 Anthony Ziebell <[EMAIL PROTECTED]>:
Forgot to clarify one thing: ECMAScript is fully OO in my opinion,  
however

JavaScript is not a full implementation of ECMAScript, unfortunately.


This sounds like you're insinuating that while ECMAScript is fully
object oriented, JavaScript is not. That's just plain false.


Another one:
2008/10/27 Anthony Ziebell <[EMAIL PROTECTED]>:

There is a difference between the use of object and object-oriented
programming. Coad / Yourdon suggests object-oriented being classes  
and
objects, inheritance and communication with messages. Does  
JavaScript have

classes?


Not user classes, no. Only implementation/host.


Can inheritance of JavaScript occur without prototype?


Not automatically, no. Why would it need another inheritance mechanism
in order to be object oriented?


[snip]
Object-oriented programming consists of native inheritance. Are you
suggesting that a prototypical approach to inheritance one in the  
same as

native inheritance?


Do you mean "native" as in the implementation language (machine
native, if you will) or "native" as in user JavaScript?

Anyway, the inheritance mechanism in JavaScript is prototype
delegation, and it certainly is the native method of inheritance for
JavaScript. It may or may not be the method of inheritance for host
objects, but that's another story.




2008/10/27 Anthony <[EMAIL PROTECTED]>:
It is only through arguement did any mention of javascripts  
inheritence get
a mention, which is also still true. This was not the underlying  
factor, but

something somone brought up.


It's the core part of being a prototype-based language, so even if
you've not mentioned inheritance you've certainly talked about it. But
you have at several occasions mentioned inheritance, so that's beyond
the point.

I'm not sure why it is so bad that javascript be prototype-based? I  
have
said again and again that it still does have objects, sighted many  
sources
which state javascript as a prototype-based language and other  
examples for
the arguement along the way... It is still a good language and  
there is

nothing negative about prototype?


We're not arguing about that. We're arguing that it being
prototype-based is the very factor that makes it object oriented. But
you on the other hand have at least seemingly argued that it is not
object oriented, which is the point we've been addressing all along.

Anyway I only respond again because I don't like to be miss- 
represented. If
you still feel I am wrong and disprove of the wiki articles stating  
it is

prototype-based, you really should edit them as it must be a
miss-representation of javascript.


We're not arguing against the articles. We've been arguing constantly
throughout this thread that JavaScript may be prototype-based, but
that does not make it any less object oriented. And I don't think I'm
missrepresenting you at all when I say you've argued against that
point.
--
David "liorean" Andersson


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cf

Re: [WSG] JavaScript clarification please

2008-10-27 Thread Anthony

Not exactly.

My arguement was that while javascript has objects, it is indeed  
prototype-based


It is only through arguement did any mention of javascripts  
inheritence get a mention, which is also still true. This was not the  
underlying factor, but something somone brought up.


I'm not sure why it is so bad that javascript be prototype-based? I  
have said again and again that it still does have objects, sighted  
many sources which state javascript as a prototype-based language and  
other examples for the arguement along the way... It is still a good  
language and there is nothing negative about prototype?


Anyway I only respond again because I don't like to be miss- 
represented. If you still feel I am wrong and disprove of the wiki  
articles stating it is prototype-based, you really should edit them as  
it must be a miss-representation of javascript.


Regards,
Anthony.

Sent from my iPhone!

On 28/10/2008, at 12:43 AM, liorean <[EMAIL PROTECTED]> wrote:


2008/10/27 Brett Patterson <[EMAIL PROTECTED]>:

Yes. But, one final question. Was the first ever implementation of
JavaScript designed to be object-oriented, object-based, or  
prototype-based?

Thank you all.


The first implementation of JavaScript is still alive in the form of
Mozilla SpiredMonkey, even though much of it has been changed since
then. It was designed to be object oriented through usage of the
prototypal inheritance scheme, so it's pretty much all three at once.
Since everything in JavaScript is an object, it can be said to be
object based as well as object oriented. Anthony Ziebell's argument
that it's prototype-based rather than object oriented is a false
dichotomy since prototypal inheritance is in fact one of the ways to
achieve objevt orientation. As such, a system can become object
oriented as a result of adding prototypal inheritance to an object
based system.

Anthony Ziebell is arguing that it's not object oriented based on the
false premise that classical inheritance is the way to achieve object
orientation and prototypal inheritance is not, despite himself linking
articles stating the contrary.
--
David "liorean" Andersson


***
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] JavaScript clarification please

2008-10-26 Thread Anthony

My sentiments exactly.

Regards,
Anthony.

Sent from my iPhone!

On 27/10/2008, at 3:46 PM, "Breton Slivka" <[EMAIL PROTECTED]> wrote:


I have in fact read your references, not only just now, but again and
again I have read the wikipedia articles on the  subject many moons
ago. Frankly I fail to see how any of it contradicts my position, but
they do contradict your position. I'm afraid I will have to throw up
my hands and give up on you. You are a lost cause. you cannot be
reached.


On Mon, Oct 27, 2008 at 3:08 PM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:

You seem to have missed my point and many references too.

Try reading some of the references and come back with an informed  
opinion,
not just nit-picking at analogies I am providing to attempt to help  
you
understand (as I gather you would not be reading any references I  
have

provided, which conflict with your argument anyway).

Thanks,
Anthony.

Breton Slivka wrote:

On Mon, Oct 27, 2008 at 2:27 PM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:


Hello,

Lets all just agree then, that the first insulin is simply the  
best, so no
further development in this area is needed. I am going to link you  
to two
more resources. If you feel that the first ever implementation of  
object
should mandate all others (such as the first insulins), then I  
welcome you

to submit edits to this article.


You seem to have missed my point. My point was, if we are to count
arbitrary deviations from smalltalk as discounting a language from
being oop (such as a lack of classical inheritence), then the only  
OOP

language is smalltalk. This is clearly absurd. Therefore, javascript
must be OOP.


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



***
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] JavaScript clarification please

2008-10-26 Thread Anthony Ziebell




You seem to have missed my point and many references
too.

Try reading some of the references and come back with an informed
opinion, not just nit-picking at analogies I am providing to attempt to
help you understand (as I gather you would not be reading any
references I have provided, which conflict with your argument anyway).

Thanks,
Anthony.

Breton Slivka wrote:

  On Mon, Oct 27, 2008 at 2:27 PM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:
  
  
Hello,

Lets all just agree then, that the first insulin is simply the best, so no
further development in this area is needed. I am going to link you to two
more resources. If you feel that the first ever implementation of object
should mandate all others (such as the first insulins), then I welcome you
to submit edits to this article.

  
  
You seem to have missed my point. My point was, if we are to count
arbitrary deviations from smalltalk as discounting a language from
being oop (such as a lack of classical inheritence), then the only OOP
language is smalltalk. This is clearly absurd. Therefore, _javascript_
must be OOP.


***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-26 Thread Anthony Ziebell




Hello,

Lets all just agree then, that the first insulin is simply the best, so
no further development in this area is needed. I am going to link you
to two more resources. If you feel that the first ever implementation
of object should mandate all others (such as the first insulins), then
I welcome you to submit edits to this article.

"Prototype-based programming is a style of object-oriented programming
in which classes are not present, and behavior reuse (known as
inheritance in class-based languages) is performed via a process of
cloning existing objects that serve as prototypes. This model can also
be known as class-less, prototype-oriented or instance-based
programming."

Source: http://en.wikipedia.org/wiki/Prototype-based_programming

"The most common criticism made against prototype-based languages is
that the community of software developers is not familiar with them,
despite the popularity and market permeation of _javascript_. This
knowledge level of prototype based systems seems to be changing with
the proliferation of _javascript_ frameworks and increases in the complex
use of _javascript_ as "Web 2.0" matures."

Source:
http://en.wikipedia.org/wiki/Prototype-based_programming#Criticism

Thanks,
Anthony.

Breton Slivka wrote:

  On Mon, Oct 27, 2008 at 1:17 PM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:
  
  
Breton,

There is a difference between the use of object and object-oriented
programming.

  
  
Yes you say that, but you never go into any detail about it.  In what
way in particular is the concept and use of "objects" independant from
"object orient programming". Did the concept of "objects" *not* come
from smalltalk, the original OOP language? Can you cite any occurance
of the concept of an "object" in programming that predates smalltalk?
Do you then, think it's therefore possible to create a language with
Objects that is not in any way inspired by, or derivative of
smalltalk? Because honestly, I'm confused about where you think the
concept of OOP came from to begin with.

  
  
Coad / Yourdon suggests object-oriented being classes and
objects, inheritance and communication with messages. Does _javascript_ have
classes? Can inheritance of _javascript_ occur without prototype?


  
  
Those are typical elements in OOP languages, yes, and they all existed
in the original smalltalk. Are you suggesting that any slight
deviation from small talk renders a language completely not OOP? If
that were the case, you would pretty much have to rule out any
language that was not smalltalk itself. But let's assume you have a
less extreme position. What is your methodology to determine how far a
language can deviate from smalltalk before it is no longer OOP? You
seem fixated on the concept of classical inheritence being essential
for a language to be OOP, but this is contradicted by the existance of
numerous OOP languages that do not have classes. How do you account
for this?

_javascript_ in fact, does have classes, but not as a mechanism of
inheritence. _javascript_'s inheritence is prototypal. You seem to be
suggesting that this makes it not OOP. I would like to suggest that if
this makes _javascript_ not OOP, then you would have to say that a dozen
other OOP langauges are also not OOP.  The choice of class as a
defining characteristic of OOP seems arbitrary. If you can suggest
that any arbitrary deviation, such as class, from smalltalk makes a
language not OOP, then C++ and JAVA are not OOP either, due to their
numerous deviations.


  
  
May I provide the following resource, pointing out second paragraph under
'Adding a Method':
http://www.kevlindev.com/tutorials/_javascript_/inheritance/index.htm

Object-oriented programming consists of native inheritance. Are you
suggesting that a prototypical approach to inheritance one in the same as
native inheritance?


  
  
This is a red herring. With this, you have attempted to change the
topic from whether _javascript_ is OOP or not, to whether it has
classical inheritence or not. Or, if you have not changed the topic,
you appear to be assuming that everyone is in agreement that classes
are a required attribute of OOP. This is arbitrary and nonsensical.

  
  
Thanks,
Anthony.

Breton Slivka wrote:

On Mon, Oct 27, 2008 at 12:02 PM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:


Luke,

Discrediting c++ has nothing to do with the question "Is _javascript_
object-orientated?". With that, and in closing, I would like to point out
that my comments were based on the actual question - asking if _javascript_
were object-oriented, not if it has objects. Prototype has objects, and it
is of my opinion that _javascript_ is more prototype than anything else.

Thanks,
Anthony.


Yes that's fine anthony, but the problem is that statement doesn't
actually mean anything. it is logically invalid, an

Re: [WSG] JavaScript clarification please

2008-10-26 Thread Anthony Ziebell




Breton,

There is a difference between the use of object and object-oriented
programming. Coad / Yourdon suggests object-oriented being classes and
objects, inheritance and communication with messages. Does _javascript_
have classes? Can inheritance of _javascript_ occur without prototype?

May I provide the following resource, pointing out second paragraph
under 'Adding a Method':
http://www.kevlindev.com/tutorials/_javascript_/inheritance/index.htm

Object-oriented programming consists of native inheritance. Are you
suggesting that a prototypical approach to inheritance one in the same
as native inheritance?

Thanks,
Anthony.

Breton Slivka wrote:

  On Mon, Oct 27, 2008 at 12:02 PM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:
  
  
Luke,

Discrediting c++ has nothing to do with the question "Is _javascript_
object-orientated?". With that, and in closing, I would like to point out
that my comments were based on the actual question - asking if _javascript_
were object-oriented, not if it has objects. Prototype has objects, and it
is of my opinion that _javascript_ is more prototype than anything else.

Thanks,
Anthony.
    
  
  

Yes that's fine anthony, but the problem is that statement doesn't
actually mean anything. it is logically invalid, and quite nonsensical
to say "_javascript_ is not object oriented, it's more prototype based",
because the two things are not mutually exclusive. _javascript_ having
prototypical inheritence has absolutely nothing to do with the
question of whether it is object oriented or not. It can be both
object oriented, AND based on prototypal inheritence, and in fact, it
is both. 100%. This is not my opinion. it is a fact.


***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-26 Thread Anthony Ziebell




Luke,

Discrediting c++ has nothing to do with the question "Is _javascript_
object-orientated?". With that, and in closing, I would like to point
out that my comments were based on the actual question - asking if
_javascript_ were object-oriented, not if it has objects.
Prototype has objects, and it is of my opinion that _javascript_ is more
prototype than anything else.

Thanks,
Anthony.

Luke Hoggett wrote:

  
  Indeed, as Alan Kay inventor of
Smalltalk and OOP said
  
"I invented the term
Object-Oriented, and I can tell you I did not have C++ in mind."
  
cheers
L
  
  
  liorean wrote:
  
2008/10/24 James Jeffery <[EMAIL PROTECTED]>:
  

  The language itself is NOT object-orientated, its proto-type based. It can
be used in an OOP fashion, but this is not true Object Orientation as it is
in languages such as C++.



Two serious problems with this statement: First, the prototype system
is in fact one of several ways of implementing inheritance in OOP
languages. Second, you're assuming C++ is object oriented. It's one of
several languages that is known to be OOP by programmers while in
actuality it's core is not OOP. Sure, it's possible to use C++ for
object oriented programming, but C++ allows doing things that actually
break object orientation. You can't do that in more OOP languages, for
example _javascript_.

C++ and Java are known as object oriented languages, but they are not
the ultimate in object orientation. There are plenty of languages that
are more object oriented. But they use classical inheritance, and
because _javascript_ does not some people have got into their heads that
Classical inheritance == OOP which means JavaScritp != OOP. But that's
a misconception.
  
  
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-24 Thread Anthony

Word.

Regards,
Anthony.

Sent from my iPhone!

On 24/10/2008, at 11:32 PM, "James Jeffery" <[EMAIL PROTECTED] 
> wrote:


The language itself is NOT object-orientated, its proto-type based.  
It can be used in an OOP fashion, but this is not true Object  
Orientation as it is in languages such as C++.


On Fri, Oct 24, 2008 at 1:16 PM, <[EMAIL PROTECTED]> wrote:

> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
]

On Behalf Of Brett Patterson
> Sent: 24 October 2008 02:25
> To: wsg@webstandardsgroup.org
> Subject: Re: [WSG] JavaScript clarification please
>
>
> Oh, most definitely agreed. Sorry if I started an argument, I only
wanted to know
> what it was. I don't know if it is just me, but this topic seems  
to be

too
> controversial. Thank you all for answering.



Actually, I think you have stumbled upon one of the keys to this  
issue:

it is controversial amongst people who are not familiar with the
language. Most of the confusion comes from people who are experts in  
PHP

or C++, and who believe that makes them expert in OO, or indeed
University Lecturers that are proficient in neither.

If you ask people who are truly expert with JavaScript, they will all
tell you that it _is_  Object-Oriented, not least because it is  
entirely
object-based: the first rule of JavaScript is: "Everything is an  
object.

A function is an object, a string is an object, and an array is an
object."

As others have said, most other OO languages implement class-based
inheritance, often as a result of their linear underpinnings. People  
who

are used to this approach, then go through some horrible kludges to
simulate this unnecessarily in JavaScript apps, and then complain that
the results are horrible. Prototype-based inheritance is a very
different beast, and one that is much better suited to the way that
JavaScript is supposed to be used.

Final point of confusion:  the library called 'Prototype'. Stupid  
name -
never used a languages reserved word for anything: it is reserved  
for a

good reason, but is now better known than object.prototype itself!


Regards,
Mike


Mike Brockington
Web Development Specialist

www.calcResult.com
www.stephanieBlakey.me.uk
www.edinburgh.gov.uk

This message does not reflect the opinions of any entity other than  
the

author alone.


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



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

Re: [WSG] Nested List Problem

2008-10-23 Thread Anthony Ziebell




That might work - but then I don't know how the menu
scripts work. If they rely on ID's, then you will need to refactor.

Lynette Smith wrote:

  
  
  

I see what you are asking now - this would probably need to be
refactored to have it validate.
    
Cheers,
Anthony.

  
Perhaps just change the id's to classes?
  
Kind regards
  
Lyn
  
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] Nested List Problem

2008-10-23 Thread Anthony Ziebell




Hi Lynette,

I see what you are asking now - this would probably need to be
refactored to have it validate.

Cheers,
Anthony.

Lynette Smith wrote:

  
  
Thanks Anthony - I've corrected that - but won't the repetition of 
's stop it validating?
  
The first list has a nested list correctly inside of the list item,
however your subsequent list items end the list item element before the
new nested list begins...

e.g:

WEED
SPECIES
                    
                        Watsonia
                        Oxalis
                        Carnation
Weed
                        Taro
                    

should be:

WEED
SPECIES
                    
                        Watsonia
                        Oxalis
                        Carnation
Weed
                        Taro
                    



  
Because of the repetition of  things like  it
is not validating.  The first section (only bit actually with pages)
looks good and works.
The example on A List Apart only dealt with subitems in the first
section  so I am not sure if I am meant to put in "subactive",
"current" and so on for every section or not.
For example, in the line  Projects, should that be
Projects?
Am I meant to put in  at the start of every
sub-section?
  

  
.
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] Nested List Problem

2008-10-23 Thread Anthony Ziebell




Hi Lynette,

The first list has a nested list correctly inside of the list item,
however your subsequent list items end the list item element before the
new nested list begins...

e.g:

WEED
SPECIES
                    
                        Watsonia
                        Oxalis
                        Carnation
Weed
                        Taro
                    

should be:

WEED
SPECIES
                    
                        Watsonia
                        Oxalis
                        Carnation
Weed
                        Taro
                    



Lynette Smith wrote:
Good
afternoon
  
Am using Russ Wheatley's Simple Nested Rollover List from A List Apart.
  

                    
                        HOME
                    
                        Operation
                        Projects
                        Committee and Members
                    
                    
                    
                WEED
SPECIES
                    
                        Watsonia
                        Oxalis
                        Carnation
Weed
                        Taro
                    
            
                PUBLICATIONS and so on...
  
Because of the repetition of  things like  it
is not validating.  The first section (only bit actually with pages)
looks good and works.
The example on A List Apart only dealt with subitems in the first
section  so I am not sure if I am meant to put in "subactive",
"current" and so on for every section or not.
For example, in the line  Projects, should that be
Projects?
Am I meant to put in  at the start of every
sub-section?
  
Thanks!
  
Lyn
  
  www.westernwebdesign.com.au
Perth, Western Australia
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




Whether _javascript_ is OOP is kind of a matter of
taste, rather than definition (Because there is no definition)
Agreed, hence the diverse arguments for / against,
and no way everyone would be able to agree on it. Perhaps we need to
write a standard on OO.

Thanks,
Anthony.

Breton Slivka wrote:

  On Fri, Oct 24, 2008 at 11:00 AM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:
  
  
A 'superset' of ECMA3 which is not fully compliant. Right...


  
  


I think you're confused. Maybe you you're thinking of the w3c dom-
Which is a seperate standard and topic from _javascript_/ecmascript.
All implementations of _javascript_ in all the current browsers are
fully Ecmascript edition 3 compliant, so far as I'm aware. If you have
additional information about specific incompatibilities, I would be
extremely interested.


On Fri, Oct 24, 2008 at 9:01 AM, Anthony Ziebell
<[EMAIL PROTECTED]> wrote:
  
  
Hi Brett,

_javascript_ is commonly referred to as 'object-orientated' but really,
_javascript_ is 'prototype-based'. They do have different meanings, but have
some similarities...


  
  
A language's method of inheritence is orthogonal to (has nothing to do
with) whether the language is object oriented. Inheritance is an OO
idea, so the fact that _javascript_ has inheritence of any kind pretty
well cements that it at least has object oriented capabilities. But it
goes further than that, because all values in _javascript_ inherit from
Object, and can be treated as objects, making _javascript_ a fully
object oriented language. It is not an imperative language with OO
features tacked on, like php5. _javascript_ is OO from the ground up.

The tricky thing here, and the part that I think is confusing you, is
that most languages described as OOP languages include an entity
called "Class" that _javascript_ doesn't appear to have. You might draw
from this the conclusion that if a language doesn't have "class", then
it is not OOP. Truth: "class" is just a random concept that quite a
lot of language designers happened to fixate on. "Class" is not
central to OOP. Object Orientation is *not* a computer science concept
with solid foundations in mathematics and philosophy. There is *no*
formal definition for what OOP is. There is no universally agreed on
method for determining whether something is or is not OOP.  OOP was
just an idea from some guy named Alan Kay, that he used as the basis
for his language SmallTalk. He designed SmallTalk that way because it
felt right, and he thought that it saved time. The concept was useful
enough that it became popular. This makes OOP more of a meme than a
scientific theory, as such. read more here:
http://users.ipa.net/~dwighth/smalltalk/byte_aug81/design_principles_behind_smalltalk.html


A later object oriented programming language called SELF showed that
classes were not necessarily the most important concept about Object
orientation. The most useful aspect of object orientation
historically, has been the bundling of code with the data it operates
on. Inheritence has recently been shown to be somewhat less important
and useful than it's been seen to be in the past. (deep inheritence is
bad practice in JAVA, for instance, in favor of interfaces). Alan Kay
once expressed surprise at how fixated on classes many later
programming languages have become, as he saw his concept of "message
passing" to be the most important aspect of the design.

_javascript_ is a language which is well documented to be a mashup
between 3 languages. It's a combination between SELF (Object
orientation, and prototype based inheretence), with scheme (functions
as first class values), dressed up with JAVA like syntax. (curly
braces)

_javascript_ contains all the important and useful parts of the object
orientation meme.  Since _javascript_ everything in _javascript_ is an
object- including functions, you can bundle code along with data into
a single object, storing functions as values on the object. Objects
delegate missing properties and methods to their prototypes, providing
a scheme for direct instance-to-instance inheritence which mimmicks
message passing.

So there you have it. Whether _javascript_ is OOP is kind of a matter of
taste, rather than definition (Because there is no definition). It's a
bit like pondering whether Piet Mondrian was an artist, because he
didn't paint pictures of "real" things. Of course he is, but it's
confusing because Mondrian was unlike any other artist anyone had ever
seen. In the same way, _javascript_ is an OO language unlike any other
OOP language most people have seen. (most people haven't seen SELF, or
newtonscript, or io, or REBOL)


*

Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




A 'superset' of ECMA3 which is not fully compliant.
Right...

liorean wrote:

  2008/10/24 Anthony Ziebell <[EMAIL PROTECTED]>:
  
  
Forgot to clarify one thing: ECMAScript is fully OO in my opinion, however
_javascript_ is not a full implementation of ECMAScript, unfortunately.

  
  
_javascript_ is a superset of ECMAScript. If ECMAScript is opbject
oriented, so is _javascript_.

As I mentioned, classes are not necessary or even important for a
language to be object oriented. Prototypal delegation is just one of
several methods of implementing inheritance in an object oriented
language. It doesn't make the language any less object oriented.

Please go have a read through this:http://www.paulgraham.com/reesoo.html>

_javascript_ fulfills plenty of them.




2008/10/24 Brett Patterson <[EMAIL PROTECTED]>:
  
  
Well, I read http://en.wikipedia.org/wiki/Prototype-based_programming and
http://en.wikipedia.org/wiki/Object-based_languages , and I see your points.
But, for arguments sake, let's say it is not prototype-based. Would it be
object-oriented, like Java or C++, or object-based?

  
  
Depends on what definition you use for either of those terms. Object
orientation? Java and C++ fail to live up to some of the possible
criteria for a language being object oriented. Object based? Do you
mean that every value is an object? If so, _javascript_ is that. Do you
mean that it uses prototypal inheritance? Then it is that. Do you mean
it has a limited form of object orientation without inheritance or
polymorphism? If so it is not, because it has those features.

  
  
I read these as well:

http://en.wikipedia.org/wiki/Object-based

and

http://en.wikipedia.org/wiki/Category:Object-based_programming_languages

What's worst is is that now I am confused. This seems too contradictory,
based on the articles linked.

  
  
That's because the definitions are fuzzy and broad. A language is
better described by what type of programming it facilitates than by
what it can be considered to be, anyway. _javascript_ uses prototype
delegation. That means that properties are looked up in the object
itself, and then in the prototype of the object, and so on untill the
top of the prototype chain has been reached. It's a mode of direct
implementation-to-implementation inheritance. Classical inheritance on
the other hand sets up a chain or tree of classes, and objects are
instances of those classes. In other words objects do not inherit
directly from other objects but rather from this chain or tree of
classes - a template chain if you want, though in some of these
langauges the word template means something different. These languages
typically also have a type-to-class correspondence and a deep type
hierarchy system. Some have a separate interface scheme that is about
object and function signatures connected with the type system but that
does not allow code inheritance.
Some have only this and no implementation inheritance mechanism.
  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




You can call it whatever you like, I am / was just
trying to answer your question, based on my experiences and perceptions.

Cheers,
Anthony.

Brett Patterson wrote:
Well,
I read http://en.wikipedia.org/wiki/Prototype-based_programming
and http://en.wikipedia.org/wiki/Object-based_languages
, and I see your points. But, for arguments sake, let's say it is not
prototype-based. Would it be object-oriented, like Java or C++, or
object-based?
  
I read these as well:
  
http://en.wikipedia.org/wiki/Object-based
  
and
  

http://en.wikipedia.org/wiki/Category:Object-based_programming_languages

  
What's worst is is that now I am confused. This seems too
contradictory, based on the articles linked.
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




Forgot to clarify one thing: ECMAScript is fully OO
in my opinion, however _javascript_ is not a full implementation of
ECMAScript, unfortunately.

Thanks,
Anthony.

Brett Patterson wrote:
I
didn't see that. :) But as I have read in other areas, _javascript_ is
based on ECMAScript. And Object-oriented programming (OOP) is a
  programming paradigm that uses "objects" and their interactions
to design applications and computer programs. Is this correct?
  
  On Thu, Oct 23, 2008 at 6:18 PM, Hassan
Schroeder <[EMAIL PROTECTED]>
wrote:
  
Brett Patterson wrote:

I am in the middle of a conversation with this guy who says that
_javascript_ is an object-oriented language. Is he correct? Could you
please site some references?



How about the standard itself? :-)

<http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf>

 Overview
  ...

  ECMAScript is an object-oriented programming language for
  performing computations and manipulating computational objects
  within a host environment.

HTH,
-- 
Hassan Schroeder - [EMAIL PROTECTED]
Webtuitive Design ===  (+1) 408-621-3445   === http://webtuitive.com

                         dream.  code.




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




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




Sure, that's what an "object" is. But OOP is not
just about an "object". There is a lot more involved.

Don't get me wrong, I am a fan of _javascript_ - but it has faux classes
and objects, and this is why my opinion of _javascript_ is that it is
prototype, not object.

Cheers,
Anthony.

Brett Patterson wrote:
I
didn't see that. :) But as I have read in other areas, _javascript_ is
based on ECMAScript. And Object-oriented programming (OOP) is a
  programming paradigm that uses "objects" and their interactions
to design applications and computer programs. Is this correct?
  
  On Thu, Oct 23, 2008 at 6:18 PM, Hassan
Schroeder <[EMAIL PROTECTED]>
wrote:
  
Brett Patterson wrote:

I am in the middle of a conversation with this guy who says that
_javascript_ is an object-oriented language. Is he correct? Could you
please site some references?



How about the standard itself? :-)

<http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf>

 Overview
  ...

  ECMAScript is an object-oriented programming language for
  performing computations and manipulating computational objects
  within a host environment.

HTH,
-- 
Hassan Schroeder - [EMAIL PROTECTED]
Webtuitive Design ===  (+1) 408-621-3445   === http://webtuitive.com

                         dream.  code.




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




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




Your point's are valid - my only real point here is
that it is more of a prototype-based language, than object.

Thanks,
Anthony.

liorean wrote:

  
Brett Patterson wrote:
I am in the middle of a conversation with this guy who says that _javascript_
is an object-oriented language. Is he correct? Could you please site some
references?

  
  
There's many different things people mean when they talk about object
orientation. If they talk about the Java mode of object orientation,
then _javascript_ isn't object oriented but is pretty close. On the
other hand, if they talk about the Self mode of object orientation,
then _javascript_ is definitely object oriented, while Java has it's
flaws. There is no single definition that people agree on, only an
arbitrary number of points on a list where no single language uses a
metaphor that covers them all.

Everything in _javascript_ is an object. Objects inherit in a run time
delegation fashion from other objects in the prototype chain, a model
inspired by Self. Types are placed on values, not variables, but
everything has a type. Encapsulation comes from closures.

2008/10/24 Anthony Ziebell <[EMAIL PROTECTED]>:

  
  
_javascript_ is commonly referred to as 'object-orientated' but really,
_javascript_ is 'prototype-based'. They do have different meanings, but have
some similarities...

  
  
Class based inheritance is not necessary for a language to be object
oriented. Prototype delegation as mode of inheritance is less common
as language designs go, but it's just as powerful if not more so.

Above all, _javascript_ is an object based language.

It has imperative and functional properties, it has a
statement-_expression_ curlies-and-semicolons, it has object orientation
and higher order programming features, it has reified closures and
lexical scope with a few dynamic scope features etc. It's a hybrid
language. But it does have object orientation.
  




***List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




Hi Brett,

_javascript_ objects are augmented with prototype. It should be noted
that the example you provided also notes that the dot notation is
merely syntactic sugar - meaning it is just a little bit of eye-candy
which provides no extra functionality.

_javascript_ objects are merely arrays. This is why they are not real
objects. Objects and arrays are totally different.

Cheers,
Anthony.

Brett Patterson wrote:
Hi
Anthony,
  
What about this link? http://en.wikipedia.org/wiki/_javascript_
Under Features --> Dynamic Programming?
  
  On Thu, Oct 23, 2008 at 6:01 PM, Anthony
Ziebell <[EMAIL PROTECTED]>
wrote:
  

Hi Brett,

_javascript_ is commonly referred to as 'object-orientated' but really,
_javascript_ is 'prototype-based'. They do have different meanings, but
have some similarities...

http://en.wikipedia.org/wiki/Prototype
http://en.wikipedia.org/wiki/Object-oriented_programming

Cheers,
Anthony.



Brett Patterson wrote:
I
am in the middle of a conversation with this guy who says that
_javascript_ is an object-oriented language. Is he correct? Could you
please site some references?
  
***
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]
***


  
  
  
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] JavaScript clarification please

2008-10-23 Thread Anthony Ziebell




Hi Brett,

_javascript_ is commonly referred to as 'object-orientated' but really,
_javascript_ is 'prototype-based'. They do have different meanings, but
have some similarities...

http://en.wikipedia.org/wiki/Prototype
http://en.wikipedia.org/wiki/Object-oriented_programming

Cheers,
Anthony.

Brett Patterson wrote:
I
am in the middle of a conversation with this guy who says that
_javascript_ is an object-oriented language. Is he correct? Could you
please site some references?
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



[WSG] .NET sites which are XHTML 1.0 strict

2008-10-07 Thread Anthony Milner
Hi,

I was having a *chat* with some .NET developer colleagues and they
challenged me to find a .NET site that achieves XHTML 1.0 strict
compliance. Hoping to prove to them that it can be done.

Does anybody know of some .NET sites which are XHTML 1.0 strict (or even
transitional)?

Thanks,
Anthony

 


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



Re: [WSG] Uppercase Tag Names

2008-09-26 Thread Anthony
It's no wonder students are coming out with such strange ideals. Tell  
him WSG says so.


Regards,
Anthony.

Sent from my iPhone!

On 26/09/2008, at 10:40 PM, Todd Budnikas <[EMAIL PROTECTED]> wrote:

it's irrelevant according to HTML 4 how you write the tags, so on  
one front, your instructor is ok to say you should code that way (as  
it does conform) but you have every right to say that he's  
*incorrect* when saying you "need to so that you can conform to HTML  
4.01". Tough spot to voice your opinion perhaps, but you're not  
wrong, and i would agree about your readability statement which  
might be a good point to make, since it can be written either way.  
Heck, it might be easier to use upper and lowercase:

http://htmlhelp.com/reference/html40/structure.html#elements

Also, attributes *names* (ie. WIDTH) are case-insensitive but  
attribute values may be case-sensitive.





From: "James Jeffery" <[EMAIL PROTECTED]>
Date: Fri, 26 Sep 2008 12:38:39 +0100
To: 
Subject: [WSG] Uppercase Tag Names

I am at university at the moment, and they said to use uppercase  
text for tag names and lowercase for attributes. I have to do it  
because otherwise I will lose a mark.


I disagreed (because it makes the source hard to read) but he said  
you need to so that you can conform to HTML 4.01.


I think this a case of someone reading far to deep into the specs.  
I didn't really want to argue with him because he assumes I know  
nothing. I do know that the source code has become difficult to  
read using that method.


***
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] Google chrome... Coming very soon...

2008-09-02 Thread Anthony

That was heavily talked about accross most topics already.

Regards,
Anthony.

Sent from my iPhone!

On 03/09/2008, at 7:41 AM, tee <[EMAIL PROTECTED]> wrote:



On Sep 2, 2008, at 2:32 PM, [EMAIL PROTECTED] wrote:



Google chrome is available for windows download !

http://www.google.com/chrome


It has no Mac version!  :(

tee


***
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] Google chrome... Coming very soon...

2008-09-02 Thread Anthony

Can't wait to get into the office!!!

Regards,
Anthony.

Sent from my iPhone!

On 03/09/2008, at 7:32 AM, [EMAIL PROTECTED] wrote:



Google chrome is available for windows download !

http://www.google.com/chrome



On Tue  2/09/08 10:18 PM , tee <[EMAIL PROTECTED]> wrote:


On Sep 2, 2008, at 5:24 AM, James Ellis wrote:

Interesting to read the many comments on this. It's utilising

Webkit

as a rendering engine (also behind Safari and Konquerer 4), which

is

BSD and LGPL licensed. In turn Google say they are licensing

Chrome

as Open Source, meaning depending on the actual license, items

like

V8 (http://blogoscoped.com/google-chrome/17) & other bits

(http://blogoscoped.com/google-chrome/38

) can be utilised in other browsers.
Interesting times and certainly more compelling and

forward-thinking

than "Compatibility View" ...
Cheers
James


I really like to see that it magically repairs IE6 broken web, so
that
we can forever moving forward and it helps save IE team from
implementing compatibility view in IE8. Hack!, they might just start

thinking why do we wasting our time on IE8. Rumor has circling in
Technorati, MSN, Diggit that the head of IE team was sending his
resumé to google inc.
As for google, it will win over all big corp that use IE6 for their

intranets. Microsoft CEO Steve Ballmer has finally  realized the
company has lost the web, and hence stopping all attempts trying to

take over Yahoo. Bill Gates steps in, fires his CEO, gathers a group

of talents from outer-space working on a project calls webXsPace,
and
release a press release, claiming: We will prevail, right here from

where we have fallen down!.
15 yeas later, a new web technology emerges that will use no
broadband, no 3G wireless and no monitor but  a pair of optical
glass
or contact lens (good for me as I already wear ones)
As for google, the company has moved its HQ to Mars since 2015.
Oh! I can't wait to download the Chrome.
tee
***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help:
***






***
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] Facebook downgrading support for IE6

2008-09-02 Thread Anthony
This may be acceptable for facebook if thier statistics indicate a low  
amount of IE6 users, however I think this is hardly acceptable for a  
majority of my audience, which includes many proffesionals who still  
run IE6 so they can use company intranets, etc.


I would love nothing more than to not have to worry about IE6 however  
I think that day will be a very long day coming.


Regards,
Anthony.

Sent from my iPhone!

On 03/09/2008, at 7:05 AM, russ - maxdesign <[EMAIL PROTECTED]>  
wrote:


Most schools around here don't even allow win2k on their network  
anymore.


An interesting discussion.

Agree that Facebook is an application and not a website - and an  
absolutely

huge and complex one.

From what I can see, Facebook is doing the right thing...  offering  
full
support for latest browsers and some support (access to content and  
key
functions) for older browsers. - along with information about why  
upgrades

and where to upgrade.

Of more concern is the discussion about simply blocking versions of a
browser (which is nor what Facebook is doing from what I can tell).  
This is

not a good idea!

Ideally, we should aim to provide support to as many devices as we  
can -

whether we are building an application or a website. For many reasons:

1. business - can we afford to cut off 10%, 17%, 25% of our  
audience? While

this number will continue to drop - the number is still high.

2. moral/accessibility - many people who use assistive devices such  
as JAWS
run on IE6 still due to inability, lack of knowledge of how to  
upgrade etc.

Do we really want to cut these people off entirely?

The rules are completely different for intranets and closed  
environments,
but on the web (site or app) we should aim to support everyone - and  
where

needed, provide a lesser but acceptable experience.

2cents
Russ




***
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] E649: The default scripting language must be specified for an intrinsic event:

2008-08-30 Thread Anthony
First of all try to avoid in-line scripting. You could make great use  
of jquery, mootools or any other library.


Make sure to provide an alternative method (buttons, links, etc) to  
make things accessible for javascript disabled browsers, screen  
readers, etc.


Regards,
Anthony.

Sent from my iPhone!

On 31/08/2008, at 10:06 AM, tee <[EMAIL PROTECTED]> wrote:

I looked up the reference from W3C, but all I got is a blurry  
picture that makes my head spins.


I added a meta tag:


No effect.


Example of offenders.

 onchange="window.location.href=this.value">


 



So my question, what fatal effect it has for accessibility if I  
can't get rid of them?


Thanks!

tee





***
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] desktop application usability

2008-07-24 Thread Anthony Ziebell




Naveen,

You are probably better off searching for a language specific standards
group - I'm sure some people can help you here, but most of the
questions posted to this list appear to be web related.


[EMAIL PROTECTED] wrote:

  
  
  

  
  Hi, 
   
  Where can Iearn more about desktop applications
usability
and standards?
   
  Thanking you
  Naveen
Bhaskar 
   
  
  
***
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.cfmUnsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfmHelp: [EMAIL PROTECTED]***



Re: [WSG] Table Cells and display: block

2008-06-03 Thread Anthony Green

Bar charts,

I have a table of data and I would like to use CSS to manipulate it.
FF and Safari have no problem on Mac/Win just IE doesn't alter the display
properties of TDs

Replies from the internal list suggest its another IE Bug


> Do you have a little more context maybe? What is it you're trying to do?
> Sounds a bit odd to display a table cell as a block tbh.

On Mon, Jun 2, 2008 at 6:35 PM, Anthony Green <[EMAIL PROTECTED]> wrote:

>> I've tried Google and the archives but no luck
>>
>> I have an issue with IE not applying display:block to table elements: tr,
>> td, tr etc



-- 
Anthony Green
Client Side Developer
Future Media & Technology for BBC Audio & Music Interactive


http://www.bbc.co.uk/
This e-mail (and any attachments) is confidential and may contain personal 
views which are not the views of the BBC unless specifically stated.
If you have received it in error, please delete it from your system.
Do not use, copy or disclose the information in any way nor act in reliance on 
it and notify the sender immediately.
Please note that the BBC monitors e-mails sent or received.
Further communication will signify your consent to this.



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



[WSG] Table Cells and display: block

2008-06-02 Thread Anthony Green
I've tried Google and the archives but no luck

I have an issue with IE not applying display:block to table elements: tr,
td, tr etc 

Anyone see this before and know a work around ?

Tony




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



[WSG] Web Standards and Design Patterns in Web Applications

2008-05-12 Thread Anthony Green
Does anyone have any guides to developing standards based/accessible web
applications like Basecamp ?

For example a common pattern for website navigation is the tab list of links


Cats
Dogs/li>
Mice


However web applications often copy the navigation pattern from desktop apps
of having the tab to the resource your viewing not a link

# .dogs.htm


Cats
Dogs
Mice


Is the second pattern acceptable ?

Other questions on building web standards applications might be : how do you
direct assistive device users to errors in forms or how do you handle ajax
updates to items on the page.

Any thoughts/blog posts/podcasts on the subject welcome.

Tony




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



[WSG] Flash on top of Flash

2008-02-28 Thread Anthony Milner
Hi,

I have two flash files - 1 contains a flash menu the other contains an
animation. We are trying to position them on top of each other...

The flash menu is contained in a DIV with the following css..

.top_nav {position:absolute; top:0; left:0px; z-index:1000;}

The other flash animation file is contained in an iframe which is
contained in a DIV and the css for both the Iframe and DIV container are
as follows...

#ourrange_flash {width:1000px; height:420px;}
#ourrange_flash iframe {width:1000px; height:420px; padding:0; border:0;
margin:0; z-index:0;}

Firefox loads this page correctly, that is the menu on top of the
animation.

In IE, Safari and Opera the menu loads but appears BEHIND the animation.

I would have thought position:absolute with z-index has authority.

Any help would be greatly appreciated.

Regards,
Anthony 


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



[WSG] Your email requires verification verify#a6vQxgsxnTQ2Ky73eCXlkHoHksHXd3PV

2005-12-12 Thread anthony
Due to the volume of Spam around the internet, and in the interests of keeping 
the internet as spam-free as possible, unfortunately, the message you sent 
requires that you verify that you are a real live human being and not a spam 
source.

To complete this verification, simply reply to this message and leave the 
subject line intact.

Full apologies to those legitimate messages that are being verified, but, you 
will only need to verify once! Thanks for your assistance in helping to clear 
the internet of spam!

The headers of the message sent from your address are show below:

>From wsg@webstandardsgroup.org Mon Dec 12 12:04:07 2005
Received: from [216.119.112.83] (helo=mail.webboy.net)
 by spirit.premierservers.com with esmtp (Exim 4.52)
 id 1Elr5p-0001Il-0y
 for [EMAIL PROTECTED]; Mon, 12 Dec 2005 12:04:07 -0500
From: 
To: 
Subject: digest for wsg@webstandardsgroup.org
MIME-Version: 1.0
Content-Type: multipart/mixed;
charset=Windows-1252;
boundary=SM_c877dea0-6c92-451d-af83-7fb727368263
Date: Tue, 13 Dec 2005 03:45:46 1100
message-id: <[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] Criticisms of Internet Explorer

2005-10-07 Thread Anthony Timberlake
Very nice find, I was just blogging about why I think IE is a lost cause and this is perfect.On 10/8/05, Chris Blown <
[EMAIL PROTECTED]> wrote:G'day

Came across this the other day;

http://en.wikipedia.org/wiki/Criticisms_of_Internet_Explorer

Cheers
Chris

-- Anthony TimberlakeCo-Owner of StaticHost Internet Services - http://www.statichost.co.ukWhatever Tech - News and Community - 
http://www.whatever-tech.com


[WSG] Jroller vs. Movable Type

2005-08-01 Thread Anthony Zeoli
Can anyone tell me what the differences are between a Java based blogging
tool and a php/mysql perl based one?

The company I work for is looking into Jroller, because some of our apps are
Java based and we might want to integrate down the road, but I'm not sure
Jroller is all that well supported...I've been doing some research and I'm
not finding any real threads on a review of the software.

If you have any info, I'd appreciate it.


-- 
Sincerely,

Anthony P. Zeoli
Founder
Netmix.com
333 86th Street, Apt 2C
Brooklyn, NY 11209-5051
Tel: 917-705-4700
email: [EMAIL PROTECTED]
web: http://www.netmix.com
AIM & MSN: djtonyz
Yahoo: anthonyzeoli
ICQ: 251999694


**
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] correct use of BR tag

2005-07-27 Thread Anthony Cartmell

I tested it with Fangs to see what a screen reader would probably say
and "The cat isin the kitchen" came out as "The cat is in the
kitchen".

Personally I don't leave a space before or after


I'd go for no space either side of the tag. According to the HTML spec,  
the  tag forces a line break, which is whitespace, so anything that  
strips it out should replace it as such.


Multiple white space is collapsed ("user agents should collapse input  
white space sequences when producing output inter-word space") so both  
before and after spaces are unnecessary.


Anthony
--
www.fonant.com - hand-crafted web sites

**
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] My life as an 800x600 leper (was: Site Check: Broadleaf)

2005-07-26 Thread Anthony Cartmell

I couldn't agree with you more.  If a web designer believes they are
worth their salt then they should make their designs accessible on
devices when viewed at 800 x 600 pixels... it's a basic rule surely?


Me too. I like my sites to work well on mobile phones and PDAs too - where  
a screen as big as 800x600 seems like luxury!


HTML was designed to work as a flexible presentation medium. I hate the  
rigidity of making it work like paper :)


Cheers!

Anthony
--
www.fonant.com - hand-crafted web sites

**
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] Learning The DOM

2005-07-18 Thread Anthony Cartmell

Jeremy,


How much JavaScript do you know?


Some, but not much. Mostly learnt from hacking other people's scripts to  
get them to do what I want them to do. I spend more time Googling than  
writing Javascript code from memory.



What kind of things about DOM Scripting need clarifying?


Examples of best practice, how to avoid browser inconsistencies, common  
coding patterns.


Do you want to see examples of "cool stuff" with a kind of "DOM  
Scripting for dummies" style explanation or more sober articles with a  
more geeky leaning?


More geeky for me please, if I use JavaScript I want to really know it in  
depth. Some cool stuff's fun in between though!


Please share your personal experiences: what's your skill level with  
JavaScript compared to say, CSS or XHTML?


JavaScript: Beginner, have written scripts but don't yet have a good feel  
for the language or the vocabulary. CSS/XHTML expert, have a good feel for  
the language, don't need references much any more, starting to delve  
deeper into more subtle discussions.



What's your opinion of JavaScript?


Very useful (almost essential?) for web application UIs, useful as "icing  
on the cake" for web sites (mainly forms). I try to build without it, then  
add it once the XHTML/CSS has done all it can.


Cheers!

Anthony
--
www.fonant.com - hand-crafted web sites

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

2005-07-13 Thread Anthony Cartmell
While googling on the  subject posted yesterday, I found  
this: (http://www.truedoc.com/webpages/intro/index.html)



Has anyone used this service if so what is the consensus, barring the  
in-line styling of the font tags of course?


No, I haven't used it, but I've just had a quick play.

It only works in IE as it needs an ActiveX control. Looks like these fonts  
used to be supported in Netscape 4.x but it's no longer supported in  
Netscape 6+.


Anthony
--
www.fonant.com - hand-crafted web sites

**
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] font-familly: Verdana, Helvetica, sans-serif

2005-07-06 Thread Anthony Cartmell

Bitstream Vera Sans is nice, and free.

Anthony
--
www.fonant.com - hand-crafted web sites

**
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] PNG support

2005-06-16 Thread Anthony Cartmell

Sadly this doesn't work in Opera 8.


Why should it?


For people who use Opera ;)

What I meant was, the page in question doesn't work in Opera 8.

They probably need to tweak their browser-sniffing or something, as, as  
you say, Opera doesn't need anything special to display alpha-channel PNGs.


Cheers!

Anthony
--
www.fonant.com - hand-crafted web sites

**
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] PNG support

2005-06-16 Thread Anthony Cartmell

http://www.youngpup.net/2001/sleight

I don't remember what the problem was that I had with the behavior for
doing this, but I found this JavaScript and it works fine.


Sadly this doesn't work in Opera 8.

Anthony
--
www.fonant.com - hand-crafted web sites

**
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] CSS problems in IE (weird font-size)

2005-06-02 Thread Anthony Cartmell

Nanna,


Has any one encountered problems with IE when using
CSS style sheets?


Yes, _lots_!!

Do you have a DTD declaration at the top of your HTML?  It can make quite  
a difference to how IE works with CSS, especially with tables and  
percentage font sizes.  And older versions of IE do different things to  
IE6 too.


Can't wait for the real IE7, and really hoping it'll conform to CSS as  
well as Opera and Firefox etc.


Anthony
--
www.fonant.com - hand-crafted web sites

**
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] CDATA and html tidy

2005-06-01 Thread Anthony Cartmell

Thanks Bert, but I'm finding that a simple import such as:
 
@import url("../CSS/primary.css");



What about  - or are  
you using the @import for browser-hacking reasons?


The CDATA is needed because you have quote characters, which aren't  
allowed in XHTML apart from around tag attribute values.


I think.

Anthony
--
www.fonant.com - hand-crafted web sites

**
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] (Apology) Most weird spam I ever received

2005-05-08 Thread Anthony Yeung
I suggest you see a sleep-walking specialist, :P

Anyways, If you're curious if you're on a spam list, I suggest you do
a search for your email on some search engines, and usenet groups.

Anthony Yeung


On 5/8/05, tee <[EMAIL PROTECTED]> wrote:
> Let's see! I am told I have spilt personality, therefore it's hard to tell
> if I am not, because I might spam people' inboxes when I am in sleep walking
> state  :P
> 
> tee
> > Are you a spammer ? :)
> >>> My sincere apology. This email isn't supposed to be sent here.
> >>
> 
> **
> 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] Nested Links?

2005-04-24 Thread Anthony Timberlake
Yeah, I agree with James.  What would be the need for the nesting?  It is sort of loosing the reasoning for staying under the web standards.
On 4/24/05, James Ellis <[EMAIL PROTECTED]> wrote:
HiWhy wouldn't you just do this if you want to link separate pages?This is a RgdsJamesOn 4/23/05, The Bo$$ <[EMAIL PROTECTED]> wrote:> Is nesting one link inside another semantically incorrect? Such as > href="" is a > --> Dante> dantecubed.com: Web Design, Development & more> 
[EMAIL PROTECTED]**The discussion list for  http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfmfor some hints on posting to the list & getting help******
-- Anthony TimberlakeCo-Owner of StaticHost Internet Services - http://www.statichost.co.ukHead Director at Spike Radio - 
http://www.spikeradio.org

Re: [WSG] IE7 update

2005-04-23 Thread Anthony Yeung
This is great news, let's hope that the CSS fixes are as good as they
say they are. I'm definetely looking forward the beta release.

> Wouldn't be a strange world if we didn't curse developing for IE?
We'd miss all the fun. :-)

On 4/23/05, Kornel Lesinski <[EMAIL PROTECTED]> wrote:
> 
> > https://blogs.msdn.com/ie/archive/2005/04/22/410963.aspx
> > They claim png support and the end of the peekaboo bug, for a start!
> >
> > Exciting stuff!
> 
> Not really. "Improving css support consistency" means
> IE is going to be *consistently broken*.
> 
> --
> regards, Kornel Lesiński
> 
> **
> 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] diagram that respects W3C standard usign CSS

2005-04-23 Thread Anthony Yeung
I believe that he is trying to create the majority of the diagram
using CSS, i.e. all the boxes and connecting lines. Use of graphics
would be limited to only small bmp arrows.

On 4/23/05, Lee Jorgensen <[EMAIL PROTECTED]> wrote:
> I might be missing something here but If you're allowed to use images
> why don't you just use any one of a number of graphics packages to
> create the diagram?
> 
> Lee
> 
> Lukasz Grabun wrote:
> 
> >On 4/23/05, Jorge Laranjo <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> >>I'm with a little trouble to make a diagram (for a company) that needs
> >>to be made usign only XHTML, CSS and possible images.
> >>Well, does any one knows an example, or a "how-to" about this issue?
> >>
> >>
> >
> >http://www.surfare.net/~toolman/temp/diagram.html
> >
> >
> >
> 
> **
> 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] Please review http://www.mad4f1.com

2005-04-21 Thread Anthony Timberlake
Very nice site presentation and I love the way that everything fits in with the theme.  Nice use of standards.  Very nice site.
On 4/21/05, Anthony Yeung <[EMAIL PROTECTED]> wrote:
The site looks good, works well with Safari, Mozilla, FireFox,Netscape, IE, and Opera. Good content layout, and best of all no
tables.- AnthonyOn 4/21/05, Pixel n Paints <[EMAIL PROTECTED]> wrote:> Hi guys,>> I am freelancer from INDIA... I have designed a website
> http://www.mad4f1.com for one of my client … CSS JS & HTML with NO> TABLE tags… to make it more search engine friendly...>> I tried to make it ... cross browser compatible
> But I am facing problem with footer in IE..>  a DIV TAG with Class= footer gets overlaid.… not always but sometimes.>> Need suggestions, feedback…>> --> Thanks,> Sachin K
>-- Anthony TimberlakeCo-Owner of StaticHost Internet Services - http://www.statichost.co.ukHead Director at Spike Radio - 
http://www.spikeradio.org

Re: [WSG] Re: flash css hybrid example

2005-04-21 Thread Anthony Yeung
I must say this site has a very well designed layout and wonderful
structure. I esp. like the Flash implementation.

- Anthony

On 4/21/05, Kvnmcwebn <[EMAIL PROTECTED]> wrote:
> Heres a good example of a hybrid site that uses flash for presentation and
> css for content as someone had requested earlier.
> 
> http://www.bensaunders.com/blog_archives.php
> 
> -Kvncmwebn
> 
> **
> 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] Please review http://www.mad4f1.com

2005-04-21 Thread Anthony Yeung
The site looks good, works well with Safari, Mozilla, FireFox,
Netscape, IE, and Opera. Good content layout, and best of all no
tables.

- Anthony

On 4/21/05, Pixel n Paints <[EMAIL PROTECTED]> wrote:
> Hi guys,
> 
> I am freelancer from INDIA... I have designed a website
> http://www.mad4f1.com for one of my client … CSS JS & HTML with NO
> TABLE tags… to make it more search engine friendly...
> 
> I tried to make it ... cross browser compatible
> But I am facing problem with footer in IE..
>  a DIV TAG with Class= footer gets overlaid.… not always but sometimes.
> 
> Need suggestions, feedback…
> 
> --
> Thanks,
> Sachin K
>


Re: [WSG] safari list question

2005-04-20 Thread Anthony Yeung
You have something wrong with your padding declaratives. Replace it with this:

ul li {list-style-type:none; background: url(bg-bullets.png) no-repeat
0 5px; padding:12px;}

Once you apply full padding around the entire image, everything should
work properly.

- Anthony

On 4/20/05, Drake, Ted C. <[EMAIL PROTECTED]> wrote:
>  
>   
> 
> Hi All  
> 
> I came across a safari display issue that I don't understand. It's for an 
> intranet, so I can't send you to the page to view code.  
> 
>
> 
> The page looks good in Windows Firefox and IE6 and is valid xhtml 1.0 
> transitional.  
> 
>
> 
> I'm using a sprite to display various list bullets; the sprite gives about 
> 50px space between each bullet to avoid having the extra bullets appear when 
> text is resized, so this shouldn't be an issue.  
> 
>
> 
> However, in Safari, the bullet is appearing, as it should, on a list and then 
> immediately above bullet is a half bullet. This is really odd. It is 
> repeating the background image.  
> 
>
> 
> Here's the style:  
> 
> ul li {list-style-type:none; background: url(bg-bullets.png) no-repeat 0 5px; 
> padding-left:12px;}  
> 
>
> 
> Here is a screenshot of the problem: 
> http://tdrake.net/test/safari-bullets.gif  
> 
>
> 
> Here is the bullet sprite: http://tdrake.net/test/bg-bullets.png   
> 
>
> 
> Has anyone else seen this before?  
> 
>
> 
> Thanks  
> 
>
> 
> Ted Drake  
> 
> http://www.tdrake.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] making beautiful uri's

2005-04-20 Thread Anthony Yeung
If you're using an Apache Server, you can do this via a .htaccess file

Here's how you code it:


    ForceType application/x-httpd-php


Replace "page1" with the file name of your choice. Save page1 with all
your PHP coding as a file with *no* file name extensions, as Apache
will automatically add the PHP extension once your add in the
"ForceType" function.

- AnthonyOn 4/20/05, Chris Stratford <[EMAIL PROTECTED]> wrote:
Simply make this file in your root directory:.htaccessinside that include:ReWriteEngine OnThen for every new link you want, add this:ReWriteRule ^linktofile.html$ phpfile.php
That will point http://www.yoursite.com/linktofile.html -> phpfile.phpYou can use REGEX in this, eg:ReWriteRule ^linktofile_([0-9]+).html$ phpfile.php
?id=$1That will link:http://www.yoursite.com/linktofile_55.html -> phpfile.php?id=55etc...For more info, reply to me offlist :)
Mr Bean wrote:>I'm still used to most of this web stuff and have>spent most of my time with the design part of web>design.  But the fact that I have to use a '.php'>after in almost all my urls on my site really bugs me.
>>Can anybody point me to a reference that can tell me>how to config it so that 'http://abc.def/hij' can>point to 'http://abc.def/hij.php
'?  I'm using a 1.3.x>Appache server.>>I would be really greatful if I could also learn how>to rewrite 'http://abc.def/hij/klm/nop' as>'
http://abc.def/hij.php?klm=nop' but maby that's>asking too much.>>__>Post your free ad now! 
http://personals.yahoo.ca>**>The discussion list for  http://webstandardsgroup.org/>> See 
http://webstandardsgroup.org/mail/guidelines.cfm> for some hints on posting to the list & getting help>**>
>--Chris Stratford[EMAIL PROTECTED]http://www.neester.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] Mystical belief in the power of Web Standards, Usability, and tableless CSS

2005-04-20 Thread Anthony Yeung
An interesting peiceOn 4/20/05, Paul Bennett <[EMAIL PROTECTED]> wrote:
>>
Yep, he probably is right about that , but he's wrong about something
else  ". My home page uses >> web standards and it's no
monument to great design.>> "...
Hah! But theres only *88* errors, so its not that bad ;)**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] Re: Automated accessibility testers

2005-04-13 Thread Anthony Timberlake
I am working on a site for web standards, it will include articles and
the such.  Contact me on my main e-mail ([EMAIL PROTECTED])
if you are interested.  Thanks.


On 4/13/05, Shane Shepherd <[EMAIL PROTECTED]> wrote:
> Cole,
> 
> This is my first time to reply to anything on the list, so I hope I am
> doing it correctly:)
> 
> I recommend "Constructing Accessible Web Sites" published by glasshaus. 
> This book focuses on the Section 508 Standards and the WAI, but filters
> all the legalese.  It also gives code examples and application examples. 
> I'm about half-way through it right now, and it has made a huge difference
> in the way I write code.
> 
> Shane
> Lubbock, TX
> 
> > I've never tried testing my code for accessibility before but I'm
> becoming
> > more interested in the topic. After some web-research, I've found a
> > mountian of information/guidelines/priority checkpoints (etc., etc.) to
> > wade through and consider. My eyes are glazing over.
> >
> > 
> >
> > First question: Is there a site anywhere that can tell me (clearly and
> > concisely) something like:
> >
> > To achieve section 508 compliance you have to: 1) do this, 2) do that, 3)
> > do the other thing.
> >
> > Most of the stuff I've seen is very heavy on reasons, but somewhat light
> > on the "you just need to include this, in this way" type of information.
> >
> > --
> >
> > Second question:
> >
> > Just as a test, I ran one of my pages through a site called the Cynthia
> > Says Portal (http://www.contentquality.com/Default.asp)
> >
> > According to the Section 508 report option (as well as the WCAG -
> Priority
> > 1,2,3 option) the pages I submitted to the validator all "passed"
> > according to the validator's result list.
> >
> > Well, that made me smile - but also wonder at the same time.
> >
> > Are these kind of sites a reliable way to verfiy code for Accessibility
> > for Section 508 and/or WCAG Checkpoints?
> >
> > Like, if a client were to say to me "Is the site 508 compliant?" can I
> > say, "well, yeah, the Cynthia Says portal reported that it was. Good
> > enough for me."
> >
> > Well, IS THAT GOOD ENOUGH?
> >
> > Is there a better on-line validator I should be running my pages through
> > vs Cynthia Says? Since I've become interested in this issue , I want to
> > start off on the right foot in order to make sure these automated,
> > web-based results are telling me what I need to hear.
> >
> > Bottom line is that I guess it'ss hard for me to believed that I've
> > "aced-it" on the first time out.
> >
> > Any and all input greatly appreciated.
> >
> > Cole Kuryakin
> > Subic Bay, Philippines
> >
> 
> **
> The discussion list for  http://webstandardsgroup.org/
> 
>  See http://webstandardsgroup.org/mail/guidelines.cfm
>  for some hints on posting to the list & getting help
> **
> 
> 

-- 
Anthony Timberlake
Co-Owner of StaticHost Internet Services - http://www.statichost.co.uk
Head Director at Spike Radio - http://www.spikeradio.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] Web standards as a selling point?

2005-04-12 Thread Anthony Timberlake
I find that customers do not care about the standards, they just care that the end user can use it.  It's like where the bun came from to the hot dog buyer.
On Apr 12, 2005 11:22 AM, Michael Wilson <[EMAIL PROTECTED]> wrote:
Jonathan Bloy wrote:> I like this approach and it is pretty much the one I take.  I should> mention that Web Design is more of a hobby for me.  So, I've only had a> few clients of my own.  But I wonder about the need to go into detail> with clients about web standards.Hi,I think you have to be able to read your clients to make this decision.Some clients need or want to be heavily involved in a project, whileothers just want the site up and running and they don't really care howyou go about doing that.> I think web standards are important to mention and if the client asks> more about them you can certainly go into detail.  But does your plumber> or electrician go into long explanations about the standards they use> when they're working for you?  When I hire a professional I'm paying> them to use their knowledge and expertise to choose the best "standards"> that are right for the job, not to ask me what techniques I think they> should use.Plumbers and electricians, are required by law to perform services tocertain standards and to work within certain safety guidelines andregulations. Not doing so could jeopardize their business and lead topotential damage claims. Because my expertise in these areas is limitedto turning on a light and taking a shower, I have to rely on the*credibility* of the professional I hire. Rather than research thetechniques used to install a breaker box or fix a leaky pipe, I amforced to research the professionals reputation and rates and then makea decision based on that information--the task of which standard to usehas already been established by persons far more qualified than myself.Unfortunately, the Web is a little less restrictive when it comes to"technique" and technique can vary greatly.--Best regards,Michael Wilson**The discussion list for  http://webstandardsgroup.org/See http://webstandardsgroup.org/mail/guidelines.cfmfor some hints on posting to the list & getting help**-- Anthony TimberlakeCo-Owner of StaticHost Internet Services - http://www.statichost.co.ukHead Director at Spike Radio - http://www.spikeradio.org

Re: [WSG] Styling Forms

2005-04-05 Thread Anthony Timberlake
I think that styling forms is very nice addon to any site.  Who wants to look at a dull white area on a black site?  Not me...
On Apr 5, 2005 7:06 AM, Trusz, Andrew <[EMAIL PROTECTED]> wrote:
-Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] OnBehalf Of Lachlan HardySent: Tuesday, April 05, 2005 1:52 AMTo: wsg@webstandardsgroup.orgSubject: Re: [WSG] Styling Forms[EMAIL PROTECTED] wrote:> Well, it seems that styling the actual form elements is the way to go,and  > certainly appears to be ideal for simple forms.I use FIELDSET, FORM etc as per other people's suggestions above, but mypersonal favourite is wrapping the relevant form field inside the LABELelement. Makes styling seriously easyAn invaluable reference is Cameron Adams's Accessible, Stylish Form Layout:http://www.themaninblue.com/writing/perspective/2004/03/24/*It may make styling easier but incorporating form controls in labels has adifferent meaning than associating a label and a form control. For onething, it isn't usable for those choosing a table layout for forms. Nor isit possible to use an incorporated form control with multiple labels.This is what the html 4.01 specs have to say about the meaning of labels andtheir relationship to form controls:The LABEL element may be used to attach information to controls. Each LABELelement is associated with exactly one form control.The for attribute associates a label with another control explicitly: thevalue of the for attribute must be the same as the value of the id attributeof the associated control element. More than one LABEL may be associatedwith the same control by creating multiple references via the for attribute.This example creates a table that is used to align two text input controlsand their associated labels. Each label is associated explicitly with onetext input:            This example extends a previous example form to include LABEL elements.http://somesite.com/prog/adduser" method="post">                   Male    Female       To associate a label with another control implicitly, the control elementmust be within the contents of the LABEL element. In this case, the LABELmay only contain one control element. The label itself may be positionedbefore or after the associated control.In this example, we implicitly associate two labels with two text inputcontrols:  First Name  Last NameNote that this technique cannot be used when a table is being used forlayout, with the label in one cell and its associated control in anothercell.When a LABEL element receives focus, it passes the focus on to itsassociated control. See the section below on access keys for examples.Labels may be rendered by user agents in a number of ways (e.g., visually,read by speech synthesizers, etc.)http://www.w3.org/TR/html4/interact/forms.html#edef-LABELUse what you want, but use it correctly.drew**The discussion list for  http://webstandardsgroup.org/See http://webstandardsgroup.org/mail/guidelines.cfmfor some hints on posting to the list & getting help******-- Anthony TimberlakeHead Director at Spike Radiohttp://www.spikeradio.org

Re: [WSG] IE7 isn't going to CSS2

2005-03-24 Thread Anthony Timberlake
That's what I would expect from Microsoft, they are always behind, and
then when they realize that they need to update, they just copy
someone else *ehh hmm, new MSN site*.


On Thu, 24 Mar 2005 08:41:01 +1200, Rebecca Cox
<[EMAIL PROTECTED]> wrote:
> Again, apologies if this has been posted previously, but there is a
> somewhat kinder view of this on Eric Meyer's blog @
> 
> http://meyerweb.com/eric/thoughts/2005/03/21/exploring-better-standards-
> support/
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of [EMAIL PROTECTED]
> Sent: Thursday, 24 March 2005 4:13 a.m.
> To: wsg@webstandardsgroup.org
> Subject: Re: [WSG] IE7 isn't going to CSS2
> 
> Surely the world saw this coming. I dont think microsoft will ever be
> able to support n e thing ever. Half of me wonders if they even have the
> talent to create a browser that works. the other half knows they can,
> but realises they wont!
> Shaun Johnson
> 
> - Original Message Follows -
> From: Jamie Mason <[EMAIL PROTECTED]>
> To: "'wsg@webstandardsgroup.org'"
> 
> Subject: [WSG] IE7 isn't going to CSS2
> Date: Wed, 23 Mar 2005 15:26:17 -
> 
> > http://dean.edwards.name/weblog/2005/03/the-reason/
> >
> > Apologies if this has been posted already
> >
> >
> > ==
> > =
> >This email has been scanned for Virus infection by messagelabs.com
> > ==
> > =
> 
> Shaun Johnson
> IT Technician
> Waddesdon CE School
> [EMAIL PROTECTED]
> 
> 
> This email has been sent from the Buckinghamshire LEA system if you have
> cause for complaint regarding the content of this email please contact
> [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
> **
> 
> ******
> The discussion list for  http://webstandardsgroup.org/
> 
> See http://webstandardsgroup.org/mail/guidelines.cfm
> for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Head Director at Spike Radio
http://www.spikeradio.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] validation logos - kitemarks?

2005-02-26 Thread Anthony Timberlake
I recommend creating your own version of the buttons that fits in with
your layout, so it won't stick out as much.


On Sat, 26 Feb 2005 12:49:17 -, designer
<[EMAIL PROTECTED]> wrote:
> Hi all,
> 
> I think that basically we all agree in principle. However, to take a couple
> of points:
> 
> [1] Patrick's :
> 
> >It's a bit like plastering a nice
> > big sticker on a new building saying "built with bob's special concrete
> > mix". As long as the site (or building) performs as it should, customers
> > do not need to know this sort of stuff...they couldn't care less.
> 
> Is that true? I would have thought that any responsible client of the
> builder would like to know that building regs were adhered to.  (i.e.,
> 'standards' are our 'building regulations' :-)   Surely?
> 
> >  Compliance does not necessarily equate high standard.
> 
> Absolutely!
> 
> > Who would be the awarding body? Who would monitor continuous compliance?
> 
> Yep! There's the rub!
> 
> [2] Kim:
> 
> > Maybe the "stickers" wont
> > mean anything to all people but lets hope they'll ask what it is. That
> > way the "stickers" could turn into a kind off "quality stamp" in the
> > long run.
> 
> My (new) feelings exactly.
> 
> [3] Kornel:
> 
> > I like that idea...
> 
> So who (which one of us) is going to do it then? :-)
> 
> [4] Mike:
> 
> A nice summary, thank you.
> 
> Bob McClelland,
> Cornwall (U.K.)
> www.gwelanmor-internet.co.uk
> 
> ******
> The discussion list for  http://webstandardsgroup.org/
> 
>  See http://webstandardsgroup.org/mail/guidelines.cfm
>  for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Co-Owner of StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Mommy I Ate My Veggies

2005-02-24 Thread Anthony Timberlake
I am happy to hear that you have done that.  I hope that it allows you
to improve on your site and what you can do in the web design world!


On Thu, 24 Feb 2005 07:58:05 -0800, Chris Kennon <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I'm sure this constitutes noise, but I had to say after 3 months I've
> finally finished reading the CSS 2.1 specification.  I'm so happy. Have
> a great day/weekend all.
> 
> CK
> ___
> "An ideal is merely the projection, on an enormously
> enlarged scale, of some aspect of personality."
>-- Aldus Huxley
> 
> **
> The discussion list for  http://webstandardsgroup.org/
> 
> See http://webstandardsgroup.org/mail/guidelines.cfm
> for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Co-Owner of StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Site review

2005-02-23 Thread Anthony Timberlake
I got a MYSQL error yesterday, I am not sure if you want to check
this.  I also don't know if it has been reported yet...


-- 
Anthony Timberlake
Co-Owner of StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Site review

2005-02-23 Thread Anthony Timberlake
Yeah, and will that work with all browsers?


On Wed, 23 Feb 2005 12:30:15 +1100, Johnno Shadbolt
<[EMAIL PROTECTED]> wrote:
> > The work is a bit special though because I am using pure XML, somehow 
> > turned to XHTML via XSL.
> 
> I'm not sure that using XML for a complete website is very wise,
> considering we already have the same sort of features in XHTML coupled
> with CSS.
> **
> The discussion list for  http://webstandardsgroup.org/
> 
> See http://webstandardsgroup.org/mail/guidelines.cfm
> for some hints on posting to the list & getting help
> ******
> 
> 


-- 
Anthony Timberlake
Co-Owner of StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] [ADMIN] Site review requests and new Brisbane organiser

2005-02-23 Thread Anthony Timberlake
It's due to the changes made in IE6 and IE7, and the stoppage of IE in Mac's.


On Wed, 23 Feb 2005 11:04:20 +0300, Will Jensen <[EMAIL PROTECTED]> wrote:
> Jack,
> 
> I use both PC and Mac. IE 6 on PC and IE 5 on Mac are different in the
> way they render identical pages.
> 
> Will Jensen
> Moscow, Russia
> [EMAIL PROTECTED]
> On Feb 23, 2005, at 7:48 AM, John Horner wrote:
> 
> > Can I add one more thing to the site review thing?
> >
> > I often see people asking for their site to be checked on "on a Mac",
> > which doesn't really make much sense if you think about it. I can test
> > it for you in the very latest build of FireFox, but that probably
> > isn't what you mean...
> >
> > There are:
> >
> > * browsers which are pretty much identical on Mac and other platforms
> > -- if you've got a problem with Netscape 4 on PC you've almost
> > certainly got it on Mac too
> >
> > * browsers which only exist on Mac, for instance Safari
> >
> > * browsers which have the same names on Mac and PC, for instance IE5,
> > but which are radically different browsers -- don't assume for a
> > second if it works in IE5 on PC it works in IE5 on a Mac
> >
> > so when you ask people to test a site "because apparently it doesn't
> > work on a Mac", it really helps to know what browser is being used by
> > the person reporting the problem.
> > 
> >"Have You Validated Your Code?"
> > John Horner(+612 / 02) 9333 3488
> > Senior Developer, ABC Online  http://www.abc.net.au/
> > 
> > ******
> > The discussion list for  http://webstandardsgroup.org/
> >
> > See http://webstandardsgroup.org/mail/guidelines.cfm
> > for some hints on posting to the list & getting help
> > **
> >
> 
> 


-- 
Anthony Timberlake
Co-Owner of StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Site Review - Another Government site thats Standards Compliant

2005-02-15 Thread Anthony Timberlake
It seems that all of the Australian government sites are trying to
become standard.  Hmm...an underground project?  lol


On Tue, 15 Feb 2005 22:56:09 +1100, Esteban Aguilar
<[EMAIL PROTECTED]> wrote:
> Hi Everyone,
> 
> I will not bore you with a long intro, I'm Esteban Aguilar, I got into
> designing standard compliant sites after attending the web standards
> briefing at UTS on Sep 2nd 2004. After the briefing I joined this
> mailing list and have been reading it ever since.
> 
> With Standards in mind I re-designed our projects website, it can be
> accessed in two ways:
> 
> http://www.communilink.org.au
> or
> http://www.ci.crc.nsw.gov.au
> 
> I would like to know what you standards pros think of design.
> 
> Kind Regards,
> 
> Esteban Aguilar
> 
> --
> No virus found in this outgoing message.
> Checked by AVG Anti-Virus.
> Version: 7.0.300 / Virus Database: 265.8.8 - Release Date: 14/02/2005
> 
> **
> The discussion list for  http://webstandardsgroup.org/
> 
> See http://webstandardsgroup.org/mail/guidelines.cfm
> for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Co-Owner of StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Re: MSN redesign

2005-02-01 Thread Anthony Timberlake
But at least it looks like they were.  It is better than that crowded
horrible page that they used to have.


On Tue, 01 Feb 2005 17:55:56 +0100, Raffaella Biscuso
<[EMAIL PROTECTED]> wrote:
> Anthony Timberlake Scrive:
> 
> > I like it, but it leaves room to improve.  They are a large company
> > and even I can do better than that.  It is nice to see that they are
> > using standards though, not enough sites do that.
> 
> They are not using real standards:
> 
> http://validator.w3.org/check?verbose=1&uri=http%3A//www.msn.com/
> http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http
> %3A//www.msn.com/
> 
>  --
> Raffaella Biscuso
> **
> The discussion list for  http://webstandardsgroup.org/
> 
>  See http://webstandardsgroup.org/mail/guidelines.cfm
>  for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Owner - StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] MSN redesign

2005-02-01 Thread Anthony Timberlake
I like it, but it leaves room to improve.  They are a large company
and even I can do better than that.  It is nice to see that they are
using standards though, not enough sites do that.

On Tue, 1 Feb 2005 13:31:30 -, Mike Foskett
<[EMAIL PROTECTED]> wrote:
> 
> 
>  Nice of them to continue support for Mac IE.
> 
> 
> mike 2k:)2
> 
> 
>   e-mail: [EMAIL PROTECTED]
>   site: http://www.webSemantics.co.uk
> 
> 
> **
> This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they
> are addressed. If you have received this email in error please notify
> the system manager.
> This footnote also confirms that this email message has been swept by
> MIMEsweeper for the presence of computer viruses.
> www.mimesweeper.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
> **
> 
> 


-- 
Anthony Timberlake
Owner - StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Nav Before or After Main Content

2005-01-24 Thread Anthony Timberlake
I like the second one much better!  Very nice.


On Mon, 24 Jan 2005 14:26:46 -0500, Michael Wilson <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> Over the last year or so, I've been steadily pushing for improved use of
> standards within one of my organizations sites. I've moved the site away
> away from table based layouts and implemented CSS for presentation. The
> initial transition (01) was an improvement; however, there are still
> issues with font size and zoom, navigation, headings, forms, and the
> general semantics of the markup that we intend to address.
> 
> One of the issues I wanted to address first was source order versus
> screen arrangement of the various pieces of content. In the current
> version, the content is last in the lineup and I don't feel that is the
> best option. I've worked things out to the point (02) that I can place
> the navigation either first (horizontal example after any promo stuff)
> or after the main content (vertical example at the top of the side-bar).
> My question at this point is: which is a better approach--nav first with
> a skip to content link or nav last with a skip to nav link? I'm inclined
> to think putting the nav last or at least after the main content is
> better for screen readers and such as well as for SEO, but I don't have
> any solid research to back up that opinion. Placing the nav in the
> sidebar also allows for more font scaling than the horizontal option--it
> won't have fly out menus, but I'd rather have a "home page" for each
> main section anyway.
> 
> So what do you guys think?
> 
> 01: http://www.iqmax.com/
> 02: http://www.iqmax.com/iqmaxcss/
> 
> --
> Best regards,
> Michael Wilson
> 
> **
> The discussion list for  http://webstandardsgroup.org/
> 
>  See http://webstandardsgroup.org/mail/guidelines.cfm
>  for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Owner - StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Question about use of flash in a pure css page

2005-01-24 Thread Anthony Timberlake
Flash takes a while to load on slow connections.  I wouldn't use it
due to that fact.


On Mon, 24 Jan 2005 10:45:26 -0500, Tom Livingston
<[EMAIL PROTECTED]> wrote:
> On Mon, 24 Jan 2005 16:03:29 +0100, Sven-Eric Buschgens wrote:
> > Hello,
> >
> > The thing that I want is that either flash isn't reload on a refresh
> > or loading a new content.. of a way to use flash in this
> > situation where it wont be reloaded all the time. Hope that anyone
> > can help me with this.. else I will have to make the page using
> > frames - which is something I dont want to do [a bit stubborn].
> >
> 
> Set up the swf to be passed a variable when buttons are clicked so it
> will jump to the end of the animation and *appear* not to play every
> time.
> -
> Tom Livingston
> Senior Multimedia Artist
> Media Logic
> mlinc.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
> **
> 
> 


-- 
Anthony Timberlake
Owner - StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] content-language

2005-01-24 Thread Anthony Timberlake
I am pretty sure it is for if you have a second language pack on your
computer, the browser will load that before loading your site
(allowing the user to see the page in their foreign tongue).


On Mon, 24 Jan 2005 14:34:33 -, Kornel Lesinski <[EMAIL PROTECTED]> wrote:
> On Mon, 24 Jan 2005 14:06:00 +, john <[EMAIL PROTECTED]> wrote:
> 
> > Can somebody please explain what the "content-language" meta tag is
> > useful for?
> 
> It's not exactly meta tag. It's HTTP header.
> See: http://www.faqs.org/rfcs/rfc3282.html
> 
> > Is it required for validity?
> 
> No.
> 
> >  I have a site that is being translated into 6 languages,so should I
> > include all the languages in the "content-language" tag?
> 
> No, only actual language of file you are sending. See examples in RFC.
> 
> Personally I think that HTML lang (or xml:lang) attributes
> are more appropriate (and precise).
> 
> --
> regards, Kornel LesiÅski
> 
> **
> The discussion list for  http://webstandardsgroup.org/
> 
> See http://webstandardsgroup.org/mail/guidelines.cfm
> for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Owner - StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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] Should we be thankful for IE's non-development?

2005-01-19 Thread Anthony Timberlake
I don't like IE, that's why I really don't care if my site's look good
in it.  But the fact is that people still use IE, and there is a lot
of them, so you have to design for that too, even though my sites all
look much better is Firefox.


On Wed, 19 Jan 2005 14:03:45 +1000 (EST), Rob Unsworth <[EMAIL PROTECTED]> 
wrote:
> On Wed, 19 Jan 2005, Chris Blown wrote:
> 
> > On Wed, 2005-01-19 at 12:20, Chris W. Parker wrote:
> > > David R <mailto:[EMAIL PROTECTED]>
> > >
> > > I don't think so. It'd just be more of the same. Some people would have
> > > old browsers that don't work right and other people would have newer
> > > browsers that do work right. Which browsers they are makes no difference
> > > imo.
> > >
> >
> > I strongly believe that Microsoft are fully aware of their strangle hold
> > and until something like Firefox becomes a significant threat, they will
> > sit by idle without a care in the world and claim that IE is everything
> > their customers wanted.
> 
> You are right about that. Check out this link, and in particular the
> referenced email from Microsoft.
> 
> http://www.linuxpipeline.com/57701967
> 
> --
> Get FireFox >  http://spreadfirefox.com/community/?q=affiliates&id=0&t=1
> 
> Regards,  | Lions District 201 Q3
> Rob Unsworth  | IT & Internet Chairman
> Ipswich, Australia| http://www.lionsq3.asn.au
> -
> 
> 
> **
> The discussion list for  http://webstandardsgroup.org/
> 
> See http://webstandardsgroup.org/mail/guidelines.cfm
> for some hints on posting to the list & getting help
> **
> 
> 


-- 
Anthony Timberlake
Owner - StaticHost Internet Services
http://www.statichost.co.uk
http://www.spikeradio.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
**



  1   2   >