about summary refs log tree commit diff
path: root/filters/owner-example.lua
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-20 13:33:37 -0500
committerRory& <root@rory.gay>2026-02-06 14:09:56 +0100
commit7f218cfae810965a3b094270d6df3b92c22d3fe0 (patch)
treebd3a14f18c6103e6f69194d8820d272210ac4511 /filters/owner-example.lua
parentSilence owner-info error (diff)
downloadcgit-magenta-7f218cfae810965a3b094270d6df3b92c22d3fe0.tar.xz
Remove Lua support
Lua support is unused and the dlsym fwrite/write hacks horrify me.
Clean it up.
Diffstat (limited to 'filters/owner-example.lua')
-rw-r--r--filters/owner-example.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/filters/owner-example.lua b/filters/owner-example.lua
deleted file mode 100644

index 50fc25a..0000000 --- a/filters/owner-example.lua +++ /dev/null
@@ -1,17 +0,0 @@ --- This script is an example of an owner-filter. It replaces the --- usual query link with one to a fictional homepage. This script may --- be used with the owner-filter or repo.owner-filter settings in --- cgitrc with the `lua:` prefix. - -function filter_open() - buffer = "" -end - -function filter_close() - html(string.format("<a href=\"%s\">%s</a>", "http://wiki.example.com/about/" .. buffer, buffer)) - return 0 -end - -function filter_write(str) - buffer = buffer .. str -end