~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/macros.pt

  • Committer: Robert Collins
  • Date: 2008-12-05 05:07:33 UTC
  • Revision ID: robertc@robertcollins.net-20081205050733-x0op0z69lg067wbw
Load all bzrlib plugins.

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" />
8
6
 
9
7
    <title metal:define-slot="title"></title>
10
8
    <link rel="stylesheet"
11
9
          tal:attributes="href python:branch.static_url('/static/css/global.css')" />
12
 
    <link rel="shortcut icon"
13
 
          tal:attributes="href python:branch.static_url('/static/images/favicon.png')" />
14
 
    <tal:comment condition="nothing">
 
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>
 
14
    <script type="text/javascript"
 
15
            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>
15
19
      <script type="text/javascript"
16
 
              src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js"></script>
17
 
    </tal:comment>
18
 
    <script type="text/javascript">
19
 
      var global_path = <tal:block content="python:'\''+branch.url('/')+'\''" />;
20
 
      var collapsed_icon_path = <tal:block content="python:'\''+branch.static_url('/static/images/treeCollapsed.png')+'\''" />;
21
 
      var expanded_icon_path = <tal:block content="python:'\''+branch.static_url('/static/images/treeExpanded.png')+'\''" />;
22
 
    </script>
23
 
    <script type="text/javascript"
24
 
            tal:attributes="src python:branch.yui_url('yui/yui-min.js')"></script>
25
 
    <script type="text/javascript"
26
 
            tal:attributes="src python:branch.yui_url('oop/oop-min.js')"></script>
27
 
    <script type="text/javascript"
28
 
            tal:attributes="src python:branch.yui_url('event/event-min.js')"></script>
29
 
    <script type="text/javascript"
30
 
            tal:attributes="src python:branch.yui_url('attribute/attribute-min.js')"></script>
31
 
    <script type="text/javascript"
32
 
            tal:attributes="src python:branch.yui_url('base/base-min.js')"></script>
33
 
    <script type="text/javascript"
34
 
            tal:attributes="src python:branch.yui_url('dom/dom-min.js')"></script>
35
 
    <script type="text/javascript"
36
 
            tal:attributes="src python:branch.yui_url('node/node-min.js')"></script>
37
 
    <script type="text/javascript"
38
 
            tal:attributes="src python:branch.yui_url('anim/anim-min.js')"></script>
39
 
    <script type="text/javascript"
40
 
            tal:attributes="src python:branch.yui_url('io/io-base-min.js')"></script>
41
 
    <script type="text/javascript"
42
 
            tal:attributes="src python:branch.static_url('/static/javascript/custom.js')"></script>
 
20
              tal:attributes="src
 
21
              python:branch.static_url('/static/javascript/yui/build/yui/yui-min.js')"></script>
43
22
    <metal:block metal:define-slot="header_extras" />
44
23
  </head>
45
24
 
46
 
 <body tal:attributes="class python:branch.public_private_css()">
 
25
<body>
47
26
    <!-- Loggerhead Content Area -->
48
 
      
49
 
      <div metal:define-slot="backlink" />
50
 
      
51
 
      <h1 class="branch-name">
52
 
        <span metal:define-slot="branchname" />
53
 
      </h1>
 
27
      <div id="finderBox">
 
28
         <tal:search-box define="navigation navigation"
 
29
                        replace="structure python:search_box(branch,
 
30
                                 navigation)" />
 
31
        <div>
 
32
          <tal:feed-link replace="structure python:feed_link(branch, url)" />
 
33
        </div>
 
34
      </div>
 
35
 
54
36
      <tal:menu define="fileview_active fileview_active"
55
37
                replace="structure python:menu(branch, url, fileview_active)" />
56
38
      <div id="loggerheadCont">
57
39
 
58
40
        <div id="search_terms"></div>
59
 
        <div metal:define-slot="heading" />
 
41
 
 
42
        <h1 metal:define-slot="heading"></h1>
60
43
        <div metal:define-slot="content"></div>
61
44
 
62
 
        <p id="footer" class="fl">Loggerhead <tal:version content="loggerhead_version" /> is a web-based interface for <a href="http://bazaar-vcs.org/">Bazaar</a> branches</p>
 
45
        <p class="fl">Loggerhead is a web-based interface for <a href="http://bazaar-vcs.org/">Bazaar</a> branches</p>
63
46
      </div>
64
47
  </body>
65
48
</html>