--- \\Wiki\Transfer\Linke\RecentChanges.py.orig1.3.4 Mon Sep 19 10:11:38 2005 +++ \\Wiki\Transfer\Linke\RecentChanges.py Tue Oct 04 17:28:28 2005 @@ -12,6 +12,7 @@ from MoinMoin import util, wikiutil from MoinMoin.Page import Page from MoinMoin.logfile import editlog +from MoinMoin import config _DAYS_SELECTION = [1, 2, 3, 7, 14, 30, 60, 90] _MAX_DAYS = 7 @@ -28,7 +29,8 @@ _ = request.getText if line.action[:3] == 'ATT': import urllib - filename = urllib.unquote(line.extra) + filename = urllib.unquote(line.extra.encode(config.charset)) + filename = filename.decode(config.charset) if line.action == 'ATTNEW': comment = _("Upload of attachment '%(filename)s'.") % {'filename': filename} elif line.action == 'ATTDEL':