This question about Missing functionality: Answered
How to append REVINFO to topic tree
I would like to know if it is possible to get an unordered topic tree list using
TreePlugin with each topic appended by the revision of that topic. (provided by REVINFO variable)
Something like:
ParentTopic - r3
- AnotherTopic - r2
- YetAnotherTopic - r1
- LastTopic - r3
--
ChrisPurves - 06 Feb 2009
%TREE{
web="%WEB%"
topic="Support.WebHome"
formatting="outline"
format=" * [[$web.$topic][$topic]] - $percntREVINFO{r$rev}$percnt"
levelprefix=" "
}%
--
SeanMorgan - 13 Feb 2009
Sean, thanks for your help. That's exactly what I was looking for. I still wanted to have the root topic unbulleted. I played around with the IF statement and was able to get it work as follows:
%TREE{
web="%WEB%"
topic="Support.WebHome"
formatting="outline"
format="$percntIF{$quot '$topic'='WebHome' $quot then=$quot $quot else=$quot* $quot}$percnt[[$web.$topic][$topic]] - $percntREVINFO{r$rev}$percnt"
levelprefix=" "
}%
--
ChrisPurves - 13 Feb 2009