~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/macros.pt

  • Committer: Matt Nordhoff
  • Date: 2009-10-21 13:16:40 UTC
  • mfrom: (389.1.3 integration)
  • Revision ID: mnordhoff@mattnordhoff.com-20091021131640-3bw4y5ax14w7rwgf
Fix .bzr/smart access to branches in shared repos. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
<html xmlns="http://www.w3.org/1999/xhtml" metal:define-macro="main">
4
4
  <head>
5
5
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
 
6
    <meta name="generator"
 
7
          tal:attributes="content generator_string" />
6
8
 
7
9
    <title metal:define-slot="title"></title>
8
10
    <link rel="stylesheet"
9
11
          tal:attributes="href python:branch.static_url('/static/css/global.css')" />
10
 
    <script type="text/javascript"
11
 
            tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-core.js')"></script>
12
 
    <script type="text/javascript"
13
 
            tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-more.js')"></script>
 
12
    <tal:comment condition="nothing">
 
13
      <script type="text/javascript"
 
14
              src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js"></script>
 
15
    </tal:comment>
 
16
    <script type="text/javascript">
 
17
      var global_path = <tal:block content="python:'\''+branch.url('/')+'\''" />;
 
18
      var collapsed_icon_path = <tal:block content="python:'\''+branch.static_url('/static/images/treeCollapsed.png')+'\''" />;
 
19
      var expanded_icon_path = <tal:block content="python:'\''+branch.static_url('/static/images/treeExpanded.png')+'\''" />;
 
20
    </script>
 
21
    <script type="text/javascript"
 
22
            tal:attributes="src python:branch.yui_url('yui/yui-min.js')"></script>
 
23
    <script type="text/javascript"
 
24
            tal:attributes="src python:branch.yui_url('oop/oop-min.js')"></script>
 
25
    <script type="text/javascript"
 
26
            tal:attributes="src python:branch.yui_url('event/event-min.js')"></script>
 
27
    <script type="text/javascript"
 
28
            tal:attributes="src python:branch.yui_url('attribute/attribute-min.js')"></script>
 
29
    <script type="text/javascript"
 
30
            tal:attributes="src python:branch.yui_url('base/base-min.js')"></script>
 
31
    <script type="text/javascript"
 
32
            tal:attributes="src python:branch.yui_url('dom/dom-min.js')"></script>
 
33
    <script type="text/javascript"
 
34
            tal:attributes="src python:branch.yui_url('node/node-min.js')"></script>
 
35
    <script type="text/javascript"
 
36
            tal:attributes="src python:branch.yui_url('anim/anim-min.js')"></script>
 
37
    <script type="text/javascript"
 
38
            tal:attributes="src python:branch.yui_url('io/io-base-min.js')"></script>
14
39
    <script type="text/javascript"
15
40
            tal:attributes="src python:branch.static_url('/static/javascript/custom.js')"></script>
16
 
      <script type="text/javascript">
17
 
          var global_path = <tal:block content="python:'\''+branch.url('/')+'\''" />;
18
 
      </script>
19
 
      <script type="text/javascript"
20
 
              tal:attributes="src
21
 
              python:branch.static_url('/static/javascript/yui/build/yui/yui-min.js')"></script>
22
41
    <metal:block metal:define-slot="header_extras" />
23
42
  </head>
24
43
 
42
61
        <h1 metal:define-slot="heading"></h1>
43
62
        <div metal:define-slot="content"></div>
44
63
 
45
 
        <p class="fl">Loggerhead is a web-based interface for <a href="http://bazaar-vcs.org/">Bazaar</a> branches</p>
 
64
        <p class="fl">Loggerhead <tal:version content="loggerhead_version" /> is a web-based interface for <a href="http://bazaar-vcs.org/">Bazaar</a> branches</p>
46
65
      </div>
47
66
  </body>
48
67
</html>