Andrew Boyson / oldheating

Dependencies:   net 1-wire lpc1768 crypto clock web fram log

Committer:
andrewboyson
Date:
Mon Apr 29 14:46:58 2019 +0000
Revision:
51:c7c6ce0d57ad
Parent:
49:9491c966dc60
Child:
52:76254a967391
Updated libraries

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 47:229338b3adcb 1 #include "http.h"
andrewboyson 47:229338b3adcb 2
andrewboyson 47:229338b3adcb 3 //Use http://tomeko.net/online_tools/cpp_text_escape.php to convert from text to c-multiline
andrewboyson 47:229338b3adcb 4 //Use http://tomeko.net/online_tools/cpp_text_unescape.php to convert from c-multiline to text
andrewboyson 47:229338b3adcb 5
andrewboyson 47:229338b3adcb 6 static const char* script =
andrewboyson 49:9491c966dc60 7 #include "../../web-base/base/web-ajax-class.inc"
andrewboyson 49:9491c966dc60 8 #include "../../1-wire/web/web-1wire-class.inc"
andrewboyson 49:9491c966dc60 9 #include "web-boiler-script.inc"
andrewboyson 47:229338b3adcb 10 ;
andrewboyson 49:9491c966dc60 11 const char* WebBoilerScriptDate = __DATE__;
andrewboyson 49:9491c966dc60 12 const char* WebBoilerScriptTime = __TIME__;
andrewboyson 47:229338b3adcb 13
andrewboyson 49:9491c966dc60 14 void WebBoilerScript()
andrewboyson 47:229338b3adcb 15 {
andrewboyson 49:9491c966dc60 16 HttpOk("application/javascript; charset=UTF-8", "max-age=3600", WebBoilerScriptDate, WebBoilerScriptTime);
andrewboyson 47:229338b3adcb 17 HttpAddText(script);
andrewboyson 47:229338b3adcb 18 }