]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/No_progress_in_progress_bar.mdwn
Adding a deprecated tag for plugins?
[git.ikiwiki.info.git] / doc / bugs / No_progress_in_progress_bar.mdwn
1 I've just upgraded my Ikiwiki to backported version 2.64 for Ubuntu Hardy
2 and wanted to see progress bar in action. Unfortunately, I can't see any progress.
4 This is my example Ikiwiki syntax:
6     [[!progress percent=75]]
8 A here is a HTML result:
10     <div class="progress">
11       <div class="progress-done"></div>
12     </div>
14 It seems that progress plugin works at all, but it's a problem with passing
15 progress value.
17 Anyone can confirm the bug? --[[PaweÅ‚|ptecza]]
19 > You are correct.  The above example does generate the HTML you suggest.  The
20 > plugin requires a % sign:
22 [[!progress percent="75%"]]
24 >  This could probably be improved.  Certainly the documentation could be. -- [[Will]]