Thanks for the reply. However, I'm unclear on how I might use it effectively.
My scenario in my app:
I have a python object that I pass around to different pages. At the end of each of my controller methods I do the following:
wo = Workorder(auth.user.id, workorder_id)
# save to the session
session.workorder = cPickle.dumps(wo.to_dict())
Then, at the beginning of each controller method I do:
wo.from_dict(cPickle.loads(session.workorder))
So, with my limited javascript knowledge, I don't see how I'd be able to convert this to sessionstorage. And actually, I don't know if what I'm doing with pickling/unpickling dicts is a smart thing to do. If anyone has any pointers/comments, I'd appreciate it. However, it seems as though I may need to rethink my strategy.
Thanks for taking a look.
-Jim