~sidnei/zope3/reduce-deps

« back to all changes in this revision

Viewing changes to src/zope/app/session/http.py

  • Committer: Sidnei da Silva
  • Date: 2010-07-05 21:07:01 UTC
  • Revision ID: sidnei.da.silva@canonical.com-20100705210701-zmqhqrbzad1mhzsl
- Reduce deps

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
##############################################################################
2
 
#
3
 
# Copyright (c) 2004 Zope Corporation and Contributors.
4
 
# All Rights Reserved.
5
 
#
6
 
# This software is subject to the provisions of the Zope Public License,
7
 
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
8
 
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
9
 
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10
 
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
11
 
# FOR A PARTICULAR PURPOSE.
12
 
#
13
 
##############################################################################
14
 
"""Session implementation using cookies
15
 
 
16
 
$Id: http.py 80054 2007-09-25 21:28:40Z rogerineichen $
17
 
"""
18
 
 
19
 
import zope.deferredimport
20
 
 
21
 
zope.deferredimport.deprecated(
22
 
    "It has moved to zope.session.http  This reference will be gone sometimes.",
23
 
    ICookieClientIdManager = 'zope.session.http:ICookieClientIdManager',
24
 
    MissingClientIdException = 'zope.session.http:MissingClientIdException',
25
 
    notifyVirtualHostChanged = 'zope.session.http:notifyVirtualHostChanged',
26
 
    CookieClientIdManager = 'zope.session.http:CookieClientIdManager',
27
 
    digestEncode = 'zope.session.http:digestEncode',
28
 
    cookieSafeTrans = 'zope.session.http:cookieSafeTrans',
29
 
    )