web commit from 66.118.98.137:
[ikiwiki] / doc / todo.mdwn
1 ## online page editing
2
3 * Missing support for preview, cancel.
4 * Missing conflict detection.
5 * Missing commit message box.
6 * No support for web user tracking/login yet.
7 * Eventually, might want page deletion.
8 * Eventually, might want file upload.
9
10 ## recentchanges
11
12 Should support RSS for notification of new and changed pages.
13
14 ## page history
15
16 To see past versions of a page, we can either implement a browser for that,
17 or just provide a way to link to the page in viewcvs. viewcvs seems fine to me.
18
19 ## pluggable renderers
20
21 I'm considering a configurable rendering pipeline for each supported
22 filename extension. So for ".mdwn" files, it would send the content through
23 linkify, markdown, and finalize, while for ".wiki" files it might send it
24 through just a wiki formatter and finalize.
25
26 This would allow not only supporting more types of markup, but changing
27 what style of [[WikiLink]]s are supported, maybe some people want to add
28 [[CamelCase]] for example, or don't like the [[SubPage/LinkingRules]].
29
30 The finalize step is where the page gets all the pretty junk around the
31 edges, so that clearly needs to be pluggable too.
32
33 There also needs to be a step before finalize, where stuff like lists of pages
34 that linked back to it could be added to the page. However, doing linkbacks
35 also needs to tie into the main logic, to determine what pages need to be
36 renered, so maybe that won't be a plugin.
37
38 ## revist case
39
40 Being case insensative is handy, but it does make the [[BackLinks]] a bit
41 ugly compared to other links. It should be possible to support pagenames
42 that have uppercase, while still allowing them to be linked to using any
43 case.
44
45 ## [[Bugs]]