projects
/
Portfolio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c8d6d0
)
Bugfixe : utilisation du caractère tabulation comme séparateur dans les paths envoyés...
author
Benoît Pin
<benoit.pin@gmail.com>
Wed, 27 Oct 2010 16:35:50 +0000
(18:35 +0200)
committer
Benoît Pin
<benoit.pin@gmail.com>
Wed, 27 Oct 2010 16:35:50 +0000
(18:35 +0200)
skins/lrservice.py
patch
|
blob
|
history
diff --git
a/skins/lrservice.py
b/skins/lrservice.py
index
fad05e8
..
d41d355
100644
(file)
--- 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) :