summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 28e3bef)
raw | patch | inline | side by side (parent: 28e3bef)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 4 Sep 2002 07:12:19 +0000 (07:12 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 4 Sep 2002 07:12:19 +0000 (07:12 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1064 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/backends/back_anydbm.py | patch | blob | history | |
roundup/backends/back_gadfly.py | patch | blob | history |
index cfb2681405f1f1b2e51fcd6bae8d13e8f641f9b2..4cdc41dfc3f8be2741fb7ddcf346c501125e899e 100644 (file)
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-#$Id: back_anydbm.py,v 1.70 2002-09-04 04:29:36 richard Exp $
+#$Id: back_anydbm.py,v 1.71 2002-09-04 07:12:19 richard Exp $
'''
This module defines a backend that saves the hyperdatabase in a database
chosen by anydbm. It is guaranteed to always be available in python
l = []
for entry in value:
if type(entry) != type(''):
- raise ValueError, '"%s" link value (%s) must be '\
- 'String'%(key, value)
+ raise ValueError, '"%s" multilink value (%r) '
+ 'must contain Strings'%(key, value)
# if it isn't a number, it's a key
if not num_re.match(entry):
try:
#
#$Log: not supported by cvs2svn $
+#Revision 1.70 2002/09/04 04:29:36 richard
+#bugfix
+#
#Revision 1.69 2002/09/03 07:33:01 richard
#allow overiding of the index args roundup/cgi/templating.py
#
index 0ed6e033a6d46c6fbd9de8b9033779f90e9aa09d..c5d51333b0a214a166c2132fd42eb0222cb0f113 100644 (file)
-# $Id: back_gadfly.py,v 1.12 2002-09-04 04:30:18 richard Exp $
+# $Id: back_gadfly.py,v 1.13 2002-09-04 07:12:19 richard Exp $
__doc__ = '''
About Gadfly
============
l = []
for entry in value:
if type(entry) != type(''):
- raise ValueError, '"%s" link value (%s) must be '\
- 'String'%(key, value)
+ raise ValueError, '"%s" multilink value (%r) '
+ 'must contain Strings'%(key, value)
# if it isn't a number, it's a key
if not num_re.match(entry):
try:
#
# $Log: not supported by cvs2svn $
+# Revision 1.12 2002/09/04 04:30:18 richard
+# bugfix
+#
# Revision 1.11 2002/09/03 22:11:50 richard
# *** empty log message ***
#