debian/control
author Christophe de Vienne <christophe@unlish.com>
Thu, 26 Feb 2015 00:56:32 +0100
changeset 11562 a49f08423f02
parent 11558 1e2ab5972b18
child 11563 f9473eb6a8a9
permissions -rw-r--r--
[auth] Use a second authtkt policy for 'rememberme' The former solution was buggy because the expire time of the auth cookie, if set through 'remember', was lost on the first cookie reissuing. The new approach, make possible thanks to multiauth, use two different cookies. One for session bounded authentication (no 'rememberme'), and one for long lasting authentication (w 'rememberme'). The choice between the two of them is done by adding a 'persistent' argument to the top-level 'security.remember' call. Passing this argument will inhibate a policy or the other. The two policies are (a little) configurable through the 'cubicweb.auth.authtkt.[session|persistent].*' variables. Related to #4985962
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11515
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     1
Source: pyramid-cubicweb
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     2
Section: python
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     3
Priority: optional
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     4
Build-Depends:
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     5
 python,
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     6
 python-setuptools,
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     7
 python-pyramid,
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     8
 python-waitress,
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     9
 debhelper (>= 9),
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    10
Standards-Version: 3.9.6
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    11
Maintainer: Julien Cristau <julien.cristau@logilab.fr>
11558
1e2ab5972b18 Fix project homepage url
Christophe de Vienne <christophe@unlish.com>
parents: 11517
diff changeset
    12
Homepage: https://www.cubicweb.org/project/pyramid-cubicweb
11515
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    13
Vcs-Browser: http://hg.logilab.org/master/pyramid_cubicweb
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    14
Vcs-Hg: http://hg.logilab.org/master/pyramid_cubicweb
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    15
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    16
Package: pyramid-cubicweb
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    17
Architecture: all
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    18
Depends:
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    19
 ${misc:Depends},
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    20
 ${python:Depends},
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    21
 python-pyramid (>= 1.5.0),
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    22
 python-waitress (>= 0.8.9),
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    23
 cubicweb-common (>= 3.19.3),
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    24
# XXX wsgicors?
b3267ba817b4 Initial debian packaging
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    25
Description: Integrate CubicWeb with a Pyramid application
11517
3d60138100d6 Add a description to the debian package
Christophe de Vienne <christophe@unlish.com>
parents: 11515
diff changeset
    26
 Provides pyramid extensions to load a CubicWeb instance and serve it through
3d60138100d6 Add a description to the debian package
Christophe de Vienne <christophe@unlish.com>
parents: 11515
diff changeset
    27
 the pyramid stack.
3d60138100d6 Add a description to the debian package
Christophe de Vienne <christophe@unlish.com>
parents: 11515
diff changeset
    28
 .
3d60138100d6 Add a description to the debian package
Christophe de Vienne <christophe@unlish.com>
parents: 11515
diff changeset
    29
 It prefigures what CubicWeb 4.0 will be.