1.去掉日志列表页表头的log
2.修改日志部分鼠标悬停弹框样式
This commit is contained in:
@@ -31,7 +31,7 @@
|
|||||||
<div class="theme-panel hidden-xs hidden-sm">
|
<div class="theme-panel hidden-xs hidden-sm">
|
||||||
</div>
|
</div>
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
DNS<spring:message code="log"/>
|
DNS
|
||||||
<small><spring:message code="date_list"/></small>
|
<small><spring:message code="date_list"/></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
<div class="theme-panel hidden-xs hidden-sm">
|
<div class="theme-panel hidden-xs hidden-sm">
|
||||||
</div>
|
</div>
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
HTTP<spring:message code="log"></spring:message>
|
HTTP
|
||||||
<small><spring:message code="date_list"/></small>
|
<small><spring:message code="date_list"/></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
<div class="theme-panel hidden-xs hidden-sm">
|
<div class="theme-panel hidden-xs hidden-sm">
|
||||||
</div>
|
</div>
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
IP<spring:message code="log"></spring:message>
|
IP
|
||||||
<small><spring:message code="date_list"/></small>
|
<small><spring:message code="date_list"/></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
L2TP<spring:message code="log" />
|
L2TP
|
||||||
<small><spring:message code="date_list" /></small>
|
<small><spring:message code="date_list" /></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
<div class="theme-panel hidden-xs hidden-sm">
|
<div class="theme-panel hidden-xs hidden-sm">
|
||||||
</div>
|
</div>
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
MAIL<spring:message code="log"></spring:message>
|
MAIL
|
||||||
<small><spring:message code="date_list"/></small>
|
<small><spring:message code="date_list"/></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ $(document).ready(function(){
|
|||||||
<c:if test="${!fn:startsWith(log.url, 'http')}">
|
<c:if test="${!fn:startsWith(log.url, 'http')}">
|
||||||
<c:set var="url" value="http://${log.url }"/>
|
<c:set var="url" value="http://${log.url }"/>
|
||||||
</c:if>
|
</c:if>
|
||||||
<span data-original-title="${fns:escapeHtml(url)}" class="tooltips" data-flag="false" data-html="true" data-placement="top">
|
<span title="${fns:escapeHtml(url)}">
|
||||||
${fns:stringFormat(url,30)}
|
${fns:stringFormat(url,30)}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
@@ -226,13 +226,13 @@ $(document).ready(function(){
|
|||||||
<c:if test="${!fn:startsWith(log.logUri, 'http')}">
|
<c:if test="${!fn:startsWith(log.logUri, 'http')}">
|
||||||
<c:set var="logUri" value="http://${log.logUri }"/>
|
<c:set var="logUri" value="http://${log.logUri }"/>
|
||||||
</c:if>
|
</c:if>
|
||||||
<a target="_blank" href='${fns:escapeHtml(logUri)}' data-original-title="${fns:escapeHtml(logUri)}" class="tooltips" data-flag="false" data-html="true" data-placement="top">
|
<a target="_blank" href='${fns:escapeHtml(logUri)}' title="${fns:escapeHtml(logUri)}">
|
||||||
${fns:stringFormat(logUri,30)}
|
${fns:stringFormat(logUri,30)}
|
||||||
</a>
|
</a>
|
||||||
<%-- <c:if test="${fn:startsWith(log.logUri, \"http\")}">${log.logUri }</c:if>
|
<%-- <c:if test="${fn:startsWith(log.logUri, \"http\")}">${log.logUri }</c:if>
|
||||||
<c:if test="${!fn:startsWith(log.logUri, \"http\")}">http://${log.logUri }</c:if>'>http://${log.logUri }</a> --%>
|
<c:if test="${!fn:startsWith(log.logUri, \"http\")}">http://${log.logUri }</c:if>'>http://${log.logUri }</a> --%>
|
||||||
</td>
|
</td>
|
||||||
<td><span data-original-title="${fns:escapeHtml(log.refer)}" class="tooltips" data-flag="false" data-html="true" data-placement="top">${fns:stringFormat(log.refer,30)}</span></td>
|
<td title="${fns:escapeHtml(log.refer)}">${fns:stringFormat(log.refer,30)}</td>
|
||||||
<td>${log.level}</td>
|
<td>${log.level}</td>
|
||||||
<!--0:动态黑名单FD;1:静态配置FD;2:首次分析命中 -->
|
<!--0:动态黑名单FD;1:静态配置FD;2:首次分析命中 -->
|
||||||
<td>
|
<td>
|
||||||
@@ -264,7 +264,7 @@ $(document).ready(function(){
|
|||||||
<c:if test="${log.streamDir==dic.itemCode}"><spring:message code="${dic.itemValue }"/></c:if>
|
<c:if test="${log.streamDir==dic.itemCode}"><spring:message code="${dic.itemValue }"/></c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</td>
|
</td>
|
||||||
<td><span data-original-title="${fns:escapeHtml(log.addrList)}" class="tooltips" data-flag="false" data-html="true" data-placement="top">${fns:stringFormat(log.addrList,30)}</span></td>
|
<td title="${fns:escapeHtml(log.addrList)}">${fns:stringFormat(log.addrList,30)}</td>
|
||||||
<td>${log.serverLocate}</td>
|
<td>${log.serverLocate}</td>
|
||||||
<td>${log.clientLocate}</td>
|
<td>${log.clientLocate}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ $(document).ready(function(){
|
|||||||
<c:if test="${!fn:startsWith(log.url, 'http')}">
|
<c:if test="${!fn:startsWith(log.url, 'http')}">
|
||||||
<c:set var="url" value="http://${log.url }"/>
|
<c:set var="url" value="http://${log.url }"/>
|
||||||
</c:if>
|
</c:if>
|
||||||
<span data-original-title="${fns:escapeHtml(url)}" class="tooltips" data-flag="false" data-html="true" data-placement="top">
|
<span title="${fns:escapeHtml(url)}">
|
||||||
${fns:stringFormat(url,30)}
|
${fns:stringFormat(url,30)}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
@@ -226,13 +226,13 @@ $(document).ready(function(){
|
|||||||
<c:if test="${!fn:startsWith(log.logUri, 'http')}">
|
<c:if test="${!fn:startsWith(log.logUri, 'http')}">
|
||||||
<c:set var="logUri" value="http://${log.logUri }"/>
|
<c:set var="logUri" value="http://${log.logUri }"/>
|
||||||
</c:if>
|
</c:if>
|
||||||
<a target="_blank" href='${fns:escapeHtml(logUri)}' data-original-title="${fns:escapeHtml(logUri)}" class="tooltips" data-flag="false" data-html="true" data-placement="top">
|
<a target="_blank" href='${fns:escapeHtml(logUri)}' title="${fns:escapeHtml(logUri)}">
|
||||||
${fns:stringFormat(logUri,30)}
|
${fns:stringFormat(logUri,30)}
|
||||||
</a>
|
</a>
|
||||||
<%-- <c:if test="${fn:startsWith(log.logUri, \"http\")}">${log.logUri }</c:if>
|
<%-- <c:if test="${fn:startsWith(log.logUri, \"http\")}">${log.logUri }</c:if>
|
||||||
<c:if test="${!fn:startsWith(log.logUri, \"http\")}">http://${log.logUri }</c:if>'>http://${log.logUri }</a> --%>
|
<c:if test="${!fn:startsWith(log.logUri, \"http\")}">http://${log.logUri }</c:if>'>http://${log.logUri }</a> --%>
|
||||||
</td>
|
</td>
|
||||||
<td>${log.refer}</td>
|
<td title="${fns:escapeHtml(log.refer)}">${fns:stringFormat(log.refer,30)}</td>
|
||||||
<td>${log.level}</td>
|
<td>${log.level}</td>
|
||||||
<!--0:动态黑名单FD;1:静态配置FD;2:首次分析命中 -->
|
<!--0:动态黑名单FD;1:静态配置FD;2:首次分析命中 -->
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ $(document).ready(function(){
|
|||||||
|
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
<spring:message code="av_sample_voip_control"/></small>
|
<spring:message code="av_sample_voip_control"/>
|
||||||
<small><spring:message code="date_list"/></small>
|
<small><spring:message code="date_list"/></small>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
@@ -214,19 +214,24 @@ $(document).ready(function(){
|
|||||||
|
|
||||||
<td>${log.duation}</td>
|
<td>${log.duation}</td>
|
||||||
<td>${log.voipProtocol}</td>
|
<td>${log.voipProtocol}</td>
|
||||||
<td>${log.callingAccount}</td>
|
<td title="${fns:escapeHtml(log.callingAccount)}">${fn:substring(log.callingAccount,0,30) }</td>
|
||||||
<td>${log.calledAccount}</td>
|
<td title="${fns:escapeHtml(log.calledAccount)}">${fn:substring(log.calledAccount,0,30) }</td>
|
||||||
<td>${log.callingNumber}</td>
|
<td title="${fns:escapeHtml(log.callingNumber)}">${fn:substring(log.callingNumber,0,30) }</td>
|
||||||
<td>${log.calledNumber}</td>
|
<td title="${fns:escapeHtml(log.calledNumber)}">${fn:substring(log.calledNumber,0,30) }</td>
|
||||||
<td>${log.fromToStoreIp}</td>
|
<td>${log.fromToStoreIp}</td>
|
||||||
<td>${log.fromToStoreUrl}</td>
|
<td title="${fns:escapeHtml(log.fromToStoreUrl)}">${fn:substring(log.fromToStoreUrl,0,30) }</td>
|
||||||
<td>${log.toFromStoreIp}</td>
|
<td>${log.toFromStoreIp}</td>
|
||||||
<td>${log.toFromStoreUrl}</td>
|
<td title="${fns:escapeHtml(log.toFromStoreUrl)}">${fn:substring(log.toFromStoreUrl,0,30) }</td>
|
||||||
<td>${log.pid}</td>
|
<td>${log.pid}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="http://${log.logUri}" data-original-title="http://${log.logUri}" target="_blank"
|
<c:if test="${fn:startsWith(log.logUri, 'http')}">
|
||||||
class="tooltips" data-flag="false" data-html="true" data-placement="top">
|
<c:set var="logUri" value="${log.logUri }"/>
|
||||||
http://${fn:substring(log.logUri,0,20) }
|
</c:if>
|
||||||
|
<c:if test="${!fn:startsWith(log.logUri, 'http')}">
|
||||||
|
<c:set var="logUri" value="http://${log.logUri }"/>
|
||||||
|
</c:if>
|
||||||
|
<a target="_blank" href='${fns:escapeHtml(logUri)}' title="${fns:escapeHtml(logUri)}">
|
||||||
|
${fns:stringFormat(logUri,30)}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td>${log.level}</td>
|
<td>${log.level}</td>
|
||||||
@@ -259,7 +264,7 @@ $(document).ready(function(){
|
|||||||
<c:if test="${log.streamDir==dic.itemCode}"><spring:message code="${dic.itemValue }"/></c:if>
|
<c:if test="${log.streamDir==dic.itemCode}"><spring:message code="${dic.itemValue }"/></c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</td>
|
</td>
|
||||||
<td>${log.addrList}</td>
|
<td title="${fns:escapeHtml(log.addrList)}">${fns:stringFormat(log.addrList,30)}</td>
|
||||||
<td>${log.serverLocate}</td>
|
<td>${log.serverLocate}</td>
|
||||||
<td>${log.clientLocate}</td>
|
<td>${log.clientLocate}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
PPTP<spring:message code="log" />
|
PPTP
|
||||||
<small><spring:message code="date_list" /></small>
|
<small><spring:message code="date_list" /></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
SSL<spring:message code="log" />
|
SSL
|
||||||
<small><spring:message code="date_list" /></small>
|
<small><spring:message code="date_list" /></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
<div class="theme-panel hidden-xs hidden-sm">
|
<div class="theme-panel hidden-xs hidden-sm">
|
||||||
</div>
|
</div>
|
||||||
<h3 class="page-title">
|
<h3 class="page-title">
|
||||||
${logTitle }<spring:message code="log"></spring:message>
|
${logTitle }
|
||||||
<small><spring:message code="date_list"/></small>
|
<small><spring:message code="date_list"/></small>
|
||||||
</h3>
|
</h3>
|
||||||
<h5 class="page-header"></h5>
|
<h5 class="page-header"></h5>
|
||||||
|
|||||||
Reference in New Issue
Block a user