Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | remove old closed bugs and todo items to speed up wiki updates and reduce size | Joey Hess | 2016-04-19 |
| | | | | | | | | | Remove closed bugs and todos that were last edited or commented before Q3 2015. Command line used: for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done | ||
* | bittorrent: Fix mojibake introduced in parsing arai2c progress output. | Joey Hess | 2015-02-10 |
| | | | | | | | | | | | | hGetSomeString reads one byte at a time, so unicode bytes are not composed. The problem comes when outputting that to the console with hPut; that tried to apply the handle's encoding, and so we get mojibake. Instead, use ByteStrings, and only convert it to a string for parsing, not for display. Note that there are a couple of other things that use hGetSomeString, which I've left as-is for now. | ||
* | more descriptive title | Joey Hess | 2015-02-10 |
| | |||
* | found the previous issue | https://id.koumbit.net/anarcat | 2015-02-10 |
| | |||
* | some small weird utf8 bug again | https://id.koumbit.net/anarcat | 2015-02-10 |