Switched from CDN hosted jQuery to a local copy.
[catagits/Gitalist.git] / root / wrapper.tt2
index 8426d65..1e35105 100755 (executable)
@@ -21,7 +21,7 @@
    
        <link rel="stylesheet" type="text/css" href="[% c.uri_for('/core.css') %]" />
        <link rel="shortcut icon" href="[% c.uri_for('/static/favicon.ico') %]" />
-       <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
+       <script src="[% c.uri_for('/static/js/jquery-min.js') %]"></script>
        <script src="[% c.uri_for('/static/js/site.js') %]"></script>
 </head>
 
        </div>
 </div>
 
-<span id="current-uri">[%
+<span id="current-uri" class="js-data">[%
       # A bit of smoke and mirrors to get the /repository/shortlog URIs working
       cur_act = '' _ c.action;
       cur_uri = cur_act.match("log") || cur_act.match("^ref")
               ? '/ref/' _ cur_act.replace("^(repository|ref)/", '')
              : cur_act;
-      # XXX I just want an empty list!
+      # XXX I just want lists!
       IF c.req.args.size > 0;
-          c.uri_for_action(cur_uri, [Repository.name, 'HEAD'], c.req.args);
+          c.uri_for_action(cur_uri, [Repository.name, 'HEAD'], c.req.args.0);
       ELSE;
           c.uri_for_action(cur_uri, [Repository.name, 'HEAD']);
       END;