diff options
-rw-r--r-- | TODO.md | 6 | ||||
-rwxr-xr-x | notYetAnotherWiki.lua | 2 |
2 files changed, 3 insertions, 5 deletions
@@ -5,10 +5,6 @@ pagehistory: https://sledjhamr.org/cgit/notYetAnotherWiki/log/TODO.md | |||
5 | --- | 5 | --- |
6 | ## Do these | 6 | ## Do these |
7 | 7 | ||
8 | Clean up docs and bump to version 0.0. RELEASE!!!????!!!!???? | ||
9 | |||
10 | The first link of the testing/even/deeper trail is still wrong. | ||
11 | |||
12 | See the conversion therapy section below. | 8 | See the conversion therapy section below. |
13 | 9 | ||
14 | Add an Edit button that opens up the page in what ever wiki system it came from, for editing. | 10 | Add an Edit button that opens up the page in what ever wiki system it came from, for editing. |
@@ -21,6 +17,8 @@ Deal with complex directory trees. | |||
21 | - /testing/even should display as even/deeper on the testing page, coz even/ has no files, but even/deeper does. | 17 | - /testing/even should display as even/deeper on the testing page, coz even/ has no files, but even/deeper does. |
22 | - Scanning /usr/share/doc on my super desktop with looots of software installed will be fun. | 18 | - Scanning /usr/share/doc on my super desktop with looots of software installed will be fun. |
23 | 19 | ||
20 | The first link of the testing/even/deeper trail is still wrong. | ||
21 | |||
24 | Add atom feed for single page. Alas cgit only seems to have ATOM feed on the whole repo, not individual files. | 22 | Add atom feed for single page. Alas cgit only seems to have ATOM feed on the whole repo, not individual files. |
25 | 23 | ||
26 | ### conversion therapy | 24 | ### conversion therapy |
diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua index 3bcc7d9..9909d53 100755 --- a/notYetAnotherWiki.lua +++ b/notYetAnotherWiki.lua | |||
@@ -10,7 +10,7 @@ local lcmark = require("lcmark") -- https://github.com/jgm/lcmark | |||
10 | local globalData = { | 10 | local globalData = { |
11 | ['_'] = ' ', ['dlr'] = '$', ['karenpurple'] = '#8800ff', | 11 | ['_'] = ' ', ['dlr'] = '$', ['karenpurple'] = '#8800ff', |
12 | favicon = 'nYAW_icon.png', logo = 'nYAW.png', header = '', --menu = '', | 12 | favicon = 'nYAW_icon.png', logo = 'nYAW.png', header = '', --menu = '', |
13 | history = '', footer = 'Powered by <a href="https://sledjhamr.org/cgit/notYetAnotherWiki/about/">notYetAnotherWiki</a> Version -0.1. ', | 13 | history = '', footer = 'Powered by <a href="https://sledjhamr.org/cgit/notYetAnotherWiki/about/">notYetAnotherWiki</a> version 0.0. ', |
14 | } | 14 | } |
15 | local Sites, Files, Subs = {}, {}, {} | 15 | local Sites, Files, Subs = {}, {}, {} |
16 | 16 | ||