Mercurial > p > roundup > code
diff roundup/cgi/actions.py @ 3130:7308c3c5a943
docs editing from Jean Jordaan
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 12 Feb 2005 00:47:33 +0000 |
| parents | 7fefb1e29ed0 |
| children | 9aa9436a81e0 |
line wrap: on
line diff
--- a/roundup/cgi/actions.py Fri Feb 11 22:18:20 2005 +0000 +++ b/roundup/cgi/actions.py Sat Feb 12 00:47:33 2005 +0000 @@ -1,4 +1,4 @@ -#$Id: actions.py,v 1.42 2005-01-05 22:10:28 richard Exp $ +#$Id: actions.py,v 1.43 2005-02-12 00:47:17 richard Exp $ import re, cgi, StringIO, urllib, Cookie, time, random @@ -151,7 +151,7 @@ # The [1:] strips off the '?' character, it isn't part of the # query string. - url = req.indexargs_href('', {})[1:] + url = req.indexargs_url('', {})[1:] key = self.db.query.getkey() if key: @@ -556,7 +556,7 @@ urllib.quote(self.template)) if self.nodeid is None: req = templating.HTMLRequest(self.client) - url += '&' + req.indexargs_href('', {})[1:] + url += '&' + req.indexargs_url('', {})[1:] raise exceptions.Redirect, url class NewItemAction(EditCommon):
