Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
log/http-log-html.c
- Committer:
- andrewboyson
- Date:
- 2019-03-23
- Revision:
- 77:4689596a2f3f
- Parent:
- 58:e5ab14ef6ea6
- Child:
- 83:0d956edd55b7
File content as of revision 77:4689596a2f3f:
#include "http.h"
#include "page.h"
#include "log.h"
#include "http-server.h"
void HttpLogHtml()
{
HttpOk("text/html; charset=UTF-8", "no-cache", NULL, NULL);
PageAddHeader(PageSite, "Log", "settings.css", NULL);
PageAddNav(LOG_PAGE);
PageAddH1(PageSite, "Log");
HttpAddText("<h2>");
PageAddInputButton("Log", "clear", "/log", "clearlog");
HttpAddText("</h2>\r\n");
HttpAddText("<code>");
HttpAddStream(LogEnumerateStart, LogEnumerate);
HttpAddText("</code>");
PageAddEnd();
}