Skip to content

Commit

Permalink
fix LOGBACK-1641
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed May 16, 2022
1 parent 80114d4 commit f1ead1f
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 25 deletions.
37 changes: 24 additions & 13 deletions src/site/pages/css/site.css
Expand Up @@ -115,8 +115,7 @@ a {
#left a, #right a {
display: block;
margin: 0px;
padding: 2px;
border: solid 1px #fff8e8;
padding: 2px;
color: #0066cc;
text-decoration: none;
}
Expand All @@ -131,24 +130,36 @@ p.menu_header {
}

#left a:hover, #right a:hover {
border: solid 1px #FFFFFF;
background-color: #3333CC;
color: #ffffff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
/**border: solid 1px #FFFFFF; */
background-color: #3333CC;
color: #ffffff;
}

.pub {
text-align: center;
justify-content: center;
text-align: center;
}

#left .pub a:hover {
#left p.sponsoredBy {
margin: 0px;
padding: 2px;
font-weight: normal;

color: #564b47;
background-color: #ffd0a0;
border-top: solid 1px #CCCCCC;
border-bottom: solid 1px #CCCCCC;
}

#left div.pub a, div.pub a:hover {
background-color: transparent;
border: solid 0px #FFFFFF;
color: #fff;
border-width: 0px;
}


#left img {
border: none;
border: none;
}

#left div.jobadd {
Expand All @@ -170,7 +181,7 @@ p.menu_header {
background-image: linear-gradient(to top left, #FFBB55 0%, #FF8822 100%);
}

#left div.jobadd a, div.jobadd a:hover {
#left div.pub a, div.jobadd a:hover {
background-color: transparent;
color: #fff;
border-width: 0px;
Expand Down
22 changes: 12 additions & 10 deletions src/site/pages/index.html
Expand Up @@ -6,22 +6,24 @@
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Logback Home</title>
<link rel="stylesheet" type="text/css" href="css/site.css" />
<!--<link rel="stylesheet" type="text/css" href="css/popup.css" media="screen" />-->

</head>
<body>
<script type="text/javascript">prefix='';</script>

<!--<script type="text/javascript" src="js/jquery-min.js"></script>-->

<div id="container">
<script src="templates/header.js" type="text/javascript"></script>
<div id="left">
<noscript>Please turn on Javascript to view this menu</noscript>
<script src="templates/left.js" type="text/javascript"></script>
</div>
<div id="right">
<script src="templates/right.js" type="text/javascript"></script>
</div>
<script src="templates/header.js" type="text/javascript"></script>
<div id="left">
<script src="templates/left.js" type="text/javascript"></script>
</div>

<div id="content">
<div id="right">
<script src="templates/right.js" type="text/javascript"></script>
</div>

<div id="content">

<h2>Logback Project</h2>

Expand Down
9 changes: 8 additions & 1 deletion src/site/pages/manual/appenders.html
Expand Up @@ -940,14 +940,21 @@ <h5>TimeZone</h5>
<tr>
<td><span class="prop" container="tbrp">maxHistory</span></td>
<td>int</td>
<td>The optional <span class="prop">maxHistory</span> property
<td><p>The optional <span class="prop">maxHistory</span> property
controls the maximum number of archive files to keep,
asynchronously deleting older files. For example, if you
specify monthly rollover, and set maxHistory to 6, then 6
months worth of archives files will be kept with files older
than 6 months deleted. Note as old archived log files are
removed, any folders which were created for the purpose of log
file archiving will be removed as appropriate.
</p>

<p>Setting <span class="prop">maxHistory</span> to zero
disables archive removal. By default, <span
class="prop">maxHistory</span> is set to zero, i.e. by default
there is no archive removal.
</p>
</td>
</tr>

Expand Down
3 changes: 2 additions & 1 deletion src/site/pages/templates/left.js
Expand Up @@ -24,7 +24,8 @@ document.write('</div>');
//document.write('<p>&nbsp;</p>');
//document.write('<div class="jobadd"><p><a href="https://doodle.com/poll/s7n3wk59694pmnbs">Should logback 1.3.x series upgrade to Java 8 or remain with Java 7?</a></p></div>');

document.write('<p>&nbsp;Sponsored by:</p>');
document.write('<p class="sponsoredBy">&nbsp;Sponsored by:</p>');

document.write('<div class="pub">');
document.write(' <a href="https://www.exoscale.com" style="">');
document.write(' <img alt="Exoscale" src="' + prefix + 'images/logos/exoscale.png" width="110"/>');
Expand Down

0 comments on commit f1ead1f

Please sign in to comment.