aboutsummaryrefslogtreecommitdiff
path: root/templates
Commit message (Collapse)AuthorAge
* do not display two glassesAntoine Beaupré2012-07-19
| | | | we display the inline diff only if diffurl isn't defined
* move the diff button alongside the othersAntoine Beaupré2012-07-19
|
* make diffs toggleableAntoine Beaupré2012-07-19
|
* Merge remote-tracking branch 'smcv/ready/trail'Joey Hess2012-04-18
|\
| * Have trail links at both beginning and end in the default templatesSimon McVittie2012-04-09
| |
* | add comment subscription checkbox to editpageJoey Hess2012-04-13
|/ | | | Reworded template, which also called the commit message a "comment".
* allow users to subscribe to comments w/o registeringJoey Hess2012-04-02
| | | | | | | | | | Technically, when the user does this, a passwordless account is created for them. The notify mails include a login url, and once logged in that way, the user can enter a password to get a regular account (although one with an annoying username). This all requires the passwordauth plugin is enabled. A future enhancement could be to split the passwordless user concept out into a separate plugin.
* reorgJoey Hess2012-03-28
|
* polishing notifyemailJoey Hess2012-03-28
|
* finish notifyemail pluginJoey Hess2012-03-28
|
* integrate comments plugin with notifyemailJoey Hess2012-03-28
|
* changemail: New plugin, sends emails about changed pages.Joey Hess2012-03-28
|
* changelogJoey Hess2012-03-18
|\
| * 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
|