svn.jsp 954 B

12345678910111213141516171819202122232425
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  6. %>
  7. <!DOCTYPE html>
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  12. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  13. <script type="text/javascript">
  14. function fn(){
  15. window.open("http://218.17.158.219:8086/svnwebclient/logout.jsp", "svn版本管理", "Status=yes,scrollbars=yes,resizable=yes,width=" + (screen.availWidth - 10) + ",height=" + (screen.availHeight - 50) + ",top=0,left=0");
  16. setTimeout("close()",300);
  17. }
  18. function close(){
  19. parent.Ext.getCmp('2803').close();
  20. }
  21. </script>
  22. </head>
  23. <body onload="fn()">
  24. </body>
  25. </html>