607b224f00
Links in rss templates were hardcoded to library.org.nz. Should pass and use the system's OPACBaseURL. Tested and verified. Signed-off-by: Eivin Giske Skaaren <eskaaren@yahoo.no> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
30 lines
741 B
XML
30 lines
741 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE rss PUBLIC "-//Netscape Communications/DTD RSS 0.91/EN"
|
|
"http://my.netscape.com/publish/formats/rss-0.91.dtd">
|
|
|
|
<rss version="0.91">
|
|
|
|
<channel>
|
|
<title>[% CHANNELTITLE %]</title>
|
|
<link>[% CHANNELLINK %]</link>
|
|
<description>[% CHANNELDESC %]</description>
|
|
<language>[% CHANNELLANG %]</language>
|
|
<lastBuildDate>[% CHANNELLASTBUILD %]</lastBuildDate>
|
|
|
|
<image>
|
|
<title>[% IMAGETITLE %]</title>
|
|
<url>[% IMAGEURL %]</url>
|
|
<link>[% IMAGELINK %]</link>
|
|
</image>
|
|
|
|
[% FOREACH i IN ITEMS %]
|
|
<item>
|
|
<title>[% i.TITLE %], by [% i.AUTHOR %]</title>
|
|
<link>[% OPACBaseURL %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.biblionumber %]</link>
|
|
|
|
</item>
|
|
[% END %]
|
|
|
|
</channel>
|
|
</rss>
|