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>2025-03-12 06:41:35 +0100
commit13aa382c3bb518d2b3e96f28f7f28cad4bd843fd (patch)
treeef82a83a38aa92646b352a6ad2f3846e9c2751bd /filters/owner-example.lua
parentSilence owner-info error (diff)
downloadcgit-magenta-13aa382c3bb518d2b3e96f28f7f28cad4bd843fd.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