2008-07-15 02:49:44 +02:00
|
|
|
[[!template id=plugin name=aggregate author="[[Joey]]"]]
|
2010-02-12 09:38:00 +01:00
|
|
|
[[!tag type/special-purpose]]
|
2006-08-23 07:41:07 +02:00
|
|
|
|
2008-09-11 23:14:32 +02:00
|
|
|
This plugin allows content from other feeds to be aggregated into the
|
|
|
|
wiki. To specify feeds to aggregate, use the
|
|
|
|
[[ikiwiki/directive/aggregate]] [[ikiwiki/directive]].
|
2006-07-30 06:31:08 +02:00
|
|
|
|
2008-11-16 19:11:39 +01:00
|
|
|
The [[meta]] and [[tag]] plugins are also recommended. Either the
|
|
|
|
[[htmltidy]] or [[htmlbalance]] plugin is suggested, since feeds can easily
|
|
|
|
contain html problems, some of which these plugins can fix.
|
2006-07-30 06:31:08 +02:00
|
|
|
|
|
|
|
You will need to run ikiwiki periodically from a cron job, passing it the
|
|
|
|
--aggregate parameter, to make it check for new posts. Here's an example
|
|
|
|
crontab entry:
|
|
|
|
|
|
|
|
*/15 * * * * ikiwiki --setup my.wiki --aggregate --refresh
|
|
|
|
|
2008-05-06 02:20:45 +02:00
|
|
|
Alternatively, you can allow `ikiwiki.cgi` to trigger the aggregation. You
|
|
|
|
should only need this if for some reason you cannot use cron, and instead
|
|
|
|
want to use a service such as [WebCron](http://webcron.org). To enable
|
2008-07-15 02:06:53 +02:00
|
|
|
this, turn on `aggregate_webtrigger` in your setup file. The url to
|
2008-05-06 02:20:45 +02:00
|
|
|
visit is `http://whatever/ikiwiki.cgi?do=aggregate_webtrigger`. Anyone
|
|
|
|
can visit the url to trigger an aggregation run, but it will only check
|
|
|
|
each feed if its `updateinterval` has passed.
|
|
|
|
|
2008-12-23 22:08:21 +01:00
|
|
|
## aggregated pages
|
2008-07-15 02:06:53 +02:00
|
|
|
|
|
|
|
This plugin creates a page for each aggregated item.
|
|
|
|
|
2008-07-15 02:49:44 +02:00
|
|
|
If the `aggregateinternal` option is enabled in the setup file (which is
|
2008-12-23 22:08:21 +01:00
|
|
|
the default), aggregated pages are stored in the source directory with a
|
2008-07-15 02:49:44 +02:00
|
|
|
"._aggregated" extension. These pages cannot be edited by web users, and
|
|
|
|
do not generate first-class wiki pages. They can still be inlined into a
|
|
|
|
blog, but you have to use `internal` in [[PageSpecs|IkiWiki/PageSpec]],
|
|
|
|
like `internal(blog/*)`.
|
2008-07-15 02:06:53 +02:00
|
|
|
|
2008-12-23 22:08:21 +01:00
|
|
|
If `aggregateinternal` is disabled, you will need to enable the [[html]]
|
|
|
|
plugin as well as aggregate itself, since feed entries will be stored as
|
|
|
|
HTML, and as first-class wiki pages -- each one generates
|
|
|
|
a separate HTML page in the output, and they can even be edited. This
|
|
|
|
option is provided only for backwards compatability.
|