From 45b6baff661f9f8224480ed594991a87428323c7 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 19 Mar 2008 10:11:41 -0400 Subject: [PATCH 1/3] web commit by http://engla.myopenid.com/: changed my url since my university is pretty.. dumb --- doc/ikiwikiusers.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn index 6d828ce00..77f69a4cc 100644 --- a/doc/ikiwikiusers.mdwn +++ b/doc/ikiwikiusers.mdwn @@ -37,7 +37,7 @@ Personal sites and blogs * [[Joey]]'s [homepage](http://kitenet.net/~joey/), including his weblog * [Kyle's MacLea Genealogy wiki](http://kitenet.net/~kyle/family/wiki) and [Livingstone and MacLea Emigration Registry](http://kitenet.net/~kyle/family/registry) -* [Ulrik's small collection of small apps](http://www.student.lu.se/~cif04usv/wiki/) +* [Ulrik's small collection of small apps](http://users.student.lth.se/f04us/) * [kite](http://kitenet.net) * [Paul Collins's as-yet purposeless wiki](http://wiki.ondioline.org/) * [Andre Luis Lopes's personal website](http://www.andrelop.org/). Brazilian Portuguese only From 8813a6d0651da49b06c7307039929fe81723ab7f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 19 Mar 2008 10:13:08 -0400 Subject: [PATCH 2/3] web commit by http://engla.myopenid.com/: oops, point my URL to my ikiwiki portion (frontpage is not ikiwiki). Also, tweak the website title --- doc/ikiwikiusers.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn index 77f69a4cc..060083607 100644 --- a/doc/ikiwikiusers.mdwn +++ b/doc/ikiwikiusers.mdwn @@ -37,7 +37,7 @@ Personal sites and blogs * [[Joey]]'s [homepage](http://kitenet.net/~joey/), including his weblog * [Kyle's MacLea Genealogy wiki](http://kitenet.net/~kyle/family/wiki) and [Livingstone and MacLea Emigration Registry](http://kitenet.net/~kyle/family/registry) -* [Ulrik's small collection of small apps](http://users.student.lth.se/f04us/) +* [Ulrik's personal web page](http://users.student.lth.se/f04us/wiki/) * [kite](http://kitenet.net) * [Paul Collins's as-yet purposeless wiki](http://wiki.ondioline.org/) * [Andre Luis Lopes's personal website](http://www.andrelop.org/). Brazilian Portuguese only From 4f6728a68536f5ea70d3e7b45e56bac099f7ed4f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 19 Mar 2008 15:00:15 -0400 Subject: [PATCH 3/3] web commit by http://jblevins.org/: Patch for unclosed refresh meta tag. --- .../RecentChanges_contains_invalid_XHTML.mdwn | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/doc/bugs/RecentChanges_contains_invalid_XHTML.mdwn b/doc/bugs/RecentChanges_contains_invalid_XHTML.mdwn index d53a07a4d..302d7b605 100644 --- a/doc/bugs/RecentChanges_contains_invalid_XHTML.mdwn +++ b/doc/bugs/RecentChanges_contains_invalid_XHTML.mdwn @@ -25,3 +25,28 @@ I'm noticing these problems because I'm serving ikiwiki-generated content as `application/xhtml+xml` (as opposed to `text/html`) in order to include inline MathML. Any invalid XHTML causes Firefox to halt all processing and throw an error. —[Jason Blevins](http://jblevins.org/) + +- - - + +Here is a simple patch for the refresh problem. I haven't figured out +what's causing the recentchanges bug yet. + + + diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm + index 8a9a538..0afe1c3 100644 + --- a/IkiWiki/Plugin/meta.pm + +++ b/IkiWiki/Plugin/meta.pm + @@ -186,7 +186,7 @@ sub preprocess (@) { #{{{ + $value=encode_entities($value); + } + my $delay=int(exists $params{delay} ? $params{delay} : 0); + - my $redir=""; + + my $redir=""; + if (! $safe) { + $redir=scrub($redir); + } + + +--[[JasonBlevins]] + +[[tag patch]]