You can distinguish different browser instances or tab by handling
yourself a sessionID on the client side.
Client side sessions, as described in the HTML 5 spec. are implemented
in FF 2 :

var gs = globalStorage['mymachine.mydomain'] ;

if ( ! sessionStorage.sessionID ) {
        gs.sessionCount = parseInt( gs.sessionCount || 0 ) + 1 ;
        sessionStorage.sessionID = gs.sessionCount ;
}
alert( sessionStorage.sessionID ) ;


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to