##// END OF EJS Templates
removed .lower() from permission checking of cached repos list since repos can have capital letters now
removed .lower() from permission checking of cached repos list since repos can have capital letters now

File last commit:

r362:558eb7c5 rhodecode-0.0.0.8.0 default
r511:0fce1f9e default
Show More
error_document.html
53 lines | 1.7 KiB | text/html | HtmlLexer
Marcin Kuzminski
initial commit.
r0 ## -*- coding: utf-8 -*-
corrected error document to be same as base
r315 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
version bump to 0.8...
r362 <head>
<title>Error - ${c.error_message}</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
%if c.redirect_time:
<meta http-equiv="refresh" content="${c.redirect_time}; url=${c.url_redirect}"/>
%endif
<link rel="icon" href="/images/hgicon.png" type="image/png" />
<meta name="robots" content="index, nofollow"/>
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="/css/reset.css" />
<link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" />
<link id="color" rel="stylesheet" type="text/css" href="/css/colors/blue.css" />
<style type="text/css">
#main_div{
border: 0px solid #000;
width: 500px;
margin: auto;
text-align: center;
margin-top: 200px;
font-size: 1.8em;
}
.error_message{
text-align: center;
color:red;
font-size: 1.8em;
}
</style>
Marcin Kuzminski
change error controller,...
r14
version bump to 0.8...
r362 </head>
<body>
<div id="login">
<div class="table">
<div id="main_div">
<h1 class="error_message">${c.error_message}</h1>
<p>${c.error_explanation}</p>
%if c.redirect_time:
<p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p>
%endif
</div>
</div>
<!-- end login -->
</div>
</body>
Marcin Kuzminski
initial commit.
r0 </html>