Files @ 8b7294a804a0
Branch filter:

Location: kallithea/rhodecode/templates/base/root.html - annotation

Bradley M. Kuhn
Update CONTRIBUTORS with new contributors from RhodeCode v2.2.5
41241617a7a3
e77fbd3b069c
1226fdf24f8a
41241617a7a3
41241617a7a3
41241617a7a3
41241617a7a3
41241617a7a3
ca30c9924023
c6b811f11c94
c6b811f11c94
c6b811f11c94
867820342329
867820342329
87c97fcea029
c6b811f11c94
c6b811f11c94
c6b811f11c94
1226fdf24f8a
1226fdf24f8a
f91d3f9b7230
41241617a7a3
f91d3f9b7230
41241617a7a3
41241617a7a3
c20adbaf16af
c20adbaf16af
c20adbaf16af
c20adbaf16af
f91d3f9b7230
c20adbaf16af
c20adbaf16af
c20adbaf16af
c20adbaf16af
c20adbaf16af
c20adbaf16af
b4f401524060
f91d3f9b7230
c6b811f11c94
c6b811f11c94
c2f131502037
c2f131502037
c2f131502037
c44645e5a836
c2f131502037
c2f131502037
c2f131502037
530bd12fc18a
c44645e5a836
636ff0369986
c44645e5a836
c44645e5a836
58bb350bfef8
58bb350bfef8
549c73bfc206
549c73bfc206
37c7abd34d44
c44645e5a836
7e3d89d9d3a2
afe7c5e63aaf
afe7c5e63aaf
c2f131502037
c2f131502037
cb40b3f6428c
5d580e9bc730
b9ba0d4d3abf
45df84d36b44
45df84d36b44
45df84d36b44
45df84d36b44
c2f131502037
867820342329
9d54d6516e2e
c6b811f11c94
c6b811f11c94
867820342329
867820342329
cb40b3f6428c
867820342329
c6b811f11c94
c6b811f11c94
c6b811f11c94
269c6e0b54cc
269c6e0b54cc
269c6e0b54cc
269c6e0b54cc
269c6e0b54cc
269c6e0b54cc
269c6e0b54cc
269c6e0b54cc
269c6e0b54cc
68f9c216377d
5d580e9bc730
5d580e9bc730
5d580e9bc730
5d580e9bc730
cb40b3f6428c
cb40b3f6428c
cb40b3f6428c
fe2bb88bf7ac
45df84d36b44
f91d3f9b7230
c6b811f11c94
c6b811f11c94
bc16d1d0869a
41241617a7a3
6bef2a9f73e2
6bef2a9f73e2
41241617a7a3
41241617a7a3
e77fbd3b069c
e77fbd3b069c
e77fbd3b069c
85a64b981c07
e77fbd3b069c
e77fbd3b069c
e77fbd3b069c
e77fbd3b069c
e77fbd3b069c
85a64b981c07
e77fbd3b069c
e77fbd3b069c
41241617a7a3
f91d3f9b7230
## -*- coding: utf-8 -*-
<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>${self.title()}</title>
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
        <meta name="robots" content="index, nofollow"/>
        <link rel="icon" href="${h.url('/images/favicon.ico')}" type="image/png" />

        ## CSS ###
        <%def name="css()">
            <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css', ver=c.rhodecode_version)}" media="screen"/>
            <link rel="stylesheet" type="text/css" href="${h.url('/css/pygments.css', ver=c.rhodecode_version)}"/>
            <link rel="stylesheet" type="text/css" href="${h.url('/css/contextbar.css', ver=c.rhodecode_version)}"/>
            ## EXTRA FOR CSS
            ${self.css_extra()}
        </%def>

        <%def name="css_extra()"></%def>

        ${self.css()}

        %if c.ga_code:
        <!-- Analytics -->
        <script type="text/javascript">
            var _gaq = _gaq || [];
            _gaq.push(['_setAccount', '${c.ga_code}']);
            _gaq.push(['_trackPageview']);

            (function() {
                var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
                ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
                var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
                })();
        </script>
        %endif

        ## JAVASCRIPT ##
        <%def name="js()">
            <script type="text/javascript">
            //JS translations map
            var TRANSLATION_MAP = {
                'Add another comment':'${_("Add another comment")}',
                'Stop following this repository':"${_('Stop following this repository')}",
                'Start following this repository':"${_('Start following this repository')}",
                'Group':"${_('Group')}",
                'members':"${_('members')}",
                'Loading ...':"${_('Loading ...')}",
                'loading ...':"${_('loading ...')}",
                'Search truncated': "${_('Search truncated')}",
                'No matching files': "${_('No matching files')}",
                'Open new pull request': "${_('Open new pull request')}",
                'Open new pull request for selected changesets':  "${_('Open new pull request for selected changesets')}",
                'Show selected changesets __S -> __E': "${_('Show selected changesets __S -> __E')}",
                'Show selected changeset __S': "${_('Show selected changeset __S')}",
                'Selection link': "${_('Selection link')}",
                'Collapse diff': "${_('Collapse diff')}",
                'Expand diff': "${_('Expand diff')}",
                'Failed to revoke permission': "${_('Failed to revoke permission')}",
                'Confirm to revoke permission for {0}: {1} ?': "${_('confirm to revoke permission for {0}: {1} ?')}",
            };
            var _TM = TRANSLATION_MAP;

            var TOGGLE_FOLLOW_URL  = "${h.url('toggle_following')}";

            var REPO_NAME = "";
            %if hasattr(c, 'repo_name'):
                var REPO_NAME = "${c.repo_name}";
            %endif
            </script>
            <script type="text/javascript" src="${h.url('/js/yui.2.9.js', ver=c.rhodecode_version)}"></script>
            <!--[if lt IE 9]>
               <script language="javascript" type="text/javascript" src="${h.url('/js/excanvas.min.js')}"></script>
            <![endif]-->
            <script type="text/javascript" src="${h.url('/js/yui.flot.js', ver=c.rhodecode_version)}"></script>
            <script type="text/javascript" src="${h.url('/js/native.history.js', ver=c.rhodecode_version)}"></script>
            <script type="text/javascript" src="${h.url('/js/pyroutes_map.js', ver=c.rhodecode_version)}"></script>
            <script type="text/javascript" src="${h.url('/js/rhodecode.js', ver=c.rhodecode_version)}"></script>
           ## EXTRA FOR JS
           ${self.js_extra()}
            <script type="text/javascript">
            (function(window,undefined){
                // Prepare
                var History = window.History; // Note: We are using a capital H instead of a lower h
                if ( !History.enabled ) {
                     // History.js is disabled for this browser.
                     // This is because we can optionally choose to support HTML4 browsers or not.
                    return false;
                }
            })(window);

            YUE.onDOMReady(function(){
              tooltip_activate();
              show_more_event();
              show_changeset_tooltip();
              // routes registration
              pyroutes.register('toggle_following', "${h.url('toggle_following')}");
              pyroutes.register('changeset_info', "${h.url('changeset_info', repo_name='%(repo_name)s', revision='%(revision)s')}", ['repo_name', 'revision']);
              pyroutes.register('repo_size', "${h.url('repo_size', repo_name='%(repo_name)s')}", ['repo_name']);
              pyroutes.register('changeset_comment_preview', "${h.url('changeset_comment_preview', repo_name='%(repo_name)s')}", ['repo_name']);
           })
            </script>
        </%def>
        <%def name="js_extra()"></%def>
        ${self.js()}
        <%def name="head_extra()"></%def>
        ${self.head_extra()}
    </head>
    <body id="body">
     ## IE hacks
      <!--[if IE 7]>
      <script>YUD.addClass(document.body,'ie7')</script>
      <![endif]-->
      <!--[if IE 8]>
      <script>YUD.addClass(document.body,'ie8')</script>
      <![endif]-->
      <!--[if IE 9]>
      <script>YUD.addClass(document.body,'ie9')</script>
      <![endif]-->

      ${next.body()}
    </body>
</html>