this is a bit of a hack, but it makes things like
SubWeb.Sub.TopicName
work (and not just
SubWeb/Sub.TopicName
format). longer term, it would be better to have the core parse web and topic names (or maybe some normalize functions)
twikibuilder@ubuntu:~/twiki/DEVELOP/twikiplugins/ImageGalleryPlugin$ svn diff
Index: lib/TWiki/Plugins/ImageGalleryPlugin/Core.pm
===================================================================
--- lib/TWiki/Plugins/ImageGalleryPlugin/Core.pm (revision 7525)
+++ lib/TWiki/Plugins/ImageGalleryPlugin/Core.pm (working copy)
@@ -155,6 +155,7 @@
$this->writeDebug("oops, skipping $theTopic");
next;
}
+ $theWeb =~ s|\.|/|g; # convert subweb .'s into /'s because this is used as the filename
push @{$this->{topics}}, "$theWeb.$theTopic";
}
WN
Ah, this is in line with TWiki::normalizeWeTopicName doing the same substitution. If that's working then check it in.
I'll fetch it back and release a new package.
MD.
This item was lost from the lists due to not having a codebase field. An archaeologist stumbled over it on 3/2/07
CC