~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/atom.pt

  • Committer: Jelmer Vernooij
  • Date: 2008-08-06 18:25:44 UTC
  • mto: (197.1.9 pathargs)
  • mto: This revision was merged to the branch mainline in revision 202.
  • Revision ID: jelmer@samba.org-20080806182544-pgps44xpixond3xd
Add --pidfile argument to start-loggerhead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:tal="http://xml.zope.org/namespaces/tal">
 
3
  <title>
 
4
    bazaar changes for <tal:branch-name content="branch/friendly_name">branch name</tal:branch-name>
 
5
  </title>
 
6
  <updated tal:content="updated">${updated}</updated>
 
7
  <id tal:content="python:branch.url(['/atom'])">url</id>
 
8
  <link rel="self" tal:attributes="href python:branch.url([''])" />
 
9
 
 
10
  <entry tal:repeat="entry changes">
 
11
    <title tal:content="string: ${entry/revno}: ${entry/short_comment}">
 
12
      ${entry/revno}: ${entry/short_comment}
 
13
    </title>
 
14
    <updated tal:content="entry/date/isoformat">
 
15
    Z
 
16
    </updated>
 
17
    <id tal:content="python:branch.url(['/revision', entry.revno])">
 
18
      ID
 
19
    </id>
 
20
    <author>
 
21
      <name tal:content="python:util.hide_email(entry.author)">
 
22
        author
 
23
      </name>
 
24
    </author>
 
25
    <content type="text" tal:content="entry/comment">
 
26
      comment
 
27
    </content>
 
28
    <link rel="alternate"
 
29
          tal:attributes="href python:branch.url(['/revision', entry.revno])" />
 
30
  </entry>
 
31
</feed>