Zend_Console_Progressbar goes Zend_ProgressBar

After Ralph poked be a bit around, I started to refactor Zend_Console_ProgressBar. The result was a solution of the well known "ProgressBar Problem", which often occures in RIAs (Rich Internet Applications). If you have some long-running process, like sending out hundreds of emails, and you want to do it in real-time. You would like to inform the user about the process. For this purpose, Zend_ProgressBar ships with a Comet adapter, which enables you to display the process to the user via the forever-frame technique. The adapter itself is library-independent, which means, that you can use it with any JavaScript library or even without any.

The entire component is currently waiting for approval and will hopefully soon be in trunk.