Mercurial > p > roundup > code
comparison roundup/backends/__init__.py @ 1088:32e41ddf2edb
removed Log
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Sep 2002 00:11:50 +0000 |
| parents | ca0a542b2d19 |
| children | 14467c765167 |
comparison
equal
deleted
inserted
replaced
| 1087:f77fe25ed39a | 1088:32e41ddf2edb |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: __init__.py,v 1.15 2002-08-23 04:48:10 richard Exp $ | 18 # $Id: __init__.py,v 1.16 2002-09-10 00:11:49 richard Exp $ |
| 19 | 19 |
| 20 __all__ = [] | 20 __all__ = [] |
| 21 | 21 |
| 22 try: | 22 try: |
| 23 import sys, anydbm | 23 import sys, anydbm |
| 70 else: | 70 else: |
| 71 import back_metakit | 71 import back_metakit |
| 72 metakit = back_metakit | 72 metakit = back_metakit |
| 73 __all__.append('metakit') | 73 __all__.append('metakit') |
| 74 | 74 |
| 75 # | |
| 76 # $Log: not supported by cvs2svn $ | |
| 77 # Revision 1.14 2002/08/22 07:56:51 richard | |
| 78 # Whee! It's not finished yet, but I can create a new instance and play with | |
| 79 # it a little bit :) | |
| 80 # | |
| 81 # Revision 1.13 2002/07/11 01:11:03 richard | |
| 82 # Added metakit backend to the db tests and fixed the more easily fixable test | |
| 83 # failures. | |
| 84 # | |
| 85 # Revision 1.12 2002/05/22 00:32:33 richard | |
| 86 # . changed the default message list in issues to display the message body | |
| 87 # . made backends.__init__ be more specific about which ImportErrors it really | |
| 88 # wants to ignore | |
| 89 # . fixed the example addresses in the templates to use correct example domains | |
| 90 # . cleaned out the template stylesheets, removing a bunch of junk that really | |
| 91 # wasn't necessary (font specs, styles never used) and added a style for | |
| 92 # message content | |
| 93 # | |
| 94 # Revision 1.11 2002/02/16 08:39:42 richard | |
| 95 # . #516854 ] "My Issues" and redisplay | |
| 96 # | |
| 97 # Revision 1.10 2002/01/22 07:08:50 richard | |
| 98 # I was certain I'd already done this (there's even a change note in | |
| 99 # CHANGES)... | |
| 100 # | |
| 101 # Revision 1.9 2001/12/12 02:30:51 richard | |
| 102 # I fixed the problems with people whose anydbm was using the dbm module at the | |
| 103 # backend. It turns out the dbm module modifies the file name to append ".db" | |
| 104 # and my check to determine if we're opening an existing or new db just | |
| 105 # tested os.path.exists() on the filename. Well, no longer! We now perform a | |
| 106 # much better check _and_ cope with the anydbm implementation module changing | |
| 107 # too! | |
| 108 # I also fixed the backends __init__ so only ImportError is squashed. | |
| 109 # | |
| 110 # Revision 1.8 2001/12/10 22:20:01 richard | |
| 111 # Enabled transaction support in the bsddb backend. It uses the anydbm code | |
| 112 # where possible, only replacing methods where the db is opened (it uses the | |
| 113 # btree opener specifically.) | |
| 114 # Also cleaned up some change note generation. | |
| 115 # Made the backends package work with pydoc too. | |
| 116 # | |
| 117 # Revision 1.7 2001/12/10 00:57:38 richard | |
| 118 # From CHANGES: | |
| 119 # . Added the "display" command to the admin tool - displays a node's values | |
| 120 # . #489760 ] [issue] only subject | |
| 121 # . fixed the doc/index.html to include the quoting in the mail alias. | |
| 122 # | |
| 123 # Also: | |
| 124 # . fixed roundup-admin so it works with transactions | |
| 125 # . disabled the back_anydbm module if anydbm tries to use dumbdbm | |
| 126 # | |
| 127 # Revision 1.6 2001/08/07 00:24:42 richard | |
| 128 # stupid typo | |
| 129 # | |
| 130 # Revision 1.5 2001/08/07 00:15:51 richard | |
| 131 # Added the copyright/license notice to (nearly) all files at request of | |
| 132 # Bizar Software. | |
| 133 # | |
| 134 # | |
| 135 # | |
| 136 # vim: set filetype=python ts=4 sw=4 et si | 75 # vim: set filetype=python ts=4 sw=4 et si |
