##// END OF EJS Templates
scm-app: allow to set documented pyro4 as scm_app_implementation....
scm-app: allow to set documented pyro4 as scm_app_implementation. The documented ini setting allows to set pyro4 as scm_app, while the backend code crashes on import of pyro4 module. This change allows to configure the app based on the .ini docs. if we pass pyro4 as backedn, we simply skip import and use the default pyro4 scm_app

File last commit:

r537:6c4e8fd9 default
r632:064401fe default
Show More
root.html
139 lines | 5.4 KiB | text/html | HtmlLexer
project: added all source files and assets
r1 ## -*- coding: utf-8 -*-
<!DOCTYPE html>
templateContext: improve the context object idea
r395 <%
c.template_context['repo_name'] = getattr(c, 'repo_name', '')
project: added all source files and assets
r1
templateContext: improve the context object idea
r395 if hasattr(c, 'rhodecode_db_repo'):
c.template_context['repo_type'] = c.rhodecode_db_repo.repo_type
c.template_context['repo_landing_commit'] = c.rhodecode_db_repo.landing_rev[1]
project: added all source files and assets
r1
templateContext: improve the context object idea
r395 if getattr(c, 'rhodecode_user', None) and c.rhodecode_user.user_id:
c.template_context['rhodecode_user']['username'] = c.rhodecode_user.username
c.template_context['rhodecode_user']['email'] = c.rhodecode_user.email
notifications: support real-time notifications with websockets via channelstream
r526 c.template_context['rhodecode_user']['notification_status'] = c.rhodecode_user.get_instance().user_data.get('notification_status', True)
project: added all source files and assets
r1
templateContext: improve the context object idea
r395 c.template_context['visual']['default_renderer'] = h.get_visual_attr(c, 'default_renderer')
%>
project: added all source files and assets
r1
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>${self.title()}</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<%def name="robots()">
<meta name="robots" content="index, nofollow"/>
</%def>
${self.robots()}
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <link rel="icon" href="${h.asset('images/favicon.ico', ver=c.rhodecode_version_hash)}" sizes="16x16 32x32" type="image/png" />
project: added all source files and assets
r1
## CSS definitions
<%def name="css()">
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <link rel="stylesheet" type="text/css" href="${h.asset('css/style.css', ver=c.rhodecode_version_hash)}" media="screen"/>
project: added all source files and assets
r1 <!--[if lt IE 9]>
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <link rel="stylesheet" type="text/css" href="${h.asset('css/ie.css', ver=c.rhodecode_version_hash)}" media="screen"/>
project: added all source files and assets
r1 <![endif]-->
## EXTRA FOR CSS
${self.css_extra()}
</%def>
## CSS EXTRA - optionally inject some extra CSS stuff needed for specific websites
<%def name="css_extra()">
</%def>
${self.css()}
## JAVASCRIPT
<%def name="js()">
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <script src="${h.asset('js/rhodecode/i18n/%s.js' % c.language, ver=c.rhodecode_version_hash)}"></script>
project: added all source files and assets
r1 <script type="text/javascript">
// register templateContext to pass template variables to JS
templateContext: improve the context object idea
r395 var templateContext = ${h.json.dumps(c.template_context)|n};
project: added all source files and assets
r1
var REPO_NAME = "${getattr(c, 'repo_name', '')}";
%if hasattr(c, 'rhodecode_db_repo'):
var REPO_LANDING_REV = '${c.rhodecode_db_repo.landing_rev[1]}';
var REPO_TYPE = '${c.rhodecode_db_repo.repo_type}';
%else:
var REPO_LANDING_REV = '';
var REPO_TYPE = '';
%endif
var APPLICATION_URL = "${h.url('home').rstrip('/')}";
dan
assets: add javascript static file route generator
r464 var ASSET_URL = "${h.asset('')}";
project: added all source files and assets
r1 var DEFAULT_RENDERER = "${h.get_visual_attr(c, 'default_renderer')}";
var CSRF_TOKEN = "${getattr(c, 'csrf_token', '')}";
% if getattr(c, 'rhodecode_user', None):
var USER = {name:'${c.rhodecode_user.username}'};
% else:
var USER = {name:null};
% endif
var APPENLIGHT = {
enabled: ${'true' if getattr(c, 'appenlight_enabled', False) else 'false'},
key: '${getattr(c, "appenlight_api_public_key", "")}',
appenlight client: do not set empty server urls
r528 % if getattr(c, 'appenlight_server_url', None):
serverUrl: '${getattr(c, "appenlight_server_url", "")}',
% endif
project: added all source files and assets
r1 requestInfo: {
% if getattr(c, 'rhodecode_user', None):
ip: '${c.rhodecode_user.ip_addr}',
username: '${c.rhodecode_user.username}'
% endif
}
};
</script>
<!--[if lt IE 9]>
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <script language="javascript" type="text/javascript" src="${h.asset('js/excanvas.min.js')}"></script>
project: added all source files and assets
r1 <![endif]-->
dan
assets: convert pylons static files to pyramid static_url, fixes #3504
r454 <script language="javascript" type="text/javascript" src="${h.asset('js/rhodecode/routes.js', ver=c.rhodecode_version_hash)}"></script>
<script language="javascript" type="text/javascript" src="${h.asset('js/scripts.js', ver=c.rhodecode_version_hash)}"></script>
static: bring back ver=XXX for proper flushing caches when version is upgraded....
r537 ## avoide escaping the %N
<script>CodeMirror.modeURL = "${h.asset('') + 'js/mode/%N/%N.js?ver='+c.rhodecode_version_hash}";</script>
project: added all source files and assets
r1
dan
forms: add deform for integration settings forms
r518
project: added all source files and assets
r1 ## JAVASCRIPT EXTRA - optionally inject some extra JS for specificed templates
${self.js_extra()}
<script type="text/javascript">
$(document).ready(function(){
show_more_event();
timeagoActivate();
})
</script>
</%def>
## JAVASCRIPT EXTRA - optionally inject some extra JS for specificed templates
<%def name="js_extra()"></%def>
${self.js()}
<%def name="head_extra()"></%def>
${self.head_extra()}
frontend: prepare for plugin registration and life-cycle handling
r373 <%include file="/base/plugins_base.html"/>
project: added all source files and assets
r1 ## extra stuff
%if c.pre_code:
${c.pre_code|n}
%endif
</head>
<body id="body">
<noscript>
<div class="noscript-error">
${_('Please enable JavaScript to use RhodeCode Enterprise')}
</div>
</noscript>
## IE hacks
<!--[if IE 7]>
<script>$(document.body).addClass('ie7')</script>
<![endif]-->
<!--[if IE 8]>
<script>$(document.body).addClass('ie8')</script>
<![endif]-->
<!--[if IE 9]>
<script>$(document.body).addClass('ie9')</script>
<![endif]-->
${next.body()}
%if c.post_code:
${c.post_code|n}
%endif
</body>
</html>