Fix RelPermalink() and Urls in menus vs canonifyUrls
authorbep <bjorn.erik.pedersen@gmail.com>
Fri, 12 Dec 2014 19:28:28 +0000 (20:28 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 23 Jan 2015 13:13:00 +0000 (14:13 +0100)
commit1b42dc572a0475596ffc64f8a9e0dbf8ec823094
tree3be943bbec8906a7c65bbf992224e0e4c15f5073
parent743998306a02a683371caeac477501418894a8f5
Fix RelPermalink() and Urls in menus vs canonifyUrls

canonifyUrls=true, RelPermalink and baseUrl with sub-path did not work.

This fixes that by adding a check for canonifyUrl=trues=true in RelPermalink().

So given

- baseUrl "http://somehost.com/sub/"
- the path "some-path/file.html"

For canonifyUrls=false RelPermalink() returns "/sub/some-path/file.html"
For canonifyUrls=true RelPermalink() returns "/some-path/file.html"

In the last case, the Url will be made absolute and clickable in a later step.

This commit also makes the menu urls defined in site config releative. To make them work with canonifying of urls, the context root is prepended if canonifying is turned off.

Fixes #519
Fixes #711
docs/content/extras/menus.md
helpers/url.go
helpers/url_test.go
hugolib/menu_test.go
hugolib/node.go
hugolib/page.go
hugolib/page_permalink_test.go
hugolib/site.go