summaryrefslogtreecommitdiff
path: root/doc/recentchanges/change_ec6c1269d251c78d2eef68cb789de6cfc6272464._change
blob: 13d0c0641d1b73914e2c4c32aebef63b7492e9ae (plain)
  1. [[!meta author="""joey"""]]
  2. [[!meta authorurl="""http://ikiwiki.info/ikiwiki.cgi?page=users%2Fjoey&do=goto"""]]
  3. [[!meta title="""change to ikiwiki/directive/more todo/selective_more_directive on ikiwiki"""]]
  4. [[!meta permalink="http://ikiwiki.info/recentchanges/#change-ec6c1269d251c78d2eef68cb789de6cfc6272464"]]
  5. <div id="change-ec6c1269d251c78d2eef68cb789de6cfc6272464" class="metadata">
  6. <span class="desc"><br />Changed pages:</span>
  7. <span class="pagelinks">
  8. <a href="http://git.ikiwiki.info/?p=ikiwiki;a=blobdiff;f=doc/ikiwiki/directive/more.mdwn;h=bda1427f39b6d3e688dc589b4ffd82aa3b09dc19;hp=50655191001371b9c34d4c305c118676b7e4f80e;hb=ec6c1269d251c78d2eef68cb789de6cfc6272464;hpb=021676e489f9b79a50338635ad654f31eb5575fe" title="diff" rel="nofollow">[[diff|wikiicons/diff.png]]</a><a href="http://ikiwiki.info/ikiwiki.cgi?page=ikiwiki%2Fdirective%2Fmore&amp;do=goto" rel="nofollow">ikiwiki/directive/more</a>
  9. <a href="http://git.ikiwiki.info/?p=ikiwiki;a=blobdiff;f=doc/todo/selective_more_directive.mdwn;h=2a9998205f31460539e9c608dd3c740374bb503e;hp=24e6ab568a7e8aa4f2acc2a113bd554ef62dc2c9;hb=ec6c1269d251c78d2eef68cb789de6cfc6272464;hpb=021676e489f9b79a50338635ad654f31eb5575fe" title="diff" rel="nofollow">[[diff|wikiicons/diff.png]]</a><a href="http://ikiwiki.info/ikiwiki.cgi?page=todo%2Fselective_more_directive&amp;do=goto" rel="nofollow">todo/selective more directive</a>
  10. </span>
  11. <span class="desc"><br />Changed by:</span>
  12. <span class="committer">
  13. <a href="http://ikiwiki.info/ikiwiki.cgi?page=users%2Fjoey&amp;do=goto" rel="nofollow">joey</a>
  14. </span>
  15. <span class="desc"><br />Commit type:</span>
  16. <span class="committype">git</span>
  17. <span class="desc"><br />Date:</span>
  18. <span class="changedate"><span class="relativedate" title="Tue, 16 Nov 2010 19:00:04 +0000">19:00:04 11/16/10</span></span>
  19. <span class="desc"><br /></span>
  20. </div>
  21. <span class="revert">
  22. <a href="http://ikiwiki.info/ikiwiki.cgi?rev=ec6c1269d251c78d2eef68cb789de6cfc6272464&amp;do=revert" title="revert" rel="nofollow">[[revert|wikiicons/revert.png]]</a>
  23. </span>
  24. <div class="changelog">
  25. more: Add pages parameter to limit where the more is displayed. (thanks, dark)<br />
  26. </div>
  27. <div class="diff">
  28. <pre>
  29. diff --git a/IkiWiki/Plugin/more.pm b/IkiWiki/Plugin/more.pm
  30. index 80e339a..6880e36 100644
  31. --- a/IkiWiki/Plugin/more.pm
  32. +++ b/IkiWiki/Plugin/more.pm
  33. @@ -26,7 +26,10 @@ sub preprocess (@) {
  34. $params{linktext} = $linktext unless defined $params{linktext};
  35. - if ($params{page} ne $params{destpage}) {
  36. + if ($params{page} ne $params{destpage} &amp;&amp;
  37. + (! exists $params{pages} ||
  38. + pagespec_match($params{destpage}, $params{pages},
  39. + location =&gt; $params{page}))) {
  40. return &quot;\n&quot;.
  41. htmllink($params{page}, $params{destpage}, $params{page},
  42. linktext =&gt; $params{linktext},
  43. diff --git a/debian/changelog b/debian/changelog
  44. index 91ff096..faabf19 100644
  45. --- a/debian/changelog
  46. +++ b/debian/changelog
  47. @@ -1,6 +1,8 @@
  48. ikiwiki (3.20101113) UNRELEASED; urgency=low
  49. * websetup: Fix encoding problem when restoring old setup file.
  50. + * more: Add pages parameter to limit where the more is displayed.
  51. + (thanks, dark)
  52. -- Joey Hess &lt;joeyh@debian.org&gt; Tue, 16 Nov 2010 14:23:47 -0400
  53. diff --git a/doc/ikiwiki/directive/more.mdwn b/doc/ikiwiki/directive/more.mdwn
  54. index 5065519..bda1427 100644
  55. --- a/doc/ikiwiki/directive/more.mdwn
  56. +++ b/doc/ikiwiki/directive/more.mdwn
  57. @@ -11,6 +11,11 @@ leads to the full version of the page. Use it like this:
  58. If the `linktext` parameter is omitted it defaults to just &quot;more&quot;.
  59. +An optional `pages` parameter can be used to specify a
  60. +&#91;&#91;ikiwiki/PageSpec&#93;&#93;, and then the &quot;more&quot; link will only be displayed
  61. +when the page is inlined into a page matching that PageSpec, and otherwise
  62. +the full content shown.
  63. +
  64. Note that you can accomplish something similar using a &#91;&#91;toggle&#93;&#93; instead.
  65. &#91;&#91;!meta robots=&quot;noindex, follow&quot;&#93;&#93;
  66. diff --git a/doc/todo/selective_more_directive.mdwn b/doc/todo/selective_more_directive.mdwn
  67. index 24e6ab5..2a99982 100644
  68. --- a/doc/todo/selective_more_directive.mdwn
  69. +++ b/doc/todo/selective_more_directive.mdwn
  70. @@ -24,3 +24,5 @@ I can now call it as
  71. I&#39;m not entirely happy with the design, since I would rather put this information in the inline directive instead of in every story post. Unfortunately I found no way to pass parameters from the inline directive to the inlined page.
  72. -- &#91;&#91;dark&#93;&#93;
  73. +
  74. +&gt; Me neither, but nor do I see a better way, so &#91;&#91;applied|done&#93;&#93;. --&#91;&#91;Joey&#93;&#93;
  75. </pre>
  76. </div>
  77. <!-- ec6c1269d251c78d2eef68cb789de6cfc6272464 -->