From 2685c4c31ffad356a73f1e0ec69606b6136bca47 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 2 Apr 2025 16:19:57 -0400 Subject: [PATCH] Move HTML into script --- examples/http-server/http-server.tm | 12 +----------- examples/http-server/sample-site/random.tm | 14 +++++++++++++- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/examples/http-server/http-server.tm b/examples/http-server/http-server.tm index 4cdbda4..f7338b9 100644 --- a/examples/http-server/http-server.tm +++ b/examples/http-server/http-server.tm @@ -106,17 +106,7 @@ enum RouteEntry(ServeFile(file:Path), Redirect(destination:Text)): func respond(entry:RouteEntry, request:HTTPRequest -> HTTPResponse): when entry is ServeFile(file): body := if file:can_execute(): - output := Command(Text(file)):get_output()! - " - - - $file - -

$file program output

-
$output
- - - " + Command(Text(file)):get_output()! else: file:read()! return HTTPResponse(body, content_type=_content_type(file)) diff --git a/examples/http-server/sample-site/random.tm b/examples/http-server/sample-site/random.tm index 7d183ee..502618e 100755 --- a/examples/http-server/sample-site/random.tm +++ b/examples/http-server/sample-site/random.tm @@ -2,4 +2,16 @@ use random func main(): - say("Random: $(random:int(1,100))") + say(" + + + + Random Number + + + +

Random Number

+ Your random number is: $(random:int(1,100)) + + + ")