summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-02review from the woodsJoey Hess
2010-04-02htmlscrubber: Allow colons in url fragments after '?'Joey Hess
Colons are not allowed at the start of urls, because it can be interpreted as a protocol, and allowing arbitrary protocols can be unsafe (CVE-2008-0809). However, this check was too restrictive, not allowing use of eg, "video.ogv?t=0:03:00/0:04:00" to seek to a given place in a video, or "somecgi?foo=bar:baz" to pass parameters with colons. It's still not allowed to have a filename with a colon in it (ie "foo:bar.png") -- to link to such a file, a fully qualified url must be used.
2010-04-02Despam, again. Someone ban adrianna please?Simon McVittie
2010-04-02(no commit message)adrianna
2010-04-02(no commit message)adrianna
2010-04-02(no commit message)adrianna
2010-04-02(no commit message)adrianna
2010-04-02(no commit message)adrianna
2010-04-02DespamSimon McVittie
2010-04-02(no commit message)adrianna
2010-04-02(no commit message)adrianna
2010-04-02(no commit message)adrianna
2010-04-02(no commit message)adrianna
2010-04-01implemented!http://smcv.pseudorandom.co.uk/
2010-04-01Explain tab-delimited tables a bit betterSimon McVittie
2010-04-01considering tags and fieldshttp://kerravonsen.dreamwidth.org/
2010-04-01(no commit message)http://smcv.pseudorandom.co.uk/
2010-04-01response; thoughts about inline and tagshttp://kerravonsen.dreamwidth.org/
2010-03-31page.tmpl: Add Cache-Control must-revalidate to ensure that users ↵Joey Hess
(especially of Firefox) see fresh page content. Since Firefox version 3, it's done aggressive caching of visited pages, and does not, by default, check if the cached content is still valid when reloading or revisiting a page. By default, Firefox seems to not re-contact the web server at all. Compare with eg, Epiphany and Chromium, which appear to always check, and get back a 304 when the page is unchanged. This header makes Firefox do the right thing, at least for html files. It still over-caches if css, javascript, images, etc, are changed.
2010-03-31responsehttp://kerravonsen.dreamwidth.org/
2010-03-31they do work, with the right syntax (C backslash escapes aren't interpreted)http://smcv.pseudorandom.co.uk/
2010-03-31(no commit message)http://edrex.myopenid.com/
2010-03-31(no commit message)http://edrex.myopenid.com/
2010-03-30respond; correct license of fieldsort plugin to match IkiWikihttp://smcv.pseudorandom.co.uk/
2010-03-30respondhttp://smcv.pseudorandom.co.uk/
2010-03-30(no commit message)http://smcv.pseudorandom.co.uk/
2010-03-30respond and attempt to invoke Joey :-)http://smcv.pseudorandom.co.uk/
2010-03-30feature request (part of ftemplate)http://smcv.pseudorandom.co.uk/
2010-03-30responsehttp://kerravonsen.dreamwidth.org/
2010-03-30update home page URLhttp://www.google.com/profiles/schmonz
2010-03-30responsehttp://kerravonsen.dreamwidth.org/
2010-03-30quick responsehttp://kerravonsen.dreamwidth.org/
2010-03-29(no commit message)http://gustaf.thorslund.org/
2010-03-29(no commit message)http://gustaf.thorslund.org/
2010-03-29Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-03-29responseJoey Hess
2010-03-29this sounds like the correct approachJon Dowland
2010-03-29thanks for the review, patch to be revisedJon Dowland
2010-03-29updateJoey Hess
2010-03-29clarify example with whitespaceJoey Hess
2010-03-29fix linkJoey Hess
2010-03-29add a table summarizing state of each rcs pluginJoey Hess
2010-03-29add warning about incomplete tla supportJoey Hess
2010-03-29fix bogus mathJoey Hess
2010-03-29Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
Conflicts: doc/todo/allow_site-wide_meta_definitions.mdwn
2010-03-29review, multiple concernsJoey Hess
2010-03-29add warning messages about bzr and mercurial hooks that are not correctly setupJoey Hess
2010-03-29ping joey: consider patch for next release?Jon Dowland
2010-03-29(no commit message)http://hendry.iki.fi/
2010-03-28don't check $@ after pagespec_translateJoey Hess
pagespec_translate may set $@ if it fails to parse a pagespec, but due to memoization, this is not reliable. If a memoized call is repeated, and $@ is already set for some other reason previously, it will remain set through the call to pagespec_translate. Instead, just check if pagespec_translate returns undef.