summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitattributes1
-rw-r--r--framework/Web/UI/ActiveControls/TCallbackResponse.php62
2 files changed, 0 insertions, 63 deletions
diff --git a/.gitattributes b/.gitattributes
index e183b3dd..485622ef 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1026,7 +1026,6 @@ framework/Web/UI/ActiveControls/TCallback.php -text
framework/Web/UI/ActiveControls/TCallbackClientScript.php -text
framework/Web/UI/ActiveControls/TCallbackClientSideOptions.php -text
framework/Web/UI/ActiveControls/TCallbackOptions.php -text
-framework/Web/UI/ActiveControls/TCallbackResponse.php -text
framework/Web/UI/TClientScriptManager.php -text
framework/Web/UI/TCompositeControl.php -text
framework/Web/UI/TControl.php -text
diff --git a/framework/Web/UI/ActiveControls/TCallbackResponse.php b/framework/Web/UI/ActiveControls/TCallbackResponse.php
deleted file mode 100644
index b28d817b..00000000
--- a/framework/Web/UI/ActiveControls/TCallbackResponse.php
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-
-/**
- *
- */
-class TCallbackResponse extends THttpResponse
-{
- private $_writers=array();
-
- public function createHtmlWriter($type=null,$parameter=null)
- {
- $writer = new TCallbackResponseWriter($parameter);
- $this->_writers[] = $writer;
- if($type===null)
- $type=$this->getHtmlWriterType();
- return Prado::createComponent($type,$writer);
- }
-
- public function flush()
- {
- foreach($this->_writers as $writer)
- echo $writer->flush();
- parent::flush();
- }
-}
-
-class TCallbackResponseWriter extends TTextWriter
-{
- private $_boundary;
- private $_response;
-
- public function __construct($response)
- {
- $this->_response = $response;
- $this->_boundary = sprintf('%x',crc32((string)$this));
- }
-
- public function getResponse()
- {
- return $this->_response;
- }
-
- public function getBoundary()
- {
- return $this->_boundary;
- }
-
- public function setBoundary($value)
- {
- $this->_boundary = $value;
- }
-
- public function flush()
- {
- $content = '<!--'.$this->getBoundary().'-->';
- $content .= parent::flush();
- $content .= '<!--//'.$this->getBoundary().'-->';
- return $content;
- }
-}
-
-?> \ No newline at end of file