Andrew Boyson / web

Dependents:   oldheating gps motorhome heating

Revision:
110:8ab752842d25
Parent:
109:3e82f62c7e1f
Child:
111:aaa858678e34
--- a/net/web-net4-script.c	Mon Apr 29 14:45:30 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-#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* WebNet4ScriptDate = __DATE__;
-const char* WebNet4ScriptTime = __TIME__;
-
-static const char* script =
-#include "../base/web-ajax-class.inc"
-#include "web-net-class.inc"
-#include "web-net4-script.inc"
-;
-void WebNet4Script()
-{
-    HttpOk("application/javascript; charset=UTF-8", "max-age=3600", WebNet4ScriptDate, WebNet4ScriptTime);
-    HttpAddText(script);
-}