Mercurial Hosting > luan
annotate website/src/examples/hi2.html.luan @ 2024:fa8304b060d9
rename launching luan files
| author | Franklin Schmidt <fschmidt@gmail.com> | 
|---|---|
| date | Wed, 29 Oct 2025 21:12:53 -0600 | 
| parents | 28cd9b3abdb3 | 
| children | 
| rev | line source | 
|---|---|
| 
693
 
ca169567ce07
module URIs must now include ".luan"
 
Franklin Schmidt <fschmidt@gmail.com> 
parents: 
505 
diff
changeset
 | 
1 local Io = require "luan:Io.luan" | 
| 
 
ca169567ce07
module URIs must now include ".luan"
 
Franklin Schmidt <fschmidt@gmail.com> 
parents: 
505 
diff
changeset
 | 
2 local Http = require "luan:http/Http.luan" | 
| 382 | 3 | 
| 388 | 4 | 
| 382 | 5 local function form() | 
| 6 %> | |
| 
1178
 
49cf706c326a
serve_for_nginx on port 8081
 
Franklin Schmidt <fschmidt@gmail.com> 
parents: 
1152 
diff
changeset
 | 
7 <!doctype html> | 
| 1931 | 8 <html lang="en"> | 
| 382 | 9 <body> | 
| 10 <h1>Hello</h1> | |
| 11 <form> | |
| 
497
 
55f9f74f1e55
Http.request is now pure luan
 
Franklin Schmidt <fschmidt@gmail.com> 
parents: 
495 
diff
changeset
 | 
12 What is your name? | 
| 388 | 13 <input name="name"> | 
| 14 <input type=submit> | |
| 382 | 15 </form> | 
| 16 </body> | |
| 17 </html> | |
| 18 <% | |
| 19 end | |
| 20 | |
| 503 | 21 local function hello(name) | 
| 382 | 22 %> | 
| 1216 | 23 <!doctype html> | 
| 1931 | 24 <html lang="en"> | 
| 382 | 25 <body> | 
| 26 <h1>Hello</h1> | |
| 27 <p>Hi <%= name %>!</p> | |
| 28 </body> | |
| 29 </html> | |
| 30 <% | |
| 31 end | |
| 32 | |
| 
505
 
7bc63886d4f2
web page modules now return a function
 
Franklin Schmidt <fschmidt@gmail.com> 
parents: 
503 
diff
changeset
 | 
33 return function() | 
| 382 | 34 Io.stdout = Http.response.text_writer() | 
| 
1152
 
21d157b153fe
change http parameters interface
 
Franklin Schmidt <fschmidt@gmail.com> 
parents: 
693 
diff
changeset
 | 
35 local name = Http.request.parameters.name | 
| 382 | 36 if name == nil then | 
| 37 form() | |
| 38 else | |
| 503 | 39 hello(name) | 
| 382 | 40 end | 
| 41 end | 
