File: test.lp

package info (click to toggle)
lua-cgi 6.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 956 kB
  • sloc: javascript: 2,216; makefile: 25
file content (253 lines) | stat: -rwxr-xr-x 6,471 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#!/usr/bin/env cgilua.cgi

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>CGILua Test</title>
    <link rel="stylesheet" href="css/doc.css" type="text/css"/>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <%
    require"cgilua.cookies"
    if cgilua.POST.user then
        cgilua.cookies.sethtml("cookie_kepler", cgilua.POST.user)
    end
    %>
</head>

<body>

<div id="container">

<div id="product">
	<div id="product_logo"><a href="http://www.keplerproject.org">
		<img src="img/keplerproject.gif" alt="Kepler Project logo" /></a>
    </div>
	<div id="product_name"><big><strong></strong></big></div>
	<div id="product_description">CGILua simple tests</div>
</div> <!-- id="product" -->

<div id="main">

<div id="navigation">
<% 
local mods = {}
for file in lfs.dir("doc") do
    local attr = lfs.attributes ("doc/"..file)
    if attr.mode == "directory" and file ~= "." and file ~= ".." then
        table.insert(mods, file)
    end
end
table.sort(mods)
%>

<h1>Kepler</h1>
	<ul>
        <li><a href="index.lp">Documentation</a>
            <ul>
                <%
                for _,file in ipairs(mods) do
                %>
                <li><strong><a href="doc/<%= file %>/index.html"><%= file %></a></strong></li>
                <%
                end
                if not next(mods) then
                %>
                <li><strong>(None)</strong></li>
                <%
                end
                %>
            </ul>
        </li>
        <li><strong>Tests</strong></li>
	</ul>
</div> <!-- id="navigation" -->

<div id="content">


<h2>Form Handling</h2>

<p>
Entering values on this form should display them as values in the first submission,
and as a cookie in the next submission
</p>

<form method="post" action="test.lp">
    <label>User name: </label><input name="user" maxlength="20" size="20">
    <label>Password: </label><input name="pass" type="password" maxlength="20" size="20">
    <input type="submit" value="Post it">
    <input type="reset" value="Reset">
</form>

<p>
The values should show the previous POST
</p>

<p>
Values: Username = <%= cgilua.POST.user or "(not set)"%>, Password = <%= cgilua.POST.pass or "(not set)"%>
</p>

<h2>Cookies test</h2>

<p>
Here you should see the values posted before the ones shown above
</p>

<p>
cookie_kepler = <%= cgilua.cookies.get("cookie_kepler") or "(not set)" %>
</p>

<h2>File Upload</h2>

<p>Choose a file to upload, press "Upload" and a link to the file should
appear below with the corresponding "Remove" button.</a>
<form method="POST" enctype="multipart/form-data" action="test.lp">
    <input type="file" name="file">
    <input type="submit" value="Upload">
</form>

<% 
    local f = cgilua.POST.file
    if f and next(f) then
        local _, name = cgilua.splitonlast(f.filename)
        local file = f.file
        local dest = io.open(name, "wb")
        if dest then
            local bytes = file:read("*a")
            dest:write(bytes)
            dest:close()
            cgilua.print("<a href='"..name.."'>"..name.."</a>\n")
            cgilua.print([[<form method="POST" enctype="multipart/form-data" action="test.lp">]])
            cgilua.print([[<input type="hidden" name="filename" value="]]..name..[[">]])
            cgilua.print([[<input type="submit" name="remove" value="Remove">]])
            cgilua.print([[</form>]])
        end
    end
%>

<%
    if cgilua.POST.remove then
        os.remove(cgilua.POST.filename)
    end
%>

<%
local function showtable(t)
    cgilua.put "{"
    for i,v in pairs (t) do
        cgilua.put("\n")
        if type(v) == "table" then
            local vv = "{\n"
            for a,b in pairs(v) do
                vv = string.format ("%s  %s = [[%s]],\n", vv, a, tostring(b))
            end
            v = vv.." },"
            cgilua.put (string.format (" %s = %s", i, tostring(v)))
        else
            cgilua.put (string.format (" %s = [[%s]],", i, tostring(v)))
        end
    end
    if next(t) then
        cgilua.put "\n"
    end
    cgilua.put "}\n"
end
%>

<h2>cgilua.QUERY</h2>

<pre class="example">
<% showtable (cgilua.QUERY) %>
</pre>

<h2>cgilua.POST</h2>
<pre class="example">
<% showtable (cgilua.POST) %>
</pre>

<h2>CGILua Variables</h2>

<table border="1">
<%
local vars = {
    "script_file", "script_path", "script_pdir", "script_vdir", "script_vpath", "urlpath",
}
for _, v in ipairs(vars) do %>
  <tr><td>cgilua.<%= v %></td><td><%= tostring(cgilua[v]) %></td></tr>
<% end %>
</table>


<h2>Server Variables</h2>

<table border="1">
<%
local vars = {
    "SERVER_SOFTWARE", "SERVER_NAME", "SERVER_PROTOCOL", "SERVER_PORT",
    "GATEWAY_INTERFACE", "REQUEST_METHOD",
    "SCRIPT_NAME", "PATH_INFO", "PATH_TRANSLATED", "QUERY_STRING",
    "CONTENT_TYPE", "CONTENT_LENGTH", 
    "REMOTE_ADDR", "REMOTE_HOST", "REMOTE_USER", "REMOTE_IDENT",
    "AUTH_TYPE",
}
for _, v in ipairs(vars) do %>
  <tr><td><%= v %></td><td><%= tostring(cgilua.servervariable(v)) %></td></tr>
<% end %>
</table>

<h2>Multiple Output</h2>

<p>
The next test should show numbers, from 1 to 3, and the string "OK" together.
The first line should show the results without spaces and the second should separate them with tabs.
</p>
  	 
<pre class="example">
cgilua.put(1, 2, 3, "OK")   --> <% cgilua.put(1, 2, 3, "OK") %>
</pre>

<p>The next test should show numbers, from 1 to 3, and the string "OK" separated by tabs.</p>
  	 
<pre class="example">
cgilua.print(1, 2, 3, "OK") --> <% cgilua.print(1, 2, 3, "OK") %>
</pre>

<h2>Date</h2>

<p>Today is: <%= os.date() %></p>

<h2>Image test</h2>

<p>Here should be a small image: <img src="img/test.jpg" alt="a small photograph" /></p>

<h2>FileSystem test</h2>

<p>
<%
  local d = lfs.currentdir () or ""
  cgilua.put("Iterating over "..d.."<br />")
  for file in lfs.dir(d) do cgilua.put("&nbsp;&nbsp;&nbsp;"..file.."<br />") end
%>
</p>

<h2>Containment test</h2>

<p>
<% if (x == nil) then x = 1 else x = x + 1 end %>
Expected value: 1, actual value: <%= x %>.
</p>


</div> <!-- id="content" -->

</div> <!-- id="main" -->

<div id="about">
	<p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0</a></p>
	<p><small>$Id: test.lp,v 1.3 2008/07/03 20:34:36 carregal Exp $</small></p>
</div> <!-- id="about" -->

</div> <!-- id="container" -->
</body>
</html>