Issue 640: Admin->Settings->General->Site Settings->Server adds an extra
slash to the end of the url.
http://code.google.com/p/reviewboard/issues/detail?id=640
Comment #14 by chipx86:
It's possible, though I'd hope not.
A workaround we can put in place is to check the resulting value from loads
in
fields.py and, if it's a string, attempt to loads the result of that
(catching any
errors and discarding that result). At that point we should have something
that's valid.
Maybe you can try this.. Edit that fields.py file and, in loads, change:
return simplejson.loads(s, encoding=settings.DEFAULT_CHARSET)
to:
value = simplejson.loads(s, encoding=settings.DEFAULT_CHARSET)
if isinstance(value, basestring):
try:
value = simplejson.loads(value,
encoding=settings.DEFAULT_CHARSET)
except:
pass
return value
See if that does anything useful.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"reviewboard-issues" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/reviewboard-issues?hl=en
-~----------~----~----~----~------~----~------~--~---