summaryrefslogtreecommitdiff
path: root/debian
AgeCommit message (Collapse)Author
2009-01-02po: updated copyright yearsintrigeri
Signed-off-by: intrigeri <intrigeri@boum.org>
2009-01-01debian/control: suggest gettext, which is used by the po pluginintrigeri
Signed-off-by: intrigeri <intrigeri@boum.org>
2009-01-01Merge commit 'upstream/master' into prv/pointrigeri
2008-12-31releasing version 3.00Joey Hess
2008-12-31websetup: Avoid a crash when a new array setup item has been added in a new ↵Joey Hess
ikiwiki release, and is thus not present in the setup file yet. This happened with camelcase_ignore. The code tried to convert the undef value for it into an array.
2008-12-30French translation update from Philippe Batailler. Closes: #510216Joey Hess
2008-12-30Merge commit 'upstream/master' into prv/pointrigeri
Conflicts: debian/control debian/copyright doc/ikiwiki/pagespec.mdwn Signed-off-by: intrigeri <intrigeri@boum.org>
2008-12-29htmlbalance: Demand-load HTML::TreeBuilder to avoid failing test suite if it ↵Joey Hess
is not present.
2008-12-28comments: Add cache avoidance.Joey Hess
This got lost when we added the jump-to-comment anchor.
2008-12-28Replace blank OpenID placeholder logo with an unofficial OpenID logo ↵Joey Hess
developed by Anna Hess. The official logo does not seem destined to be free.
2008-12-28Merge branch 'master' into nextJoey Hess
Conflicts: debian/changelog po/ikiwiki.pot
2008-12-28releasing version 2.72Joey Hess
2008-12-26Merge branch 'master' into nextJoey Hess
2008-12-26inline: Run format hook firstJoey Hess
inline has a format hook that is an optimisation hack. Until this hook runs, the inlined content is not present on the page. This can prevent other format hooks, that process that content, from acting on inlined content. In bug ##509710, we discovered this happened commonly for the embed plugin, but it could in theory happen for many other plugins (color, cutpaste, etc) that use format to fill in special html after sanitization. The ordering was essentially random (hash key order). That's kinda a good thing, because hooks should be independent of other hooks and able to run in any order. But for things like inline, that just doesn't work. To fix the immediate problem, let's make hooks able to be registered as running "first". There was already the ability to make them run "last". Now, this simple first/middle/last ordering is obviously not going to work if a lot of things need to run first, or last, since then we'll be back to being unable to specify ordering inside those sets. But before worrying about that too much, and considering dependency ordering, etc, observe how few plugins use last ordering: Exactly one needs it. And, so far, exactly one needs first ordering. So for now, KISS. Another implementation note: I could have sorted the plugins with first/last/middle as the primary key, and plugin name secondary, to get a guaranteed stable order. Instead, I chose to preserve hash order. Two opposing things pulled me toward that decision: 1. Since has order is randomish, it will ensure that no accidental ordering assumptions are made. 2. Assume for a minute that ordering matters a lot more than expected. Drastically changing the order a particular configuration uses could result in a lot of subtle bugs cropping up. (I hope this assumption is false, partly due to #1, but can't rule it out.)
2008-12-26deprecate embed plugin tooJoey Hess
I see that this plugin's lists of safe content are already well out of date, and htmlscrubber_skip offers a non whitelist based approach, so let's deprecate this plugin for 3.0.
2008-12-26Merge branch 'master' into nextJoey Hess
2008-12-26comments: Deal with users entering unqualified or partial urls.Joey Hess
People seem to be able to expect to enter www.foo.com and get away with it. The resulting my.wiki/www.foo.com link was not ideal. To fix it, use URI::Heuristic to expand such things into a real url. It even looks up hostnames in the DNS if necessary.
2008-12-25Merge branch 'master' into nextJoey Hess
Conflicts: IkiWiki/Plugin/googlecalendar.pm
2008-12-25googlecalendar: Add runtime deprecation warning.Joey Hess
2008-12-24more 3.0 docs, changelogJoey Hess
2008-12-24make ikiwiki-transition prefix_directives take a setup fileJoey Hess
This is easier to remeber, and less error-prone than passing it all the pages in the wiki.
2008-12-23camelcase: Add camelcase_ignore setting.Joey Hess
2008-12-23Merge branch 'master' into nextJoey Hess
Conflicts: IkiWiki.pm
2008-12-23Add deprecation warning for GlobLists, which will stop working in 3.0.Joey Hess
2008-12-23beginning docs for 3.0Joey Hess
2008-12-22merge recentchanges comments fixJoey Hess
2008-12-21formattingJoey Hess
2008-12-21openid branch mergedJoey Hess
2008-12-21meta: Process meta date during scan pass so that the date will always affect ↵Joey Hess
sorting in inlines.
2008-12-17aggregate: If a feed fails to be downloaded, try again immediatly next time ↵Joey Hess
aggregation is run, even if the usual time has not passed. Closes: #508622 (Michael Gold)
2008-12-17Coding style change: Remove explcit vim folding markers.Joey Hess
2008-12-17Merge branch 'master' into commentsJoey Hess
2008-12-17monotone: When getting the log, tell monotone how many entries we want, ↵Joey Hess
rather than closing the pipe, which it dislikes. (thm)
2008-12-17rename: Fix double-escaping of page name in edit box.Joey Hess
titlepage normally escapes, but so does formbuilder.
2008-12-12update changelogJoey Hess
2008-12-12update copyrightJoey Hess
2008-12-12add log entryJoey Hess
2008-12-12meta: Pass info to htmlscrubber so htmlscrubber_skip can take effect.Joey Hess
2008-12-11inline: Support feedfile option to change the filename of the feed generated.Joey Hess
2008-12-11inline: Support emptyfeeds=no option to skip generating empty feeds.Joey Hess
2008-11-28German translation update from Kai Wasserbäch. Closes: #507056Joey Hess
2008-11-13Merge commit 'upstream/master' into prv/pointrigeri
2008-11-12releasing version 2.70Joey Hess
2008-11-12check for invalid utf-8, and toss it back to avoid crashesJoey Hess
Since ikiwiki uses open :utf8, perl assumes that files contain valid utf-8. If it turns out to be malformed it may later crash while processing strings read from them, with 'Malformed UTF-8 character (fatal)'. As at least a quick fix, use utf8::valid as soon as data is read, and if it's not valid, call encode_utf8 on the string, thus clearing the utf-8 flag. This may cause follow-on encoding problems, but will avoid this crash, and the input file was broken anyway, so GIGO is a reasonable response. (I looked at calling decode_utf8 after, but it seemed to cause more trouble than it was worth. BTW, use open ':encoding(utf8)' avaoids this problem, but the corrupted data later causes Storable to crash when writing the index.) This is a quick fix, clearly imperfect: - It might be better to explicitly call decode_utf8 when reading files, rather than using the IO layer. - Data read other than by readfile() can still sneak in bad utf-8. While ikiwiki does very little file input not using it, stdin for the CGI would be one way.
2008-11-11make unlockwiki drop the cgilockJoey Hess
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.
2008-11-11Merge branch 'master' into poJoey Hess
2008-11-11lockwiki changesJoey Hess
* Stop busy-waiting in lockwiki, as this could delay ikiwiki from waking up for up to one second. The bailout code is no longer needed. * Remove support for unused optional wait parameter from lockwiki.
2008-11-11bzr: Fix dates for recentchanges.Joey Hess
2008-11-10typoJoey Hess
2008-11-10tag: Normalize tagbase so leading/trailing slashes in it don't break things.Joey Hess