Mercurial > hg > documentViewer
annotate zpt/thumbs_main_rss.zpt @ 386:48d27e100d19
*** empty log message ***
author | abukhman |
---|---|
date | Thu, 28 Oct 2010 17:44:20 +0200 |
parents | 1493ff41d380 |
children | e1034c2ca255 |
rev | line source |
---|---|
68 | 1 <?xml version="1.0" encoding="utf-8" standalone="yes"?> |
2 <rss version="2.0" | |
3 xmlns:media="http://search.yahoo.com/mrss" | |
4 xmlns:tal="http://xml.zope.org/namespaces/tal"> | |
5 | |
6 <channel tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode options/viewMode; start pageinfo/start; end pageinfo/end; rows pageinfo/rows; cols pageinfo/cols; current pageinfo/current; grpsize pageinfo/groupsize; pages docinfo/numPages"> | |
7 | |
8 <item tal:repeat="idx python:range(1,pages)"> | |
9 <title tal:content="string:$idx">title</title> | |
10 <link tal:content="structure python:here.getLinkAmp(param='pn',val=idx)">link</link> | |
11 | |
12 <media:thumbnail tal:attributes="url string:${docinfo/imageURL}&pn=$idx&dw=100&dh=100"/> | |
72
1493ff41d380
minorCVS: ----------------------------------------------------------------------
dwinter
parents:
68
diff
changeset
|
13 <media:content tal:attributes="url string:${docinfo/imageURL}&pn=$idx&dw=800&dh=800"/> |
68 | 14 |
15 </item> | |
16 | |
17 </channel> | |
18 </rss> |