Pharo Smalltalk Users mailing list wrote
I want to know how to use sessions in seaside to manage identification of users. Thank you
there is a Seaside specific mailing list here:
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seasideGenerally when a user signs in you store them in a user instance variable in your session . When they sign out you nil that variable. You can then access them inside your components with
self session user
A system for doing user authentication and management (password recovery etc) with Seaside is TFLogin here:
http://www.squeaksource.com/TFLogin.htmlIf it doesn't load into the most recent Seaside or Pharo post on the Seaside list and we will get it working