aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/inline.pm
Commit message (Collapse)AuthorAge
* Fix inline plugin for non-ASCII rootpageFeng Shu2019-02-03
|
* inline: Prevent creating a file named ".mdwn" when the postform is submitted ↵Joey Hess2016-09-21
| | | | with an empty title.
* inline: expand show=N backwards compatibility to negative NSimon McVittie2016-05-06
| | | | | [[plugins/contrib]] uses show=-1 to show the post-creation widget without actually inlining anything.
* Compose relative URLs in RSS feeds correctlySimon McVittie2016-01-21
| | | | | | | If the relative link from the (page generating the) RSS to the target would start with "./" or "../", just concatenating it with the URL to the directory containing the RSS is not sufficient. Go via URI::new_abs to fix this.
* Force comments URL in RSS feeds to be absoluteSimon McVittie2016-01-21
| | | | | | | | Now I'm going to get bug reports about wanting the URLs to be protocol-relative, but we can't win there as long as we generate RSS, because RSS doesn't have well-defined semantics for relative URLs (and the W3C's validator complains about them). If absolute URLs are a problem for you, please use Atom feeds.
* Merge remote-tracking branch 'smcv/ready/limit'Simon McVittie2015-11-30
|\
| * Rename show parameter of [[!inline]] and [[!pagestats]] to limitSimon McVittie2014-09-14
| | | | | | | | | | | | | | The old name still works, if its value is numeric. This name allows a non-numeric "show" to mean the same thing it does for [[!map]] (show title, show description, etc.).
* | inline: change default sort order from age to "age title" for determinismSimon McVittie2015-06-13
| |
* | Make sure we do not pass multiple CGI parameters in function callsSimon McVittie2014-10-16
|/ | | | | | | | | | | When CGI->param is called in list context, such as in function parameters, it expands to all the potentially multiple values of the parameter: for instance, if we parse query string a=b&a=c&d=e and call func($cgi->param('a')), that's equivalent to func('b', 'c'). Most of the functions we're calling do not expect that. I do not believe this is an exploitable security vulnerability in ikiwiki, but it was exploitable in Bugzilla.
* inline: postform=no should take precedence over rootpage existingSimon McVittie2014-07-04
| | | | | | | | If someone has explicitly disabled the postform, it seems reasonable from a least-astonishment point of view for that to take precedence over rootpage, even though that makes rootpage useless. Also add a regression test; so far, this is all it tests.
* protect $@ whenever a block using $@ is non-trivialSimon McVittie2014-02-21
| | | | | | | | | | | | | | | | | | | | | | | | As noted in the Try::Tiny man page, eval/$@ can be quite awkward in corner cases, because $@ has the same properties and problems as C's errno. While writing a regression test for definetemplate in which it couldn't find an appropriate template, I received <span class="error">Error: failed to process template <span class="createlink">deftmpl</span> </span> instead of the intended <span class="error">Error: failed to process template <span class="createlink">deftmpl</span> template deftmpl not found</span> which turned out to be because the "catch"-analogous block called gettext before it used $@, and gettext can call define_gettext, which uses eval. This commit alters all current "catch"-like blocks that use $@, except those that just do trivial things with $@ (string interpolation, string concatenation) and call a function (die, error, print, etc.)
* inline: Allow overriding the title of the feed. Closes: #735123 Thanks, ↵Joey Hess2014-01-13
| | | | Christophe Rhodes
* Instead of hacking back to $link, just provide it.Amitai Schlair2013-06-27
|
* Catch up rsspage to atompage. Validates.Amitai Schlair2013-02-22
|
* Render fancy podcast enclosures.Amitai Schlair2013-02-20
| | | | | | | | | | | Simple podcast feeds didn't have content tags and I made sure to keep it that way. This may be unnecessarily conservative. Changing the behavior to include empty content tags might be fine, but I don't want to think about it right now, I just want my tests to keep passing! The new fancy-podcast tests are copy-pasted-edited from the simple-podcast tests. These tests shall be refactored.
* Extract genenclosure(). No functional change intended.Amitai Schlair2013-02-20
|
* trail, inline: treat pagenames as a list of literal names, not linksSimon McVittie2012-04-06
|
* Reinstate trail support in inlineSimon McVittie2012-04-05
| | | | This was removed in aaa72a3a80f89.
* Added a "changes" hook. Renamed the "change" hook to "rendered", butJoey Hess2012-03-28
| | | | the old hook name is called for now for back-compat.
* inline: When the pagenames list includes pages that do not exist, skip them.Joey Hess2012-03-21
| | | | | | | | | | | bestlink returns '' if no existing page matches a link. This propigated through inline and other plugins, causing uninitialized value warnings, and in some cases (when filecheck was enabled) making the whole directive fail. Skipping the empty results fixes that, but this is papering over another problem: If the missing page is later added, there is not dependency information to know that the inline needs to be updated. Perhaps smcv will fix that later.
* changelogJoey Hess2012-03-18
|\
| * Replace [[!trailinline]] directive with [[!inline trail=yes]]Simon McVittie2012-03-18
| |
* | 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
* inline: When indexing internal pages for searching, use the url of the ↵Joey Hess2011-09-01
| | | | inlining page.
* inline: Handle obfuscated urls, such as the mailto urls generated by ↵Joey Hess2011-06-29
| | | | | | | markdown when forcing urls absolute. That took me 5 minutes. If anyone thinks obfuscated email urls stops, or even slows down spammers, think again.
* 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)
* inline: base feed urls on included page nameGiuseppe Bilotta2011-02-22
| | | | | | Second (forgotten) half of bb8f76a4a04686def8cc6f21bcca80cb2cc3b2c9. This ensures that the link URL and page title in the feed are the correct ones.
* inline: Fix regression in feed titles. Closes: #610878 (Thanks, Paul Wise)Joey Hess2011-01-24
|
* reword feed descsJoey Hess2011-01-06
|
* 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)
* inline: Force an absolute page location when the inline postform is used.Joey Hess2010-12-25
| | | | | | There seems no need to allow selecting a location when creating a page this way; the user should always want it to appear in the inline whose form they submitted.
* fix commentJoey Hess2010-12-25
|
* inline: base feed names on the included page nameGiuseppe Bilotta2010-12-05
| | | | | | Use the included page name rather than the including page name. This allows us to allow feeds in nested inlines without duplicating feeds with the same content under different (and stupid) names.
* Use local paths for the CGI URLSimon McVittie2010-11-23
|
* inline: Improve RSS url munging to use a proper html parserJoey Hess2010-11-16
| | | | | | | | and support all elements that HTML::Tagset knows about. (Which doesn't include html5 just yet, but then the old version didn't either.) Bonus: 4 times faster than old regexp method.
* indentationJoey Hess2010-11-16
|
* template_depends: throw nice error message when template cannot be foundJoey Hess2010-09-27
| | | | | | | | | | | | plovs reported a crash when templates were not installed properly, with a non-useful error about the template object not being defined. I've audited all uses of template_depends(), and template(), and it makes sense for them to throw an error if the template cannot be found. All code with a user-supplied template catches errors already, to handle template parse failures. It did not make sense for template_file to throw errors, as some code uses it to probe if a template file is available.
* revert accidentially committed changeJoey Hess2010-09-13
|
* Pass array of names of files that have been deleted to needsbuild hook as ↵Joey Hess2010-09-10
| | | | second parameter, to allow for plugins that needs access to this information earlier than the delete hook.
* inline: Call indexhtml when inlining internal pages, so their text can be ↵Joey Hess2010-05-06
| | | | indexed for searching.
* adapt comment.tmpl to html5Joey Hess2010-05-02
| | | | | | | Note that I put comment-header in a <header> despite it being below the comment. Using a <footer> would be confusing given the class name. Also, the content is semantically closer to a header than a footer.
* Add parameter to displaytime to specify that it is a pubdate, and in html5 ↵Joey Hess2010-05-02
| | | | mode, use time tag.
* improved error messageJoey Hess2010-04-23
|
* use same error string as template.pm doesJoey Hess2010-04-23
|
* fix logicJoey Hess2010-04-23
|
* look for templates in srcdir and underlays, firstJoey Hess2010-04-22
| | | | | | | | | | | | | | | This entailed changing template_params; it no longer takes the template filename as its first parameter. Add template_depends to api and replace calls to template() with template_depends() in appropriate places, where a dependency should be added on the template. Other plugins don't use template(), so will need further work. Also, includes are disabled for security. Enabling includes only when using templates from the templatedir would be nice, but would add a lot of complexity to the implementation.
* disable feeds in raw modeJoey Hess2010-04-15
|
* HTML-encode meta title, description, guid on output, but not in the pagestateSimon McVittie2010-04-06
| | | | | | This makes them consistent with the rest of the meta keys. A wiki rebuild will be needed on upgrade to this version; until the wiki is rebuilt, double-escaping will occur in the titles of pages that have not changed.
* Group related plugins into sections in the setup file, and drop unused rcs ↵Joey Hess2010-02-11
| | | | plugins from the setup file.
* inline: Avoid showing edit links if page editing is disabled. (Sjoerd)Joey Hess2010-01-04
|