aboutsummaryrefslogtreecommitdiff
path: root/doc/usage.mdwn
Commit message (Collapse)AuthorAge
* * Add --render mode, which can be used to preview an edit at the commandjoey2006-09-21
| | | | line by test rendering a single page.
* * Add support for mercurial, contributed by Emanuele Aina.joey2006-09-06
|
* * Patch from James Westby to add a --sslcookie switch, which forcesjoey2006-08-27
| | | | | | | cookies to only be sent over ssl connections to avoid interception. * Factor out the cgi header printing code into a new function. * Fix preferences page on anonok wikis; still need to sign in to get to the preferences page.
* linkifyjoey2006-08-27
|
* * Use DESTDIR and not PREFIX to specify installation prefix for packaging.joey2006-08-25
| | | | | * Support running "perl Makefile.PL PREFIX=foo" to build ikiwiki to run from a different directory.
* * Add --syslog config option, to log to the syslog.joey2006-08-16
|
* * The last release accidentially installed ikiwiki as ikiwiki.pl, now fixed.joey2006-08-13
| | | | | | | | | | | | | | * Add --version. * Man page format fixups. * Add a %pagecase which maps lower-case page names to the actual case used in the filename. Use this in bestlinks calculation instead of forcing the link to lowercase. * Also use %pagecase in various other places that want to check if a page with a given name exists. * This means that links to pages with mixed case names will now work, even if the link is in some other case mixture, and mixed case pages should be fully supported throughout ikiwiki. * Recommend rebuilding wikis on upgrade to this version.
* * Change meta tags to use html entity-escaped text for values, so thatjoey2006-07-30
| | | | | | | | | | | quotes and such can be represented in title tags. * Depend and build-depend on HTML::Parser for HTML::Entities which is used for the above. * Make --rebuild also cause --aggregate to re-download and write aggregated pages. * Avoid outputting duplicate meta info. * Include title metadata on aggregated posts for capitalised and un-munged titles.
* * ikiwiki can now download and aggregate feeds with its new aggregatejoey2006-07-30
| | | | | | | | plugin, so it's possible to implement a Planet using ikiwiki! * --setup --refresh no longer rebuilds wrappers. Use --setup --refresh --wrappers to do that. * Add %IkiWiki::forcerebuild to provide a way for plugins like aggregate to update pages that haven't changed on disk.
* * Add getopt hook type, this allows plugins to add new command-line options.joey2006-07-28
| | | | * Add --tagbase option to tag plugin.
* * Support a w3mmode, which lets w3m run ikiwiki using its local CGIjoey2006-07-07
| | | | support, to edit pages etc without a web server.
* * Make RecentChanges use a table and some CSS, should be much more readable.joey2006-07-04
| | | | | No code changes involved. * Encode & in diffurl in examples, to conform to pedantic rules.
* * Make ikiwiki --setup --refresh rebuild wrappers, so wrapper rebuildjoey2006-07-04
| | | | will be automatically done on all upgrades.
* * Support htmlize plugins and make mdwn one such plugin, which is enabled byjoey2006-07-03
| | | | default (of course!). Based on a patch by Faidon Liambotis.
* * Support pinging services such as Technorati using XML-RPC to notify themjoey2006-06-27
| | | | about changes to rss feeds.
* * Add support for using git instead of subversion as the RCS backend,joey2006-06-02
| | | | | tremendous thanks to Recai Oktaş for this. * Doc updates for git.
* * Add --timeformat config option to allow changing how dates are displayed.joey2006-05-29
| | | | | Note that as a side effect, dates will now be displayed using the local timezone, not as GMT.
* * --getctime had bitrotted (well I only ever used it the once so far..), joey2006-05-26
| | | | | | | fix and make it a bit more flexible * rcs_getctime is changed, now rather than needing to loop over all pages, it should just use the rcs to get the ctime of the passed file.
* * Allow discussion links on pages to be turned off with --no-discussion.joey2006-05-05
|
* * Removed --sanitize and --no-sanitize, replaced with --plugin htmlscrubberjoey2006-05-05
| | | | and --disable-plugin htmlscrubber.
* rather a lot of changes to make hyperestraier search be a plugin, allowingjoey2006-05-03
| | | | | | | | | | | | | | for other types of search engine plugins if wanted, and also opening up a lot of new possibilities for other kinds of plugins later some notable changes along the way: - lots of new hook types: cgi, render, delete - wrapper files fixed to support config strings with newlines in them - HEADERCONTENT in page template useful for plugins. Probably needs to be expanded to more such for other places plugins might want to add content. - remove unnecessary wrappers field from config info stored in wrappers
* * Patch from Thomas Schwinge to switch from --svn to --rcs=svn, etc,joey2006-05-02
| | | | | | | | | | to pave the way for adding other RCS support. This also changes the setup files, where before they had svn => 1 or svn => 0, now they have rcs => "svn" or rcs => "". * Add a debian/NEWS file with upgrade notes. * Load whatever rcs module is specified, so new ones can be just dropped in as plugins and work. * Add some basic docs about writing RCS modules.
* * Added plugin system, currently only supporting for PreProcessorDirectives.joey2006-05-02
| | | | | | | | | | | * Added a pagecount plugin, enabled by default. * Support PreProcessorDirectives with no parameters, ie "[[pagecount ]]". * Fixed/optimised backlinks code, to avoid rebuilding pages to update backlinks when the backlinks hadn't really changed. * Moved inline page support, rss generation etc into the inline plugin, enabled by default. * Added brokenlinks plugin, not enabled by default, but rather handy. * Fix several broken links in the doc wiki.
* back to basejoey2006-04-25
| | | | | fix man page errors due to too long line
* implemented html sanitisationjoey2006-04-25
|
* updatejoey2006-04-24
|
* patch fron Branden to install the man page in Makefile.PLjoey2006-04-21
|
* typojoey2006-04-07
|
* added --hyperestraier switch, which turns on search supportjoey2006-03-29
| | | | | (ok, the way I run estseek.cgi is admittedly pretty nasty, but it works..)
* Implemented --underlaydir, and moved files provided by underlay out of docjoey2006-03-29
| | | | | | | | | so I don't need to maintain two copies anymore. You might also want to remove the files provided in the basewiki underlay from your wiki, if you have not created custom local versions of them, so that these pages will be automatically updated in future ikiwiki upgrades.
* split up options by typejoey2006-03-26
|
* add --refresh and make it with with --setupjoey2006-03-26
|
* added --getctimejoey2006-03-26
|
* Removed the rss feeds for every page, which wasn't really entirely useful.joey2006-03-24
| | | | | Let's only do them for blog pages.
* add support for generating per-page rss feedsjoey2006-03-23
|
* Getopt::Long is a huge, heavy perl module. So why use it?joey2006-03-23
| | | | | | | | | | | This {gross,amazing} hack makes all wrapped uses of ikiwiki forgo any option parsing at all. Options come in preparses via an env var from the wrapper. As a bonus, Wrapper.pm no longer needs to be updated when command line options are added to the program. Load time is sped up by around 10%. ikiwikiwrap --params is no longer supported by this change. You will need to rebuild your wrappers to take advantage of it.
* *warning* any wrappers built with a previous version of ikiwiki need to bejoey2006-03-23
| | | | | | | | | rebuilt This changes ikiwiki's syntax to require only 2 parameters (source and dest) and not three. The templatedir parameter is now an optional --templatedir.
* added adminuser settings, globlist support, and used this to implement pagejoey2006-03-23
| | | | | locking
* add --diffurl, if set RecentChanges has links to svn diffsjoey2006-03-21
|
* man page generationjoey2006-03-15
|
* add rebuild after calling setup, better format for setup filesjoey2006-03-13
|
* add --setup, --wrappermodejoey2006-03-13
| | | | | allow filename param to --wrapper
* - add --excludejoey2006-03-13
| | | | | - move all the config vars into %config
* web commit by webtestwww-data2006-03-13
|
* web commit from 66.118.98.137: www-data2006-03-12
|
* web commit from 66.118.98.137: www-data2006-03-12
|
* web commit from 66.118.98.137: ikiwiki man page in markdownwww-data2006-03-12