summaryrefslogtreecommitdiff
path: root/doc/bugs
AgeCommit message (Collapse)Author
2008-06-27web commit by http://ptecza.myopenid.com/: * Fixed exampleJoey Hess
2008-06-27web commit by http://ptecza.myopenid.com/: * Bug reportJoey Hess
2008-06-24add bug linkJoey Hess
2008-06-16textile: The Text::Textile perl module has some regexps that fail if input ↵Joey Hess
is flagged as utf-8, but contains invalid characters such as 0x92. To prevent it from crashing, re-encode the content before calling it, which will ensure that it's really utf-8.
2008-06-16web commit by http://alcopop.org/me/openid/: ikiwiki version is 2.50Joey Hess
2008-06-16web commit by http://alcopop.org/me/openid/: bug with bad input textJoey Hess
2008-06-16web commit by http://ptecza.myopenid.com/: * Thanks!Joey Hess
2008-06-15web commit by http://sabr.myopenid.com/Joey Hess
2008-06-15close as dupJoey Hess
2008-06-14Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2008-06-14web commit by http://telemachos.myopenid.com/Joey Hess
2008-06-13responseJoey Hess
2008-06-13web commit by http://ptecza.myopenid.com/: * Thanks and question about XapianJoey Hess
2008-06-13fix two build bugsJoey Hess
* ikiwiki-mass-rebuild: Make group list comparison more robust. * search: Work around xapian bug #486138 by only stemming locales in a whitelist.
2008-06-13responseJoey Hess
2008-06-13responseJoey Hess
2008-06-13web commit by http://alcopop.org/me/openid/: maybe for some future ↵Joey Hess
backwards-compatibility killing release?
2008-06-13web commit by http://ptecza.myopenid.com/: * Bug reportJoey Hess
2008-06-13web commit by buo: libdir does have an effectJoey Hess
2008-06-12questionJoey Hess
2008-06-12this problem makes less sense the more information I getJoey Hess
2008-06-11web commit by http://telemachos.myopenid.com/Joey Hess
2008-06-11web commit by http://telemachos.myopenid.com/Joey Hess
2008-06-10responseJoey Hess
2008-06-10web commit by buo: strace runJoey Hess
2008-06-10followupJoey Hess
2008-06-10not doneJoey Hess
2008-06-10fix linkJoey Hess
2008-06-10web commit by buo: Possible workaroundJoey Hess
2008-06-10web commit by http://telemachos.myopenid.com/Joey Hess
2008-06-04not reproducible on unstableJoey Hess
2008-06-04already fixedJoey Hess
2008-06-04already fixedJoey Hess
2008-06-04fixJoey Hess
2008-06-04closing, fixed in documentationJoey Hess
2008-06-04responseJoey Hess
2008-06-03first pass at doing xapian indexingJoey Hess
Still some TODOs to fill in.
2008-06-02use PERLJoey Hess
2008-06-02web commit by stmpetersJoey Hess
2008-05-31inline: The optimisation in 2.41 broke nested inlines. Detect those and ↵Joey Hess
avoid overoptimising.
2008-05-31web commit by http://willthompson.co.uk/: file a bug about nested inlines ↵Joey Hess
failing
2008-05-30fix linkJoey Hess
2008-05-30fix linksJoey Hess
2008-05-30fix linkJoey Hess
2008-05-30fix linkJoey Hess
2008-05-29web commit by http://liw.fi/: uuml html entity in feeds confuses ikiwiki ↵Joey Hess
when aggregating
2008-05-23web commit by http://kaizer.se/wiki/contact/: fix <pre> formattingJoey Hess
2008-05-23web commit by http://kaizer.se/wiki/contact/: bugs on including html (as raw ↵Joey Hess
as possible)
2008-05-14web commit by buo: More infoJoey Hess
2008-05-12Fixes for behavior changes in perl 5.10's CGIJoey Hess
Something has changed in CGI.pm in perl 5.10. It used to not care if STDIN was opened using :utf8, but now it'll mis-encode utf-8 values when used that way by ikiwiki. Now I have to binmode(STDIN) before instantiating the CGI object. In 57bba4dac132a06729eeec809f5e1a5adf829806, I changed from decoding CGI::Formbuilder fields to utf-8, to decoding cgi parameters before setting up the form object. As of perl 5.10, that approach no longer has any effect (reason unknown). To get correctly encoded values in FormBuilder forms, they must once again be decoded after the form is set up. As noted in 57bba4da, this can cause one set of problems for formbuilder_setup hooks if decode_form_utf8 is called before the hooks, and a different set if it's called after. To avoid both sets of problems, call it both before and after. (Only remaining problem is the sheer ugliness and inefficiency of that..) I think that these changes will also work with older perl versions, but I haven't checked. Also, in the case of the poll plugin, the cgi parameter needs to be explcitly decoded before it is used to handle utf-8 values. (This may have always been broken, not sure if it's related to perl 5.10 or not.)