]> git.mxchange.org Git - core.git/commit
HttpRequest and HttpResponse were to generic as they were only used for HTML
authorRoland Haeder <roland@mxchange.org>
Mon, 23 Mar 2015 02:17:22 +0000 (03:17 +0100)
committerRoland Haeder <roland@mxchange.org>
Mon, 23 Mar 2015 02:17:22 +0000 (03:17 +0100)
commitbb1e3a7f36ad3f7fa235c7601586d0caebd71ed1
tree54a555d6882514d027d1cb614a3c7ba89c912be2
parentdf2e651915deb67dc47b37943afb31298d185dc9
HttpRequest and HttpResponse were to generic as they were only used for HTML
responses. Later on this framework will also handle other protocols or formats
that are based on HTTP (such as RSS). So by using Http as class prefix but
actually responding with HTML will exclude such other response types which is
not a good idea.

Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/class_BaseFrameworkSystem.php
inc/classes/main/request/html/.htaccess [new file with mode: 0644]
inc/classes/main/request/html/class_HtmlRequest.php [new file with mode: 0644]
inc/classes/main/request/web/.htaccess [deleted file]
inc/classes/main/request/web/class_HttpRequest.php [deleted file]
inc/classes/main/response/html/.htaccess [new file with mode: 0644]
inc/classes/main/response/html/class_HtmlResponse.php [new file with mode: 0644]
inc/classes/main/response/http/.htaccess [deleted file]
inc/classes/main/response/http/class_HttpResponse.php [deleted file]