From f58d980fb3c329beca42c209312860d4d972ba50 Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Thu, 12 Jul 2012 10:20:07 +0000 Subject: more documentation fixes --- framework/Web/Services/TRpcService.php | 2 +- framework/Web/UI/WebControls/TOutputCache.php | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/framework/Web/Services/TRpcService.php b/framework/Web/Services/TRpcService.php index 6eff6542..5f3a0b7e 100644 --- a/framework/Web/Services/TRpcService.php +++ b/framework/Web/Services/TRpcService.php @@ -128,7 +128,7 @@ class TRpcService extends TService throw new THttpException(405, 'Invalid request method "'.$_method.'"!'); // TODO Exception muss "Allow POST" Header setzen if(($_mimeType = $_request->getContentType()) === null) - throw new THttpException(406, 'Content-Type is missing!'); // TODO Exception muss gültige Content-Type werte zurück geben + throw new THttpException(406, 'Content-Type is missing!'); // TODO Exception muss gültige Content-Type werte zurück geben if(!in_array($_mimeType, array_keys($this->protocolHandlers))) throw new THttpException(406, 'Unsupported Content-Type!'); // TODO see previous diff --git a/framework/Web/UI/WebControls/TOutputCache.php b/framework/Web/UI/WebControls/TOutputCache.php index 37a1fd70..d1aff311 100644 --- a/framework/Web/UI/WebControls/TOutputCache.php +++ b/framework/Web/UI/WebControls/TOutputCache.php @@ -583,7 +583,18 @@ class TOutputCacheCalculateKeyEventParameter extends TEventParameter } } - +/** + * TOutputCacheTextWriterMulti class + * + * TOutputCacheTextWriterMulti is an internal class used by + * TOutputCache to write simultaneously to multiple writers. + * + * @author Gabor Berczi, DevWorx Hungary + * @author Qiang Xue + * @version $Id$ + * @package System.Web.UI.WebControls + * @since 3.2 + */ class TOutputCacheTextWriterMulti extends TTextWriter { protected $_writers; -- cgit v1.2.3