Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-01 | Merge branch 'tova' | Joey Hess | |
2008-10-01 | remove external image | Joey Hess | |
The image is no longer on manoj's machine, and this wiki should not rely on images hosted by third parties. Manoj, if you'd like to add this image into ikiwiki's docs, we could talk about that. | |||
2008-10-01 | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | |
2008-10-01 | (no commit message) | bremner | |
2008-09-30 | Merge branch 'master' into tova | Joey Hess | |
Conflicts: debian/changelog | |||
2008-09-30 | httpauth: Document that ikiwiki.cgi has to be in a directory subject to ↵ | Joey Hess | |
authentication. Closes: #500524 | |||
2008-09-30 | The plugins have been rewritten and now should function properly. | tschwinge | |
2008-09-30 | Merge branch 'master' into tova | Joey Hess | |
2008-09-30 | interesting bug | Joey Hess | |
2008-09-30 | close | Joey Hess | |
2008-09-30 | mention a demo site for plugin | bremner | |
2008-09-30 | Response | http://www.cse.unsw.edu.au/~willu/ | |
2008-09-29 | add newpagefile function | Joey Hess | |
2008-09-29 | close todo about this | Joey Hess | |
2008-09-29 | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | |
2008-09-29 | more changes for removal of blog page | Joey Hess | |
2008-09-29 | (no commit message) | http://josephturian.blogspot.com/ | |
2008-09-29 | (no commit message) | http://josephturian.blogspot.com/ | |
2008-09-28 | response | chrysn | |
2008-09-27 | response | Joey Hess | |
2008-09-27 | Thoughts on the new wikistate variable | http://www.cse.unsw.edu.au/~willu/ | |
2008-09-27 | editpage: Be more aggressive (and less buggy) about cleaning up temporary ↵ | Joey Hess | |
files rendered during page preview. | |||
2008-09-27 | Add %wikistate, which is like %pagestate except not specific to a given ↵ | Joey Hess | |
page, and is preserved across rebuilds. | |||
2008-09-27 | thoughts | Joey Hess | |
2008-09-27 | (no commit message) | Plareplane | |
2008-09-27 | Export pagetitle, titlepage, linkpage. | Joey Hess | |
2008-09-27 | (no commit message) | http://smcv.pseudorandom.co.uk/ | |
2008-09-27 | analysis of most used non-exported library functions by plugins | Joey Hess | |
2008-09-27 | Beautify urls used in various places. (smcv) | Joey Hess | |
2008-09-27 | update | Joey Hess | |
2008-09-27 | clarify when to use utlto and when to use htmlpage | Joey Hess | |
suggestion from smcv | |||
2008-09-27 | typo | Joey Hess | |
2008-09-27 | (no commit message) | intrigeri | |
2008-09-27 | just wanted to test a change. thanks. | http://dtrt.org/ | |
2008-09-26 | clarify | Joey Hess | |
2008-09-26 | update | Joey Hess | |
2008-09-26 | htmlscrubber: Add a config setting that can be used to disable the scrubber ↵ | Joey Hess | |
acting on a set of pages. | |||
2008-09-26 | decode utf-8 in recentchanges_link parameter | Joey Hess | |
2008-09-26 | update: possible solution | chrysn | |
2008-09-26 | some problem remains | chrysn | |
2008-09-26 | * Responses | http://ptecza.myopenid.com/ | |
2008-09-25 | Comments and links | http://www.cse.unsw.edu.au/~willu/ | |
2008-09-25 | close bugs for just fixed tag creation issue | Joey Hess | |
2008-09-25 | remove blog from pagespecs | Joey Hess | |
2008-09-25 | response | Joey Hess | |
2008-09-25 | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | |
2008-09-25 | git: Fix handling of utf-8 filenames in recentchanges. | Joey Hess | |
Seems that the problem is that once the \nnn coming from git is converted to a single character, decode_utf8 decides that this is a standalone character, and not part of a multibyte utf-8 sequence, and so does nothing. I tried playing with the utf-8 flag, but that didn't work. Instead, use decode("utf8"), which doesn't have the same qualms, and successfully decodes the octets into a utf-8 character. Rant: Think for a minute about fact that any and every program that parses git-log, or git-show, etc output to figure out what files were in a commit needs to contain this snippet of code, to convert from git-log's wacky output to a regular character set: if ($file =~ m/^"(.*)"$/) { ($file=$1) =~ s/\\([0-7]{1,3})/chr(oct($1))/eg; } (And it's only that "simple" if you don't care about filenames with embedded \n or \t or other control characters.) Does that strike anyone else as putting the parsing and conversion in the wrong place (ie, in gitweb, ikiwiki, etc, etc)? Doesn't anyone who actually uses git with utf-8 filenames get a bit pissed off at seeing \xxx\xxx instead of the utf-8 in git-commit and other output? | |||
2008-09-25 | (no commit message) | test1 | |
2008-09-25 | response | Joey Hess | |
2008-09-25 | attachment: Add admin() pagespec to test if the uploading user is a wiki admin. | Joey Hess | |