* Reorganised the doc wiki's todo/* pages, using a link/tag to flag
[ikiwiki] / doc / features.mdwn
1 Some of ikiwiki's features:
2
3 * [[Subversion]]
4
5   Rather than implement its own system for storing page histories etc,
6   ikiwiki simply uses subversion. (It's also possible to [[plugins/write]] support for other systems.)
7
8   Instead of editing pages in a stupid web form, you can use vim and commit
9   changes via svn. Or work disconnected using svk and push your changes out
10   when you come online.
11
12   ikiwiki can be run from a [[post-commit]] hook to update your wiki
13   immediately whenever you commit.
14
15   Note that ikiwiki does not require subversion to function. If you want to
16   run a simple wiki without page history, it can do that too.
17
18 * [[MarkDown]]
19
20   ikiwiki supports pages using [[MarkDown]] as their markup language. Any
21   page with a filename ending in ".mdwn" is converted from markdown to html
22   by ikiwiki. Markdown understands text formatted as it would be in an email,
23   and is quite smart about converting it to html. The only additional markup
24   provided by ikiwiki aside from regular markdown is the [[WikiLink]] and 
25   [[PreprocessorDirective]]
26
27 * support for other file types
28
29   ikiwiki also supports files of any other type, including plain text,
30   images, etc. These are not converted to wiki pages, they are just copied
31   unchanged by ikiwiki as it builds your wiki. So you can check in an image,
32   program, or other special file and link to it from your wiki pages.
33
34 * [[SubPage]]s
35
36   Arbitrarily deep hierarchies of pages with fairly simple and useful [[SubPage/LinkingRules]]
37
38 * [[blogging|blog]]
39
40   You can turn any page in the wiki into a [[blog]]. Pages matching a
41   specified [[GlobList]] will be displayed as a weblog within the blog
42   page. And an RSS feed can be generated to follow the blog.
43
44   Ikiwiki's own [[TODO]], [[news]], and [[plugins]] pages are good examples
45   of some of the flexible ways that this can be used.
46
47 * [[tags]]
48
49   You can tag pages and use these tags in various ways.
50
51 * Fast compiler
52
53   ikiwiki is fast and smart about updating a wiki, it only builds pages
54   that have changed (and tracks things like creation of new pages and links
55   that can indirectly cause a page to need a rebuild)
56
57 * valid html and css
58
59   ikiwiki aims to produce 
60   [valid XHTML 1.0](http://validator.w3.org/check?url=referer).
61   ikiwiki generates html using [[templates]], and uses css, so you can 
62   change the look and layout of all pages in any way you would like.
63
64 * [[BackLinks]]
65
66   Automatically included on pages. Rather faster than eg MoinMoin and
67   always there to help with navigation.
68
69 * [[PageHistory]]
70
71   Well, sorta. Rather than implementing YA history browser, it can link to
72   [[ViewCVS]] or the link to browse the history of a wiki page.
73
74 * [[RecentChanges]], editing pages in a web browser
75
76   Nearly the definition of a wiki, although perhaps ikiwiki challenges how
77   much of that web gunk a wiki really needs. These features are optional
78   and can be enabled by enabling [[CGI]].
79
80 * User registration
81
82   Can optionally be configured to allow only registered users to post
83   pages; online user registration form, etc.
84
85 * Discussion pages
86
87   Thanks to subpages, every page can easily and automatically have a
88   /Discussion subpage. By default, these links are included in the
89   [[templates]] for each page.
90
91 * Smart merging and conflict resolution in your web browser
92
93   Since it uses subversion, ikiwiki takes advantage of its smart merging to
94   avoid any conflicts when two people edit different parts of the same page
95   at the same time. No annoying warnings about other editors, or locking,
96   etc, instead the other person's changes will be automatically merged with
97   yours when you commit.
98
99   In the rare cases where automatic merging fails due to the same part of a
100   page being concurrently edited, regular subversion commit markers are
101   shown in the file to resolve the conflict, so if you're already familiar
102   with that there's no new commit marker syntax to learn.
103
104 * page locking
105
106   Wiki admins can lock pages so that only other admins can edit them.
107
108 * Full text search
109
110   ikiwiki can use the [[HyperEstraier]] search engine to add powerful
111   full text search capabilities to your wiki.
112
113 * Commit mails
114
115   ikiwiki can be configured to send you commit mails with diffs of changes
116   to selected pages.
117
118 * [[Plugins]]
119
120   Plugins can be used to add additional features to ikiwiki. The interface is quite flexible, allowing plugins to register [[PreProcessorDirective]]s, hook into [[CGI]] mode, and more. Ikiwiki's backend RCS support is also pluggable, so support for new revision control systems can be added to ikiwiki. 
121
122 ----
123
124 It also has some [[TODO]] items and [[Bugs]].