[Zope-Checkins] CVS: Zope/doc - CHANGES.txt:1.336.4.1 DEBUGGING.txt:1.4.8.1
Shane Hathaway
shane@digicool.com
Thu, 9 Aug 2001 13:33:59 -0400
Update of /cvs-repository/Zope/doc
In directory cvs.zope.org:/tmp/cvs-serv29115/doc
Modified Files:
Tag: NR-branch
CHANGES.txt DEBUGGING.txt
Log Message:
Sync NR-branch with trunk. Sorry about so many checkin messages...
=== Zope/doc/CHANGES.txt 1.336 => 1.336.4.1 ===
file HISTORY.txt.
- Changes since Zope 2.4 beta 1
+
+ - Collector #2412: a read-only FileStorage has not been closed
+ properly.
+
+ - Collector #2390: Objects of type 'Help Image' were not properly
+ re-registered inside registerHelp().
+
+ - Fixed broken FTP download for larger files.
+
+ - Collector # 2396: StructuredText did not allow URLs containing "%"
+
+ - Collector # 2397: StructuredText could not handle underlined text
+ properly. Also <dtml-var stxdoc ftm=structured-text> will no longer
+ produce <html>..<body> and </body>..</html>
+
+ - Collector #2438: Using a slice operation like [30:] on a
+ ZCatalog search result caused a MemoryError because
+ the __getslice__ implementation used range() instead
+ of xrange().
+
+ - Collector #2423: Searching a FieldIndexes for documents
+ with a blank string has been broken.
+
+ - WebDAV Lockmanager was not working due to a Python 2.1
+ incompatibility.
+
+ - Collector #2482: A COPY operation through WebDAV on a locked
+ resource left the destination resource in a locked state
+ so any WebDAV client was unable to unlock the destination
+ object. Locks are now cleared from the destination object.
+
+ - Error message AttributeError/_v_blocks when a DTMLfile is
+ not present or could not be read replaced by a more
+ informative message.
+
+ - Collector #2497: SERVER_PROTOCOL variable is now compliant
+ with the CGI specification and looks like "HTTP/1.1" instead
+ of "1.1"
+
+ - Creation of a TextIndex ignored the vocabulary setting.
+
+ - Fixed broken aquisition of vocabularies from a Catalog
+ by a TextIndex.
+
+ Zope 2.4 beta 2
Bugs fixed
+ - Some of the import shenanigans in ZService.py were still
+ trying to load Python 1.5 versions of support dlls for running
+ as a service under win32 (meaning you effectively couldn't).
+
- Collector #2335: older products like GadflyDA that did not
use registerClass() were registered but their visibility
- flag has not been set to Global. So these products did not
+ flag has not been set to Global. So these products did not
appear in the ZMF.
=== Zope/doc/DEBUGGING.txt 1.4 => 1.4.8.1 ===
If you wish to run Zope in debug mode, use the -D command line
- switch. This will have the following effect::
+ switch. This will have the following effects::
o On UNIX, Zope will not detach from the controlling terminal.
o Zope will print logging information to standard error.
o The Z_DEBUG_MODE environment variable gets set, which causes some
- other cool stuff in Zope to happen.
+ other cool stuff to happen in Zope.
Using the Medusa Monitor
@@ -41,8 +41,9 @@
'ZGadflyDA', 'ZSQLMethods', '_objects']
>>>
- To see ODB changes effected via the web since you got the app, you
- may have to do a bit of magic:
+ To see ODB changes caused by access concurrent with your debug
+ session (eg, those web connections that can still be happening, or
+ other debug sessions!), you may have to do a bit of magic:
>>> app._p_jar.sync()