From a8568ae4cf96947c6247744ed2dbc257ed360e9a Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 5 Apr 2007 18:18:07 +0000 Subject: [PATCH] - avoid newline at the end of - remove private properties - document remaining properties and constants git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@233347 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/http/HttpResponse.xml | 57 ++++++++++----------------------- 1 file changed, 17 insertions(+), 40 deletions(-) diff --git a/reference/http/HttpResponse.xml b/reference/http/HttpResponse.xml index fee8e6cea2..8b06617c97 100644 --- a/reference/http/HttpResponse.xml +++ b/reference/http/HttpResponse.xml @@ -1,5 +1,5 @@ - + @@ -7,9 +7,7 @@ HTTP Response Class - - static class HttpResponse - + static class HttpResponse Class Members @@ -27,80 +25,59 @@ - - private - boolean - sent - - - private - boolean - catch - - - private - integer - mode - - - private - resource - stream - - - private - string - file - - - private - string - data - protected boolean cache + whether the caching the response should be attempted protected boolean gzip + whether the sent entity should be gzip'ed on the fly protected string eTag + the generated or custom ETag protected integer lastModified + the generated or custom timestamp of last modification protected string cacheControl + Cache-Control setting protected string contentType + the Content-Type of the sent entity protected string contentDisposition + the Content-Disposition of the sent entity protected integer bufferSize + the chunk buffer size used for throttling protected double throttleDelay + the seconds to delay when throttling @@ -122,32 +99,32 @@ integer REDIRECT - + guess applicable redirect method integer REDIRECT_PERM - + permanent redirect (301 Moved permanently) integer REDIRECT_FOUND - + standard redirect (302 Found) integer REDIRECT_POST - + redirect applicable to POST requests (303 See other) integer REDIRECT_PROXY - + proxy redirect (305 Use proxy) integer REDIRECT_TEMP - + temporary redirect (307 Temporary Redirect)