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-06
- Revision:
- 56:f6e814fe0159
- Parent:
- 30:6a08abbe6301
- Child:
- 58:e5ab14ef6ea6
File content as of revision 56:f6e814fe0159:
#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>");
PageAddCheckInput("/log", "Log", 0, "clearlog", "clear");
HttpAddText("</h2>\r\n");
HttpAddText("<code>");
HttpAddStream(LogEnumerateStart, LogEnumerate);
HttpAddText("</code>");
PageAddEnd();
}