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
8c187177
Commit
8c187177
authored
May 31, 2008
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wrap long lines.
parent
c6999dba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
44 deletions
+50
-44
doc/CHANGES.txt
doc/CHANGES.txt
+50
-44
No files found.
doc/CHANGES.txt
View file @
8c187177
...
@@ -94,30 +94,32 @@ Zope Changes
...
@@ -94,30 +94,32 @@ Zope Changes
possible to mix ZTC and non-ZTC tests much more freely.
possible to mix ZTC and non-ZTC tests much more freely.
- Testing/custom_zodb.py: added support use a different storage other
- Testing/custom_zodb.py: added support use a different storage other
than DemoStorage. A dedicated FileStorage can be mount by setting
the
than DemoStorage. A dedicated FileStorage can be mount by setting
$TEST_FILESTORAGE environment variable to a custom Data.fs file. A
the $TEST_FILESTORAGE environment variable to a custom Data.fs
ZEO server can be configured using the $TEST_ZEO_HOST and
file. A ZEO server can be configured using the $TEST_ZEO_HOST and
$TEST_ZEO_PORT environment variables. This new functionality allows
us
$TEST_ZEO_PORT environment variables. This new functionality allows
to use the standard Zope testrunner for writing and running tests
us to use the standard Zope testrunner for writing and running
against existing Zope installations.
tests
against existing Zope installations.
- The ZPublisher HTTP request has now both the debug and locale
- The ZPublisher HTTP request has now both the debug and locale
attributes available, like its Zope 3 counterpart. The debug attribute
attributes available, like its Zope 3 counterpart. The debug
was so far limited to code from the zope.* namespace in order to make
attribute was so far limited to code from the zope.* namespace in
the Zope 3 ZPT engine work. The locale attribute provides access to an
order to make the Zope 3 ZPT engine work. The locale attribute
zope.i18n.interfaces.locales.ILocale object with access to locale
provides access to an zope.i18n.interfaces.locales.ILocale object
related information like date / time formatting or translated language
with access to locale related information like date / time
and country names. Form variables of both debug and locale will shadow
formatting or translated language and country names. Form variables
these two attributes and their use is therefor discouraged.
of both debug and locale will shadow these two attributes and their
use is therefor discouraged.
- MailHost: now uses zope.sendmail for delivering the mail. With this change
MailHost integrates with the Zope transaction system (avoids sending dupe
- MailHost: now uses zope.sendmail for delivering the mail. With this
emails in case of conflict errors). In addition MailHost now provides
change MailHost integrates with the Zope transaction system (avoids
support for asynchronous mail delivery. The 'Use queue' configuration
sending dupe emails in case of conflict errors). In addition
option will create a mail queue on the filesystem (under
MailHost now provides support for asynchronous mail delivery. The
'Queue directory') and start a queue thread that checks the queue every
'Use queue' configuration option will create a mail queue on the
three seconds. This decouples the sending of mail from its delivery.
filesystem (under 'Queue directory') and start a queue thread that
In addition MailHosts now supports encrypted connections through TLS/SSL.
checks the queue every three seconds. This decouples the sending of
mail from its delivery. In addition MailHosts now supports
encrypted connections through TLS/SSL.
- integrated ZODB 3.8
- integrated ZODB 3.8
...
@@ -140,24 +142,26 @@ Zope Changes
...
@@ -140,24 +142,26 @@ Zope Changes
- PythonScripts: allow usage of Python's 'sets' module
- PythonScripts: allow usage of Python's 'sets' module
- added 'fast_listen' directive to http-server and webdav-source-server
- added 'fast_listen' directive to http-server and
sections in etc/zope.conf in order to defer the opening of the sockets
webdav-source-server sections in etc/zope.conf in order to defer
until the late startup phase. This in in particular useful when running
the opening of the sockets until the late startup phase. This in in
Zope behind a loadbalancer (patch by Patrick Gerken).
particular useful when running Zope behind a loadbalancer (patch by
Patrick Gerken).
- the ZopePageTemplate implementation now uses unicode internally.
- the ZopePageTemplate implementation now uses unicode internally.
Non-unicode instances are migrated on-the-fly to unicode. However this
Non-unicode instances are migrated on-the-fly to unicode. However
will work only properly for ZPT instances formerly encoded as utf-8 or
this will work only properly for ZPT instances formerly encoded as
ISO-8859-15. For other encodings you might set the environment variable
utf-8 or ISO-8859-15. For other encodings you might set the
ZPT_REFERRED_ENCODING to insert your preferred encoding in front of
environment variable ZPT_REFERRED_ENCODING to insert your preferred
utf-8 and ISO-8859-15 within the encoding sniffer code.
encoding in front of utf-8 and ISO-8859-15 within the encoding
sniffer code.
In addition there is a new 'output_encodings' property that controls
In addition there is a new 'output_encodings' property that controls
the conversion from/to unicode for WebDAV/FTP operations.
the conversion from/to unicode for WebDAV/FTP operations.
- the ZPT implementation has now a configurable option in order how
to
- the ZPT implementation has now a configurable option in order how
deal with UnicodeDecodeErrors. A custom UnicodeEncodingConflictResolver
to deal with UnicodeDecodeErrors. A custom
can be configured through ZCML (see
UnicodeEncodingConflictResolver
can be configured through ZCML (see
Products/PageTemplates/(configure.zcml, unicodeconflictresolver.py,
Products/PageTemplates/(configure.zcml, unicodeconflictresolver.py,
interfaces.py)
interfaces.py)
...
@@ -317,8 +321,8 @@ Zope Changes
...
@@ -317,8 +321,8 @@ Zope Changes
- No longer opens a zodb connection every time a ProductDispatcher
- No longer opens a zodb connection every time a ProductDispatcher
is looked up.
is looked up.
- PageTemplate/ZRPythonExpr.py: expressions represented as unicode
string
- PageTemplate/ZRPythonExpr.py: expressions represented as unicode
caused UnicodeDecodeErrors.
string
caused UnicodeDecodeErrors.
- PluginIndexes: Fixed 'parseIndexRequest' for false values.
- PluginIndexes: Fixed 'parseIndexRequest' for false values.
...
@@ -913,7 +917,8 @@ Zope Changes
...
@@ -913,7 +917,8 @@ Zope Changes
- doc/FAQ.txt updated: should bear some resemblance to reality now.
- doc/FAQ.txt updated: should bear some resemblance to reality now.
(PCGI stuff removed; error information updated; PID information
(PCGI stuff removed; error information updated; PID information
updated; upgrade procedure added; some common version questions added.)
updated; upgrade procedure added; some common version questions
added.)
- Collector #1770: Fixed RestructuredText subtitle
- Collector #1770: Fixed RestructuredText subtitle
...
@@ -1226,17 +1231,18 @@ Zope Changes
...
@@ -1226,17 +1231,18 @@ Zope Changes
- Collector #934: Image and File objects are now always internally
- Collector #934: Image and File objects are now always internally
split into small chunks even when initialized from a string.
split into small chunks even when initialized from a string.
- docutils: updated to V 0.3.5. The Zope core now contains a full copy of
- docutils: updated to V 0.3.5. The Zope core now contains a full
the docutils package except some GPLed files which can not be included
copy of the docutils package except some GPLed files which can not
with the Zope distribution due to license constraints on svn.zope.org.
be included with the Zope distribution due to license constraints
on svn.zope.org.
- docutils: moved from lib/python/docutils to
- docutils: moved from lib/python/docutils to
lib/python/third_party/docutils
lib/python/third_party/docutils
- Collector #1557/OFS.Image: Introducing new 'alt' property. The
'alt'
- Collector #1557/OFS.Image: Introducing new 'alt' property. The
attribute is no longer taken from the 'title' property but from the new
'alt' attribute is no longer taken from the 'title' property but
'alt' property. The border="0" attribute is no longer part of the HTML
from the new 'alt' property. The border="0" attribute is no longer
output except specified otherwise.
part of the HTML
output except specified otherwise.
- Set a default value of '' for the new 'alt' property as not to
- Set a default value of '' for the new 'alt' property as not to
break existing content.
break existing content.
...
...
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