[WSG] add to favorites?

2009-03-25 Thread designer
Does anyone know of a modern, valid, reasonably cross-browser way to provide a link on a page so that a user can add the page to favourites? The only one I can find is IE only: Click a href=javascript:window.external.AddFavorite(' http://www.blablabla.com', 'blabla')here/a to add this site

[WSG] IE8 compatibility mode

2009-03-25 Thread michael.brockington
Hi, One of the very first pages that I tested in the released version of IE8 was: http://www.calcresult.com/reference/text/unicode-reference.html The rendering of that page is slightly broken (at the moment) in IE6 and IE7 in that the right-hand column overlaps some of the content. What confused

Re: [WSG] add to favorites?

2009-03-25 Thread Nathan de Vries
On 25/03/2009, at 11:15 PM, designer wrote: Does anyone know of a modern, valid, reasonably cross-browser way to provide a link on a page so that a user can add the page to favourites? There is no way of doing this across all browsers, so all you're left with are the browsers who have

Re: [WSG] add to favorites?

2009-03-25 Thread David Dorward
designer wrote: Does anyone know of a modern, valid, reasonably cross-browser way to provide a link on a page so that a user can add the page to favourites? As far as I know, Microsoft are the only vendor to have implemented a system for triggering bookmark/favourite adding from a webpage. In

Re: [WSG] IE8 compatibility mode

2009-03-25 Thread Gunlaug Sørtun
michael.brocking...@bt.com wrote: http://www.calcresult.com/reference/text/unicode-reference.html The rendering of that page is slightly broken (at the moment) in IE6 and IE7 in that the right-hand column overlaps some of the content. What confused me though, was that IE8 insisted on

RE: [WSG] add to favorites?

2009-03-25 Thread Patrick Lauke
designer Does anyone know of a modern, valid, reasonably cross-browser way to provide a link on a page so that a user can add the page to favourites? The only one I can find is IE only: I know you're probably asking because a client insists on having it, but...have we not evolved yet beyond

RE: [WSG] IE8 compatibility mode

