You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
I have a copy of Mark Pilgrim's HTML5 Up and Running. Chapter 7 probably
covers everything you want. Here are chapter 7 section headings copied
from the O'Reilly site. Google "html5 up and running" and that site
appears at the top of the list.
1.
Diving In
2.
A Brief History of Local Storage Hacks Before HTML5
3.
Introducing HTML5 Storage
4.
Using HTML5 Storage
5.
HTML5 Storage in Action
6.
Beyond Named Key/Value Pairs: Competing Visions
7.
Further Reading
>
> Cheers,
> Raniere
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users...@googlegroups.com
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Raniere,
Another possibility is to do the temporary storage on the server
instead of the client. Use JavaScript to make an occasional Ajax
call to the server to store the current data in the session. Don't
necessarily have to store it in the DB. Make the occasional calls
based on a JavaScript timer or something. Many web-based tools
use this technique. For example, Google Docs.