| Commit message (Collapse) | Author | Age |
... | |
| |
| |
| |
| | |
HTTPS won't be set when rebuilding a site at the command line
|
| |
| |
| |
| |
| |
| |
| |
| | |
Don't fail if libravatar fails for some reason. Reasons I can think
of:
* too old version to do openid lookups (fall back to email lookup)
* network problem perhaps
|
| | |
|
| |
| |
| |
| | |
This requires version 1.04 or later of Libravatar::URL.
|
| | |
|
|/
|
|
|
| |
Use Libravatar::URL to pull the avatar picture for the comment
author if we have an email address for him/her.
|
|
|
|
| |
(cherry picked from commit 44c5b27f88fdbfb4fdd061f600039e490eaeff92)
|
|
|
|
| |
where the htmlscrubber is enabled.
|
|
|
|
| |
breaking manual inlining of comments.
|
|
|
|
|
|
|
|
|
| |
introduced in version 3.20100505.)"
This reverts commit b34d31142b9fed28ec9cf77fe0c5d9f405d48c84.
This was the wrong approach. It broke inlining of comment(*) on eg, a
toplevel comment page.
|
|
|
|
|
|
| |
Oddly, this hadn't caused any visible breakage. Possibly inline,
which is the only thing to use targetpage, resolves the function
to the "real" one before po gets loaded?
|
|
|
|
|
|
|
| |
If the inline plugin is not being loaded, or is perhaps loaded after po
(when IkiWiki::Setup::getsetup loads all the plugins, for example),
po should not inject its custom rootpage sub, as that will lead to a
redefinition error message when inline loads.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Since the plugin abuses the checkconfig hook to launch aggregation when in
--aggregate mode, it should give other plugins that have checkconfig hooks
a chance to run before they are possibly used in rendering the aggregated
content.
|
|
|
|
| |
confuses eg, cvsweb.
|
|
|
|
| |
cookiejar configuration setting can be used by other plugins to provide a custom `cookie_jar` object for LWP::UserAgent. (Thanks, schmonz)
|
| |
|
|
|
|
| |
introduced in version 3.20100505.)
|
|
|
|
| |
Here wikistatedir has not been configured.
|
|
|
|
|
|
| |
This allows per-form/feedlink group customization without having to
resort to counting.
(cherry picked from commit b134feb0dc2d9a8ff7ae447537fa8bc02811aabd)
|
|
|
|
|
|
| |
Second (forgotten) half of bb8f76a4a04686def8cc6f21bcca80cb2cc3b2c9.
This ensures that the link URL and page title in the feed are the
correct ones.
|
|
|
|
| |
3.20101231.
|
|\ |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
With the previous logic, same-level items would go down one level and
then again up one level closing and re-opening UL tags each time. The
resulting redundant lists caused whitespace layout issues in the
rendered pages.
Adjust the "moving up?" logic to check if the current item base is
different from the previous item _base_. Adjust the "going down?" logic
by moving it to an earlier phase and checking for (1) parent item not being
what it should be and (2) remaining bits; the root is grown unconditionally as
long as (2) is verified.
|
|\ \
| | |
| | |
| | |
| | | |
Conflicts:
t/tag.t
|
| | | |
|
| |/
| |
| |
| | |
For the moment, have the tag test keep the old behaviour.
|
|\ \ |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
As with the tag plugin, for the moment keep the old behaviour in the test.
|
| |\ \
| | |/
| |/| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Migrate the set of deletions to the {autofile} set, since it has
more or less the same effect. This affects the "deleted" case in the
test.
- If a page has just been deleted, add it as an autofile anyway: by
the time gen_autofile is called, it'll be in the list of deleted files,
so it'll just be added to {autofile}. This affects the "gone" case
in the test.
- Behaviour change: we don't forget that a page with no reason to be
re-created was deleted. This affects the 'expunged' and 'reinstated'
cases in the test.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This does cause a minor regression: index pages are now committed
individually rather than being a single commit per rebuild.
This also means the autoindex regression test needs to trigger the
autofile generation pass.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Assume the aggregated content is only going to be in one of the
directories, and so stop if it's successfully removed from the
transientdir.
|
|\ \ \ |
|
| |/ / |
|
|\ \ \ |
|
| |/ /
| | |
| | |
| | | |
This means we don't need to import Cwd and use abs_path.
|
|\| | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This can contain auto-generated things, like tag pages; if edited
they'll automatically migrate into source code control.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem was this: websetup loads all plugins, but does not checkconfig
them. So, htmltidy's recently added configurable command setting was unset;
this resulted in its sanitize hook failing; the sanitize hook is called
when a sidebar was enabled, and this caused the sidebar to not display.
I put in a fix, but the underlying problem is that websetup loads all
plugins but leaves them in an unconfigured and possibly broken state while
trying to display its forms.
Probably the long-term fix is to have it cache the original hook states from
before loading the plugins, and restore it after getting their configuration.
Or, even to get the configuration using a subprocess, as plugins may do things
outside the hook system.
|
| | | |
|
| | | |
|
| | | |
|