2009-03-25 Thread James Leslie
If in doubt, place this meta in page head... meta http-equiv=X-UA-Compatible content=IE=edge / ...and the Compatibility view button will disappear in IE8. Using meta http-equiv=X-UA-Compatible content=IE=8 / will also have the same effect (getting rid of the compatibility view button and

RE: [WSG] add to favorites?

2009-03-25 Thread Steve Green
It's not just replicating browser functionality - it's a call to action. As such I think it's perfectly reasonable. Steve -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Patrick Lauke Sent: 25 March 2009 13:36 To:

Re: [WSG] add to favorites?

2009-03-25 Thread Andrew Maben
On Mar 25, 2009, at 10:10 AM, Steve Green wrote: It's not just replicating browser functionality - it's a call to action. But the action you're calling for is indeed a replication of browser functionality. Calling something by another name does not change what it is. So previously

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
As was mentioned, it's a call to action. Those who are familiar with marketing will understand this concept. Also, it a user-friendly way to compel a user to bookmark the site for future reference without jumping through the hoops the browsers require. It's the same principle as putting Call us

Re: [WSG] IE8 compatibility mode

2009-03-25 Thread tee
On Mar 25, 2009, at 4:58 AM, michael.brocking...@bt.com michael.brocking...@bt.com wrote: Hi, One of the very first pages that I tested in the released version of IE8 Sorry for my ignorant, is IE8 out? I did a google search, and only see Released Candidate, the IE8 page on MSDN site

Re: [WSG] add to favorites?

2009-03-25 Thread Andrew Maben
The argument continues to be shaky at best. ...compel a user... in particular seems to display a fundamental misunderstanding of the realities of the web as a medium. I wonder if anyone knows of any user studies around this question: Is this an often-requested feature? When available, is

RE: [WSG] add to favorites?

2009-03-25 Thread Stuart Foulstone
This list is aware of many marketing practices that are against Web Standards. On Wed, March 25, 2009 3:46 pm, Rick Faircloth wrote: No, previous arguments still miss the point. Having a button on a browser for booksmarks is not comparable to having a Bookmark this page link on the

RE: [WSG] add to favorites?

2009-03-25 Thread Steve Green
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Andrew Maben Sent: 25 March 2009 15:18 To: wsg@webstandardsgroup.org Subject: Re: [WSG] add to favorites? On Mar 25, 2009, at 10:10 AM, Steve Green wrote: It's not just replicating browser functionality

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
Apparently this list is not aware of many marketing practices, as the original poster was challenged as to the appropriateness as to the use of a standard marketing practice. If list members do not want to discuss topics, they should not bring them up. I didn't start this discussion, but I'll be

RE: [WSG] add to favorites?

2009-03-25 Thread Steve Green
-Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Stuart Foulstone Sent: 25 March 2009 16:19 To: wsg@webstandardsgroup.org Subject: RE: [WSG] add to favorites? This list is aware of many marketing practices that are against Web

Re: [WSG] IE8 compatibility mode

2009-03-25 Thread Gunlaug Sørtun
tee wrote: Sorry for my ignorant, is IE8 out? Yes, as of March 19th. Keep an eye on a site like this... http://www.upsdell.com/BrowserNews/ ...and you'll at most only be a few days off regarding new releases. regards Georg -- http://www.gunlaug.no

Re: [WSG] IE8 compatibility mode

2009-03-25 Thread Chris F.A. Johnson
On Wed, 25 Mar 2009, Gunlaug S?rtun wrote: The start html tag is missing in your page - you have doctype directly followed by head. That should make no difference. The HTML, HEAD and BODY tags are optional. -- Chris F.A. Johnson, webmaster http://woodbine-gerrard.com

RE: [WSG] add to favorites?

2009-03-25 Thread Janice Schwarz
I'm new to this group, so I can't speak for anyone else. However, this sounds like something that would be of interest to me. I'm certainly game for hearing how other people handle these conflicts, how they arrive at their decisions, and so on. The simple fact is that regardless of our

Re: [WSG] add to favorites?

2009-03-25 Thread designer
My justification for wanting to do this is simple, and in my eyes, very sensible. However, it will no doubt cause ructions amongst the evangelists. I want to use frames. Frames, contrary to popular myth, are not an accessibility nightmare. The simple 2-frame frameset I have made validates

Re: [WSG] IE8 compatibility mode

2009-03-25 Thread Gunlaug Sørtun
James Leslie wrote: Using meta http-equiv=X-UA-Compatible content=IE=8 / will also have the same effect (getting rid of the compatibility view button and forcing standards mode), but may be a bit more stable against future releases of IE. But, may also lock documents to IE8's rendering

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
A call-to-action Bookmark This Page does not provide the same functionality as a browser's bookmarking button when functionality is extended to include psychological functionality from the designer's perspective. From a technical perspective, a bookmarking link and a bookmarking browser button

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
Quite right, Janice. When you have a boss, you do as the boss says, like it or not. Or quit, or be fired. Those are the options. No web standard is worth the loss of employment. If anyone wants to make the final decision about standards adherence, become the boss. Rick -Original

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
The correct design (and web standards that are adhered to or not) is that design for which the client is paying. Web designers should offer suggestions and guidance to those who hire them for their expertise, but the decision to follow or disregard standards is up to the person footing the bill.

Re: [WSG] add to favorites?

2009-03-25 Thread Andrew Maben
On Mar 25, 2009, at 3:01 PM, Rick Faircloth wrote: When you have a boss, you do as the boss says, like it or not. Or quit, or be fired. Those are the options. If you have not been hired for your expertise, yes. Otherwise you are honor-bound to present the arguments, not just blindly obey -

Re: [WSG] add to favorites?

2009-03-25 Thread Andrew Maben
I am not so arrogant as to even wish to speak for this list, but on my own account I'll say that this question is disingenuous. Obviously our work constantly involves balancing requirements. An important part of that balancing act is to provide the benefit of our expertise to stakeholders.

Re: [WSG] add to favorites?

2009-03-25 Thread Bruce
I have found using a service such as http://www.addthis.com/ which includes add to favorites/bookmark is fine. Bruce Prochnau BKDesign Solutions - Original Message - From: Andrew Maben To: wsg@webstandardsgroup.org Sent: Wednesday, March 25, 2009 3:34 PM Subject: Re: [WSG]

Re: [WSG] add to favorites?

2009-03-25 Thread Krystian - Sunlust
In my opinion that's the wrong list to ask such a question, should go to something more web developing like. My opinion about the button idea and web standards? Why not give a nice ajax button that when people click it gives them instruction in few screenshots/lines of text on how to favourite a

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
This seems like a good solution and I certainly would use it. But the others who are against bookmarking links could not without violating principle. Although that single link provides a lot of convenience for the user, they could still visit all 11 plus sites to register their site on

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
Spend a little time on Google searching internet marketing call to action bookmark this page and you'll get a ton of info on the subject and you'll see many other examples that are similar to bookmarking, such as Subscribe to my RSS feed... even though there is a button right on the page already.

Re: [WSG] add to favorites?

2009-03-25 Thread Andrew Maben
I am not so arrogant as to even wish to speak for this list, but on my own account I'll say that this question is disingenuous. Obviously our work constantly involves balancing requirements. An important part of that balancing act is to provide the benefit of our expertise to stakeholders.

RE: [WSG] IE8 compatibility mode

2009-03-25 Thread Nick Hodge
James Leslie wrote: Using meta http-equiv=X-UA-Compatible content=IE=8 / will also have the same effect (getting rid of the compatibility view button and forcing standards mode), but may be a bit more stable against future releases of IE. But, may also lock documents to IE8's

[WSG] Help - Mega dropdown menu and SharePoint 2007

2009-03-25 Thread WEE, Miranda
Hi all, Has anyone had any experiencing trying to implement the 'mega dropdown menu' (see article below) in a SharePoint site? I'm going to attempt to do it, but thought anyone who has already been through this might have some tips / advice for me. Alertbox: Mega Drop-Down Navigation Menus Work

Re: [WSG] add to favorites?

2009-03-25 Thread Nathan de Vries
On 26/03/2009, at 3:56 AM, Steve Green wrote: Is this list interested in discussing how to balance the conflicting requirements of various stakeholders (including marketers) or does it take the dogmatic position that compliance with web stardards trumps everything else? You've pretty much

Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread Matt Morgan-May
On 3/25/09 12:12 PM, Rick Faircloth r...@whitestonemedia.com wrote: The correct design (and web standards that are adhered to or not) is that design for which the client is paying. Sorry, but that just reads to me like a way to excuse slipshod work. It is one thing to figure out any old way to

RE: [WSG] add to favorites?

2009-03-25 Thread Dennis Lapcewich
While the concept may appear sound at first glance, it's based on a false, misleading and dishonest premise. The simple process of adding a favorites link on a web page is a proprietary function attributed to a single browser designed and developed by its manufacturer solely as marketing

RE: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread Janice Schwarz
-Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Matt Morgan-May Sent: Wednesday, March 25, 2009 3:50 PM To: wsg@webstandardsgroup.org Subject: Who's responsible (was Re: [WSG] add to favorites?) On 3/25/09 12:12 PM, Rick Faircloth

Re: [WSG] add to favorites?

2009-03-25 Thread Stuart Foulstone
The Web Standards Group is for web designers developers who are interested in web standards (HTML, XHTML, XML, CSS, XSLT etc.) and best practices (accessible sites using valid and semantically correct code). We aim to: * Provide web developers and designers with a forum to discuss issues

Re: [WSG] add to favorites?

2009-03-25 Thread Nathan de Vries
On 26/03/2009, at 10:07 AM, Dennis Lapcewich wrote: The simple process of adding a favorites link on a web page is a proprietary function attributed to a single browser designed and developed by its manufacturer solely as marketing mechanism for said company. While on its face this may

Re: [WSG] add to favorites?

2009-03-25 Thread Patrick H. Lauke
Rick Faircloth wrote: Although that single link provides a lot of convenience for the user, they could still visit all 11 plus sites to register their site on delicious, digg, google, facebook, twitter, etc… That assumes that the users will want to bookmark the page/site on all 11 social

Re: [WSG] add to favorites?

2009-03-25 Thread Nathan de Vries
Stuart, You'll be pleased to know that I have indeed read what the Web Standards Group is for, and that I understand what web standards are. My original email was very clear that the method I suggested was *proprietary*, given that no standardised approach exists for doing what was

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
Oh, brother, Dennis.you're implying that the use of the word favorites is a conspiracy? And it really doesn't matter who develops a function and for what reason.it's up to the developers and designers to use or not use a function, depending on their target audience. Every business has to

Re: [WSG] add to favorites?

2009-03-25 Thread Andrew Maben
Do you imagine that a condescending, not to say insulting, tone adds weight to your arguments? If so, I'm sorry to disabuse you, but it just makes a weak point weaker. To address your argument, you appear (as does OP) to be confused as to the context of user benefit, call to action. I find

Re: [WSG] add to favorites?

2009-03-25 Thread Andrew Maben
On Mar 25, 2009, at 8:33 PM, Rick Faircloth wrote: differentiation with superior products or marketing ROFL! (sorry, Russ) Andrew *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe:

RE: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread Rick Faircloth
First off, no, it's not possible. The technology doesn't exist today, or we'd all have self-driving cars already. It is possible...there's just not sufficient will and money to make it a widespread reality. But that's another topic for another day... Anyway...the first time you are forced to

Re: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread nedlud
As I understand this thread, it is not about whether current standards are right or wrong, but how did we end up with these standards in the first place? The current standards did not just spring into existence, fully formed, out of the brow of some greek god. The standards evolved as peoples

Re: [WSG] add to favorites? - ADMIN - KEEP IT POLITE PLEASE

2009-03-25 Thread Russ Weakley
ADMIN This thread has deteriorated into slanging match. Any more and the thread will be closed. Keep the conversation constructive, helpful, considerate... Like a giant virtual group hug :0 Thanks Russ List admin and group hug evangelist

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
There's where the difference is.users are *allowed* to come to sites that I build as a benefit to them. I don't know of a single user who ever visited a site (other than somebody's mother) for the benefit of the site's owner or developer. People don't visit newegg.com, Microsoft,com, or

Re: [WSG] add to favorites?

2009-03-25 Thread Ewen . Hill
Any more and the thread will be closed. Please!!! Regards, Ewen Hill , Project Manager, Web Communications Unit Department of Human Services, Level 16, 50 Lonsdale Street Melbourne Victoria 3000 _ This email

RE: [WSG] add to favorites? - ADMIN - KEEP IT POLITE PLEASE

2009-03-25 Thread Rick Faircloth
huggroup/hug Sorry that tag isn't to standard... ;o) Rick -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Russ Weakley Sent: Wednesday, March 25, 2009 8:58 PM To: Web Standards Group Subject: Re: [WSG] add to favorites? - ADMIN -

RE: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread Rick Faircloth
Wow...10 years from now...as fast as change occurs these days, who knows what things will be like then! Rick -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of nedlud Sent: Wednesday, March 25, 2009 8:58 PM To: wsg@webstandardsgroup.org

Re: [WSG] add to favorites?

2009-03-25 Thread Nathan de Vries
On 26/03/2009, at 11:37 AM, Andrew Maben wrote: To address your argument, you appear (as does OP) to be confused as to the context of user benefit, call to action. I'm not at all confused as to what a user benefit is. You may have decided for yourself that websites have no place crossing

RE: [WSG] add to favorites?

2009-03-25 Thread Rick Faircloth
hug group include template=Ewen.Hill /hug :o) From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of ewen.h...@dhs.vic.gov.au Sent: Wednesday, March 25, 2009 9:07 PM To: wsg@webstandardsgroup.org Subject: Re: [WSG] add to favorites? Any more

Re: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread Patrick H. Lauke
Rick Faircloth wrote: Wow...10 years from now...as fast as change occurs these days, who knows what things will be like then! Blind people flying around with jetpacks ;) P -- Patrick H. Lauke __ re·dux (adj.): brought back; returned.

