add special handling for download URLs with '/'
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3226 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
af031fa585
commit
bd66ed2ff4
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class ItemView(BaseView):
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
extension = '.' + extensions[0]
|
extension = '.' + extensions[0]
|
||||||
title = self.title.encode('UTF-8')
|
title = self.title.encode('UTF-8').replace('/', '|')
|
||||||
return '%s/d%s/%s%s' % (baseUrl, urlInfo.path, title, extension)
|
return '%s/d%s/%s%s' % (baseUrl, urlInfo.path, title, extension)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Add table
Reference in a new issue