2006-03-12 06:14:41 +01:00
|
|
|
# NAME
|
|
|
|
|
|
|
|
ikiwiki - a wiki compiler
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
2006-03-23 03:53:03 +01:00
|
|
|
ikiwiki [options] source destination
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
ikiwiki --setup configfile
|
|
|
|
|
2006-03-12 06:14:41 +01:00
|
|
|
# DESCRIPTION
|
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
`ikiwiki` is a wiki compiler. It builds static html pages for a wiki, from
|
2006-03-23 03:53:03 +01:00
|
|
|
`source` in the [[MarkDown]] language, and writes it out to `destination`.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
Note that most options can be shortened to single letters, and boolean
|
|
|
|
flags such as --verbose can be negated with --no-verbose.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
# MODE OPTIONS
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
These options control the mode that ikiwiki is operating in.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-26 07:08:41 +02:00
|
|
|
* --refresh
|
|
|
|
|
2006-04-08 01:59:30 +02:00
|
|
|
Refresh the wiki, updating any changed pages. This is the default
|
2006-03-26 07:08:41 +02:00
|
|
|
behavior so you don't normally need to specify it.
|
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
* --rebuild
|
2006-03-26 04:30:44 +02:00
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
Force a rebuild of all pages.
|
2006-03-26 04:30:44 +02:00
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
* --cgi
|
2006-03-23 03:53:03 +01:00
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
Enable [[CGI]] mode. In cgi mode ikiwiki runs as a cgi script, and
|
|
|
|
supports editing pages, signing in, registration, and displaying
|
|
|
|
[[RecentChanges]].
|
|
|
|
|
|
|
|
To use ikiwiki as a [[CGI]] program you need to use --wrapper or --setup
|
|
|
|
to generate a wrapper. The wrapper will generally need to run suid 6755 to
|
|
|
|
the user who owns the `source` and `destination` directories.
|
2006-03-23 03:53:03 +01:00
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
* --wrapper [file]
|
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
Generate a wrapper binary that is hardcoded to do action specified by
|
2006-03-13 19:35:23 +01:00
|
|
|
the other options, using the specified input files and `destination`
|
|
|
|
directory. The filename to use for the wrapper is optional.
|
|
|
|
|
|
|
|
The wrapper is designed to be safely made suid and be run by untrusted
|
|
|
|
users, as a [[Subversion]] [[post-commit]] hook, or as a [[CGI]].
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-23 08:37:16 +01:00
|
|
|
Note that the generated wrapper will ignore all command line parameters.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
* --setup configfile
|
|
|
|
|
|
|
|
In setup mode, ikiwiki reads the config file, which is really a perl
|
|
|
|
program that can call ikiwiki internal functions.
|
|
|
|
|
|
|
|
The default action when --setup is specified is to automatically generate
|
|
|
|
wrappers for a wiki based on data in a config file, and rebuild the wiki.
|
|
|
|
If you also pass the --refresh option, ikiwiki will instead just refresh
|
|
|
|
the wiki described in the setup file.
|
|
|
|
|
|
|
|
[[ikiwiki.setup]] is an example of such a config file.
|
|
|
|
|
|
|
|
# CONFIG OPTIONS
|
|
|
|
|
|
|
|
These options configure the wiki.
|
|
|
|
|
|
|
|
* --wikiname
|
|
|
|
|
|
|
|
The name of the wiki, default is "wiki".
|
|
|
|
|
|
|
|
* --templatedir
|
|
|
|
|
|
|
|
Specify the directory that the page [[templates]] are stored in.
|
|
|
|
Default is `/usr/share/ikiwiki/templates`.
|
|
|
|
|
2006-03-29 20:21:01 +02:00
|
|
|
* --underlaydir
|
|
|
|
|
|
|
|
Specify the directory that is used to underlay the source directory.
|
|
|
|
Source files will be taken from here unless overridden by a file in the
|
|
|
|
source directory. Default is `/usr/share/ikiwiki/basewiki`.
|
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
* --wrappermode mode
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
Specify a mode to chmod the wrapper to after creating it.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-04-25 01:05:17 +02:00
|
|
|
* --notify
|
|
|
|
|
|
|
|
Enable email notification of commits. This should be used when running
|
|
|
|
ikiwiki as a [[Subversion]] [[post-commit]] hook.
|
|
|
|
|
2006-03-12 06:14:41 +01:00
|
|
|
* --svn, --nosvn
|
|
|
|
|
2006-04-21 23:40:45 +02:00
|
|
|
Enable or disable use of [[subversion]]. If subversion is enabled, the
|
|
|
|
`source` directory is assumed to be a working copy, and is automatically
|
|
|
|
updated before building the wiki.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-04-21 23:40:45 +02:00
|
|
|
In [[CGI]] mode, with subversion enabled pages edited via the web will be
|
|
|
|
committed to subversion. Also, the [[RecentChanges]] link will be placed
|
|
|
|
on pages.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-12 06:16:01 +01:00
|
|
|
Subversion is enabled by default.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-04-25 01:05:17 +02:00
|
|
|
* --svnrepo /svn/wiki
|
|
|
|
|
|
|
|
Specify the location of the svn repository for the wiki. This is required
|
|
|
|
for using --notify with [[subversion]].
|
|
|
|
|
|
|
|
* --svnpath trunk
|
|
|
|
|
|
|
|
Specify the path inside your svn reporistory where the wiki is located.
|
|
|
|
This defaults to trunk; change it if your wiki is at some other location
|
|
|
|
inside the repository.
|
|
|
|
|
2006-03-12 06:14:41 +01:00
|
|
|
* --anonok, --noanonok
|
|
|
|
|
2006-03-12 06:16:01 +01:00
|
|
|
If anonok is set, it will allow anonymous web users, who have not signed in, to make changes to the wiki.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-12 06:16:01 +01:00
|
|
|
By default, anonymous users cannot edit the wiki.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-23 22:00:51 +01:00
|
|
|
* --rss, --norss
|
|
|
|
|
2006-03-24 03:00:40 +01:00
|
|
|
If rss is set, ikiwiki will generate rss feeds for pages that inline
|
2006-05-02 04:34:33 +02:00
|
|
|
a [[blog]].
|
2006-03-23 22:00:51 +01:00
|
|
|
|
2006-04-25 08:40:11 +02:00
|
|
|
* --url http://url/
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-12 06:16:01 +01:00
|
|
|
Specifies the url to the wiki. This is a required parameter in [[CGI]] mode.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-04-25 08:40:11 +02:00
|
|
|
* --cgiurl http://url/ikiwiki.cgi
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
Specifies the url to the ikiwiki [[CGI]] script wrapper. Required when
|
|
|
|
building the wiki for links to the cgi script to be generated.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-04-25 08:40:11 +02:00
|
|
|
* --historyurl http://url/trunk/\[[file]]?root=wiki
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-21 02:18:01 +01:00
|
|
|
Specifies the url to link to for page history browsing. In the url,
|
|
|
|
"\[[file]]" is replaced with the file to browse. It's common to use
|
|
|
|
[[ViewCVS]] for this.
|
|
|
|
|
2006-04-25 01:05:17 +02:00
|
|
|
* --adminemail you@yourhost
|
|
|
|
|
|
|
|
Specifies the email address that ikiwiki should use for sending email.
|
|
|
|
|
2006-04-25 08:40:11 +02:00
|
|
|
* --diffurl http://url/trunk/\[[file]]?root=wiki&r1=\[[r1]]&r2=\[[r2]]
|
2006-03-21 02:18:01 +01:00
|
|
|
|
|
|
|
Specifies the url to link to for a diff of changes to a page. In the url,
|
|
|
|
"\[[file]]" is replaced with the file to browse, "\[[r1]]" is the old
|
|
|
|
revision of the page, and "\[[r2]]" is the new revision. It's common to use
|
|
|
|
[[ViewCVS]] for this.
|
2006-03-12 06:14:41 +01:00
|
|
|
|
2006-03-13 03:08:04 +01:00
|
|
|
* --exclude regexp
|
|
|
|
|
|
|
|
Specifies a rexexp of source files to exclude from processing.
|
|
|
|
May be specified multiple times to add to exclude list.
|
|
|
|
|
2006-03-23 02:40:46 +01:00
|
|
|
* --adminuser name
|
|
|
|
|
|
|
|
Specifies a username of a user who has the powers of a wiki admin.
|
|
|
|
Currently allows locking of any page, other powers may be added later.
|
|
|
|
May be specified multiple times for multiple admins.
|
|
|
|
|
2006-04-25 05:18:21 +02:00
|
|
|
* --sanitize
|
|
|
|
|
|
|
|
Enable [[HtmlSanitization]] of wiki content. On by default, disable with
|
|
|
|
--no-sanitize.
|
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
* --plugin name
|
|
|
|
|
|
|
|
Enables the use of the specified plugin in the wiki. See [[plugins]] for
|
|
|
|
details. Note that plugin names are case sensative.
|
|
|
|
|
2006-03-30 00:21:23 +02:00
|
|
|
* --hyperestraier
|
|
|
|
|
|
|
|
Enables use of the [[HyperEstraier]] search engine for full test page
|
|
|
|
searches.
|
|
|
|
|
2006-03-26 07:24:03 +02:00
|
|
|
* --verbose
|
2006-03-13 20:10:29 +01:00
|
|
|
|
2006-05-02 04:34:33 +02:00
|
|
|
Be vebose about what is being done.
|
|
|
|
|
|
|
|
* --fixctime
|
|
|
|
|
|
|
|
Pull last changed time for all pages out of the revision control system.
|
|
|
|
This rarely used option provides a way to get the real creation times of
|
|
|
|
items in weblogs, for example when building a wiki from a new subversion
|
|
|
|
checkout. It is unoptimised and quite slow.
|
2006-03-13 19:35:23 +01:00
|
|
|
|
2006-03-12 06:14:41 +01:00
|
|
|
# AUTHOR
|
|
|
|
|
2006-03-13 03:08:04 +01:00
|
|
|
Joey Hess <joey@kitenet.net>
|
2006-03-15 05:40:32 +01:00
|
|
|
|
|
|
|
Warning: this page is automatically made into ikiwiki's man page, edit with care
|