Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
11022628
Commit
11022628
authored
Dec 02, 2005
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deprecated FastCGI
parent
cfa53d17
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
doc/CHANGES.txt
doc/CHANGES.txt
+2
-0
doc/WEBSERVER.txt
doc/WEBSERVER.txt
+2
-0
lib/python/ZServer/datatypes.py
lib/python/ZServer/datatypes.py
+5
-0
No files found.
doc/CHANGES.txt
View file @
11022628
...
...
@@ -26,6 +26,8 @@ Zope Changes
Features added
- Using FastCGI is officially deprecated
- Improved logging of ConflictErrors. Now a log is made at level
BLATHER with traceback for any conflict retried. In addition, a
log is made at level ERROR for a conflict that can't be retried
...
...
doc/WEBSERVER.txt
View file @
11022628
...
...
@@ -110,6 +110,8 @@ Using Zope in multi-threaded mode with ZServer
FastCGI
FastCGI is deprecated and should not be used anymore.
FastCGI is relatively easy to set up if you have installed an Apache
module before. If you haven't, don't worry, it isn't difficult. It
comes with straightforward instructions. You will need to download
...
...
lib/python/ZServer/datatypes.py
View file @
11022628
...
...
@@ -132,6 +132,11 @@ class PCGIServerFactory(ServerFactory):
class
FCGIServerFactory
(
ServerFactory
):
def
__init__
(
self
,
section
):
import
warnings
warnings
.
warn
(
"Using FastCGI is deprecated. You should use mod_proxy "
"to run Zope with Apache"
,
DeprecationWarning
)
import
socket
if
section
.
address
.
family
==
socket
.
AF_INET
:
address
=
section
.
address
.
address
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment