summaryrefslogtreecommitdiff
path: root/rotord/rotord.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@herge.(none)>2013-07-05 16:34:57 +0100
committerTim Redfern <tim@herge.(none)>2013-07-05 16:34:57 +0100
commit2de9e3f35b537f36880f493aef2bc889a2a18b92 (patch)
tree31ecd47470540e884eaac8b99b55328a20ff92ed /rotord/rotord.cpp
parentafaf35edbad11bc7d71a6793116c229dcfc38f92 (diff)
preserve previous frame on seek fail
Diffstat (limited to 'rotord/rotord.cpp')
-rwxr-xr-xrotord/rotord.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/rotord/rotord.cpp b/rotord/rotord.cpp
index 6832318..5283798 100755
--- a/rotord/rotord.cpp
+++ b/rotord/rotord.cpp
@@ -45,6 +45,7 @@ caching the whole thing isn't a goer
*/
+/*
RotorRequestHandler::RotorRequestHandler(const std::string& format): _format(format){
}
@@ -65,7 +66,7 @@ void RotorRequestHandler::handleRequest(HTTPServerRequest& request,HTTPServerRes
ostr << dt;
ostr << "</p></body></html>";
}
-
+*/
RenderContextHandler::RenderContextHandler(const std::string _content,const HTTPServerResponse::HTTPStatus _status){
content=_content;
@@ -88,6 +89,8 @@ void RenderContextHandler::handleRequest(HTTPServerRequest& request,HTTPServerRe
HTTPRequestHandler* RotorRequestHandlerFactory::createRequestHandler(const HTTPServerRequest& request){
+
+ cerr<<"starting http response block"<<endl;
Logger& logger = Logger::get("Rotor");
Poco::URI theuri=Poco::URI(request.getURI());