Re: [WSG] add to favorites? - ADMIN - KEEP IT POLITE PLEASE

2009-03-25 Thread Al Sparber
From: Rick Faircloth r...@whitestonemedia.com huggroup/hug Sorry that tag isn't to standard... ;o) Read Russ's DOCTYPE :-) *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe:

Re: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread nedlud
So true. But how long has the WG been working on HTML5? And assuming anyone ever reaches consensus on that, how long until browsers start supporting it in wide enough numbers for it to be a practical alternative for developers? Technology can change fast, but in the world of web, it can take

Re: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread tee
On Mar 25, 2009, at 6:39 PM, Patrick H. Lauke wrote: Rick Faircloth wrote: Wow...10 years from now...as fast as change occurs these days, who knows what things will be like then! Blind people flying around with jetpacks ;) It will be just like in the Star Trek Voyager, that Tom Paris

Re: Who's responsible (was Re: [WSG] add to favorites?) - ADMIN THREAD CLOSED

2009-03-25 Thread Russ Weakley
ADMIN THREAD CLOSED *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: memberh...@webstandardsgroup.org

Re: [WSG] add to favorites? ADMIN THREAD CLOSED

2009-03-25 Thread Russ Weakley
ADMIN THREAD CLOSED *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: memberh...@webstandardsgroup.org

RE: Who's responsible (was Re: [WSG] add to favorites?)

2009-03-25 Thread Rick Faircloth
Cool! They'll have implants and better vision than organically-sighted people! -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Patrick H. Lauke Sent: Wednesday, March 25, 2009 9:40 PM To: wsg@webstandardsgroup.org Subject: Re: