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.
Dependencies: net lpc1768 crypto clock web log
web-this/home/web-home-script.c
- Committer:
- andrewboyson
- Date:
- 2020-04-03
- Revision:
- 93:2cce06dd2bcc
- Parent:
- 60:7cab896b0fd4
File content as of revision 93:2cce06dd2bcc:
#include "http.h" //Use http://tomeko.net/online_tools/cpp_text_escape.php to convert from text to c-multiline //Use http://tomeko.net/online_tools/cpp_text_unescape.php to convert from c-multiline to text const char* WebHomeScriptDate = __DATE__; const char* WebHomeScriptTime = __TIME__; static const char* script = #include "web-clock-class.inc" #include "../common/web-ajax-class.inc" #include "web-home-script.inc" ; void WebHomeScript() { HttpOk("application/javascript; charset=UTF-8", "max-age=3600", WebHomeScriptDate, WebHomeScriptTime); HttpAddText(script); }