Search:   Help

ProgressBar

<< | Page list | >>

Progress bar main page

<< | Progress bar | Progress bar test 1 >>

Related pages:

Cookbook page: http://pmwiki.org/wiki/Cookbook/ProgressBar

Syntax of progressbar: (:pb <fraction-completed> <time-remaining>:).

(:pb fraction-completed time-remaining :)
  • hmm (:pb 10 50:)
  • hmm (:pb ? 40:)
  • hmm (:pb 100 30:)

Structure of rendered progress bar

<span class='pb-float'> - controls floating
   <span class='pb-val'>
     "70% (5 h)"  	
   </span>	- ?
   <span class='pb-box'>
     <span class='pb-bar' %s title='Status=$value'>	- $style
       %s						- $done.$due
     </span>
%s						- $notDone
     </span>
   $b
</span>

The classes are defined as follows:

.pb-float {
	float:right;
	height:0%;
	clear:both;
}
.pb-val {
	white-space: pre;
	font-size: xx-small;
}
.pb-box {
	font-family: monospace;
	font-size: xx-small;
	white-space: pre;
	border: 1px dotted black;
.pb-bar { background-color: black; }
}

1.  Task 1, progress at end (:pb 10 50:)

2.  Another task (:pb 40 10:)

2.1  A subtask (:pb 100 -:)

3.  (:pb 25 50:) Task 2

4.  (:pb 50 5:) Task 3

Edit - History - Print - Recent Changes - All Recent Changes - Search
Page last modified on 2006-04-09 20:38 UTC