source: trunk/gsdl3/packages/gsdl-as/lib/templates/feed.vm@ 8720

Last change on this file since 8720 was 8720, checked in by schweer, 19 years ago

worked on web interface

  • Property svn:keywords set to Author Date Id Revision
File size: 744 bytes
Line 
1<?xml version="1.0"?>
2<?xml-stylesheet type="text/xsl" href="/alerting/rss2html.xsl"?>
3<rss version="2.0">
4 <channel>
5 <title>$title</title>
6 <link>TODO</link>
7 <description>TDOD</description>
8 <language>en</language>
9 <lastBuildDate>TODO</lastBuildDate>
10 <generator>Alerting Service for Greenstone</generator>
11 <webMaster>TODO</webMaster>
12
13 #foreach($event in $list)
14 <item>
15 <title>$event.document_title</title>
16 <link>$event.document_url</link>
17 <description>some description</description>
18 <pubDate>$event.timestamp</pubDate>
19 <guid>$event.document_url</guid>
20 <category>$event.type</category>
21 </item>
22 #end
23 </channel>
24</rss>
Note: See TracBrowser for help on using the repository browser.