]> sipb.mit.edu Git - ikiwiki.git/blob - doc/features.mdwn
fix for already relative urls
[ikiwiki.git] / doc / features.mdwn
1 [[WhyIkiWiki]]?
2
3 Currently implemented:
4
5 * [[Subversion]]
6
7   Rather than implement its own system for storing page histories etc,
8   ikiwiki simply uses subversion. (Supporting other revision control
9   systems is also possible, ikiwiki only needs $FOO add, $FOO commit, and
10   $FOO log).
11
12   Instead of editing pages in a stupid web form, you can use vim and commit
13   changes via svn. Or work disconnected using svk and push your changes out
14   when you come online.
15
16   ikiwiki can be run from a [[post-commit]] hook to update your wiki
17   immediately whenever you commit.
18
19   Note that ikiwiki does not require subversion to function. If you want to
20   run a simple wiki without page history, it can do that too.
21
22 * [[MarkDown]]
23
24   ikiwiki supports pages using [[MarkDown]] as their markup language. Any
25   page with a filename ending in ".mdwn" is converted from markdown to html
26   by ikiwiki. Markdown understands text formatted as it would be in an email,
27   and is quite smart about converting it to html. The only additional markup
28   provided by ikiwiki aside from regular markdown is the [[WikiLink]].
29
30 * [[RSS]]
31
32   ikiwiki supports generating RSS (2.0) feed for individual pages. These
33   feeds can be subscribed to, to get an update when a page is changed.
34
35   (Support for proper blogs is also planned.)
36
37 * support for other file types
38
39   ikiwiki also supports files of any other type, including raw html, text,
40   images, etc. These are not converted to wiki pages, they are just copied
41   unchanged by ikiwiki as it builds your wiki. So you can check in an image,
42   program, or other special file and link to it from your wiki pages.
43
44 * [[SubPage]]s
45
46   Arbitrarily deep hierarchies of pages with fairly simple and useful [[SubPage/LinkingRUles]]
47
48 * Fast compiler
49
50   ikiwiki is fast and smart about updating a wiki, it only builds pages that have changed (and tracks things like creation of new pages and links that can indirectly cause a page to need a rebuild)
51
52 * [[Templates]]
53
54   ikiwiki generates html using templates so you can change the look and 
55   layout of all pages in any way you would like.
56
57 * [[BackLinks]]
58
59   Automatically included on pages. Rather faster than eg [[MoinMoin]] and always there to help with navigation.
60
61 * [[PageHistory]]
62
63   Well, sorta. Rather than implementing YA history browser, it can link to
64   [[ViewCVS]] or the link to browse the history of a wiki page.
65
66 * [[RecentChanges]], editing pages in a web browser
67
68   Nearly the definition of a wiki, although perhaps ikiwiki challenges how
69   much of that web gunk a wiki really needs. These features are optional
70   and can be enabled by enabling [[CGI]].
71
72 * User registration
73
74   Can optionally be configured to allow only registered users to post
75   pages; online user registration form, etc.
76
77 * Discussion pages
78
79   Thanks to subpages, every page can easily and automatically have a
80   /Discussion subpage. By default, these links are included in the
81   [[templates]] for each page.
82
83 * Smart merging and conflict resolution in your web browser
84
85   Since it uses subversion, ikiwiki takes advantage of its smart merging to
86   avoid any conflicts when two people edit different parts of the same page
87   at the same time. No annoying warnings about other editors, or locking,
88   etc, instead the other person's changes will be automaticaly merged with
89   yours when you commit.
90
91   In the rare cases where automatic merging fails due to the same part of a
92   page being concurrently edited, regular subversion commit markers are
93   shown in the file to resolve the conflict, so if you're already familiar
94   with that there's no new commit marker syntax to learn.
95
96 * page locking
97
98   Wiki admin can [[lock]] pages so that only other admins can edit them.
99
100 ----
101
102 It also has some [[TODO]] items and [[Bugs]].