- 17 Jun, 2002 4 commits
-
-
Andreas Jung authored
caused trouble with backward compatiblity. The content of the __init__.py is necessary for pre-2.6 installation but no longer used in 2.6.
-
Jeremy Hylton authored
-
Brian Lloyd authored
better performance for higher end machines (that are more likely to be in use in production systems).
-
Brian Lloyd authored
-
- 16 Jun, 2002 1 commit
-
-
Shane Hathaway authored
-
- 15 Jun, 2002 4 commits
-
-
Chris McDonough authored
Caused the meta-signal-handler method to log when a registered handler fails. Also fixed a bug in logfile rotation.
-
Chris McDonough authored
-
Chris McDonough authored
A couple of documentation and formatting cleanups. Warn if users are using Python 2.1.X where X < 3. Warn if users are using Python 2.2.
-
Chris McDonough authored
-
- 14 Jun, 2002 8 commits
-
-
Casey Duncan authored
-
Casey Duncan authored
-
Jeremy Hylton authored
importance of cache size and the need to recompile extensions for PER_GHOSTIFY(). Add entries for the Connection change made today and a very generic entry to describe all the BTrees bugs that Tim has fixed.
-
Brian Lloyd authored
encoding with cache servers.
-
Brian Lloyd authored
-
Brian Lloyd authored
-
Shane Hathaway authored
-
Guido van Rossum authored
reported errors about this; hopefully it will now work again (if they use setup.py for their build).
-
- 13 Jun, 2002 2 commits
-
-
Casey Duncan authored
-
Brian Lloyd authored
-
- 12 Jun, 2002 17 commits
-
-
Tim Peters authored
with an alternative that works under command.com too. Building the splitters still fails on command.com systems because the synthesized command lines are very long (command.com appears to truncate them, leaving gibberish commands).
-
Brian Lloyd authored
-
Brian Lloyd authored
-
Casey Duncan authored
Reimplemented Index.length to use a BTree.Length. Previous dynamic computation was way too slow for big indexes. Updated tests to include length value checks
-
Shane Hathaway authored
so makes the full suite brittle. Cleaned out all the places where unit tests change sys.path. (Use the PYTHONPATH environment variable instead.) Also brought SearchIndex tests up to date, which I didn't really need to do since SearchIndex is deprecated, but I did it as part of figuring out the failed Interface tests, so I might as well check in my work. ;-) One of the test modules in SearchIndex forgets to define a global named "Dummy", actually, so all the tests were failing before this checkin anyway.
-
Shane Hathaway authored
-
Brian Lloyd authored
-
Brian Lloyd authored
-
Shane Hathaway authored
-
Shane Hathaway authored
-
Shane Hathaway authored
-
Shane Hathaway authored
the _p_jar attributes set.
-
Shane Hathaway authored
attribute. The ownership code must take this into account.
-
Casey Duncan authored
-
Casey Duncan authored
-
Chris McDonough authored
-
Chris McDonough authored
A moment of silence, please.
-
- 11 Jun, 2002 4 commits
-
-
Chris McDonough authored
-
Chris McDonough authored
in order to comply with nested scopes rules.
-
Chris McDonough authored
-
Chris McDonough authored
All Zope process will respond to signals in the specified manner: SIGHUP - close open database connections and sockets, then restart the process SIGTERM - close open database connections and sockets, then shut down. SIGINT - same as SIGTERM SIGUSR2 - rotate all Zope log files (z2.log, event log, detailed log) The common idiom for doing automated logfile rotation will become: kill -USR2 `cat /path/to/var/z2.pid` The common idiom for doing "prophylactic" restarts will become: kill -HUP `cat /path/to/var/z2.pid` When a process is interrupted via ctrl-C or via a TERM signal (INT, TERM), all open database connections and sockets will be closed before the process dies. This will speed up restart time for sites that use a FileStorage as its index will be written to the filesystem before shutdown. Unspecified signals kill the process without doing cleanup.
-