| Commit message (Collapse) | Author | Age |
... | |
|
|
|
| |
* map: Don't inline images.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
links required meta to be run during scan, which complicated its data
storage, since it had to clear data stored during the scan pass to avoid
duplicating it during the normal preprocessing pass.
* If you used "meta link", you should switch to either "meta openid" (for
openid delegations), or tags (for internal, invisible links). I assume
that nobody really used "meta link" for external, non-openid links, since
the htmlscrubber ate those. (Tell me differently and I'll consider bringing
back that support.)
* meta: Improved data storage.
* meta: Drop the hackish filter hook that was used to clear
stored data before preprocessing, this hack was ugly, and broken (cf:
liw's disappearing openids).
* aggregate: Convert filter hook to a needsbuild hook.
|
| |
|
| |
|
|
|
|
|
|
|
| |
inserting them into the html template. This ensures that markdown
acts on them, even if the value is expanded inside a block-level html
element in the html template. Closes: #454058
* Use a div in the note template rather than a span.
|
|
|
|
| |
formbuilder object
|
|
|
|
|
|
| |
so that more than one plugin can use this hook.
I believe this is a safe change, since only passwordauth uses this hook.
(If some other plugin already used it, it would have broken passwordauth!)
|
|
|
|
|
|
| |
It would be better if it were a formbuilder hook. But the formbuilder hook
is wacked.. I may need to change how that hook works, which would mean
changing the only current user of it, passwordauth).
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
and forces rebuilds of the pages that contain calendars. So
running ikiwiki --refresh at midnight is now enough, no need for a full
wiki rebuild each midnight.
* calendar: Work around block html parsing bug in markdown 1.0.1 by
enclosing the calendar in an extra div.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
via the %pagestate hash.
* Use pagestate in meta to detect potential redir loops.
|
|
|
|
|
| |
Including redir pages for the moved basewiki pages. These will be removed in
a future release.
|
| |
|
|
|
|
|
|
| |
it won't work for incremental builds
for now, relying on browsers to notice loops
|
| |
|
| |
|
|
|
|
|
|
|
| |
which has been reported to cause encoding problems (though I haven't
reproduced them), just catch a failure of markdown, and retry.
(The crazy perl bug magically disappears on the retry.)
Closes: #449379
|
|
|
|
| |
stopping collecting the header text at the first element.
|
| |
|
| |
|
| |
|
|
|
|
| |
inlined pages is displayed. Closes: #451019
|
| |
|
|
|
|
|
|
| |
The table plugin omitted </tbody> with header=no, but always generated
<tbody>, resulting in an unbalanced tag. Fix that by omitting <tbody>
too.
|
|
|
|
| |
that were all at the same level, fix. Closes: #449285
|
| |
|
| |
|
|
|
|
|
|
| |
page name to be expired and reused for several distinct guids. When this
happened, the expiry code counted each past guid that had used that page
name as a currently existing page, and thus expired too many pages.
|
| |
|
| |
|
|
|
|
|
| |
single page containing two different feeds.
* Also fixed some places in inline that failed to use destpage correctly.
|
| |
|
|
|
|
| |
and instead show an empty graph.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
* Reformat calendar plugin to ikiwiki conventions.
* The calendar plugin made *every* page depend on every other page,
which seemed a wee tiny little bit overkill. Fixed the dependency
calculations (I hope.)
* Removed manual ctime statting code, and just have the calendar plugin use
%pagectime.
|
|
|
|
|
|
| |
ikiwiki via XML RPC. This should be much faster than the old plugin that
had to fork python for every rst page render. Note that if you use
the rst plugin, you now need to have the RPC::XML perl module installed.
|
| |
|
|
|
|
| |
linkified now if they are preceeded by whitespace.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
wikilink
|
|
|
|
|
| |
Slight overriding of link, as link=no is still used to disable the linking
entirely. Unless you have a page named "no"..
|
|
|
|
|
|
| |
are not included in the map. Include special styling for such pages.
* map: Remove common prefixes and don't over-indent.
* Add class option to htmllink().
|