aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Collapse)AuthorAge
* htmlbalance: new plugin that balances tags by parsing and re-serializingSimon McVittie2008-11-17
|
* make unlockwiki drop the cgilockJoey Hess2008-11-11
| | | | | | | | This is necessary so that things that fork to the background, like pinger, and inline ping, don't block other cgis from running. Note that websetup also calls unlockwiki, before refreshing / rebuilding the wiki. It makes perfect sense for that not to block other cgis.
* O_CREATE needs modeJoey Hess2008-11-11
|
* avoid multiple ikiwiki cgi processes piling up, eating all memory, and thrashingJoey Hess2008-11-11
| | | | | | | | | | | Fixed by making the cgi wrapper wait on a cgilock. If you had to set apache's MaxClients low to avoid ikiwiki thrashing your server, you can now turn it up to a high value. The downside to this is that a cgi call that doesn't need to call lockwiki will be serialised by this so only one can run at a time. (For example, do=search.) There are few such calls, and all of them call loadindex, so each still eats gobs of memory, so serialising them still seems ok.
* bzr: Fix dates for recentchanges.Joey Hess2008-11-11
|
* remove redundant link mungeJoey Hess2008-11-10
| | | | | | | | This is not needed now that tagpage returns a page name starting with a slash. (Also fixes a minor bug that the edit links started with double slashes due to the hack.)
* tag: Normalize tagbase so leading/trailing slashes in it don't break things.Joey Hess2008-11-10
|
* Add rel=nofollow to recentchanges_links for the same (weak) reasons it was ↵Joey Hess2008-11-10
| | | | earlier added to edit links.
* txt: Do not encode quotes when filtering the txt, as that broke later ↵Joey Hess2008-11-06
| | | | parsing of any directives on the page.
* meta: Plugin is now enabled by default since the basewiki uses it.Joey Hess2008-11-06
|
* aggregate: Try to query XML::Feed for the base url when derelevatising ↵Joey Hess2008-11-06
| | | | links. Since this needs the just released XML::Feed 0.3, as well as a not yet released XML::RSS, it will fall back to the old method if no xml:base info is available.
* 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
| | | | (ie, otl inside a mdwn page, or syntax highlighted code inside a page).
* set ctime in --render mode if not knownJoey Hess2008-10-30
| | | | Avoids some uninitialised value warnings.
* don't rely on plugin load order when determining generated directivesJoey Hess2008-10-30
| | | | | Instead, shortcuts will explicitly be marked as such when registered, and listdirectives can filter them out.
* fix preview of shortcutsJoey Hess2008-10-29
| | | | | Move shortcut processing back to checkconfig, and avoid it failing if the srcdir is not defined.
* fix display of error msgJoey Hess2008-10-29
|
* git: Allow [[sha1_commit]] to be used in the diffurl, to support cgit.Joey Hess2008-10-27
|
* do no-op post_commit test in wrapperJoey Hess2008-10-26
| | | | | | | | | | | | | | | | | | | This speeds up web commits by 1/4th of a second or so, since perl does not have to start up for the post commit hook. perl's locking is completly FuBar, since it's impossible to tell what perl flock() really does, and thus difficult to write code in other languages that interoperates with perl's locking. (Let alone interoperating with existing fcntl locking from perl...) In this particular case, I think I was able to find a way to avoid the insanity, mostly. The C code does a true flock(2), and if perl is using an incompatable lock method that does not use the same locking primative at the kernel level, then the C code's test will fail, and it will go ahead and run the perl code. Then the perl code's test will test the right thing. On Debian, at least lately, perl's flock() does a true flock(2), so the optimisation does work.
* move untrusted committer test into the wrapperJoey Hess2008-10-26
| | | | | This saves around 1/4th second per trusted commit since ikiwiki doesn't need to start up.
* remember how to write C codeJoey Hess2008-10-24
| | | | been a while!
* the pre-receive wrapper needs to be suid after allJoey Hess2008-10-24
| | | | It needs to write to the user db.
* export CALLER_UIDJoey Hess2008-10-24
|
* can't lock wiki due to permissions (probably)Joey Hess2008-10-24
| | | | luckily, don't really need to here
* include temp file for attachment change tooJoey Hess2008-10-24
|
* updatesJoey Hess2008-10-24
|
* really fix calls to check_can*Joey Hess2008-10-24
|
* untrusted committers code seems to be fully workingJoey Hess2008-10-23
| | | | Still need to investigate possible races, and test some more.
* fix calls to check_*Joey Hess2008-10-23
| | | | These throw errors, do not have useful return codes.
* check_canattach hooked upJoey Hess2008-10-23
|
* more work on untrusted committersJoey Hess2008-10-23
| | | | | Wired up check_canedit and check_canremove, still need to deal with check_canattach, and test.
* initial support for git repos with untrusted committersJoey Hess2008-10-22
| | | | | 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.
* function injection overhaulJoey Hess2008-10-21
| | | | | | | | | | | 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.
* 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 ↵Joey Hess2008-10-20
| | | | | | | | | | | | toplevel tagpage, and not closer subpages. 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.
* inline: Only the last feed link was put on the page, fix this to include all ↵Joey Hess2008-10-20
| | | | feed links. So rss will be included along with atom, and pages with multiple feeds will get links added for all feeds.
* Use the pure perl Data::Dumper when generating setup files to ensure that ↵Joey Hess2008-10-19
| | | | | | | utf-8 characters are written out as such, and not as the encoded perl strings the C Data::Dumper produces. Note that the text produced by the C version was interpreted fine when ikiwiki loaded the setup file. But it was not user-friendly.
* Fix issue with utf-8 in wikiname breaking session cookies, by ↵Joey Hess2008-10-19
| | | | entity-encoding the wikiname in the session cookie.
* add displaytime hookJoey Hess2008-10-19
| | | | | | | | 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.
* need to use localtime, fix widthJoey Hess2008-10-19
|
* fix relativedate timezone inclusionJoey Hess2008-10-19
| | | | | | The machine parseable date needs to include a timezone. Also, simplified the interface for date display.
* mark up date so relativedate will workJoey Hess2008-10-19
|
* fix urlJoey Hess2008-10-17
|
* tweak recentchanges permalink codeJoey Hess2008-10-17
| | | | Need to handle the case where url is not set.
* Patch for anchor-based change permalinks in recent changes feedJoey Hess2008-10-17
| | | | from JasonBlevins
* add missing getsetup hookJoey Hess2008-10-17
|
* make relativedate work for the dates on the recentchanges pageJoey Hess2008-10-17
| | | | Having a always current relative date on recentchanges is very, very nice.
* relativedate: New javascript-alicious plugin that makes all dates display ↵Joey Hess2008-10-17
| | | | relative, in a very nice way, if I say so myself.