aboutsummaryrefslogtreecommitdiff
path: root/templates
Commit message (Collapse)AuthorAge
...
| * trail: new plugin (3rd attempt)Simon McVittie2011-11-09
| |
* | Drop the version attribute on the generator tag in Atom feeds.Paul Wise2012-03-03
|/ | | | | | | | Removing the version means that rebuilds are reproducible over time. Both the generator tag and its version attribute are optional: http://tools.ietf.org/html/rfc4287#section-4.2.4
* track escaping change in upstream templateJoey Hess2011-09-27
| | | | | | This is not belived to be XSS exploitable due to other checks in ikiwiki. Thanks Olly Betts for review.
* use false for isPermalink, not noJoey Hess2011-07-29
| | | | feedvalidator says this is true/false not yes/no
* auto-check just uploaded attachmentsJoey Hess2011-07-12
| | | | | This may make it easier to eg, Insert Links after dropping in a lot of files.
* Display attachment manipulation links always, since attachments can be ↵Joey Hess2011-07-11
| | | | | | | uploaded via javascript. Could arrange for them to be in a span that is hidden when there are no attachments and make the javascript upload unhide it; this is a quick fix.
* updated jquery and made it its own underlayJoey Hess2011-06-15
|
* load attachment javascript into template the clean wayJoey Hess2011-06-15
|
* WIPJoey Hess2011-06-15
|
* WIPJoey Hess2011-06-15
|
* comments: add avatar picture of comment authorFrancois Marier2011-03-30
| | | | | Use Libravatar::URL to pull the avatar picture for the comment author if we have an email address for him/her.
* inline: allow assigning an id to postform/feedlinkGiuseppe Bilotta2011-02-22
| | | | | | This allows per-form/feedlink group customization without having to resort to counting. (cherry picked from commit b134feb0dc2d9a8ff7ae447537fa8bc02811aabd)
* feedlink/blogpost templates: use class instead of idGiuseppe Bilotta2011-01-14
| | | | | | | | There can be more than one feedlink group in a page, as well as (more rarely) multiple blog forms, and using the same id for all of them causes HTML validation errors. Replace the id with a class by the same name and adjust in-repository CSS. (cherry picked from commit 0c3b91e1f06fb357711cfa71d514f139cd8e04e3)
* inline: pass the Atom/RSS titles to the templatesGiuseppe Bilotta2011-01-06
| | | | | | The default templates are also updated to make use of this information. The rel="alternate" attribute is also inserted, for completeness. (cherry picked from commit 618ade535e6a7967a510d9e210edaef3d37cc9bc)
* improve htmlJoey Hess2010-11-16
| | | | | display not changed, but I hope this will html2text better in rss2email, and it's generally better
* add message field to revert formJoey Hess2010-10-08
|
* make revert hooks optionalJoey Hess2010-10-08
| | | | | | I removed the IkiWiki::rcs_ stubs for the revert hooks. Instead recentchanges tests to see if the hooks are available and calls them directly.
* put diff at end of revert formJoey Hess2010-10-06
|
* revert html tweakingJoey Hess2010-10-06
|
* Correct 'alt' text for the revert image.Peter Gammie2010-10-01
|
* Get things right after moving to a branch.Peter Gammie2010-09-29
|
* First cut at the revert plugin.Peter Gammie2010-09-29
|
* Set isPermaLink="no" for guids in rss feeds.Joey Hess2010-09-14
| | | | | | | | | | | | | The rss spec says that unless the attribute is set, guid elements *are* permalinks. The problem with that is that if [[meta permalink=]] is used, as is done with aggregated posts, that goes into the link element, and apparently some rss readers prefer the not-really-permalink in the guid element when linking to the post. Without meta permalink, the link and guid elements have the same content, so it should be ok, in that case too for the guid to not be a permalink. (Checked and this does not flood aggregators.)
* Avoid showing 'Add a comment' link at the bottom of the comment post form.Joey Hess2010-07-22
| | | | | | | Since misctemplate is called with a page context, the comments plugin thinks it should add that, as well as the comment link in the actionbar. I kept the comment link because a quick link back to the comments to a page is sorta useful.
* Drop Cache-Control must-revalidate (Firefox 3.5.10 does not seem to have the ↵Joey Hess2010-07-14
| | | | caching problem that was added to work around). Closes: #588623
* comment.tmpl: Fix up display when inline uses it to display a non-comment ↵Joey Hess2010-06-30
| | | | page. (Such as a discussion page.)
* fix labels for form elementsJoey Hess2010-06-15
| | | | | The label for attribute must correspond to the element id (not name). And it needs to be unique inside the loop.
* remove obsolete ol class=form for editpage and editcommentJoey Hess2010-06-13
| | | | | | 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.
* editpage: Rename "comments" field to avoid CSS conflict with the comments div.Joey Hess2010-06-12
|
* I'm told that the pagebody div should be after the sidebar.Joey Hess2010-06-10
|
* 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
* better autotag titleJoey Hess2010-06-09
|
* page.tmpl: Accidentially broke po plugin's otherlanguages list styling when ↵Joey Hess2010-05-16
| | | | modifying for html5; now fixed.
* allow misctemplate callers to pass params to suppress actions etcJoey Hess2010-05-14
| | | | | Suppress disiplay of small search for on search results page, and of Prefrences link on prefs page.
* avoid showing redundant search box on search results pageJoey Hess2010-05-14
|
* show search form on dynamic pagesJoey Hess2010-05-14
|
* put back recentchangesurlJoey Hess2010-05-14
| | | | | | On second thought, misctemplate can use pagetemplate hooks to provide it, so it's better to keep back-compat, and allow full customisation of how it's displayed via the template.
* enable action bar on misctemplatesJoey Hess2010-05-14
| | | | | | So RecentChanges shows on the action bar there, convert recentchanges to use new pageactions hook, with compatability code to avoid breaking old templates.
* wordingJoey Hess2010-05-08
|
* use labelsJoey Hess2010-05-08
|
* moved non-openid signin form into same page as openid selector; show/hide as ↵Joey Hess2010-05-08
| | | | buttons are pressed
* improve display w/noscriptJoey Hess2010-05-07
|
* updateJoey 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 pagediff to not display as "preview"Joey Hess2010-05-06
| | | | | I think originally, the page preview header was not displayed, so diff was hacked in using it.
* 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.)
* bugfixJoey Hess2010-05-05
|
* rename ispage variableJoey Hess2010-05-05
|