📄 closehomeplayer.jsp
字号:
<%@page contentType="text/html;charset=ISO-8859-15" pageEncoding="ISO-8859-1"%>
<%@ page import="org.homeplayer.*" %>
<jsp:useBean id="hppc" class="org.homeplayer.web.HPPageContext" scope="request">
<jsp:setProperty name="hppc" property="temporaryPage" value="true"/>
<jsp:setProperty name="hppc" property="request" value="<%=request%>"/>
</jsp:useBean>
<%
Runnable terminator = new Runnable() {
public void run() {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
//nothing
}
HomePlayer.quit() ;
}
};
Thread t = new Thread(terminator, "Terminator");
t.start();
String splashimage = hppc.getSkin().getProp( "GoodbyeImage" ) ;
splashimage = splashimage== null ? "/images/goodbye.gif" : hppc.getSkin().getPath()+"/images/"+splashimage ;
if (UseThemAllTool.isUseThemAllActivated()) {
hppc.setRefresh(3, "/UseThemAll/index.html");
}
%>
<!DOCTYPE HTML PUBLIC "-//Freebox//DTD HTML 3.2//EN">
<html>
<head><jsp:include page="/WEB-INF/jsp/head.jsp" /></head>
<body background="ts://127.0.0.1?ox=0&oy=0&ow=1&oh=1">
<center>
<table width=600 cellpadding=0 cellspacing=0 align="center">
<tr>
<td height=100> </td>
</tr>
<tr>
<td height=300 valign=center align=center><img src="<%=splashimage %>"></td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -