Item9040: WorkflowPlugin is only working on CamelCase topics
Priority: Normal
Current State: No Action Required
Released In:
Target Release: patch
WorkflowPlugin does not work with topics which are not
CamelCase.
It does not handle e.g. New001, but only
NeW001
I consider this a bug, as I and Crawford see no need for this.
--
IngoWolf - 19 May 2010
commenting line 83 in
WorkflowPlugin.pm changes to normal behaviour
#Bug?# return undef unless Foswiki::Func::isValidTopicName( $topic );
--
IngoWolf - 19 May 2010
What you are saying is "Workflow plugin only works with valid topic names".
You can extend the range of valid topic names in
configure
.
Not a bug; a feature.
--
CrawfordCurrie - 19 May 2010
CDot: configure defines a regex which is used to validate topic names
--
IngoWolf - 20 May 2010
# Allow non-wikiwords
return undef unless Foswiki::Func::isValidTopicName( $topic, 1 );
--
IngoWolf - 20 May 2010
in line 83 in WorkflowPlugin.pm solves the problem
--
IngoWolf - 20 May 2010
Duplicate of
Item8321
--
CrawfordCurrie - 20 May 2010