RE: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-06 Thread Mike Schinkel
Paul Wilkins wrote: If you mouse to the bottom right of the presentation (or press C) you'll find there are some minor controls, but you've got to either stumble upon them or know about them beforehand. What's really needed is for someone to take the S5 system and built upon it an easily

OFFLIST: Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-06 Thread Mike Schinkel
Paul: OFFLIST I really enjoyed your discussion, and you seem to be very knowledgable about Javascript issues. I have started a project with a partner in the UK (I am in the USA) that we hope to see grow to be used by most websites and most webusers. One thing we think is missing are

RE: OFFLIST: Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-06 Thread Mike Schinkel
Oops! Oh well, nothing said that I wasn't going to present to the Microformat community eventually! -Mike -Original Message- From: Mike Schinkel [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 06, 2007 4:43 AM To: 'Microformats Discuss' Subject: OFFLIST: Re: [uf-discuss] Tutorial

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-06 Thread Paul Wilkins
Mike Schinkel wrote: Strange; S5's intro[1] DOES print correctly in outline mode, but Roger's AHAH slideshow does not. Now that *is* an interesting problem. It appears that Roger uses a separate print stylesheet that forces the page break after each slide. Naughty Roger. At least some of

[uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-05 Thread Paul Wilkins
Mike Schinkel wrote: Printable version please! Ane that doesn't take 12 pages to print... (He also grumbles about lack of back button in presentation but glad the presentation was not 96 pages...) The slideshow was built using S5, A Simple Standards-Based Slide Show System from Eric Meyer.

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-05 Thread Paul Wilkins
From: Paul Wilkins [EMAIL PROTECTED] It might start to look something like this // beware, untested code, dragons may be lurking ahah = { init : function() { var els = document.getElementsByTagName('a'); Array.forEach(els, function(el) { var href = el.getAttribute('href'); var

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-05 Thread Paul Wilkins
From: Paul Wilkins [EMAIL PROTECTED] It might start to look something like this Note to self, don't post when rushed for time. // beware, untested code, dragons may be lurking ahah = { init : function() { var els = document.getElementsByTagName('a'); Array.forEach(els, function(el) {

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-05 Thread Paul Wilkins
From: Paul Wilkins [EMAIL PROTECTED] If I have some time I'll get a fully tested version of this fleshed out. // beware, untested code, dragons may be lurking ahah = { init : function() { var els = document.getElementsByTagName('a'); Array.forEach(els, function(el) { if ('ahah' ==

RE: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-05 Thread Mike Schinkel
Paul Wilkins wrote: Mike Schinkel wrote: Printable version please! Ane that doesn't take 12 pages to print... (He also grumbles about lack of back button in presentation but glad the presentation was not 96 pages...) The slideshow was built using S5, A Simple Standards-Based Slide Show

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-05 Thread Paul Wilkins
From: Mike Schinkel [EMAIL PROTECTED] What's incredibly ironic is someone such as Eric Meyer who focuses on visual presentation would make such an error. Heck, his example presentation does not have visible controls; at least he could have included a help link to his keyboard shortcuts! If

RE: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-03-04 Thread Mike Schinkel
Costello, Roger L. wrote: Hi Folks, I have created a tutorial on AHAH (Asynchronous HTML and HTTP) http://www.xfront.com/microformats/AHAH.html Comments welcome. Printable version please! Ane that doesn't take 12 pages to print... (He also grumbles about lack of back button in

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-14 Thread Xasima Xirohata
I'm not sure if people are missing it or what... so here it is again: My point was that if you don't intend to send the user somewhere, you shouldn't use an anchor. woudn't the following presupposition be more exact? Providing the anchor with href and possible with the rel and class

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-13 Thread Ara Pehlivanian
On 2/12/07, Benjamin West [EMAIL PROTECTED] wrote: Roger, Neat stuff. I thought it was pretty good, but take some issue with the following: a href=javascript:ahah('Waldorf-Astoria-Photo.html','Photo');photo/a The best practice is to wire the event up, and to use a button when the element is

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-13 Thread Tantek Çelik
On 2/13/07 4:30 AM, Ara Pehlivanian [EMAIL PROTECTED] wrote: On 2/12/07, Benjamin West [EMAIL PROTECTED] wrote: Roger, Neat stuff. I thought it was pretty good, but take some issue with the following: a href=javascript:ahah('Waldorf-Astoria-Photo.html','Photo');photo/a The best

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-13 Thread Ara Pehlivanian
On 2/13/07, Tantek Çelik [EMAIL PROTECTED] wrote: button is a valid HTML4 tag. http://www.w3.org/TR/html401/interact/forms.html#h-17.5 Tantek Ouch. Having been schooled, Ara crawls ashamedly under a rock to lick his wounds. A. ___

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-13 Thread Christian Heilmann
On 2/13/07, Ara Pehlivanian [EMAIL PROTECTED] wrote: On 2/12/07, Benjamin West [EMAIL PROTECTED] wrote: Roger, Neat stuff. I thought it was pretty good, but take some issue with the following: a href=javascript:ahah('Waldorf-Astoria-Photo.html','Photo');photo/a The best practice is to

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-13 Thread James Craig
Benjamin West wrote: a href=javascript:ahah('Waldorf-Astoria- Photo.html','Photo');photo/a The best practice is to wire the event up, and to use a button when the element is not truly a link. How is this not a link? You can link to a template that takes the data as a parameter:

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-13 Thread Benjamin West
I disagree. You should be practicing accessible, progressive enhancement. Agreed, so I don't think we're in disagreement. This was the reason for my comment. The first example does have a URI, it's the relative path to Waldorf-Astoria-Photo.html and should be set up to work from a spider,

Re: [uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-12 Thread Benjamin West
Roger, Neat stuff. I thought it was pretty good, but take some issue with the following: a href=javascript:ahah('Waldorf-Astoria-Photo.html','Photo');photo/a The best practice is to wire the event up, and to use a button when the element is not truly a link. Something more like: button

[uf-discuss] Tutorial on AHAH (such a cool technology!)

2007-02-10 Thread Costello, Roger L.
Hi Folks, I have created a tutorial on AHAH (Asynchronous HTML and HTTP) http://www.xfront.com/microformats/AHAH.html Comments welcome. /Roger ___ microformats-discuss mailing list microformats-discuss@microformats.org