📄 subscription.jsp
字号:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="a" uri="/WEB-INF/app.tld" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
<%@ taglib prefix="s" uri="http://struts.apache.org/tags-faces" %>
<%--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--%>
<%-- FIXME <a:checkLogon/> --%>
<f:view>
<s:loadMessages var="messages"/>
<s:html locale="true">
<head>
<title><c:choose>
<c:when test="${subscriptionForm.action == 'Create'}">
<s:message id="titleCreate"
key="subscription.title.create"/>
</c:when>
<c:when test="${subscriptionForm.action == 'Delete'}">
<s:message id="titleDelete"
key="subscription.title.delete"/>
</c:when>
<c:when test="${subscriptionForm.action == 'Edit'}">
<s:message id="titleEdit"
key="subscription.title.edit"/>
</c:when>
<c:otherwise>
UNKNOWN ACTION
</c:otherwise>
</c:choose></title>
<s:base/>
<s:stylesheet path="/stylesheet.css"/>
</head>
<body bgcolor="white">
<s:errors/>
<s:form action="/saveSubscription"
focus="host"
styleClass="form">
<h:inputHidden id="action"
value="#{subscriptionForm.action}"/>
<h:panelGrid columns="2"
styleClass="grid"
headerClass="grid header"
columnClasses="grid column0,grid column1">
<%-- Grid header element --%>
<f:facet name="header">
<h:panelGroup>
<c:choose>
<c:when test="${subscriptionForm.action == 'Create'}">
<s:message id="headerCreate" key="subscription.title.create"/>
</c:when>
<c:when test="${subscriptionForm.action == 'Delete'}">
<s:message id="headerDelete" key="subscription.title.delete"/>
</c:when>
<c:when test="${subscriptionForm.action == 'Edit'}">
<s:message id="headerEdit" key="subscription.title.edit"/>
</c:when>
<c:otherwise>
<h:outputText
id="headerUnknown"
value="UNKNOWN ACTION"/>
</c:otherwise>
</c:choose>
</h:panelGroup>
</f:facet>
<%-- Grid data elements --%>
<h:outputLabel for="user"
styleClass="label">
<s:message key="prompt.username"/>
</h:outputLabel>
<h:outputText id="user"
styleClass="value"
value="#{user.username}"/>
<h:outputLabel for="host"
styleClass="label">
<s:message key="prompt.mailHostname"/>
</h:outputLabel>
<c:choose>
<c:when test="${subscriptionForm.action == 'Create'}">
<h:inputText id="host" size="50"
styleClass="field"
value="#{subscriptionForm.host}"/>
</c:when>
<c:otherwise>
<h:panelGroup id="hostGroup">
<h:outputText
id="hostDisplay"
styleClass="value"
value="#{subscriptionForm.host}"/>
<h:inputHidden
id="host"
value="#{subscriptionForm.host}"/>
</h:panelGroup>
</c:otherwise>
</c:choose>
<h:outputLabel for="username"
styleClass="label">
<s:message key="prompt.mailUsername"/>
</h:outputLabel>
<h:inputText id="username"
size="50"
styleClass="field"
value="#{subscriptionForm.username}"/>
<h:outputLabel for="password"
styleClass="label">
<s:message key="prompt.mailPassword"/>
</h:outputLabel>
<h:inputText id="password"
size="50"
styleClass="field"
value="#{subscriptionForm.password}"/>
<h:outputLabel for="type"
styleClass="label">
<s:message key="prompt.mailServerType"/>
</h:outputLabel>
<h:selectOneMenu id="type"
styleClass="field"
value="#{subscriptionForm.type}">
<f:selectItem
itemValue="imap"
itemLabel="IMAP Protocol"/>
<f:selectItem
itemValue="pop3"
itemLabel="POP3 Protocol"/>
</h:selectOneMenu>
<h:outputLabel for="autoConnect"
styleClass="label">
<s:message key="prompt.autoConnect"/>
</h:outputLabel>
<h:selectBooleanCheckbox
id="autoConnect"
styleClass="field"
value="#{subscriptionForm.autoConnect}"/>
<c:choose>
<c:when test="${subscriptionForm.action == 'Delete'}">
<h:commandButton
id="confirm"
type="SUBMIT"
styleClass="submit"
value="#{messages['button.confirm']}"/>
</c:when>
<c:otherwise>
<h:commandButton
id="save"
type="SUBMIT"
styleClass="submit"
value="#{messages['button.save']}"/>
</c:otherwise>
</c:choose>
<h:panelGroup id="reset_and_cancel">
<h:commandButton id="reset"
type="RESET"
styleClass="reset"
value="#{messages['button.reset']}"/>
<h:commandButton id="cancel"
type="SUBMIT"
styleClass="cancel"
onclick="bCancel=true;"
value="#{messages['button.cancel']}"/>
</h:panelGroup>
</h:panelGrid>
</s:form>
</body>
</s:html>
</f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -