aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
Commit message (Collapse)AuthorAge
* * Add templatefile hook.joey2007-07-26
| | | | | * Add pagetemplate plugin, which allows changing the template used for a page. (Not to be confused with the hook of the same name..)
* * Fix graphviz plugin to not try to read images as utf-8; they mightjoey2007-07-25
| | | | | sometimes contain invalid utf-8 byte sequences. Thanks, HenrikBrixAndersen.
* * Add a htmlext config option, this can be used to make ikiwiki generatejoey2007-07-25
| | | | html files with a different extension.
* * Make the map plugin notice when pages in the map are deleted and updatejoey2007-07-25
| | | | it.
* * In img tag, allow link=no to disable link to full size image. Thanks,joey2007-07-15
| | | | Nis Martensen. Closes: #433188
* * Fix links to alternate stylesheets when usedirs is enabled.joey2007-07-13
| | | | | | * Use type= not style= in html for alternate stylesheets, which is more correct (but in my testing both epiphany and iceweasel work ok with style=text/css).
* * Fix links to stylesheets when usedirs is enabled.joey2007-07-13
|
* on second thought, simple alphanumeric styles are not actually useful (class ↵joey2007-07-11
| | | | is already supported), and anything more complex is too hard to do, so revert
* * Allow simple alphanumeric style attribute values in the htmlscrubber. Thisjoey2007-07-11
| | | | should be safe from javascript attacks.
* * Make the toc plugin use html-compatible anchors. This is necessary sincejoey2007-07-08
| | | | | | most web sites serve ikiwiki xhtml files as text/html and mozilla browsers get confused. So it's best for ikiwiki to follow the compatability recommendations in appendix C of the XHTML spec. Closes: #432045
* * Patch fixing various additional problems with test suite. Closes: #425891joey2007-06-26
| | | | once more.
* * Corrected a typo in an error handler in the image plugin.joey2007-06-19
|
* exit with error if Text::Typography cannot be loadedjoey2007-06-05
|
* * Add typographyattributes configuration setting to typography plugin.joey2007-06-05
|
* * Make the url absolution code for feeds significantly more robust.joey2007-06-03
|
* * Explode some of the more insane regexps.joey2007-06-01
|
* * More consistent encoding of titles in rss and atom feeds. Don't usejoey2007-05-28
| | | | | | | | | | | ESCAPE=HTML for titles in the templates for these feeds, and instead escape the title going in to the template. Previously, the title was sometimes double-escaped in a feed (if set via meta title), and sometimes not (if set from the page filename). * In the meta plugin, when a title is set, encode the html entities in it numerically. This works better in the current landscape of a rss spec that doesn't specify encoding, and variously broken feed consumers, according to <http://www.rssboard.org/rss-profile#data-types-characterdata>.
* didn't mean to make this change (yet)joey2007-05-28
|
* * Apply a patch from Carl Worth allowing a class attribute to be passedjoey2007-05-28
| | | | through the img plugin. Also allow the id attribute to be passed through.
* * Deal better with rebuilds that involve moving files; track and clean up thejoey2007-05-24
| | | | | | | | | | old files. * Change where the img plugin puts scaled images. It's better to make the scaled images subpages of the page that embeds them, rather than putting them alongside the original image, since if two pages scale the same image the same way, this prevents complications in dealing with two pages creating the same file. The move will be handled transparently, though you might want to rebuild your wiki to make it occur in one step.
* the 100% correct way is to add it to %links on scanjoey2007-05-23
|
* * Correct bug in the img plugin that caused dependencies on images to notjoey2007-05-23
| | | | always be tracked correctly.
* improve messagesjoey2007-05-21
|
* Clear state after performing aggregation, since it could hypotheticallyjoey2007-05-21
| | | | | | change after the lock is dropped, and before the lock is regained by the build process. The state will now be reloaded by the build process.
* * Change the aggregate plugin's locking strategy. Now it defers loading statejoey2007-05-21
| | | | | | until the wiki is building and already locked, unless it's aggregating. When aggregating, it does not wait for the lock if it cannot get it, and instead exits, to prevent aggregating processes from piling up.
* * Add a destpage parameter to the filter hook.joey2007-05-17
| | | | | * Fix links to smilies generated by the smiley plugin for inlined pages. The old links were often wrong, but often still worked by accident.
* * Fix some bugs in password handling:joey2007-05-17
| | | | | | - If the password is empty in preferences, don't clear the existing password. - Actually check the confirm password field, even if it's left empty.
* formattingjoey2007-05-12
|
* optimise backlinks counting for pagestats, simplify function returns againjoey2007-05-12
|
* * Patch from hb to fix the pagestats plugin, which was broken by a pastjoey2007-05-12
| | | | change to the backlinks() function.
* * Add an account-creation password as a simple anti-spam mechanism. Ifjoshtriplett2007-05-09
| | | | | set in the wiki setup, passwordauth will require the password in order to create an account.
* * Add the needsbuild hook. Plugins can use this to manipulate which filesjoey2007-05-09
| | | | ikiwiki builds when refreshing the wiki.
* * Add all=no option to conditional, can be used to form conditionals that dojoey2007-05-09
| | | | | not need to examine every page in the wiki. * Use this to simplify the goodstuff detection in the plugin template.
* Nuke trailing whitespace in shortcut.pm.joshtriplett2007-05-08
|
* updatejoey2007-05-08
|
* * Make testpagespec more robust, including checking for missing/badjoey2007-05-08
| | | | parameters, and detecting if a pagespec failed to compile.
* * Improve handling of edits of locked pages by users who are not yet signedjoey2007-05-07
| | | | in.
* improve a stringjoey2007-05-06
|
* * Fix a bug that prevented clearing email or subscriptions.joey2007-04-30
|
* correct size of name field in initial login form (same size as password)joey2007-04-30
|
* * If Net::OpenID::Consumer is not available, the openid module will quietlyjoey2007-04-30
| | | | | disable itself, this avoids needing a hard dependency on the perl module.
* Revert passwordauth fieldset and doc to avoid 2.0 regressions; need to ↵joshtriplett2007-04-30
| | | | re-evaluate after 2.0.
* actually, let's not use a fieldset label at all here, and use thejoey2007-04-30
| | | | | "login with openid" as the input field label
* put back OpenID label since we cannot rely on the label displayjoey2007-04-30
|
* * Group passwordauth fields with a fieldset as well. Add a newjoshtriplett2007-04-30
| | | | | | | | passwordauth page to the basewiki describing password authentication; like openid, it uses conditional to check which forms of authentication the wiki allows. Add conditional cross- links between the openid and passwordauth pages, to help the user understand how they can log in.
* layout improvementjoey2007-04-29
|
* I don't think this comment adds muchjoey2007-04-29
|
* * Use a fieldset to set off the openid entry from the rest of the loginjoey2007-04-29
| | | | form.
* * Use fieldsets in the preferences form to group related options together.joey2007-04-29
| | | | Especially cleans up the ordering of the admin's preferences form.
* the kind of perl code that can only be written at 4:30 amjoey2007-04-27
| | | | | | | (Get a good message when a PageSpec fails due to a negated success by creating success objects with a reason string, which morph into failure objects when negated.)