]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/baculum/framework/Web/UI/WebControls/TFlushOutput.php
baculum: New Baculum API and Baculum Web
[bacula/bacula] / gui / baculum / framework / Web / UI / WebControls / TFlushOutput.php
index dba35c790d7d9103f3581b63822090fe17e3da17..a88b91fc11306ae1a18e2a3a3c0a3bd921887462 100644 (file)
@@ -3,9 +3,8 @@
  * TFlushOutput class file
  *
  * @author Berczi Gabor <gabor.berczi@devworx.hu>
- * @link http://www.pradosoft.com/
- * @license http://www.pradosoft.com/license/
- * @version $Id: TFlushOutput.php $
+ * @link https://github.com/pradosoft/prado
+ * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
  * @package System.Web.UI.WebControls
  */
 
  * <com:TFlushOutput />
  * </code>
  *
- * You can specify whether you want to keep buffering of the output 
+ * You can specify whether you want to keep buffering of the output
  * (if it was enabled) till the next occourence of a <com: TFlushOutput />
- * or the end of the page rendering, or stop buffering, by using the 
+ * or the end of the page rendering, or stop buffering, by using the
  * {@link setContinueBuffering ContinueBuffering}.
  *
  * @author Berczi Gabor <gabor.berczi@devworx.hu>
- * @version $Id: TFlushOutput.php  $
  * @package System.Web.UI.WebControls
  * @since 3.1
  */
-class TFlushOutput extends TControl 
+class TFlushOutput extends TControl
 {
        /**
         * @var boolean whether to continue buffering of output
@@ -73,7 +71,7 @@ class TFlushOutput extends TControl
        public function render($writer)
        {
 //$writer->write('<!-- flush -->');
-               // ajax responses can't be parsed by the client side before loaded and returned completely, 
+               // ajax responses can't be parsed by the client side before loaded and returned completely,
                // so don't bother with flushing output somewhere mid-page if refreshing in a callback
                if (!$this->Page->IsCallback)
                {