Skip to content

Commit

Permalink
- Removed mention of pyramid_beaker from docs. Beaker is no longer
Browse files Browse the repository at this point in the history
  maintained.  Point people at ``pyramid_redis_sessions`` instead.
  • Loading branch information
mcdonc committed Oct 2, 2013
1 parent 678f49d commit 66be39b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ Documentation


- Added a "Quick Tutorial" to go with the Quick Tour - 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) 1.5a2 (2013-09-22)
================== ==================


Expand Down
3 changes: 0 additions & 3 deletions docs/conf.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ def nothing(*arg):
'http://docs.pylonsproject.org/projects/deform/en/latest', 'http://docs.pylonsproject.org/projects/deform/en/latest',
None), None),
'sqla': ('http://docs.sqlalchemy.org/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), 'who': ('http://docs.repoze.org/who/latest', None),
'python': ('http://docs.python.org', None), 'python': ('http://docs.python.org', None),
'python3': ('http://docs.python.org/3', None), 'python3': ('http://docs.python.org/3', None),
Expand Down
15 changes: 2 additions & 13 deletions docs/narr/sessions.rst
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@ Some gotchas:
you've changed sessioning data. you've changed sessioning data.


.. index:: .. index::
single: pyramid_beaker
single: Beaker
single: pyramid_redis_sessions single: pyramid_redis_sessions
single: session factory (alternates) single: session factory (alternates)


Expand All @@ -156,20 +154,11 @@ Some gotchas:
Using Alternate Session Factories Using Alternate Session Factories
--------------------------------- ---------------------------------


At the time of this writing, exactly two alternate session factories At the time of this writing, exactly one project-endorsed alternate session
exist. factory exists named``pyramid_redis_sessions``. It can be downloaded from PyPI.

The first is named ``pyramid_redis_sessions``. It can be downloaded from PyPI.
It uses Redis as a backend. It is the recommended persistent session solution It uses Redis as a backend. It is the recommended persistent session solution
at the time of this writing. 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:: .. index::
single: session factory (custom) single: session factory (custom)


Expand Down

0 comments on commit 66be39b

Please sign in to comment.