logMainDetailAJAX.jsp
2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<%@page import="com.weaver.integration.log.LogInfo"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="weaver.general.Util, com.weaver.integration.datesource.*,com.weaver.integration.log.*" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<%@ page import="weaver.general.Util" %>
<jsp:useBean id="RecordSet" class="weaver.conn.RecordSet" scope="page"/>
<link href="/css/Weaver_wev8.css" type=text/css rel=stylesheet>
<style>
/* ----------------------------------- 表格 ----------------------------------- */
div.tabledata table {
margin-top:10px;
border-collapse:collapse;
border:1px solid #888;
}
div.tabledata th {
padding:5px 0 5px 0;
background-color:#ccc;
border:1px solid #888;
}
div.tabledata td {
vertical-align:text-top;
padding-top:4px;
background-color:#efefef;
border:1px solid #aaa;
}
div.tabledata ul, div.tabledata li {
list-style-type:none;
margin:0;
padding:0;
}
div.tabledata td em{
color:#ff0000;
font-weight:normal;
}
table.dataintable {
font-family:Arial, Helvetica, sans-serif;
margin-top:10px;
margin-left:20px;
margin-right:20px;
margin-bottom:20px;
border-collapse:collapse;
border:1px solid #888;
width:(100%-40px);
}
table.dataintable pre {
width:auto;
margin:0;
padding:0;
border:0;
background-color:transparent;
}
table.dataintable th {
vertical-align:baseline;
padding:5px 15px 5px 5px;
background-color:#ccc;
border:1px solid #888;
text-align:left;
}
table.dataintable td {
vertical-align:text-top;
padding:5px 15px 5px 5px;
background-color:#efefef;
border:1px solid #aaa;
}
table.dataintable p {margin:0 0 2px 0;}
div#maincontent table.dataintable ul, div#maincontent table.dataintable li {
list-style-type:none;
margin:0;
padding:0;
}
table.dataintable td em{
color:#0000ff;
font-weight:normal;
}
table.dataintable .table_value {color:#0F93D2;}
.no_wrap {white-space:nowrap;}
div#maincontent table.dataintable ul.listintable {
margin:20px;
padding:0;
}
div#maincontent table.dataintable ul.listintable li{
list-style-type:disc;
}
.html5_new_note span {
color:blue;
font-weight:bold;
}
tr.notsupported {
color:#999999;
}
</style>
<%
int language=user.getLanguage();
String logid = Util.null2String(request.getParameter("logid"));
//依据日志的id,去查日志里面的内容
LogInfo log=new LogInfo();
out.println(log.PrintHTMLLogInfo(logid,language).toString());
//out.println(log.PrintLogInfo(logid).toString());
String titlename ="";
String needhelp="";
String imagefilename="";
%>