| Commit message (Expand) | Author | Age |
* | * Change htmlize, format, and sanitize hooks to use named parameters. | joey | 2006-08-28 |
* | update | joey | 2006-08-23 |
* | reorganise, include preprocess in the right order | joey | 2006-08-23 |
* | * If the meta plugin overides the page title, set a title_overridden••• variable in the template to true. This allows doing things with the
templates conditional on the title being overriden.
| joey | 2006-08-12 |
* | * Don't run tidy with -xml as that fails if the input is not well-formed.••• Run it with -asxhtml instead, so it will output well-formed xhtml no
matter what the input.
* Disable tidy warnings too.
* Add a new format hook, and make tidy use it, since tidy can really only
operate on and output complete html documents, not the body chunks
that sanitise gets.
| joey | 2006-08-04 |
* | * Renamed GlobLists to PageSpecs.•••* PageSpecs can now include nested parens, "and", and "or". This remains
backwards compatible to the old GlobList format. It's implemented by
treating the GlobList as a very limited microlanguage that is transformed
to perl code that does the matching.
* The old GlobList format is deprecated, and I encourage users to switch to
using the new PageSpec format. Compatability with the old format will be
removed at some point, possibly by 2.0.
* Wiki rebuild needed on upgrade to this version due to PageSpec change.
* Add support for creation_month and creation_year to PageSpec.
Closes: #380680
* Changes to index file encoding.
| joey | 2006-08-02 |
* | * ikiwiki can now download and aggregate feeds with its new aggregate••• 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.
| joey | 2006-07-30 |
* | * Add a run_hooks function for the common task of running all hooks of a••• given type.
* Add a savestate hook.
* Don't put blog post forms on pages if there's no cgiurl set.
* Reformat front page.
| joey | 2006-07-30 |
* | * Put categories in rss feeds for tagged items. | joey | 2006-07-29 |
* | improve | joey | 2006-07-28 |
* | * Add getopt hook type, this allows plugins to add new command-line options.•••* Add --tagbase option to tag plugin.
| joey | 2006-07-28 |
* | small improvements | joey | 2006-07-28 |
* | more destpage improvements | joey | 2006-07-27 |
* | * Switch pagetemplate hooks to using named parameters.•••* Pass a "destpage" parameter to preprocessor and pagetemplate hooks.
This will be the page that a source page will be part of, which is
different than the source page for inlined pages.
* Audited all plugins to endure they pass page, destpage to htmllink
appropriatly. This means inlining of various plugins will not work
properly, with correct links generated.
| joey | 2006-07-27 |
* | - Adds a tag plugin that allows more easily tagging pages.••• The meta plugin can also still be used for that, but the tag plugin
also lists a page's tags at the bottom of the page.
- Allows preprocessor directives to have parameters with no specified
value.
- Fixes preprocessor directive parameter parsing so that
foo=bar baz now means "foo=bar" and a "baz" with no value.
* Run pagetemplate hooks when inlining pages so that inlines pages also
list their tags.
* Make all plugins with pagetemplate hooks check that variables exist
on the template before setting them.
| joey | 2006-07-27 |
* | * Support htmlize plugins and make mdwn one such plugin, which is enabled by••• default (of course!). Based on a patch by Faidon Liambotis.
| joey | 2006-07-03 |
* | meta headers are not sanitised; prevent html leaking into them | joey | 2006-06-02 |
* | * Reorganised the doc wiki's todo/* pages, using a link/tag to flag•••* Allow pagetemplate plugins to override *anything* in the template.
* Add a meta plugin, which allows specifying various metadata about pages,
like license and author. It also allows for inserting html link and meta
tags into html, overriding the title, and adding hidden WikiLinks, which
can be useful when using link-based globbing for page categorisation.
* Remove preprocessor directives from inlined pages.
* Allow simple preprocessor directive values to be specified w/o quotes.
| joey | 2006-06-02 |
* | * The page name and parent links has switched from using a <h1> to a styled••• <span>, so pages can use <h1> internally instead of needing to use <h2>.
* Updated all of ikiwiki's own wiki pages for that.
* Add pagetemplate hook, which can be used by plugins that want to mess
around with adding new stuff to the page template.
* Remove headercontent; the search plugin now adds the search box to the
header by registering a pagetemplate hook, and other plugins should do
similarly.
| joey | 2006-05-26 |
* | * Removed --sanitize and --no-sanitize, replaced with --plugin htmlscrubber••• and --disable-plugin htmlscrubber.
| joey | 2006-05-05 |
* | rename the "render" hook to "change", which is clearer | joey | 2006-05-05 |
* | link updates | joey | 2006-05-04 |
* | * Added smiley plugin, nicely controlled and documented by the smileys page.•••* Copied in some smileys from Moin Moin.
| joey | 2006-05-04 |
* | web commit by joey | www-data | 2006-05-03 |
* | web commit by joey | www-data | 2006-05-03 |
* | web commit by joey | www-data | 2006-05-03 |
* | web commit by joey | www-data | 2006-05-03 |
* | web commit by joey | www-data | 2006-05-03 |
* | web commit by joey | www-data | 2006-05-03 |
* | web commit by joey: change to plugin interface | www-data | 2006-05-03 |
* | * Patch from Thomas Schwinge to switch from --svn to --rcs=svn, etc,••• 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.
| joey | 2006-05-02 |
* | web commit by joey | www-data | 2006-05-02 |
* | web commit by joey | www-data | 2006-05-02 |
* | web commit by joey | www-data | 2006-05-02 |
* | web commit by joey | www-data | 2006-05-02 |
* | * Added plugin system, currently only supporting for PreProcessorDirectives.•••* 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.
| joey | 2006-05-02 |