summaryrefslogtreecommitdiff
path: root/doc/bugs
AgeCommit message (Collapse)Author
2010-09-15cutpaste: Fix bug that occured in some cases involving inlines when text was ↵Joey Hess
pasted on a page before being cut.
2010-09-15Report.tschwinge
2010-09-14git: When updating from remote, use git pull --prune, to avoid possible ↵Joey Hess
errors from conflicting obsolete remote branches.
2010-09-14closeJoey Hess
2010-09-14external: Disable RPC::XML's "smart" encoding, which sent ints for strings ↵Joey Hess
that contained only a number, fixing a longstanding crash of the rst plugin.
2010-09-14blogspam: Fix crash when content contained utf-8.Joey Hess
I also tried setting RPC::XML::ENCODING but that did not prevent the crash, and it seems that blogspam.net doesn't like getting xml encoded in unicode, since it mis-flagged comments as spammy that way that are normally allowed through.
2010-09-14Add new bug about the comments/blogspam pluginshttp://k1024.org/~iusty/
2010-09-13mixing template vars into directive argumentshttp://jmtd.livejournal.com/
2010-09-13fix typoblipvert
2010-09-13(no commit message)blipvert
2010-09-13(no commit message)blipvert
2010-09-12responseJoey Hess
2010-09-12Add comment about this issuehttps://www.google.com/accounts/o8/id?id=AItOawngqGADV9fidHK5qabIzKN0bx1ZIfvaTqs
2010-09-12(no commit message)https://www.google.com/accounts/o8/id?id=AItOawngqGADV9fidHK5qabIzKN0bx1ZIfvaTqs
2010-09-12responseJoey Hess
2010-09-12minor grammatical editblipvert
2010-09-12added signatureblipvert
2010-09-12(no commit message)blipvert
2010-09-11formattingJoey Hess
2010-09-11bug reportJoey Hess
2010-09-07Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-09-07Remove PATH overriding code in ikiwiki script that was present to make perl ↵Joey Hess
taint checking happy, but taint checking is disabled.
2010-09-07Removing tag done as it seems to need some more care.intrigeri
2010-09-06(no commit message)https://www.google.com/accounts/o8/id?id=AItOawkIl2-FajX9MSbbfcPYvzbmbsemGJJfXds
2010-09-04(no commit message)philippe
2010-08-30Avoid trying to log the user in when receiving anonymous pushes from git and ↵Joey Hess
a plugin like httpauth returns a login function. Just use check_canedit in nonfatal mode.
2010-08-30add bug lifted from ircJoey Hess
2010-08-30forgot to add thisJoey Hess
2010-08-30more info?Joey Hess
2010-08-30highlight: Make location of highlight's files configurable in setup file to ↵Joey Hess
allow for nonstandard installations.
2010-08-23report hard coded paths.https://www.google.com/accounts/o8/id?id=AItOawnbe6oB_ecFtNYII1JN3zSggwUPUdOb8jI
2010-08-19htmlscrubber: Do not scrub url anchors that contain colons.Joey Hess
2010-08-19Report htmlscrubber/multimarkdown footnote misinteractionhttp://oblomov.myopenid.com/
2010-08-19(no commit message)philippe
2010-08-19 philippe
2010-08-17style.css: Use relative, not absolute font sizes. Thanks, Giuseppe Bilotta.Joey Hess
2010-08-17forgot to escape the <> chars in the format-patch outputhttp://oblomov.myopenid.com/
2010-08-17patch to provide relative font sizes in default CSShttp://oblomov.myopenid.com/
2010-08-15(no commit message)philippe
2010-08-04Fixes a bug that prevented matching deleted pages when using the page() ↵Joey Hess
PageSpec.
2010-08-04bug isolatedJoey Hess
2010-08-02respJoey Hess
2010-08-02(no commit message)http://liw.fi/
2010-08-01close, cannot reproduceJoey Hess
2010-07-30resubmitted patch to po4a upstreamintrigeri
2010-07-30fixed by the last po4a releaseintrigeri
2010-07-29Move po todo/bugs to dedicated pages.intrigeri
2010-07-19fix link syntaxhttp://weakish.myopenid.com/
2010-07-19link to 404 pluginhttp://weakish.myopenid.com/
2010-07-18fix other 2 cases of conflicting destdir filesJoey Hess
Cleanly fixed case where destdir file failed to be written because there was a directory with the same name. This can be detected with no extra system calls, and dealt with by finding all pages that wrote files inside the directory, and removing them and the directory. The other, inverse case would be expensive to detect in will_render, since it would need to check each parent directory of the file to see if the directory is really a conflicting file. But prep_writefile already does a similar scan for symlinks in the path, so I added code there to remove the conflicting file. This fix assumes that the file is written using writefile, and not some other means (but using other means would be a security hole too, so hopefully nothing does).