Commit Graph

869 Commits (a7a1d00e1c51295d1c00cff553ce42feff6a1850)

Author SHA1 Message Date
Joey Hess 0f83e169e0 close as dup 2008-06-15 15:35:09 -04:00
Joey Hess 878e74238e Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info 2008-06-14 11:39:34 -04:00
Joey Hess 5e1b31fad6 web commit by http://telemachos.myopenid.com/ 2008-06-14 09:25:30 -04:00
Joey Hess 751706b7a5 response 2008-06-13 16:42:06 -04:00
Joey Hess aad18ffc51 web commit by http://ptecza.myopenid.com/: * Thanks and question about Xapian 2008-06-13 16:02:47 -04:00
Joey Hess 5807f1de04 fix two build bugs
* ikiwiki-mass-rebuild: Make group list comparison more robust.
* search: Work around xapian bug #486138 by only stemming locales
  in a whitelist.
2008-06-13 13:05:44 -04:00
Joey Hess 340f219818 response 2008-06-13 13:04:59 -04:00
Joey Hess eab909095b response 2008-06-13 12:26:59 -04:00
Joey Hess 6fe6857f7e web commit by http://alcopop.org/me/openid/: maybe for some future backwards-compatibility killing release? 2008-06-13 11:49:22 -04:00
Joey Hess cdd48716be web commit by http://ptecza.myopenid.com/: * Bug report 2008-06-13 10:41:25 -04:00
Joey Hess d59b565b53 web commit by buo: libdir does have an effect 2008-06-13 10:34:55 -04:00
Joey Hess 332e0b4e3c question 2008-06-12 14:14:07 -04:00
Joey Hess a65dd073cf this problem makes less sense the more information I get 2008-06-12 14:10:24 -04:00
Joey Hess 8afa1e2304 web commit by http://telemachos.myopenid.com/ 2008-06-11 10:09:52 -04:00
Joey Hess 3d4859262d web commit by http://telemachos.myopenid.com/ 2008-06-11 10:08:35 -04:00
Joey Hess fc79199ccd response 2008-06-10 14:35:52 -04:00
Joey Hess 3b82819049 web commit by buo: strace run 2008-06-10 14:31:03 -04:00
Joey Hess e6a6893117 followup 2008-06-10 13:55:24 -04:00
Joey Hess c48efcf8a4 not done 2008-06-10 13:49:43 -04:00
Joey Hess 3a76a58e1e fix link 2008-06-10 13:36:21 -04:00
Joey Hess 2fc11033f5 web commit by buo: Possible workaround 2008-06-10 09:11:42 -04:00
Joey Hess 3c4ac2727b web commit by http://telemachos.myopenid.com/ 2008-06-10 07:44:26 -04:00
Joey Hess 970e1a571e not reproducible on unstable 2008-06-04 21:00:24 -04:00
Joey Hess 47b5417ac0 already fixed 2008-06-04 01:58:52 -04:00
Joey Hess 811c76f85e already fixed 2008-06-04 01:57:59 -04:00
Joey Hess 7d87bf9e78 fix 2008-06-04 01:54:58 -04:00
Joey Hess 81719b40a4 closing, fixed in documentation 2008-06-04 01:54:23 -04:00
Joey Hess 95f93e6848 response 2008-06-04 01:53:49 -04:00
Joey Hess 44fde6cbff first pass at doing xapian indexing
Still some TODOs to fill in.
2008-06-03 21:14:56 -04:00
Joey Hess d370052672 use PERL 2008-06-02 12:14:09 -04:00
Joey Hess e76c997e86 web commit by stmpeters 2008-06-02 11:37:45 -04:00
Joey Hess 99e5e6dd08 inline: The optimisation in 2.41 broke nested inlines. Detect those and avoid overoptimising. 2008-05-31 15:10:23 -04:00
Joey Hess ff6433179e web commit by http://willthompson.co.uk/: file a bug about nested inlines failing 2008-05-31 13:51:50 -04:00
Joey Hess eb288969b5 fix link 2008-05-30 18:31:14 -04:00
Joey Hess ad5d49f25a fix links 2008-05-30 18:30:28 -04:00
Joey Hess 22879eba60 fix link 2008-05-30 18:29:40 -04:00
Joey Hess d5a2fc9334 fix link 2008-05-30 18:29:04 -04:00
Joey Hess f543303bf0 web commit by http://liw.fi/: uuml html entity in feeds confuses ikiwiki when aggregating 2008-05-29 02:51:40 -04:00
Joey Hess 8d5c6725e2 web commit by http://kaizer.se/wiki/contact/: fix <pre> formatting 2008-05-23 07:36:37 -04:00
Joey Hess 88096ea9ab web commit by http://kaizer.se/wiki/contact/: bugs on including html (as raw as possible) 2008-05-23 07:34:41 -04:00
Joey Hess 52c570fe1b web commit by buo: More info 2008-05-14 09:42:30 -04:00
Joey Hess fb3d5b4800 Fixes for behavior changes in perl 5.10's CGI
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 57bba4dac1, 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.)
2008-05-12 20:44:22 -04:00
Joey Hess adb5d92ed7 not just a poll plugin problem 2008-05-12 17:09:40 -04:00
Joey Hess bafb2d7b81 web commit by http://liw.fi/ 2008-05-12 16:26:38 -04:00
Joey Hess 21cd34106d response 2008-05-12 14:10:17 -04:00
Joey Hess e34011afcc web commit by buo: Response 2008-05-09 16:46:40 -04:00
Joey Hess 0168cc3c8b response 2008-05-08 15:53:48 -04:00
Joey Hess 879f3a9403 Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info 2008-05-08 15:51:41 -04:00
Joey Hess b8d81b7b7f amazon s3 index file improvements
Turns out duplicate index files do not need to be stored when usedirs is in
use, just when it's not. Ikiwiki is quite consistent about using page/ when
usedirs is in use. (The only exception is the search plugin, which needs
fixing.)

This also includes significant code cleanup, removal of a incorrect special
case for empty files, and addition of a workaround for a bug in the amazon
perl module.
2008-05-08 15:51:09 -04:00
Joey Hess 2bf34f1733 web commit by buo: re: question 2008-05-08 14:45:57 -04:00