summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-06-15calendar: Tune archive_pagespec to only match pages, not other files.Joey Hess
2010-06-15Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-06-15fix labels for form elementsJoey Hess
The label for attribute must correspond to the element id (not name). And it needs to be unique inside the loop.
2010-06-15Thanksprivat
2010-06-15typobhobbit
2010-06-15(no commit message)bhobbit
2010-06-14fix linksJoey Hess
2010-06-14add links to mentioned directivesJoey Hess
Using the !iki shortcut, since the directive pages may not be included in the basewiki.
2010-06-14editpage, comments: Fix broken links in sidebar (due to forcebaseurl). ↵Joey Hess
(Thanks, privat)
2010-06-14good ideaJoey Hess
2010-06-14Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-06-14simplify, avoid confusing suggestionsJoey Hess
Don't even talk about ACLs, and more strongly discourage directly committing to ikiwiki's srcdir.
2010-06-14limit blog inlines to pagesJoey Hess
This way images attached to blog posts don't show up as enclosures in the blog by default.
2010-06-14Reopen the bug since it is not fixedprivat
2010-06-13more symetric enable/disableJoey Hess
Removing a plugin from add_plugins is not always enough to disable it. It may have been redundantly added there and also pulled in via goodstuff. Always add didabled plugins to disable_plugins.
2010-06-13websetup: Allow enabling plugins listed in disable_plugins.Joey Hess
The bug here was that disabling a plugin included thru goodstuff, like htmlscrubber, caused it to be added to disable_plugins, and those plugins were never loaded, so could not be re-enabled. Fix by allowing them to be force loaded when appropriate. (Also that allows disabled plugins to still record their setup options when dumping a setup file.)
2010-06-13responseJoey Hess
2010-06-13Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-06-13remove obsolete ol class=form for editpage and editcommentJoey Hess
The styling of labels on the form largely obsoleted the special styled ol, so just a few br's sufficed. Using an ol like that was not too semantically right (probably?) and could cause problems with customized local.css.
2010-06-13(no commit message)http://abhidg.wordpress.com/
2010-06-13wordingJoey Hess
2010-06-13spelingJoey Hess
2010-06-13typoJoey Hess
2010-06-12attachment: When inserting links, insert img directives for images, if that ↵Joey Hess
plugin is enabled.
2010-06-12avoid ugly warning if size="" is specifiedJoey Hess
2010-06-12edittemplate: Look for template pages under templates/ like everything else ↵Joey Hess
(still looks in old location for backwards compatability).
2010-06-12edittemplate: Make silent mode not disable display when the template page ↵Joey Hess
does not exist, so it can be easily created.
2010-06-12editpage: Rename "comments" field to avoid CSS conflict with the comments div.Joey Hess
2010-06-12img: Support hspace and vspace attributes.Joey Hess
2010-06-12attachment: Show files from underlay in attachments list.Joey Hess
While those files cannot be removed or renamed, this allows easy downloading of them, and a new version can after all be uploaded.
2010-06-11realm is an url patternJoey Hess
2010-06-11Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-06-11openid: Add openid_realm and openid_cgiurl configuration options, useful in ↵Joey Hess
a few edge case setups.
2010-06-11(no commit message)jwalzer
2010-06-11(no commit message)zimek
2010-06-11(no commit message)dwabot
2010-06-11use the ikiwiki userdb outside of the ikiwiki edition access controlnil
2010-06-11use PARENTLINKSprivat
2010-06-10Update URLhttp://jblevins.org/
2010-06-10Update URLhttp://jblevins.org/
2010-06-10remove oldJoey Hess
2010-06-10add news item for ikiwiki 3.20100610Joey Hess
2010-06-10releasing version 3.20100610Joey Hess
2010-06-10add auto-scrolling pre'sJoey Hess
let's see if anyone hates it :)
2010-06-10I'm told that the pagebody div should be after the sidebar.Joey Hess
2010-06-10calendar stylingJoey Hess
* calendar: Shorten day names, and improve styling of month calendar. * style.css: Reduced sidebar width back to 20ex from 30; the month calendar will now fit in the smaller width, and 30 was feeling too large.
2010-06-10also set overflow: auto for blogformJoey Hess
This improves its display slighly when next to a sidebar or other floating element.
2010-06-10Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-06-10style.css: Improvements to make floating sidebar fit better on pages with ↵Joey Hess
inlines. The key is using width: auto; overflow: auto; -- this allows the div(s) to the left of the floating sidebar to be resized to fit next to it, and prevents any clear: both from pushing the div down below the end of the sidebar. Many thanks for the Hurd wiki's developers for originally figuring this out. The edit page recently developed the same problem with its textarea, now that a sidebar can appear on that page too. In editpage.tmpl I needed to add a new div around the editcontent textarea, as the above styles cannot be applied directly to textareas. The textarea's own width is reduced to 98% because at least in chromium this avoids it getting unnecessary horizonatl scrollbars when a sidebar is displayed next to it.
2010-06-10page.tmpl: Add a div around the sidebar, page content, and comments, to aide ↵Joey Hess
in styling. http://bzed.de/posts/2010/05/new_css_for_bzed.de/ smcv: [10:59:01] is the logical thing you want a <div> whose meaning is "the bits the sidebar is allowed to accompany"? bzed: [10:59:14] yeah bzed: [10:59:58] then you could just ensure that this part is as high as the sidebar smcv: [11:02:44] wrapping a <div> around the sidebar, content and comments seems like the way forward, then