aboutsummaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAge
* I'm told that the pagebody div should be after the sidebar.Joey Hess2010-06-10
|
* calendar stylingJoey Hess2010-06-10
| | | | | | * 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.
* style.css: Improvements to make floating sidebar fit better on pages with ↵Joey Hess2010-06-10
| | | | | | | | | | | | | | | | | 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.
* page.tmpl: Add a div around the sidebar, page content, and comments, to aide ↵Joey Hess2010-06-10
| | | | | | | | | | | 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
* editpage: Avoid storing accidental state changes when previewing pages.Joey Hess2010-06-09
| | | | | This is a slow, safe, stupid approach. Could make deep copies of the data structures as backups instead of re-loading the index from disk.
* Fix display of sidebar when previewing page edit. (Thanks, privat)Joey Hess2010-06-09
| | | | | On second thought, only display a page's personal sidebar when previewing it, not when editing normally.
* relativedate: Fix problem with localised dates not working.Joey Hess2010-06-09
|
* When editing a page, show that page's sidebar. (Thanks, privat)Joey Hess2010-06-09
|
* closing; cannot reproduce and no followup for 1 year 9 monthsJoey Hess2010-06-09
|
* Fix support for globbing in tagged() pagespecs.Joey Hess2010-06-09
| | | | | | | | | The linktype check was being done on the relativised link target, but %typedlinks uses the same link targets as %links, so that didn't work. I think the bug only appeared when tagbase was not set. This bugfix also let me factor out the common typedlink checking code.
* remove example blog tag pagesJoey Hess2010-06-09
| | | | Autotag will create them as needed. Avoids some complexity.
* img: Fill in missing height or width when scaling image.Joey Hess2010-06-08
|
* creation_day() etc use local time, not gmtime.Joey Hess2010-05-31
| | | | | | | | To match calendars, which use local time. Particularly important at the end of the month. I checked the history, and there seemed no good rationalle for the pagespecs to use gmtime.
* releasing version 3.20100518.2Joey Hess2010-05-18
|
* Fix a typo in the last release.Joey Hess2010-05-18
|
* releasing version 3.20100518Joey Hess2010-05-18
|
* Fix a bug that prevented matching deleted comments, and so did not update ↵Joey Hess2010-05-18
| | | | | | | | | | | | | | pages that had contained them. Problem is that by the time rendering calls render_dependent, %pagesources has had deleted files removed from it. So match_comment's lookup of files in there to see if they had the _comment extension failed. I had to introduce a hash that temporarily holds filenames of deleted pages to fix this. Note that unlike comment(), internal() had avoided this pitfall by being defined to match both internal and non-internal pages.
* typoJoey Hess2010-05-16
|
* page.tmpl: Accidentially broke po plugin's otherlanguages list styling when ↵Joey Hess2010-05-16
| | | | modifying for html5; now fixed.
* document needing to wrap footer in dynamic testJoey Hess2010-05-15
|
* rewordJoey Hess2010-05-15
|
* add missing closing tmpl_ifJoey Hess2010-05-15
|
* relase finalisedJoey Hess2010-05-15
|
* remove, rename: Add guards against XSRF attacks.Joey Hess2010-05-14
|
* Use xhtml friendly pubdate setting.Joey Hess2010-05-08
|
* updateJoey Hess2010-05-08
|
* fixupsJoey Hess2010-05-08
|
* calendar: Display year name in title of month calendar.Joey Hess2010-05-08
| | | | Also, fix relative month calculations.
* calendar: Allow negative month to be specified. -1 is last month, etc. (And ↵Joey Hess2010-05-08
| | | | also negaitve years.)
* Merge branch 'master' into commentreorgJoey Hess2010-05-07
|\
| * adviceJoey Hess2010-05-07
| |
| * mention style.css changesJoey Hess2010-05-07
| |
| * Removed the openidsignup option.Joey Hess2010-05-07
| |
| * pretty openid loginJoey Hess2010-05-07
| | | | | | | | | | | | | | * openid: Incorporated a fancy openid-selector signin form. (http://code.google.com/p/openid-selector/) * openid: Use "openid_identifier" as the form field, as required by OpenID Authentication v2.0 spec.
| * patch hidden field setting codeJoey Hess2010-05-07
| | | | | | | | Fixes http://code.google.com/p/openid-selector/issues/detail?id=11#c3
* | fix comment matching pagespecsJoey Hess2010-05-07
| | | | | | | | | | | | | | | | test isinternal first, because match_glob with internal => 1 also returns non-internal pages that match. This order should also be faster. Remove test to see if pagesources is set. isinternal will not succeed if it is not.
* | reorderJoey Hess2010-05-07
| |
* | Merge branch 'master' into commentreorgJoey Hess2010-05-07
|\| | | | | | | | | Conflicts: debian/changelog
| * Delete hooks are passed deleted internal pages.Joey Hess2010-05-06
| | | | | | | | | | | | Necessary so search can remove its indexes for internal pages. But also, it seems it was an omission not to pass the deleted pages before.
| * inline: Call indexhtml when inlining internal pages, so their text can be ↵Joey Hess2010-05-06
| | | | | | | | indexed for searching.
| * Renamed postscan hook to indexhtml, to reflect its changed position.Joey Hess2010-05-06
| | | | | | | | Probably only the search plugin uses it, so this seemed safe.
| * Gave comment and page editing forms some CSS and accessability love.Joey Hess2010-05-06
| | | | | | | | | | | | | | In particular, added <label> tags. (However, could not find a good way to add a label tag for the main page edit textarea.)
* | moved comments pending moderationJoey Hess2010-05-06
|/ | | | | | | | | | | * comments: Comments pending moderation are now stored in the srcdir alongside accepted comments, but with a `._comment_pending` extension. * This allows easier byhand moderation, as the "_pending" need only be stripped off and the comment be committed to version control. * The `comment_pending()` pagespec can be used to match such unmoderated comments, which makes it easy to add a feed of them, or a counter indicating how many there are. * Belatedly added a `comment()` pagespec.
* typoJoey Hess2010-05-06
|
* rename ispage variableJoey Hess2010-05-05
|
* add NEWS about template changeJoey Hess2010-05-05
|
* remove misc.tmpl checkingJoey Hess2010-05-05
| | | | | | Turns out that users with a modified page.tmpl need to modify it on upgrade, at least to add the FORCEBASEURL (so edit preview works), so there is no point in trying to retain compatability.
* no more misc.tmplJoey Hess2010-05-05
| | | | | | | * Removed misc.tmpl. Now to theme ikiwiki, you only need to customise a single template, page.tmpl. * misc.tmpl will, however, still be read if a locally modified version exists. This is to avoid forcing users to update page.tmpl right now.
* releasing version 3.20100504Joey Hess2010-05-04
|
* Fixes a bug in skipping of illegal source files introduced in 3.20100427.Joey Hess2010-05-04
|