import-export-selection.jsp

来自「基于Jabber协议的即时消息服务器」· JSP 代码 · 共 36 行

JSP
36
字号
<%@ page import="org.jivesoftware.wildfire.plugin.ImportExportPlugin,                 org.jivesoftware.wildfire.XMPPServer"%><html>    <head>        <title>Import/Export Selection</title>        <meta name="pageID" content="import-export-selection"/>    </head>    <body><jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" /><%    ImportExportPlugin plugin = (ImportExportPlugin) XMPPServer.getInstance().getPluginManager().getPlugin("userimportexport");%><p><% if (plugin.isUserProviderReadOnly()) { %>    Sorry, because you are using LDAP as your user store, this plugin will not work with your Wildfire installation.<% } else { %>The import and export functions allow you to read data into and write userdata from your Wildfire installation.<ul>    <li><a href="import-user-data.jsp">Import User Data</a></li>    <li><a href="export-user-data.jsp">Export User Data</a></li>    </ul><% } %></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?