Chris McDonough
2013-10-02 66be39bf656a2840931603bc959e38ff95e53164
- Removed mention of ``pyramid_beaker`` from docs.  Beaker is no longer
maintained. Point people at ``pyramid_redis_sessions`` instead.
3 files modified
21 ■■■■ changed files
CHANGES.txt 3 ●●●●● patch | view | raw | blame | history
docs/conf.py 3 ●●●●● patch | view | raw | blame | history
docs/narr/sessions.rst 15 ●●●● patch | view | raw | blame | history
CHANGES.txt
@@ -20,6 +20,9 @@
- Added a "Quick Tutorial" to go with the Quick Tour
- Removed mention of ``pyramid_beaker`` from docs.  Beaker is no longer
  maintained.  Point people at ``pyramid_redis_sessions`` instead.
1.5a2 (2013-09-22)
==================
docs/conf.py
@@ -73,9 +73,6 @@
        'http://docs.pylonsproject.org/projects/deform/en/latest',
    None),
    'sqla': ('http://docs.sqlalchemy.org/en/latest', None),
    'beaker': (
        'http://docs.pylonsproject.org/projects/pyramid_beaker/en/latest',
        None),
    'who': ('http://docs.repoze.org/who/latest', None),
    'python': ('http://docs.python.org', None),
    'python3': ('http://docs.python.org/3', None),
docs/narr/sessions.rst
@@ -146,8 +146,6 @@
  you've changed sessioning data.
.. index::
   single: pyramid_beaker
   single: Beaker
   single: pyramid_redis_sessions
   single: session factory (alternates)
@@ -156,19 +154,10 @@
Using Alternate Session Factories
---------------------------------
At the time of this writing, exactly two alternate session factories
exist.
The first is named ``pyramid_redis_sessions``.  It can be downloaded from PyPI.
At the time of this writing, exactly one project-endorsed alternate session
factory exists named``pyramid_redis_sessions``.  It can be downloaded from PyPI.
It uses Redis as a backend.  It is the recommended persistent session solution
at the time of this writing.
The second is named ``pyramid_beaker``. This is a session factory that uses the
`Beaker <http://beaker.groovie.org/>`_ library as a backend.  Beaker has
support for file-based sessions, database based sessions, and encrypted
cookie-based sessions.  See `the pyramid_beaker documentation
<http://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/>`_ for more
information about ``pyramid_beaker``.
.. index::
   single: session factory (custom)