1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Free Software Foundation, Inc.
3 # This file is distributed under the same license as the PACKAGE package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "POT-Creation-Date: 2011-05-05 20:04+0300\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
21 "The `aggregate` directive is supplied by the [[!iki plugins/aggregate "
22 "desc=aggregate]] plugin. This plugin requires extra setup, specifically, a "
23 "cron job. See the plugin's documentation for details."
28 "This directive allows content from other feeds to be aggregated into the "
29 "wiki. Aggregate a feed as follows:"
35 "\t\\[[!aggregate name=\"example blog\" dir=\"example\"\n"
36 "\tfeedurl=\"http://example.com/index.rss\"\n"
37 "\turl=\"http://example.com/\" updateinterval=\"15\"]]\n"
42 "That example aggregates posts from the specified RSS feed, updating no more "
43 "frequently than once every 15 minutes (though possibly less frequently, if "
44 "the cron job runs less frequently than that), and puts a page per post under "
45 "the example/ directory in the wiki."
50 "You can then use ikiwiki's [[inline]] directive to create a blog of one or "
51 "more aggregated feeds. For example:"
56 msgid "\t\\[[!inline pages=\"internal(example/*)\"]]\n"
61 "Note the use of `internal()` in the [[ikiwiki/PageSpec]] to match aggregated "
62 "pages. By default, aggregated pages are internal pages, which prevents them "
63 "from showing up directly in the wiki, and so this special [[PageSpec]] is "
64 "needed to match them."
74 "Here are descriptions of all the supported parameters to the `aggregate` "
79 msgid "`name` - A name for the feed. Each feed must have a unique name. Required."
84 "`url` - The url to the web page for the feed that's being aggregated. "
90 "`dir` - The directory in the wiki where pages should be saved. Optional, if "
91 "not specified, the directory is based on the name of the feed."
96 "`feedurl` - The url to the feed. Optional, if it's not specified ikiwiki "
97 "will look for feeds on the `url`. RSS and atom feeds are supported."
100 #. type: Bullet: '* '
102 "`updateinterval` - How often to check for new posts, in minutes. Default is "
106 #. type: Bullet: '* '
108 "`expireage` - Expire old items from this feed if they are older than a "
109 "specified number of days. Default is to never expire on age."
112 #. type: Bullet: '* '
114 "`expirecount` - Expire old items from this feed if there are more than the "
115 "specified number total. Oldest items will be expired first. Default is to "
116 "never expire on count."
119 #. type: Bullet: '* '
121 "`tag` - A tag to tag each post from the feed with. A good tag to use is the "
122 "name of the feed. Can be repeated multiple times. The [[tag]] plugin must be "
123 "enabled for this to work."
126 #. type: Bullet: '* '
128 "`template` - Template to use for creating the aggregated pages. Defaults to "
134 "Note that even if you are using subversion or another revision control "
135 "system, pages created by aggregation will *not* be checked into revision "
141 msgid "[[!meta robots=\"noindex, follow\"]]\n"