--- /dev/null
+#!/usr/bin/perl
+# Bundle of good stuff.
+package IkiWiki::Plugin::goodstuff;
+
+use warnings;
+use strict;
+use IkiWiki;
+
+my @bundle=qw{
+ brokenlinks
+ img
+ map
+ meta
+ orphans
+ pagecount
+ pagestats
+ shortcut
+ smiley
+ tag
+ template
+ toc
+ toggle
+ otl
+};
+
+sub import { #{{{
+ IkiWiki::loadplugin($_) foreach @bundle;
+} # }}}
+
+1
+++ /dev/null
-#!/usr/bin/perl
-package IkiWiki::Plugin::nicebundle;
-
-use warnings;
-use strict;
-use IkiWiki;
-
-my @bundle=qw{
- brokenlinks
- img
- map
- meta
- orphans
- pagecount
- pagestats
- shortcut
- smiley
- tag
- template
- toc
- toggle
- otl
-};
-
-sub import { #{{{
- IkiWiki::loadplugin($_) foreach @bundle;
-} # }}}
-
-1
./ikiwiki.in doc html --templatedir=templates --underlaydir=basewiki \
--wikiname="ikiwiki" --verbose --no-rcs \
--exclude=/discussion --no-discussion \
- --plugin=nicebundle \
+ --plugin=goodstuff \
--plugin=haiku --plugin=polygen --plugin=fortune
./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man
./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man
* Make the openid plugin support the callbacks from myopenid.com via its
affiliate program.
* Add toggle plugin.
- * Introduce the nicebundle. This is a kind of plugin, that just enables
+ * Introduce the goodstuff bundle. This is a kind of plugin, that just enables
many other plugins. It's an easy way to boost ikiwiki from its default,
basic wiki, to a full-featured wiki, without manually picking the right
- set of plugins. New plugins will be added to the nicebundle from time to
+ set of plugins. New plugins will be added to goodstuff from time to
time.
* Change how post signin actions are propigated through the signin process;
they're now stored in the session.
syslog => 0,
# To add plugins, list them here.
- #add_plugins => [qw{nicebundle openid search wikitext camelcase
+ #add_plugins => [qw{goodstuff openid search wikitext camelcase
# htmltidy fortune sidebar map rst}],
# If you want to disable any of the default plugins, list them here.
#disable_plugins => [qw{inline htmlscrubber passwordauth}],
--- /dev/null
+[[template id=plugin name=goodstuff included=1 author="[[Joey]]"]]
+[[tag type/bundle]]
+
+This plugin enables a bunch of other plugins -- basically all the ones that
+are not too intrusive, work well with little configuration, and are nice to
+have on any capable wiki. The plugins in this bundle are not enabled by
+default in ikiwiki, so that by default ikiwiki is limited to a few core
+wiki features. If you want a more capable wiki, enable this plugin bundle.
+
+Currently included:
+
+* [[brokenlinks]]
+* [[img]]
+* [[map]]
+* [[meta]]
+* [[orphans]]
+* [[pagecount]]
+* [[pagestats]]
+* [[shortcut]]
+* [[smiley]]
+* [[tag]]
+* [[template]]
+* [[toc]]
+* [[toggle]]
+* [[otl]]
+
+New plugins will be added to this bundle from time to time.
+++ /dev/null
-[[template id=plugin name=nicebundle included=1 author="[[Joey]]"]]
-[[tag type/bundle]]
-
-This plugin enables a bunch of other plugins -- basically all the ones that
-are not too intrusive, work well with little configuration, and are nice to
-have on any capable wiki. The plugins in this bundle are not enabled by
-default in ikiwiki, so that by default ikiwiki is limited to a few core
-wiki features. If you want a more capable wiki, enable this plugin bundle.
-
-Currently included:
-
-* [[brokenlinks]]
-* [[img]]
-* [[map]]
-* [[meta]]
-* [[orphans]]
-* [[pagecount]]
-* [[pagestats]]
-* [[shortcut]]
-* [[smiley]]
-* [[tag]]
-* [[template]]
-* [[toc]]
-* [[toggle]]
-* [[otl]]
-
-New plugins will be added to this bundle from time to time.