- 09 Jan, 2003 2 commits
-
-
Fred Drake authored
-
Fred Drake authored
intent being to make this easier to explain. - <sectiongroup type="foo"/> becomes <abstracttype name="foo"/> - <sectiontype type="foo"/> becomes <sectiontype name="foo"/> - <sectiontype ... group="foo"/> becomes <sectiontype ... implements="foo"/> - several internal names get changed to use names consistent with the new terminology
-
- 08 Jan, 2003 1 commit
-
-
Guido van Rossum authored
(Recreating this diff after outdating the wrong revision.) :-(
-
- 07 Jan, 2003 20 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
AF_UNIX addresses can be parsed even on Windows. This requires code that uses the socket-address values to change.
-
Guido van Rossum authored
-
Guido van Rossum authored
variables. Updated docstrings/comments.
-
Barry Warsaw authored
-
Barry Warsaw authored
(i.e. via ctrl-C) before it has a chance to make the killer connect, these zeoserver processes will eventually go away (and clean up their temp files).
-
Jeremy Hylton authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
- update the sectiontype attributes
-
Jeremy Hylton authored
-
Jeremy Hylton authored
XXX The deferred name isn't perfect, but async is already taken.
-
Jeremy Hylton authored
When a block transaction is stopped because the client disconnects, log a message at INFO level. Add a message at BLATHER level when a transaction acquires the commit lock.
-
Guido van Rossum authored
- Cache the translations from severity to level and string in dicts, so these are normally done with a single dict.get() call rather than a Python function call. - Extract the PEP 282 level first, and check it against the effective level of the logger, so we can take an early exit if the logger won't handle the event. - Got rid of textwrap. It slows things down, can frustrate grepping programs, and wasn't effective unless you were using Python 2.3 anyway. - Got rid of the addHandler(NullHandler()) (seems like superstition). - Got rid of the log_format class variable (YAGNI).
-
Jeremy Hylton authored
-
Fred Drake authored
the schema component library. (The facility itself still needs to be documented.)
-
Jeremy Hylton authored
The strategy classes stopped being useful, because the code had been modified to always use one of the strategies. The classes were left behind because editing the code to use a single class was too much work at the time. Move all the logic back into ZEOStorage. Rename non-public methods on the class to start with _. Use lambda: rather than getattr()() to invoke the method that gets delayed waiting for the storage lock.
-
Jeremy Hylton authored
XXX Need to settle on a good name for this var and make sure the schema and code agree on it.
-
Jeremy Hylton authored
-
- 06 Jan, 2003 5 commits
-
-
Fred Drake authored
- add a simple example of basic usage that should satisfy many applications
-
Fred Drake authored
possibly being removed in the future.
-
Jeremy Hylton authored
There's now concrete test of recursively defined section types.
-
Fred Drake authored
XXX Probably not usable until a better schema import mechanism is implemented.
-
Fred Drake authored
-
- 03 Jan, 2003 9 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
available or not, and also fixes to all the tests so they won't crap out or complain if not. To test whether these storages are avialable (including all package dependencies), do: import BDBStorage if BDBStorage.is_available: # okay to use Also, in BDBStorage/__init__.py do some cross-platform compatibility for the bsddb module; in Python 2.3 we can just use the built-in module, but in earlier Pythons we have to use bsddb3. Now you can just use "from BDBStorage import db" to get the proper db object.
-
Barry Warsaw authored
available or not, and also fixes to all the tests so they won't crap out or complain if not. To test whether these storages are avialable (including all package dependencies), do: import BDBStorage if BDBStorage.is_available: # okay to use Also, in BDBStorage/__init__.py do some cross-platform compatibility for the bsddb module; in Python 2.3 we can just use the built-in module, but in earlier Pythons we have to use bsddb3. Now you can just use "from BDBStorage import db" to get the proper db object.
-
Fred Drake authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Fred Drake authored
-
Fred Drake authored
Copyright notices get 2003 added as well. The zconfig-schema-devel-branch should no longer be used.
-
Guido van Rossum authored
should not be in the list of options passed to getopt()!
-
- 02 Jan, 2003 3 commits
-
-
Fred Drake authored
-
Guido van Rossum authored
configuration file (or URL).
-
Shane Hathaway authored
that OIDs are required to be strings, but AdaptableStorage permits any length, and so might other storages.
-