On 4/18/07, SlavaSh <[EMAIL PROTECTED]> wrote: > This is wrong "intentional design decision". > There few more web clients in the world besides the IE and Firefox. > Part of them does not support cookies.
Django provides a sessions framework in 'django.contrib.sessions' (note the "contrib" in that path) as a convenience for the common case of needing to persist state across multiple HTTP requests. The common case involves a user-agent which is capable of handling cookies -- around 90% of all web clients have cookies enabled, and the percentage which does not tends to include fairly specific demographics and so are not a problem for most sites For the uncommon case, it would be possible for you to write your own wrapper around the sessions framework which uses some other mechanism, but I think this is a case where we simply will not be able to please everyone with what Django ships by default, so we need to stick to meeting the needs of the common case. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---