Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-02-29 | web commit by http://madduck.myopenid.com/: add patch/git commit | Joey Hess | |
2008-02-29 | Allow colons in URLs after the first slash | Adeodato Simó | |
A new regexp fixes this bug: http://ikiwiki.info/bugs/No_link_for_blog_items_when_filename_contains_a_colon/ I traced this down to htmlscrubber. If disabled, it works. If enabled, then $safe_url_regexp determines the URL unsafe because of the colon and hence removes the src attribute. Digging into this, I find that RFC 3986 pretty much discourages colons in filenames: """ A path segment that contains a colon character (e.g., "this:that") cannot be used as the first segment of a relative-path reference, as it would be mistaken for a scheme name. Such a segment must be preceded by a dot-segment (e.g., "./this:that") to make a relative- path reference. """ on the other hand, with usedirs, any link to another page will be prepended by ../ anyway, so that makes them okay again. The solution still seems not to use colons. In any case, htmlscrubber should get a new regexp, courtesy of dato. I have tested and verified this. Signed-off-by: martin f. krafft <madduck@madduck.net> | |||
2008-02-29 | web commit by http://madduck.myopenid.com/: add analysis based on rfc3986 ↵ | Joey Hess | |
and suggest a new regexp | |||
2008-02-29 | web commit by http://alcopop.org/me/openid/: brief biog | Joey Hess | |
2008-02-29 | web commit by http://alcopop.org/me/openid/: potwiki | Joey Hess | |
2008-02-29 | web commit by http://madduck.myopenid.com/: trace this bug to htmlscrubber ↵ | Joey Hess | |
and $safe_url_regexp | |||
2008-02-29 | web commit by http://madduck.myopenid.com/: merge bug with colon-in-links bug | Joey Hess | |
2008-02-29 | web commit by http://madduck.myopenid.com/: add my homepage | Joey Hess | |
2008-02-29 | web commit by http://madduck.myopenid.com/: add vcs-pkg and vcs-home | Joey Hess | |
2008-02-29 | web commit by http://madduck.myopenid.com/: confirm this bug | Joey Hess | |
2008-02-29 | web commit by bremner | Joey Hess | |
2008-02-29 | web commit by bremner | Joey Hess | |
2008-02-29 | web commit by bremner | Joey Hess | |
2008-02-29 | web commit by bremner | Joey Hess | |
2008-02-29 | web commit by bremner | Joey Hess | |
2008-02-29 | web commit by bremner | Joey Hess | |
2008-02-28 | web commit by http://alcopop.org/me/openid/: state that the svn instructions ↵ | Joey Hess | |
work for local repos only | |||
2008-02-28 | web commit by bremner | Joey Hess | |
2008-02-28 | web commit by bremner | Joey Hess | |
2008-02-28 | web commit by bremner | Joey Hess | |
2008-02-27 | web commit by http://mmassonnet.myopenid.com/ | Joey Hess | |
2008-02-26 | remove page-o-cruft | Joey Hess | |
(user "yyl": you're risking being banned..) | |||
2008-02-26 | web commit by http://hendry.iki.fi/ | Joey Hess | |
2008-02-26 | web commit by Mathias | Joey Hess | |
2008-02-26 | web commit by http://liw.iki.fi/liw/: Removed "nagios" link to userpage ↵ | Joey Hess | |
without content from front page. | |||
2008-02-25 | web commit by http://brian.may.myopenid.com/: work around not solution | Joey Hess | |
2008-02-25 | web commit by yyl | Joey Hess | |
2008-02-25 | web commit by yyl | Joey Hess | |
2008-02-25 | web commit by http://harningt.eharning.us/ | Joey Hess | |
2008-02-25 | web commit by buo: More comments on mercurial use. | Joey Hess | |
2008-02-25 | web commit by http://madduck.myopenid.com/ | Joey Hess | |
2008-02-25 | web commit by http://madduck.myopenid.com/ | Joey Hess | |
2008-02-24 | avoid calling getctime on internal pages | Joey Hess | |
internal pages won't be in revision control so this avoids some ugly noise | |||
2008-02-24 | per Brian May, change monotone historyurl | Joey Hess | |
> This doesn't work in currently released versions of viewmtn (it was > meant to), but has been fixed in the development repository. I imagine > it won't be long until the next release. | |||
2008-02-24 | * ikiwiki-makerepo: Don't fail if the third argument ends in a slash. | Joey Hess | |
2008-02-24 | move random comment out of the main page and into the discussion page where ↵ | Joey Hess | |
it belongs add response | |||
2008-02-24 | improve wording | Joey Hess | |
2008-02-24 | response | Joey Hess | |
2008-02-24 | version needed | Joey Hess | |
2008-02-24 | response on recentchanges | Joey Hess | |
2008-02-24 | closing with explanation | Joey Hess | |
2008-02-24 | * inline: When forcing urls absolute for rss feeds, skip mailto and other | Joey Hess | |
such urls. | |||
2008-02-24 | close this one | Joey Hess | |
2008-02-24 | Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info | Joey Hess | |
2008-02-24 | user configuration error | Joey Hess | |
2008-02-24 | web commit by PatrickWinnertz: my comment to spam | Joey Hess | |
2008-02-24 | responses | Joey Hess | |
2008-02-24 | close | Joey Hess | |
2008-02-24 | Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info | Joey Hess | |
2008-02-24 | Fix links generated by preprocessor directives when previewing. | Joey Hess | |
As was already done for linkfication, links generated in a prevew page are relative to the top of the wiki, so it has to be told that the destpage is there. I was using "" to indicate this, but that may confuse some preprocessor plugins, which treat parameters with an empry value specially (sparkline is one such). Instead, use "/", which is more accurate anyway and works just as well. |