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
2cbbc63c
Commit
2cbbc63c
authored
May 19, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated docs based on a1c1 feedback
parent
23f28bee
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
170 additions
and
113 deletions
+170
-113
doc/CHANGES.txt
doc/CHANGES.txt
+14
-2
doc/INSTALL.txt
doc/INSTALL.txt
+26
-1
doc/WEBSERVER.txt
doc/WEBSERVER.txt
+130
-110
No files found.
doc/CHANGES.txt
View file @
2cbbc63c
...
@@ -32,6 +32,11 @@ Zope Changes
...
@@ -32,6 +32,11 @@ Zope Changes
o Simpler creation of Python products.
o Simpler creation of Python products.
Unfortunately, there are a number of incompatabilities between
Zope and Python 1.5.2 that have been reported but not yet
fixed. Zope 2.0 alpha 2, which will be released the week of May
26, will fix most or all of these.
ZODB 3
ZODB 3
ZODB is the next generation of our object database architecture.
ZODB is the next generation of our object database architecture.
...
@@ -73,6 +78,10 @@ Zope Changes
...
@@ -73,6 +78,10 @@ Zope Changes
- FileStorage packing isn't available yet,
- FileStorage packing isn't available yet,
- OPTIMIZATION: FileStorage will get a more efficient data
structure for maintaining index information and key methods
in the ZODB framework will move to C.
- Tools to convert ZODB 2 databases to ZODB 3 File
- Tools to convert ZODB 2 databases to ZODB 3 File
Storages or import files are needed.
Storages or import files are needed.
...
@@ -97,6 +106,8 @@ Zope Changes
...
@@ -97,6 +106,8 @@ Zope Changes
This is only a problem when running Zope 2 with multiple
This is only a problem when running Zope 2 with multiple
threads.
threads.
- The default content needs to be provided for the new
database format.
ZClasses
ZClasses
...
@@ -140,9 +151,10 @@ Zope Changes
...
@@ -140,9 +151,10 @@ Zope Changes
candidate releases over the next several weeks.
candidate releases over the next several weeks.
Early releases will support both the ZODB 2 (aka
Early releases will support both the ZODB 2 (aka
BoboPOS) and ZODB3. We may even support ZODB 2 in Zope 2.0
BoboPOS) and ZODB
3. We may even support ZODB 2 in Zope 2.0
final, but ZODB 2 support will be phased out by Zope 2.1 or
final, but ZODB 2 support will be phased out by Zope 2.1 or
sooner.
sooner. Some features (e.g. the new control panel version
manager) may require ZODB 3.
Releases
Releases
...
...
doc/INSTALL.txt
View file @
2cbbc63c
...
@@ -44,9 +44,34 @@ Choosing your database
...
@@ -44,9 +44,34 @@ Choosing your database
- You can use ZODB 3 with the ZopeHTTPServer and the
- You can use ZODB 3 with the ZopeHTTPServer and the
PCGI publisher by changing the published module to
PCGI publisher by changing the published module to
Zope.
This will only use a single thread, however.
Zope.
)
)
Quick Start
If you are impatient, the following commands should get you up and
running with Zope 2 using ZServer and ZODB 3 on Unix::
python wo_pcgi.py # Note, this mst be Python 1.5.2
python z2.py -d <your dns server>
where you need to supply the IP address of your dns server to the -d
option. If you get errors indicating that addresses are in use,
then you will have to supply arguments to z2.py to change the ports
used for HTTP or FTP. (See the help for the z2.py script by
running z2.py with the -h option.)
You can then connect to Zope 2 by directing your browser to::
http://yourhost:9673/manage
where yourhost is the name or address of the machine running Zope 2.
If you changed the HTTP port with the -w option to z2.py, then use
it rather than 9673.
You will be prompted for a user name and password, which may
be found in the 'access' file in the Zope installation directory.
Building Zope
Building Zope
There are some python scripts in the top-level directory that should
There are some python scripts in the top-level directory that should
...
...
doc/WEBSERVER.txt
View file @
2cbbc63c
This diff is collapsed.
Click to expand it.
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