##// END OF EJS Templates
hgweb: adding branch, tags, bookmarks, user, and file list to rss feed entries
Aaron Jensen -
r21057:19ee4923 default
parent child Browse files
Show More
@@ -1,7 +1,39 b''
1 <item>
1 <item>
2 <title>{desc|strip|firstline|strip|escape}</title>
2 <title>{branches%"{if(name, '[{name|escape}] ')}"}{desc|strip|firstline|strip|escape}</title>
3 <guid isPermaLink="true">{urlbase}{url|urlescape}rev/{node|short}</guid>
3 <guid isPermaLink="true">{urlbase}{url|urlescape}rev/{node|short}</guid>
4 <description><![CDATA[{desc|strip|escape|addbreaks|nonempty}]]></description>
4 <description>
5 <![CDATA[
6 <table>
7 <tr>
8 <th style="text-align:left;">changeset</th>
9 <td>{node|short}</td>
10 </tr>
11 <tr>
12 <th style="text-align:left;">branch</th>
13 <td>{branches%"{name|escape}"}</td>
14 </tr>
15 <tr>
16 <th style="text-align:left;">bookmark</th>
17 <td>{bookmarks%"{name|escape}"}</td>
18 </tr>
19 <tr>
20 <th style="text-align:left;">tag</th>
21 <td>{tags%"{name|escape}"}</td>
22 </tr>
23 <tr>
24 <th style="text-align:left;vertical-align:top;">user</th>
25 <td>{author|obfuscate}</td>
26 </tr>
27 <tr>
28 <th style="text-align:left;vertical-align:top;">description</th>
29 <td>{desc|strip|escape|addbreaks|nonempty}</td>
30 </tr>
31 <tr>
32 <th style="text-align:left;vertical-align:top;">files</th>
33 <td>{files}</td>
34 </tr>
35 </table>
36 ]]></description>
5 <author>{author|obfuscate}</author>
37 <author>{author|obfuscate}</author>
6 <pubDate>{date|rfc822date}</pubDate>
38 <pubDate>{date|rfc822date}</pubDate>
7 </item>
39 </item>
@@ -12,3 +12,7 b' bookmarkentry = bookmarkentry.tmpl'
12 branches = branches.tmpl
12 branches = branches.tmpl
13 branchentry = branchentry.tmpl
13 branchentry = branchentry.tmpl
14 error = error.tmpl
14 error = error.tmpl
15 filedifflink = '{file|escape}<br />'
16 fileellipses = '{file|escape}<br />'
17 filenodelink = '{file|escape}<br />'
18 filenolink = '{file|escape}<br />'
General Comments 0
You need to be logged in to leave comments. Login now