- socket << "Content-Type: text/html; charset=iso-8859-1" << std::endl;
- response_xml << "<html>" << std::endl;
- response_xml << " <head>" << std::endl;
- response_xml << " <title>PlaQui v0.1</title>" << std::endl;
- response_xml << " </head>" << std::endl;
- response_xml << " <body>" << std::endl;
- response_xml << " <h1>PlaQui</h1>" << std::endl;
- response_xml << " <p>versión 0.2</p>" << std::endl;
- response_xml << " <h2>Pedido HTTP</h2>" << std::endl;
- response_xml << " <ul>" << std::endl;
- for (Request::const_iterator i = request.begin(); i != request.end();
- i++) {
+ socket << "Content-Type: text/html; charset=iso-8859-1" << endl;
+ response_xml << "<html>" << endl;
+ response_xml << " <head>" << endl;
+ response_xml << " <title>PlaQui v0.4</title>" << endl;
+ response_xml << " </head>" << endl;
+ response_xml << " <body>" << endl;
+ response_xml << " <h1>PlaQui</h1>" << endl;
+ response_xml << " <p>versión 0.4</p>" << endl;
+ response_xml << " <h2>Comando</h2>" << endl;
+ response_xml << " <ul>" << endl;
+/* response_xml << " <li><b>Versión:</b> " << request.version << endl;
+ response_xml << " <li><b>Método:</b> " << (request.method ? "POST" : "GET") << endl;
+ response_xml << " <li><b>URI:</b> " << request.uri << endl;
+ response_xml << " <li><b>Query:</b> " << request.query << endl;
+ for (HTTPHeaders::const_iterator i = request.headers.begin();
+ i != request.headers.end(); i++) {