From: Benoît Pin Date: Wed, 27 Oct 2010 16:35:50 +0000 (+0200) Subject: Bugfixe : utilisation du caractère tabulation comme séparateur dans les paths envoyés... X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/commitdiff_plain/df7e1f0be93eec90ec3f6a998f45f5d83101bffe Bugfixe : utilisation du caractère tabulation comme séparateur dans les paths envoyés (au lieu du « / » qui peut être présent dans un nom de collection publié). --- diff --git a/skins/lrservice.py b/skins/lrservice.py index fad05e8..d41d355 100644 --- a/skins/lrservice.py +++ b/skins/lrservice.py @@ -14,7 +14,7 @@ method = fg('method') if method == 'normaliseAndCreatePath' : normalizedPath = [] o = portal - path = fg('path', '').split('/') + path = fg('path', '').split(' ') # séparateur : 0x09 (tabulation) for part in path : validId = makeValidId(o, part, allow_dup=1) if o.hasObject(validId) :