Mercurial Hosting > luan
annotate website/src/examples/hi2.luan @ 1205:8f14426f8ada
change cipher_suite
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Tue, 06 Mar 2018 20:15:02 -0700 |
| parents | 49cf706c326a |
| children | 5dbb552075ff |
| 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> |
| 382 | 8 <html> |
| 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 %> |
| 23 <html> | |
| 24 <body> | |
| 25 <h1>Hello</h1> | |
| 26 <p>Hi <%= name %>!</p> | |
| 27 </body> | |
| 28 </html> | |
| 29 <% | |
| 30 end | |
| 31 | |
|
505
7bc63886d4f2
web page modules now return a function
Franklin Schmidt <fschmidt@gmail.com>
parents:
503
diff
changeset
|
32 return function() |
| 382 | 33 Io.stdout = Http.response.text_writer() |
|
1152
21d157b153fe
change http parameters interface
Franklin Schmidt <fschmidt@gmail.com>
parents:
693
diff
changeset
|
34 local name = Http.request.parameters.name |
| 382 | 35 if name == nil then |
| 36 form() | |
| 37 else | |
| 503 | 38 hello(name) |
| 382 | 39 end |
| 40 end |
