Mercurial Hosting > hghosting
annotate src/private/tools/links.txt.luan @ 28:cfedb3f6cbac default tip
prevent infinite .0s at end of log backup filenames
| author | Violet7 |
|---|---|
| date | Mon, 23 Feb 2026 18:08:44 -0800 |
| parents | dfc36e7ed22c |
| children |
| rev | line source |
|---|---|
| 0 | 1 local Luan = require "luan:Luan.luan" |
| 2 local error = Luan.error | |
| 3 local pairs = Luan.pairs or error() | |
| 4 local Io = require "luan:Io.luan" | |
| 5 local Http = require "luan:http/Http.luan" | |
| 6 local Shared = require "site:/lib/Shared.luan" | |
| 7 local config = Shared.config or error() | |
| 8 | |
| 9 | |
| 10 return function() | |
| 11 Io.stdout = Http.response.text_writer() | |
| 12 for _, repo in pairs(config.repos) do | |
| 13 if repo.users.backup then | |
| 14 %> | |
| 15 <%=repo.name%> | |
| 16 <% | |
| 17 end | |
| 18 end | |
| 19 end |
