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
99c27718
Commit
99c27718
authored
Jul 20, 1999
by
Amos Latteier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed ZServer's CHANGES.txt, now all ZServer changes are recorded in the main Zope CHANGES.txt
parent
f7b486c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
254 deletions
+0
-254
ZServer/CHANGES.txt
ZServer/CHANGES.txt
+0
-127
lib/python/ZServer/CHANGES.txt
lib/python/ZServer/CHANGES.txt
+0
-127
No files found.
ZServer/CHANGES.txt
deleted
100644 → 0
View file @
f7b486c3
ZServer Changes
This file gives information on changes made to ZServer over time,
things that need to be done before the next release and future
plans.
Releases
Zope 2.0 ?
New Features
ZServer is now part of the standard Zope distribution.
ZServer is now a Python package. The change in the ZServer
package structure may break old ZServer start.py scripts. The
solution is to migrate to the new start script z2.py
The start script has significantly changed. start.py is now
deprecated. Use z2.py in the top level Zope directory instead.
z2.py provides lots more features than start.py and its easier
to use. Try z2.py -h for more information.
zinit.py is deprecated, and is replaced by zdeamon.py In
addition, z2.py will start zdeamon.py for you, so there is no
need to run zdeamon.py directly.
You no longer need to specify a DNS server to use ZServer.
ZServer now includes a secure monitor server. This server
provides you with a secure, remote python prompt!
ZServer now can be set to run as any uid, not just 'nobody'.
Bugs Fixed
ZServer should work better on win95 boxes without a network
connection now.
ZServer 1.0b1
New Features
Major code reorganization. Major architecture changes. Future
producers are gone. Use of special request and response
objects to do most of the heavy lifting.
ZServer can now handle multiple HTTP requests per connection.
Now using (almost) unmodified Medusa sources.
Added environment variable overriding to HTTPServer.py
Documented the startup script more fully.
ZServer now tries to become nobody if run as root.
Bugs Fixed
PCGI is a lot more stable now.
Using PCGI under IIS, now PATH_INFO begins with a /
Fixed FTP passive mode response message IP address.
Fixed multiple file upload problem where response gets out of
synch.
The log file is now not overwritten each time Zope starts.
Logging works for PCGI.
Known Bugs
PCGI under IIS 4.0 is broken with respect to file uploads, and
binary data in general. IIS seems to convert \n to \r\n in
binary data :-( This seems to be an IIS/PCGI issue, not a
ZServer issue.
TODO
More testing.
Fix latest medusa select_trigger under win32.
Re-write Zope installers to install a ZServer start script.
ZServer 1.0a2
New Features
Preliminary support for PCGI has been added. It is still not
complete and bug free. The main problem is that all newlines
seem to get converted to carriage return newline pairs...
Simple controls to limit FTP connections have been added to
help prevent denial of service attacks.
FTP now supports login with a username and directory, i.e.
'joe@Projects/JoesProject' which authenticates the login in
the specified directory. You can still use a normal username
and defer authentication until you cd to a directory where you
are defined.
Bugs Fixed
Data was being dropped from POST requests because of a bug in
the sized input collection of asynchat.
HTTP Response headers were not being correctly set.
URL prefixes for the the Zope HTTP handler could not be set to
''. Now the empty prefix is the default, to simplify URLs.
ZServer 1.0a1
New Features
Initial release. Includes new threaded architecture--currently
limited to a thread pool of 1. Includes preliminary FTP
support. Includes HTTP support.
Bugs Fixed
None
lib/python/ZServer/CHANGES.txt
deleted
100644 → 0
View file @
f7b486c3
ZServer Changes
This file gives information on changes made to ZServer over time,
things that need to be done before the next release and future
plans.
Releases
Zope 2.0 ?
New Features
ZServer is now part of the standard Zope distribution.
ZServer is now a Python package. The change in the ZServer
package structure may break old ZServer start.py scripts. The
solution is to migrate to the new start script z2.py
The start script has significantly changed. start.py is now
deprecated. Use z2.py in the top level Zope directory instead.
z2.py provides lots more features than start.py and its easier
to use. Try z2.py -h for more information.
zinit.py is deprecated, and is replaced by zdeamon.py In
addition, z2.py will start zdeamon.py for you, so there is no
need to run zdeamon.py directly.
You no longer need to specify a DNS server to use ZServer.
ZServer now includes a secure monitor server. This server
provides you with a secure, remote python prompt!
ZServer now can be set to run as any uid, not just 'nobody'.
Bugs Fixed
ZServer should work better on win95 boxes without a network
connection now.
ZServer 1.0b1
New Features
Major code reorganization. Major architecture changes. Future
producers are gone. Use of special request and response
objects to do most of the heavy lifting.
ZServer can now handle multiple HTTP requests per connection.
Now using (almost) unmodified Medusa sources.
Added environment variable overriding to HTTPServer.py
Documented the startup script more fully.
ZServer now tries to become nobody if run as root.
Bugs Fixed
PCGI is a lot more stable now.
Using PCGI under IIS, now PATH_INFO begins with a /
Fixed FTP passive mode response message IP address.
Fixed multiple file upload problem where response gets out of
synch.
The log file is now not overwritten each time Zope starts.
Logging works for PCGI.
Known Bugs
PCGI under IIS 4.0 is broken with respect to file uploads, and
binary data in general. IIS seems to convert \n to \r\n in
binary data :-( This seems to be an IIS/PCGI issue, not a
ZServer issue.
TODO
More testing.
Fix latest medusa select_trigger under win32.
Re-write Zope installers to install a ZServer start script.
ZServer 1.0a2
New Features
Preliminary support for PCGI has been added. It is still not
complete and bug free. The main problem is that all newlines
seem to get converted to carriage return newline pairs...
Simple controls to limit FTP connections have been added to
help prevent denial of service attacks.
FTP now supports login with a username and directory, i.e.
'joe@Projects/JoesProject' which authenticates the login in
the specified directory. You can still use a normal username
and defer authentication until you cd to a directory where you
are defined.
Bugs Fixed
Data was being dropped from POST requests because of a bug in
the sized input collection of asynchat.
HTTP Response headers were not being correctly set.
URL prefixes for the the Zope HTTP handler could not be set to
''. Now the empty prefix is the default, to simplify URLs.
ZServer 1.0a1
New Features
Initial release. Includes new threaded architecture--currently
limited to a thread pool of 1. Includes preliminary FTP
support. Includes HTTP support.
Bugs Fixed
None
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