Commit Graph

1172 Commits (0791e5afe3d8405132adcfd1ebaa8b76d0def3fc)

Author SHA1 Message Date
Joey Hess 594243d615 update 2008-10-17 21:59:27 -04:00
Joey Hess 35c56622ea tweak recentchanges permalink code
Need to handle the case where url is not set.
2008-10-17 21:54:42 -04:00
http://jblevins.org/ 3690864e2b Patch for anchor-based change permalinks in recent changes feed 2008-10-17 19:52:42 -04:00
Joey Hess 0517f9126c close 2008-10-15 23:50:20 -04:00
Joey Hess 995d91675e rm 2008-10-15 23:47:12 -04:00
neale 594df81c54 Joey's right, that's good enough. 2008-10-15 23:14:31 -04:00
neale c2bff24c65 Oh well. 2008-10-15 23:13:40 -04:00
neale 0543e59eca ahh 2008-10-15 23:12:25 -04:00
neale 9ae956e829 2008-10-15 22:30:36 -04:00
neale 0414c629b6 2008-10-15 22:29:29 -04:00
neale 9cd1ddce79 2008-10-15 22:28:42 -04:00
Joey Hess 020eb6f294 response 2008-10-15 19:32:39 -04:00
Joey Hess 063cacce39 response 2008-10-15 19:12:59 -04:00
neale 9ae8774540 2008-10-15 17:58:14 -04:00
Joey Hess 559c0707ae response 2008-10-14 15:02:12 -04:00
Joey Hess c39112e6ef inline: Allow MTIME to be used in inlinepage.tmpl. 2008-10-14 15:00:46 -04:00
http://per.bothner.myopenid.com/ a75a0dd1dc Suggested patch. 2008-10-12 16:31:24 -04:00
http://per.bothner.myopenid.com/ de805e0f39 2008-10-12 16:16:06 -04:00
http://yag.myopenid.com/ 7ac2b6a6ca 2008-10-11 10:43:01 -04:00
https://yag.myopenid.com// 1dc7aa1a3e 2008-10-09 17:51:51 -04:00
https://yag.myopenid.com// 72d93d447c 2008-10-09 17:43:27 -04:00
https://yag.myopenid.com// 954e228ad6 2008-10-09 17:37:24 -04:00
Joey Hess 0b89d44233 rename 2008-10-02 17:42:33 -04:00
Joey Hess c885a0107b this is a wishlist todo item, rename too 2008-10-02 15:12:57 -04:00
Joey Hess c22c010e16 response 2008-10-02 15:11:17 -04:00
Joey Hess 0b1b72b2ee thoughts 2008-10-02 15:01:03 -04:00
Joey Hess a1f4a9c5c9 ping 2008-10-02 14:54:52 -04:00
Joey Hess 6055dd3ef2 close 2008-10-02 14:53:11 -04:00
Joey Hess 605ce02710 move to todo, response 2008-10-02 14:51:21 -04:00
Joey Hess 5c2309ada8 typo 2008-10-02 14:49:40 -04:00
Joey Hess d30a7b1268 fix bug closure 2008-10-02 14:48:35 -04:00
Joey Hess bf386e22f5 inline: Fix handling of rootpage that doesn't exist.
It makes sense to use bestlink to determine which page rootpage refers to,
but if no page matches, just use the raw value.
2008-10-01 17:29:03 -04:00
Plareplane 8e77b66aae 2008-10-01 17:01:58 -04:00
Joey Hess 4a2b401fd0 interesting bug 2008-09-30 15:16:45 -04:00
http://josephturian.blogspot.com/ 9b27983808 2008-09-29 00:03:23 -04:00
chrysn 714de9f101 response 2008-09-28 05:47:20 -04:00
Joey Hess 2ff3c8aee7 editpage: Be more aggressive (and less buggy) about cleaning up temporary files rendered during page preview. 2008-09-27 18:02:33 -04:00
Joey Hess 8d04a1de61 thoughts 2008-09-27 16:15:16 -04:00
Plareplane 6817a794a4 2008-09-27 15:23:49 -04:00
http://smcv.pseudorandom.co.uk/ 6d98b2265e 2008-09-27 14:14:27 -04:00
Joey Hess 3b39e93699 Beautify urls used in various places. (smcv) 2008-09-27 13:03:21 -04:00
Joey Hess f181962dfc typo 2008-09-27 12:50:39 -04:00
intrigeri f9a000b24b 2008-09-27 12:40:26 -04:00
Joey Hess 83429adf04 decode utf-8 in recentchanges_link parameter 2008-09-26 15:40:01 -04:00
chrysn 1d12dfc57c update: possible solution 2008-09-26 12:44:09 -04:00
chrysn 947a50fe5d some problem remains 2008-09-26 09:05:01 -04:00
Joey Hess fa763214e3 close bugs for just fixed tag creation issue 2008-09-25 20:27:35 -04:00
Joey Hess 965f7310fe git: Fix handling of utf-8 filenames in recentchanges.
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 18:26:42 -04:00
Joey Hess dfe55e8956 Add keepextension parameter to htmlize hook. (Willu) 2008-09-23 13:39:21 -04:00
Joey Hess 9cbcda14ac Print a debug message if a page has multiple source files. 2008-09-23 13:32:41 -04:00