MigrationReport.jsp
5.04 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="java.io.File" %>
<%@ page import="weaver.general.GCONST" %>
<%@ page import="weaver.upgradetool.dbupgrade.upgrade.PropUtil" %>
<%@ page import="com.alibaba.fastjson.JSONObject" %>
<%@ page import="weaver.upgradetool.dbupgrade.upgrade.ToolUtil" %>
<%@ page import="java.util.LinkedHashMap" %>
<%@ page import="weaver.upgradetool.dbupgrade.upgrade.DBUpgradeProcess" %>
<%@ page import="weaver.upgradetool.dbupgrade.actions.upgrade.ReportAction" %>
<%@ include file="/system/upgradetoe9/DBUpgradeInit.jsp"%>
<html>
<%
%>
<script type="text/javascript" src="/system/upgradetoe9/js/jquery-1.8.3.min_wev8.js"></script>
<link rel="stylesheet" href="/system/upgradetoe9/css/seachBody_wev8.css" type="text/css" />
<head>
<title> E-cology迁移程序</title>
<style>
TABLE {
FONT-SIZE: 9pt;
FONT-FAMILY: Verdana;
}
BODY {
FONT-SIZE: 9pt;
MARGIN: 0px;
FONT-FAMILY: Verdana;
LIST-STYLE-TYPE: circle;
}
input,select,textarea{
/*border:#e7e7e7 1px solid;*/
vertical-align:middle;
}
input,select{
line-height:24px;
height:24px;
}
table input{
border: 1px solid #ccc!important;
border-radius: 3px;/* !*css3属性IE不支持*!*/
padding: 6px 0px 5px 10px;
}
.progressbar{
width: 98%;
/* margin-left: 10%;*/
border-radius: 7px;
border: 1px solid #008000;
float: left;
-webkit-box-shadow: 3px 3px 3px #ADADAD;
-moz-box-shadow: 3px 3px 3px #ADADAD;
box-shadow: 3px 3px 3px #ADADAD;
}
.btn-primary{
height: 25%;
text-decoration:none;
background:#337AB7;
color:#f2f2f2;
padding: 0 20px 0 20px;
font-size:14px;
font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
/*font-weight:bold;*/
border-radius:5px;
-webkit-transition:all linear 0.10s;
-moz-transition:all linear 0.10s;
transition:all linear 0.10s;
}
.btn-primary:hover{
background:#286090;
}
.btn-success{
height: 25%;
text-decoration:none;
background:#5CB85C;
color:#f2f2f2;
padding: 0 20px 0 20px;
font-size:14px;
font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
/*font-weight:bold;*/
border-radius:5px;
}
.btn-success:hover{
background:#b8b1b6;
}
.btn-success-disabled:hover{
background:#5CB85C;
}
.btn-success-disabled{
height: 25%;
text-decoration:none;
background: #b8b1b6;
color:#f2f2f2;
padding: 0 20px 0 20px;
font-size:14px;
font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
/*font-weight:bold;*/
border-radius:5px;
}
.e8_btn_disabled{
border:0px;cursor:pointer;
padding-left:0;
padding-left:10px;
padding-right:10px;
height:30px;
line-height:30px;
background-color:#959595;
color:white;
width:auto;
}
.e8_btn_submit{
border:0px;cursor:pointer;
padding-left:0;
padding-left:10px;
padding-right:10px;
height:30px;
line-height:30px;
background-color:#558ED5;
color:white;
width:auto;
}
.e8_btn_submit_hover{
background-color:#0170C1 !important;
color:white;
}
.migrationIframe{
height: 98%;
width:98%;
border:0px;
padding-left:1%;
border-top:0px solid #DADADA;
}
</style>
</head>
<%
String titlename = "";
String currentProcess="获得迁移报告";
%>
<jsp:include page="/system/upgradetoe9/CommonTabHead.jsp">
<jsp:param name="mouldID" value="upgrade"/>
<jsp:param name="step" value="<%=currentStep%>"/>
<jsp:param name="navName" value="数据库迁移工具"/>
</jsp:include>
<table id="topTitle" cellpadding="0" cellspacing="0">
<tr>
<td></td>
<td class="rightSearchSpan" style="text-align:right; width:500px!important">
<button style="margin-right:10px;" id="next" type="button" name="next" onclick="next()" class="e8_btn_submit">下一步</button>
</td>
</tr>
</table>
<body style="height:100%;width:100%;">
<div style="width:20%;height:100%;float:left;background:#fcfcfc;">
<jsp:include page="MigrationStep.jsp"></jsp:include>
</div>
<div style="width:80%;height:100%;float:right">
<iframe src="ReportTable.jsp" class="migrationIframe"></iframe>
</div>
</body>
</html>