/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/templates/revisionfilechanges.pt

  • Committer: Jelmer Vernooij
  • Date: 2018-09-08 15:16:32 UTC
  • mto: (491.6.1 breezy)
  • mto: This revision was merged to the branch mainline in revision 494.
  • Revision ID: jelmer@jelmer.uk-20180908151632-hsc80tbdusz1nz31
s/bazaar.conf/breezy.conf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
    <tal:block condition="repeat/added/start">
4
4
      <li class="desc">files added:</li>
5
5
    </tal:block>
6
 
    <li class="files">
 
6
    <li class="files" tal:omit-tag="python:added.filename == ''"
 
7
                      tal:attributes="id python:'file' if (added.kind == 'file') else 'directory'">
7
8
      <tal:revision condition="python:added.kind == 'file'"
8
9
                    content="structure python:file_link(added.filename)" />
9
10
      <tal:revision condition="python:added.kind != 'file'"
36
37
      <tal:old-name condition="not:renamed/text_modified" content="renamed/new_filename" class="filename">
37
38
        new_filename
38
39
      </tal:old-name>
 
40
      <tal:prop-change condition="renamed/exe_change" content="string:*" />
39
41
    </li>
40
42
  </ul>
41
43
 
44
46
      <li class="desc">files modified:</li>
45
47
    </tal:block>
46
48
    <li class="files">
47
 
      <tal:revision content="structure python:file_link(item.filename)" />
 
49
      <tal:revision condition="item/text_modified" content="structure python:file_link(item.filename)" />
 
50
      <tal:revision condition="not:item/text_modified" content="item/filename" />
 
51
      <tal:prop-change condition="item/exe_change" content="string:*" />
48
52
    </li>
49
53
  </ul>
50
54
</tal:block>