aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
Commit message (Expand)AuthorAge
* use error for two messagesJoey Hess2008-11-05
* preprocess text before htmlizing itJoey Hess2008-11-02
* format: New plugin, allows embedding differntly formatted text inside a page ...Joey Hess2008-10-31
* don't rely on plugin load order when determining generated directives•••Instead, shortcuts will explicitly be marked as such when registered, and listdirectives can filter them out. Joey Hess2008-10-30
* fix preview of shortcuts•••Move shortcut processing back to checkconfig, and avoid it failing if the srcdir is not defined. Joey Hess2008-10-29
* git: Allow [[sha1_commit]] to be used in the diffurl, to support cgit.Joey Hess2008-10-27
* the pre-receive wrapper needs to be suid after all•••It needs to write to the user db. Joey Hess2008-10-24
* include temp file for attachment change tooJoey Hess2008-10-24
* updatesJoey Hess2008-10-24
* untrusted committers code seems to be fully working•••Still need to investigate possible races, and test some more. Joey Hess2008-10-23
* check_canattach hooked upJoey Hess2008-10-23
* more work on untrusted committers•••Wired up check_canedit and check_canremove, still need to deal with check_canattach, and test. Joey Hess2008-10-23
* initial support for git repos with untrusted committers•••Still need to wire up the calls to check_* , but it's cold out here and my hands are going numb, so enough for now. Joey Hess2008-10-22
* function injection overhaul•••Add an inject function, that can be used by plugins that want to replace one of ikiwiki's functions with their own version. (This is a scary thing that grubs through the symbol table, and replaces all exported occurances of a function with the injected version.) external: RPC functions can be injected to replace exported functions. Removed the stupid displaytime hook, and use injection instead. Joey Hess2008-10-21
* disable warnings when redefining functionsJoey Hess2008-10-21
* use relativedate as the css class for dates that should display relativeJoey Hess2008-10-20
* tag: When tagpage is set, force the links created by tagging to point at the ...•••The html links already went there, but internally the links were not recorded as absolute, which could cause confusing backlinks etc. For example, with tagbase=tags, if blog/tags/bar existed and blog/foo was tagged bar, it would link to /tags/bar. But, the link would be recorded simply as a link to tags/bar, and so later blog/tags/bar would appear to have the backlink. Joey Hess2008-10-20
* inline: Only the last feed link was put on the page, fix this to include all ...Joey Hess2008-10-20
* add displaytime hook•••Need to use a hook because an exported function cannot be reliably overridden. The replacement verstion was actually only affecting plugins loaded after it. formattime doesn't need a hook, since there's no reason to export it. Joey Hess2008-10-19
* need to use localtime, fix widthJoey Hess2008-10-19
* fix relativedate timezone inclusion•••The machine parseable date needs to include a timezone. Also, simplified the interface for date display. Joey Hess2008-10-19
* mark up date so relativedate will workJoey Hess2008-10-19
* fix urlJoey Hess2008-10-17
* tweak recentchanges permalink code•••Need to handle the case where url is not set. Joey Hess2008-10-17
* Patch for anchor-based change permalinks in recent changes feed•••from JasonBlevins Joey Hess2008-10-17
* add missing getsetup hookJoey Hess2008-10-17
* make relativedate work for the dates on the recentchanges page•••Having a always current relative date on recentchanges is very, very nice. Joey Hess2008-10-17
* relativedate: New javascript-alicious plugin that makes all dates display rel...Joey Hess2008-10-17
* Add an underlay for javascript, and add ikiwiki.js containing some utility code.•••* Add an underlay for javascript, and add ikiwiki.js containing some utility code. * toggle: Stop embedding the full toggle code on each page using it, and move it to toggle.js in the javascript underlay. Joey Hess2008-10-17
* aggregate: Avoid bug that caused immediate expiration of items with a date in...Joey Hess2008-10-16
* inline: Use the feed's description in the rss and atom links. Closes: #502113Joey Hess2008-10-15
* fix prototypeJoey Hess2008-10-14
* inline: Allow MTIME to be used in inlinepage.tmpl.Joey Hess2008-10-14
* optimise url parsing and add guard against failure to parseJoey Hess2008-10-10
* google plugin: Use google.com to search the local site.•••Google allows has a nice feature, sitesearch, that allows anyone to limit search results to a specific site. Obviously, this feature can be used to provide a search engine for the local ikiwiki site without the need to install any additional software. Just enable the 'google' plugin and make sure that --url uses the proper hostname. Thanks to Joey for helping to get the Perl implementation right. Peter Simons2008-10-10
* orphans: Fix unquoted page name in regexp.Joey Hess2008-10-09
* lockedit: Support specifying which users (and IP addresses) a page is locked ...Joey Hess2008-10-08
* avoid $_ in a few other for loops•••These were probably not currently buggy, but let's avoid bugs being introduced by the functions called clobbering $_. Joey Hess2008-10-06
* remove: Avoid $_ breakage. (Stupid, stupid perl.)•••This avoids another one of those $_ scoping issues where a deep call to a function that changes $_ clobbers the array that is being looped over. Joey Hess2008-10-06
* remove, rename: Allow acting on attachments as a page is being created.Joey Hess2008-10-02
* attachment: Support adding attachments to pages even as they are being created.Joey Hess2008-10-02
* don't special case preview•••Whenever the edit form is submitted, but not saved, the page location select should reduce to the currently selected value. This was only done when previewing before, but is also needed in order to support the case of adding an attachment to a page that is just being created. Before this change, the attachment plugin would get a weird value in $form->field("page"), that did not reflect the actual page location. Joey Hess2008-10-02
* inline: Fix handling of rootpage that doesn't exist.•••It makes sense to use bestlink to determine which page rootpage refers to, but if no page matches, just use the raw value. Joey Hess2008-10-01
* fix subpage rename bug with indexpages•••If indexpages is enabled, then foo/index.mdwn will look like a subpage of foo, so an additional check is needed to avoid trying to rename it twice. Joey Hess2008-10-01
* support indexpagesJoey Hess2008-09-29
* Removed the pagefile function, which was confusingly close in name to•••newpagefile. Note that newpagefile is not used here (or in recentchanges) because the internal use pages they generate are transient and unlikely to benefit from being put each in their own subdir. Joey Hess2008-09-29
* use newpagefileJoey Hess2008-09-29
* support indexpages when renaming pages•••Note that the page filename code used here and in editpage are identical.. Joey Hess2008-09-29
* support indexpages when creating new pages•••Initial draft, may need to factor new page filename code out into helper function if other plugins need to do the same.. Joey Hess2008-09-29
* avoid unnecessarily rebuilding pages with complex conditionals•••I noticed that ikiwiki/formatting was beilg rebuilt when any page changed. This turned out to be because it contained a complex conditional "enabled(foo) or enabled(bar)", and the conditional plugin did not notice that this consisted only of enabled() tests, and copied it unchanged into add_depends. Thus, the page's dependencies were satisfied by any page change. The fix is to beef up the parser so that it can handle that and more complex conditionals, and detect if they consist only of such tests. Joey Hess2008-09-29