]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo.mdwn
improve
[ikiwiki.git] / doc / todo.mdwn
1 ## online page editing
2
3 * Missing support for preview.
4 * Missing conflict detection, just overwrites changes and does not svn up
5   first..
6 * Eventually, might want page deletion.
7 * Eventually, might want file upload.
8
9 ## recentchanges
10
11 * Should support RSS for notification of new and changed pages. 
12
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.)
15
16 * Should support mail notification of new and changed pages.
17
18   Hmm, should be easy to implement this.. it runs as a svn post-coommit hook
19   already, so just look at the userdb, svnlook at what's changed, and send
20   mails to people who have subscribed.
21
22 ## pluggable renderers
23
24 I'm considering a configurable rendering pipeline for each supported
25 filename extension. So for ".mdwn" files, it would send the content through
26 linkify, markdown, and finalize, while for ".wiki" files it might send it
27 through just a wiki formatter and finalize.
28
29 This would allow not only supporting more types of markup, but changing
30 what style of [[WikiLink]]s are supported, maybe some people want to add
31 [[CamelCase]] for example, or don't like the [[SubPage/LinkingRules]].
32
33 The finalize step is where the page gets all the pretty junk around the
34 edges, so that clearly needs to be pluggable too.
35
36 There also needs to be a step before finalize, where stuff like lists of pages
37 that linked back to it could be added to the page. However, doing linkbacks
38 also needs to tie into the main logic, to determine what pages need to be
39 renered, so maybe that won't be a plugin.
40
41 ## revisit case
42
43 Being case insensative is handy, but it does make the [[BackLinks]] a bit
44 ugly compared to other links. It should be possible to support pagenames
45 that have uppercase, while still allowing them to be linked to using any
46 case.
47
48 ## html
49
50 Make the html valid. Add css.
51
52 ## sigs
53
54 Need a way to sign name in page that's easier to type than "--\[[Joey]]"
55 and that includes the date.
56
57 What syntax do other wikis use for this? I'm considering "\[[--]]" (with
58 spaces removed) as it has a nice nmemonic.
59
60 OTOH, adding additional syntax for this would be counter to one of the
61 design goals for ikiwiki: keeping as much markup as possible out of the
62 wiki and not adding nonstandard markup. And it's not significantly hard to
63 type "--\[[Joey]]", and as to the date, we do have page history.
64
65 ## recentchanges links to commit diffs
66
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.
69
70 ## recentchanges more than 100
71
72 Possibly add "next 100" link to it, but OTOH, you can just use svn log if
73 you need that data..
74
75 ## base wiki
76
77 Need a toned down version of this wiki with a basic frontpage, sandbox and
78 docs to use as a seed for new wikis.
79
80 ## search
81
82 * full text (use third-party tools?)
83 * list of all missing pages
84 * list of all pages or some kind of page map
85
86 ## [[Bugs]]