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
746f8be0
Commit
746f8be0
authored
May 27, 2009
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated documentation to new version number.
parent
aa808867
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
16 additions
and
820 deletions
+16
-820
doc/CHANGES.rst
doc/CHANGES.rst
+3
-451
doc/WHATSNEW.rst
doc/WHATSNEW.rst
+4
-330
doc/WINDOWS.rst
doc/WINDOWS.rst
+1
-1
doc/ZOPE3.rst
doc/ZOPE3.rst
+0
-30
doc/conf.py
doc/conf.py
+2
-2
doc/index.rst
doc/index.rst
+1
-1
inst/WinBuilders/mk/zope.mk
inst/WinBuilders/mk/zope.mk
+1
-1
inst/generate_index.py
inst/generate_index.py
+1
-1
inst/versions.py
inst/versions.py
+2
-2
setup.py
setup.py
+1
-1
No files found.
doc/CHANGES.rst
View file @
746f8be0
This diff is collapsed.
Click to expand it.
doc/WHATSNEW.rst
View file @
746f8be0
This diff is collapsed.
Click to expand it.
doc/WINDOWS.rst
View file @
746f8be0
...
...
@@ -16,7 +16,7 @@ How to build and install Zope from source code on Windows.
% python.exe inst\configure.py
It should say something like:
>
> - Zope top-level binary directory will be c:\Zope-2.1
2
.
> - Zope top-level binary directory will be c:\Zope-2.1
3
.
> - Makefile written.
>
> Next, run the Visual C++ batch file "VCVARS32.bat" and then "nmake".
...
...
doc/ZOPE3.rst
deleted
100644 → 0
View file @
aa808867
Using Zope Components in Zope 2 Applications
============================================
Background
----------
Zope 3 is a separate project from the Zope community aimed at web
development. It is designed to be more 'programmer-centric' and easier
to learn, use and extend for programmers. Zope 3 introduces an
interface-centric component architecture that makes it easier to develop
and deploy components without requiring developers to learn and
understand the entire Zope framework.
As of Zope 2.8, the "Five" project has been integrated into the
Zope 2 core. The "Five" project implements a compatibility layer
that allows many Zope 3 components and patterns to be used in
new and existing Zope 2 applications.
Features
--------
The Five integration layer provides support for Zope 3 interfaces,
Zope Configuration Markup Language (ZCML), adapters, views,
utilities and schema-driven content.
Note that the Five layer does *not* attempt to provide a ZMI user
interface for Zope 3 components.
Zope 2 includes the essential Zope 3 packages, so it is not
necessary to install Zope 3.
doc/conf.py
View file @
746f8be0
...
...
@@ -49,9 +49,9 @@ copyright = u'2009, The Zope Developers Community'
# built documents.
#
# The short X.Y version.
version
=
'2.1
2.0
'
version
=
'2.1
3
'
# The full version, including alpha/beta/rc tags.
release
=
'2.1
2.0a4
'
release
=
'2.1
3.0dev
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
doc/index.rst
View file @
746f8be0
Zope 2.1
2
specific documentation
Zope 2.1
3
specific documentation
================================
Contents:
...
...
inst/WinBuilders/mk/zope.mk
View file @
746f8be0
ZOPEVERSION
=
2.1
2.0b1
ZOPEVERSION
=
2.1
3.0dev
ZOPEDIRNAME
:=
Zope-
$(ZOPEVERSION)
ZOPE_REQUIRED_FILES
=
tmp/
$(ZOPEDIRNAME)
.tgz
...
...
inst/generate_index.py
View file @
746f8be0
...
...
@@ -49,7 +49,7 @@ server = Server('http://pypi.python.org/pypi')
links
=
list
()
dirname
=
sys
.
argv
[
1
]
write_index
(
'Zope2'
,
'2.1
2.0a3
'
)
write_index
(
'Zope2'
,
'2.1
3.0dev
'
)
for
package
in
CP
.
options
(
'versions'
):
...
...
inst/versions.py
View file @
746f8be0
ZOPE_MAJOR_VERSION
=
'2.1
2
'
ZOPE_MAJOR_VERSION
=
'2.1
3
'
ZOPE_MINOR_VERSION
=
'0'
ZOPE_BRANCH_NAME
=
'$Name$'
[
6
:]
or
'no-branch'
# always start prerelease branches with '0' to avoid upgrade
# issues in RPMs
VERSION_RELEASE_TAG
=
'
b1
'
VERSION_RELEASE_TAG
=
'
0.dev
'
setup.py
View file @
746f8be0
...
...
@@ -19,7 +19,7 @@ from setuptools import setup, find_packages, Extension
EXTENSIONCLASS_INCLUDEDIRS
=
[
'include'
,
'src'
]
params
=
dict
(
name
=
'Zope2'
,
version
=
'2.13dev'
,
version
=
'2.13
.0
dev'
,
url
=
'http://www.zope.org'
,
license
=
'ZPL 2.1'
,
description
=
'Zope2 application server / web framework'
,
...
...
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