-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpetrodoc
More file actions
63 lines (48 loc) · 2.15 KB
/
petrodoc
File metadata and controls
63 lines (48 loc) · 2.15 KB
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
package = 'ReCaptcha'
versions = {
{'8.07.07', 'July 7, 2008', 'fixing HTML to please validators'},
{'8.06.12', 'June 12, 2008', 'ensuring error-less return when post fields are missing'},
{'8.05.26', 'May 26, 2008', 'the initial release'},
}
summary = 'A Lua interface to reCaptcha.'
maintainer = 'Yuri Takhteyev (yuri@freewisdom.org)'
detailed = [[
<a href="http://recaptcha.net/">reCaptcha</a> is a free captcha web service that
shows the visitors words from old books helping digitize them. This,
module provides a Lua interface to recaptcha. You will need to get your
own API key from recaptcha.net to use it.
]]
license = 'MIT/X11'
homepage = 'http://spu.tnik.org/lib/recaptcha/'
favicon = 'http://media.freewisdom.org/etc/recaptcha.ico'
download = 'http://spu.tnik.org/files/recaptcha-$version.tar.gz'
logo = 'recaptcha.png'
keywords = 'lua, recaptcha, captcha'
rss = homepage.."releases.rss"
--------------------------------------------------------------------------------
dependencies = [[
'luasocket >= 2.0'
]]
--------------------------------------------------------------------------------
Installation = [[
The Lua interface Recaptcha to recaptcha consists of a single file (recaptcha.lua) of less
than 100 lines, plus a test script (tests/recaptcha.cgi) which is meant to be used with
<a href="http://wsapi.luaforge.net">WSAPI</a>. Here is a list of recent
releases:
<ul>
$do_versions[=[<li><a href="$url">$package-$version</a> - $comment ($date) </li> ]=]
</ul>
You can also install it using LuaRocks with
luarocks install recaptcha
or:
luarocks --from=http://sputnik.freewisdom.org/rocks/fenchurch install recaptcha
]]
TOC = {
{ "Overview", "<p>"..detailed.."</p>" },
{ "Installation", markdown(Installation) },
{ "Using Recaptcha", markdown(include("doc/howto.md")) },
{ "Contact", "Please contact Yuri Takhteyev (yuri -at- freewisdom.org) with any questions."},
{ "LuaDoc", make_luadoc{"recaptcha.lua"} },
{ "License", markdown(include("LICENSE.txt")) }
}
-------------------------------------------------------------------------------