aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Expand)AuthorAge
* txt: Do not encode quotes when filtering the txt, as that broke later parsing...Joey Hess2008-11-06
* 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 links....Joey Hess2008-11-06
* 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
* set ctime in --render mode if not known•••Avoids some uninitialised value warnings. Joey Hess2008-10-30
* 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
* 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 wrapper•••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. Joey Hess2008-10-26
* move untrusted committer test into the wrapper•••This saves around 1/4th second per trusted commit since ikiwiki doesn't need to start up. Joey Hess2008-10-26
* remember how to write C code•••been a while! Joey Hess2008-10-24
* the pre-receive wrapper needs to be suid after all•••It needs to write to the user db. Joey Hess2008-10-24
* export CALLER_UIDJoey Hess2008-10-24
* can't lock wiki due to permissions (probably)•••luckily, don't really need to here Joey Hess2008-10-24
* 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 working•••Still need to investigate possible races, and test some more. Joey Hess2008-10-23
* fix calls to check_*•••These throw errors, do not have useful return codes. 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
* Use the pure perl Data::Dumper when generating setup files to ensure that utf...•••Note that the text produced by the C version was interpreted fine when ikiwiki loaded the setup file. But it was not user-friendly. Joey Hess2008-10-19
* Fix issue with utf-8 in wikiname breaking session cookies, by entity-encoding...Joey Hess2008-10-19
* 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
* Pass HTTPS variable through the wrapper so that CGI->https can be used by plu...Joey Hess2008-10-13
* 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