Age | Commit message (Collapse) | Author |
|
|
|
This can contain auto-generated things, like tag pages; if edited
they'll automatically migrate into source code control.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
This reverts commit 42adf471986243ae8f2bfbe4ce1f94b66aa5c065
|
|
|
|
|
|
|
|
leaving bug closed
|
|
|
|
cgitemplate is a modified misctemplate that takes an optional cgi object
and uses it to set the baseurl, and also optionally the forcebaseurl,
if a page is provided.
If no cgi object is provided, it will fall back to using $config{url}.
I expect this will only be needed in exceptional cases where
that doesn't much matter, such as cgierror().
showform uses cgitemplate, so there is no more need for showform_preview.
|
|
This way, do=goto will go to the page relative to
the current location, while the permalinks in feeds
will be absolute (unless an url is not configured at all).
|
|
This allows urlabs($foo, $config{url}) to be used safely, even if
no url is configured.
|
|
|
|
|
|
|
|
|
|
|
|
permalinks always need to be full urls
|
|
|
|
Non-edit pages are now back to having `<base>` set to the site's main url.
|
|
This was I think a relic from when BASEURL was used in more templates than
use it now.
|
|
Was broken (in theory) by baseurl changes in last release.
|
|
Added a showform_preview that is like showform, but sets forcebaseurl
to point to the page being previewed.
|
|
|
|
|
|
|
|
|
|
(cherry picked from commit 139c050ca48c2fe7bdcd4ea22623739cbb25ceda)
|
|
Since tag names are now retrieved from the file names, we must revert
the escaping process that santizes the file names. Solve by adding a
`pagetitle()` call at the end of the tagname()
(cherry picked from commit 0ee0612b1ab11d76eb3790c8db7a2ba992c54f6b)
|
|
|
|
|
|
|
|
|
|
For correctness only, since a tag named ".foo" is very unlikely.
|
|
|
|
The use of typed links for tags and some of the consequent changes
introduced some unwanted functionality variations in the tag system. Two
problems in particular could be observed, when compared to the use of
tags in older versions of IkiWiki:
* tags in feeds (both rss and atom) would use the file path as their
name (e.g. you would have <category term="tags/sometag" /> in an atom
item for a page tagged sometag with a tagbase of tags), whereas they
appeared pure before
* tags containing a slash character would appear without the slash
character but be used with the slash character in other circumstances
(effect visible by tagging a page with a name such as "with/slash")
Both of these issues are fixed by introducing a tagname() function that
takes a tag link and effectively reverses (as well as possible) the
effects of taglink().
A possible alternative route would have been the reintroduction of the
global %tags hash, but the new approach as the (arguable) benefit of
introducing a small layer of sanitation for tag names.
|
|
|
|
|
|
|
|
|
|
This reverts commit 2bf9d8dc82c528bd0372ca7f633050b38cc1eea2.
|
|
|