##// END OF EJS Templates
added hidden fulldiff GET param for disabling big diff cut off limit....
added hidden fulldiff GET param for disabling big diff cut off limit. fixed context toggle options on single file diff

File last commit:

r2031:82a88013 merge default
r2161:e8c01681 beta
Show More
error_document.html
53 lines | 1.6 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
removed obsolete id from <html>
r1156 <html xmlns="http://www.w3.org/1999/xhtml">
renamed project to rhodecode
r547 <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}"/>
White-space cleanup
r1888 %endif
changed all urls for IMAGES files to use pylons url function
r1051 <link rel="icon" href="${h.url("/images/hgicon.png")}" type="image/png" />
renamed project to rhodecode
r547 <meta name="robots" content="index, nofollow"/>
White-space cleanup
r1888
renamed project to rhodecode
r547 <!-- stylesheets -->
removed obsolete _static flag from url, and fixed urls in webhelpers
r1050 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" />
renamed project to rhodecode
r547 <style type="text/css">
#main_div{
border: 0px solid #000;
width: 500px;
margin: auto;
text-align: center;
margin-top: 200px;
#38 updated RhodeCode titles
r619 font-size: 1.6em;
renamed project to rhodecode
r547 }
.error_message{
text-align: center;
#38 updated RhodeCode titles
r619 color:#003367;
font-size: 1.6em;
margin:10px;
renamed project to rhodecode
r547 }
</style>
White-space cleanup
r1888
renamed project to rhodecode
r547 </head>
<body>
<div id="login">
White-space cleanup
r1888 <div class="table">
renamed project to rhodecode
r547 <div id="main_div">
removed obsolete css from 404 page, and implemented rhodecode title app in the error page
r986 <div style="font-size:2.0em;margin: 10px">${c.rhodecode_name}</div>
renamed project to rhodecode
r547 <h1 class="error_message">${c.error_message}</h1>
White-space cleanup
r1888
renamed project to rhodecode
r547 <p>${c.error_explanation}</p>
White-space cleanup
r1888
renamed project to rhodecode
r547 %if c.redirect_time:
<p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p>
White-space cleanup
r1888 %endif
renamed project to rhodecode
r547 </div>
</div>
<!-- end login -->
</div>
</body>
White-space cleanup
r1888
renamed project to rhodecode
r547 </html>