Mercurial > p > roundup > code
comparison roundup/backends/__init__.py @ 438:9d97c1a4ddad
Notes from changes.
>From CHANGES:
. Added the "display" command to the admin tool - displays a node's values
. [SF#489760] [issue] only subject
. fixed the doc/index.html to include the quoting in the mail alias.
Also:
. fixed roundup-admin so it works with transactions
. disabled the back_anydbm module if anydbm tries to use dumbdbm
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 10 Dec 2001 00:57:38 +0000 |
| parents | 18134bffab37 |
| children | de5bf4191f11 |
comparison
equal
deleted
inserted
replaced
| 437:a1e778940f92 | 438:9d97c1a4ddad |
|---|---|
| 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.6 2001-08-07 00:24:42 richard Exp $ | 18 # $Id: __init__.py,v 1.7 2001-12-10 00:57:38 richard Exp $ |
| 19 | 19 |
| 20 __all__ = [] | 20 __all__ = [] |
| 21 | 21 |
| 22 try: | 22 try: |
| 23 import anydbm, dumbdbm | |
| 24 # dumbdbm in python 2,2b2, 2.1.1 and earlier is seriously broken | |
| 25 assert anydbm._defaultmod != dumbdbm | |
| 26 del anydbm | |
| 27 del dumbdbm | |
| 23 import back_anydbm | 28 import back_anydbm |
| 24 anydbm = back_anydbm | 29 anydbm = back_anydbm |
| 25 del back_anydbm | 30 del back_anydbm |
| 26 __all__.append('anydbm') | 31 __all__.append('anydbm') |
| 27 except: | 32 except: |
| 44 pass | 49 pass |
| 45 | 50 |
| 46 | 51 |
| 47 # | 52 # |
| 48 # $Log: not supported by cvs2svn $ | 53 # $Log: not supported by cvs2svn $ |
| 54 # Revision 1.6 2001/08/07 00:24:42 richard | |
| 55 # stupid typo | |
| 56 # | |
| 49 # Revision 1.5 2001/08/07 00:15:51 richard | 57 # Revision 1.5 2001/08/07 00:15:51 richard |
| 50 # Added the copyright/license notice to (nearly) all files at request of | 58 # Added the copyright/license notice to (nearly) all files at request of |
| 51 # Bizar Software. | 59 # Bizar Software. |
| 52 # | 60 # |
| 53 # | 61 # |
