3 * Missing support for preview.
4 * Missing conflict detection, just overwrites changes and does not svn up
6 * Eventually, might want page deletion.
7 * Eventually, might want file upload.
11 * Should support RSS for notification of new and changed pages.
13 This can be a static rss file that is generated when the moo
14 is built. (As long as all changes to all pages is ok.)
16 * Should support mail notification of new and changed pages.
18 Hmm, should be easy to implement this.. it runs as a svn post-cookit hook
19 already, so just look at the userdb, svnlook at what's changed, and send
20 mails to people who have subscribed.
24 Need to turn [[usage]] into a man page.
25 this wiki too. Can markdown generate a man page somehow?
27 ## pluggable renderers
29 I'm considering a configurable rendering pipeline for each supported
30 filename extension. So for ".mdwn" files, it would send the content through
31 linkify, markdown, and finalize, while for ".wiki" files it might send it
32 through just a wiki formatter and finalize.
34 This would allow not only supporting more types of markup, but changing
35 what style of [[WikiLink]]s are supported, maybe some people want to add
36 [[CamelCase]] for example, or don't like the [[SubPage/LinkingRules]].
38 The finalize step is where the page gets all the pretty junk around the
39 edges, so that clearly needs to be pluggable too.
41 There also needs to be a step before finalize, where stuff like lists of pages
42 that linked back to it could be added to the page. However, doing linkbacks
43 also needs to tie into the main logic, to determine what pages need to be
44 renered, so maybe that won't be a plugin.
48 Being case insensative is handy, but it does make the [[BackLinks]] a bit
49 ugly compared to other links. It should be possible to support pagenames
50 that have uppercase, while still allowing them to be linked to using any
55 Make the html valid. Add css.
59 Need a way to sign name in page that's easier to type than "-- [[ Joey ]]"
60 and that includes the date.
62 What syntax do other wikis use for this? I'm considering "[[ -- ]]" (with
63 spaces removed) as it has a nice nmemonic.
65 ## recentchanges links to commit diffs
67 Would take a bit more viewcvs integration, let the be a "[diff]" link in
68 recentchanges that goes to the diff for any listed change.
70 ## recentchanges more than 100
72 Possibly add "next 100" link to it, but OTOH, you can just use svn log if