aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--TODO.md6
-rwxr-xr-xnotYetAnotherWiki.lua2
2 files changed, 3 insertions, 5 deletions
diff --git a/TODO.md b/TODO.md
index 02860d1..801aade 100644
--- a/TODO.md
+++ b/TODO.md
@@ -5,10 +5,6 @@ pagehistory: https://sledjhamr.org/cgit/notYetAnotherWiki/log/TODO.md
5--- 5---
6## Do these 6## Do these
7 7
8Clean up docs and bump to version 0.0. RELEASE!!!????!!!!????
9
10The first link of the testing/even/deeper trail is still wrong.
11
12See the conversion therapy section below. 8See the conversion therapy section below.
13 9
14Add an Edit button that opens up the page in what ever wiki system it came from, for editing. 10Add 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
20The first link of the testing/even/deeper trail is still wrong.
21
24Add atom feed for single page. Alas cgit only seems to have ATOM feed on the whole repo, not individual files. 22Add 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
10local globalData = { 10local 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. &nbsp;', 13 history = '', footer = 'Powered by <a href="https://sledjhamr.org/cgit/notYetAnotherWiki/about/">notYetAnotherWiki</a> version 0.0. &nbsp;',
14} 14}
15local Sites, Files, Subs = {}, {}, {} 15local Sites, Files, Subs = {}, {}, {}
16 16