File tree Expand file tree Collapse file tree 5 files changed +7
-9
lines changed Expand file tree Collapse file tree 5 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ def create_pydocs():
409
409
pydoc .writedoc ("springpython.remoting.pyro" )
410
410
pydoc .writedoc ("springpython.remoting.pyro.PyroDaemonHolder" )
411
411
pydoc .writedoc ("springpython.security" )
412
- pydoc .writedoc ("springpython.security.cherrypy " )
412
+ pydoc .writedoc ("springpython.security.cherrypy3 " )
413
413
pydoc .writedoc ("springpython.security.intercept" )
414
414
pydoc .writedoc ("springpython.security.context" )
415
415
pydoc .writedoc ("springpython.security.context.SecurityContextHolder" )
Original file line number Diff line number Diff line change 16
16
<section id =" security-dependencies" >
17
17
<title >External dependencies</title >
18
18
<para >
19
- <classname >springpython.security.cherrypy31</classname >
20
- and
21
- <classname >springpython.security.web</classname >
22
- packages depend on
19
+ <classname >springpython.security.cherrypy3</classname >
20
+ package depends on
23
21
<ulink url =" http://cherrypy.org/" >CherryPy 3</ulink >
24
22
being installed prior to using them. Other than that, there are
25
23
no specific external libraries required by Spring Python's security
Original file line number Diff line number Diff line change 45
45
<property name =" alwaysReauthenticate" >False</property >
46
46
</object >
47
47
48
- <object id =" cherrypySessionStrategy" class =" springpython.security.web .CP3SessionStrategy" />
48
+ <object id =" cherrypySessionStrategy" class =" springpython.security.cherrypy3 .CP3SessionStrategy" />
49
49
50
- <object id =" redirectStrategy" class =" springpython.security.web .CP3RedirectStrategy" />
50
+ <object id =" redirectStrategy" class =" springpython.security.cherrypy3 .CP3RedirectStrategy" />
51
51
52
52
<object id =" httpContextFilter" class =" springpython.security.web.HttpSessionContextIntegrationFilter" >
53
53
<property name =" sessionStrategy" ref =" cherrypySessionStrategy" />
101
101
</property >
102
102
</object >
103
103
104
- <object id =" filterChainProxy" class =" springpython.security.web .CP3FilterChainProxy" >
104
+ <object id =" filterChainProxy" class =" springpython.security.cherrypy3 .CP3FilterChainProxy" >
105
105
<property name =" filterInvocationDefinitionSource" >
106
106
<list >
107
107
<tuple >
Original file line number Diff line number Diff line change 18
18
import view
19
19
20
20
from springpython .config import *
21
+ from springpython .security .cherrypy3 import *
21
22
from springpython .security .web import *
22
23
from springpython .security .providers import *
23
24
from springpython .security .providers .dao import *
Original file line number Diff line number Diff line change 17
17
import cherrypy
18
18
import logging
19
19
import os
20
- from springpython .security .cherrypy31 import AuthenticationFilter , ContextSessionFilter , SecurityFilter
21
20
from springpython .security .context import SecurityContextHolder
22
21
from springpython .config import XMLConfig
23
22
from springpython .context import ApplicationContext
You can’t perform that action at this time.
0 commit comments