summaryrefslogtreecommitdiff
path: root/doc/recentchanges/change_d916cd2f71f1c22dad947d7b2134edbbb15e7b8e._change
blob: 6a128e5df8a9e997d627e2b0c439245e5db386be (plain)
  1. [[!meta author="""http://smcv.pseudorandom.co.uk/"""]]
  2. [[!meta authorurl="""http://smcv.pseudorandom.co.uk/"""]]
  3. [[!meta title="""change to todo/want_to_avoid_ikiwiki_using_http_or_https_in_urls_to_allow_serving_both on ikiwiki"""]]
  4. [[!meta permalink="http://ikiwiki.info/recentchanges/#change-d916cd2f71f1c22dad947d7b2134edbbb15e7b8e"]]
  5. <div id="change-d916cd2f71f1c22dad947d7b2134edbbb15e7b8e" 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/todo/want_to_avoid_ikiwiki_using_http_or_https_in_urls_to_allow_serving_both.mdwn;h=80925b458287767620d8862f782e77b1bd7dda63;hp=4fafc2bbc249ac9e22869129f8702e0a6d54a5ba;hb=d916cd2f71f1c22dad947d7b2134edbbb15e7b8e;hpb=178d6a16c2fff68edfbe6a1af5c8a9fa91db6039" title="diff" rel="nofollow">[[diff|wikiicons/diff.png]]</a><a href="http://ikiwiki.info/ikiwiki.cgi?page=todo%2Fwant_to_avoid_ikiwiki_using_http_or_https_in_urls_to_allow_serving_both&amp;do=goto" rel="nofollow">todo/want to avoid ikiwiki using http or https in urls to allow serving both</a>
  9. </span>
  10. <span class="desc"><br />Changed by:</span>
  11. <span class="committer">
  12. <a href="http://smcv.pseudorandom.co.uk/" rel="nofollow">smcv</a>
  13. </span>
  14. <span class="desc"><br />Commit type:</span>
  15. <span class="committype">web</span>
  16. <span class="desc"><br />Date:</span>
  17. <span class="changedate"><span class="relativedate" title="Mon, 22 Nov 2010 19:45:02 +0000">19:45:02 11/22/10</span></span>
  18. <span class="desc"><br /></span>
  19. </div>
  20. <span class="revert">
  21. <a href="http://ikiwiki.info/ikiwiki.cgi?rev=d916cd2f71f1c22dad947d7b2134edbbb15e7b8e&amp;do=revert" title="revert" rel="nofollow">[[revert|wikiicons/revert.png]]</a>
  22. </span>
  23. <div class="changelog">
  24. respond to feedback<br />
  25. </div>
  26. <div class="diff">
  27. <pre>
  28. diff --git a/doc/todo/want_to_avoid_ikiwiki_using_http_or_https_in_urls_to_allow_serving_both.mdwn b/doc/todo/want_to_avoid_ikiwiki_using_http_or_https_in_urls_to_allow_serving_both.mdwn
  29. index 4fafc2b..80925b4 100644
  30. --- a/doc/todo/want_to_avoid_ikiwiki_using_http_or_https_in_urls_to_allow_serving_both.mdwn
  31. +++ b/doc/todo/want_to_avoid_ikiwiki_using_http_or_https_in_urls_to_allow_serving_both.mdwn
  32. @@ -191,14 +191,41 @@ New API added by this branch:
  33. &gt; The new form for local urls will typically be only a little bit longer,
  34. &gt; except in the unusual case where the cgiurl is elsewhere. --&#91;&#91;Joey&#93;&#93;
  35. + &gt;&gt; So, have urlto(x, y) use `$local_url`? There are few calls, but IMO
  36. + &gt;&gt; they&#39;re for the most important things - wikilinks, img, map and
  37. + &gt;&gt; other ordinary hyperlinks. Using `$local_url` would be fine for
  38. + &gt;&gt; webserver-based use, but it does stop you browsing your wiki&#39;s
  39. + &gt;&gt; HTML over `file:///` (unless you set that as the base URL, but
  40. + &gt;&gt; then you can&#39;t move it around), and stops you moving simple
  41. + &gt;&gt; outputs (like the docwiki!) around.
  42. + &gt;&gt;
  43. + &gt;&gt; I personally think breaking the docwiki is enough to block that.
  44. + &gt;&gt;
  45. + &gt;&gt; How about this?
  46. + &gt;&gt;
  47. + &gt;&gt; * `urlto($link, $page)` with `$page` defined: relative
  48. + &gt;&gt; * `urlto($link, undef)`: local, starts with `/`
  49. + &gt;&gt; * `urlto($link)`: also local, as a side-effect
  50. + &gt;&gt; * `urlto($link, $anything, 1)` (but idiomatically, `$anything` is
  51. + &gt;&gt; normally undef): absolute, starts with `http&#91;s&#93;://`
  52. + &gt;&gt;
  53. + &gt;&gt; --&#91;&#91;smcv&#93;&#93;
  54. +
  55. * `IkiWiki::baseurl` has a new second argument which works like the
  56. third argument of `urlto`
  57. + &gt; I assume you have no objection to this --&#91;&#91;smcv&#93;&#93;
  58. +
  59. * `IkiWiki::cgiurl` uses `$local_cgiurl` if passed `local_cgiurl =&gt; 1`
  60. + &gt; Possibly changed to making this always be local unless `cgiurl =&gt; $x`
  61. + &gt; is given: see below --&#91;&#91;smcv&#93;&#93;
  62. +
  63. * `IkiWiki::cgiurl` omits the trailing `?` if given no named parameters
  64. except `cgiurl` and/or `local_cgiurl`
  65. + &gt; I assume you have no objection to this --&#91;&#91;smcv&#93;&#93;
  66. +
  67. Bugs:
  68. * I don&#39;t think anything except `openid` calls `cgiurl` without also
  69. @@ -211,10 +238,18 @@ Bugs:
  70. &gt; I agree that makes sense. --&#91;&#91;Joey&#93;&#93;
  71. + &gt;&gt; I&#39;m not completely sure whether you&#39;re agreeing with &quot;perhaps do this&quot;
  72. + &gt;&gt; or &quot;that looks too strange&quot;, so please disambiguate:
  73. + &gt;&gt; would you accept a patch that makes `cgiurl` default to a local
  74. + &gt;&gt; (starts-with-`/`) result? If you would, that&#39;d reduce the diff. --&#91;&#91;smcv&#93;&#93;
  75. +
  76. * It occurs to me that `IkiWiki::cgiurl` could probably benefit from being
  77. exported? Perhaps also `IkiWiki::baseurl`?
  78. - &gt; Possibly, see &#91;&#91;firm_up_plugin_interface&#93;&#93;. --&#91;&#91;Joey&#93;&#93;
  79. + &gt; Possibly, see &#91;&#91;firm_up_plugin_interface&#93;&#93;. --&#91;&#91;Joey&#93;&#93;
  80. +
  81. + &gt;&gt; Not really part of this branch, though, so wontfix (unless you ask me
  82. + &gt;&gt; to do so). --&#91;&#91;smcv&#93;&#93;
  83. * Or, to reduce use of the unexported `baseurl` function, it might make
  84. sense to give `urlto` a special case that references the root of the wiki,
  85. @@ -227,3 +262,5 @@ Bugs:
  86. &gt; AFACIS, `baseurl` is only called in 3 places so I don&#39;t think that&#39;s
  87. &gt; needed. --&#91;&#91;Joey&#93;&#93;
  88. +
  89. + &gt;&gt; OK, wontfix. --&#91;&#91;smcv&#93;&#93;
  90. </pre>
  91. </div>
  92. <!-- d916cd2f71f1c22dad947d7b2134edbbb15e7b8e -->