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():
409409 pydoc .writedoc ("springpython.remoting.pyro" )
410410 pydoc .writedoc ("springpython.remoting.pyro.PyroDaemonHolder" )
411411 pydoc .writedoc ("springpython.security" )
412- pydoc .writedoc ("springpython.security.cherrypy " )
412+ pydoc .writedoc ("springpython.security.cherrypy3 " )
413413 pydoc .writedoc ("springpython.security.intercept" )
414414 pydoc .writedoc ("springpython.security.context" )
415415 pydoc .writedoc ("springpython.security.context.SecurityContextHolder" )
Original file line number Diff line number Diff line change 1616 <section id =" security-dependencies" >
1717 <title >External dependencies</title >
1818 <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
2321 <ulink url =" http://cherrypy.org/" >CherryPy 3</ulink >
2422 being installed prior to using them. Other than that, there are
2523 no specific external libraries required by Spring Python's security
Original file line number Diff line number Diff line change 4545 <property name =" alwaysReauthenticate" >False</property >
4646 </object >
4747
48- <object id =" cherrypySessionStrategy" class =" springpython.security.web .CP3SessionStrategy" />
48+ <object id =" cherrypySessionStrategy" class =" springpython.security.cherrypy3 .CP3SessionStrategy" />
4949
50- <object id =" redirectStrategy" class =" springpython.security.web .CP3RedirectStrategy" />
50+ <object id =" redirectStrategy" class =" springpython.security.cherrypy3 .CP3RedirectStrategy" />
5151
5252 <object id =" httpContextFilter" class =" springpython.security.web.HttpSessionContextIntegrationFilter" >
5353 <property name =" sessionStrategy" ref =" cherrypySessionStrategy" />
101101 </property >
102102 </object >
103103
104- <object id =" filterChainProxy" class =" springpython.security.web .CP3FilterChainProxy" >
104+ <object id =" filterChainProxy" class =" springpython.security.cherrypy3 .CP3FilterChainProxy" >
105105 <property name =" filterInvocationDefinitionSource" >
106106 <list >
107107 <tuple >
Original file line number Diff line number Diff line change 1818import view
1919
2020from springpython .config import *
21+ from springpython .security .cherrypy3 import *
2122from springpython .security .web import *
2223from springpython .security .providers import *
2324from springpython .security .providers .dao import *
Original file line number Diff line number Diff line change 1717import cherrypy
1818import logging
1919import os
20- from springpython .security .cherrypy31 import AuthenticationFilter , ContextSessionFilter , SecurityFilter
2120from springpython .security .context import SecurityContextHolder
2221from springpython .config import XMLConfig
2322from springpython .context import ApplicationContext
You can’t perform that action at this time.
0 commit comments