📄 networkplacecontent.jspf
字号:
<%@ page import="com.sslexplorer.security.Constants"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer"%>
<%@ taglib uri="/sslexplorer/taglibs/navigation" prefix="navigation"%>
<%@ taglib uri="/sslexplorer/taglibs/security" prefix="security"%>
<%@ taglib uri="/sslexplorer/taglibs/input" prefix="input"%>
<%@ taglib uri="/sslexplorer/taglibs/tabs" prefix="tabs"%>
<div id="page_networkPlace" class="tabbedForm">
<explorer:form action="/editNetworkPlace.do">
<html:hidden property="referer" />
<html:hidden property="actionTarget" />
<html:hidden property="_charset_" />
<html:hidden property="editing" />
<html:hidden property="resourceId" />
<html:hidden property="selectedTab" />
<tabs:tabSet name="networkPlaceForm" bundle="vfs" resourcePrefix="createNetworkPlace.tab">
<tabs:tabHeadings />
<tabs:tab tabName="details">
<table class="dialog_form_table">
<tbody>
<tr class="formText">
<td class="label">
<div class="required">
<bean:message key="createNetworkPlace.shortName.label" bundle="vfs" />
</div>
</td>
<td class="value">
<logic:equal name="networkPlaceForm" property="resourceName" value="Default">
<html:hidden property="resourceName" />
<html:text tabindex="1" disabled="true" property="resourceName" />
</logic:equal>
<logic:notEqual name="networkPlaceForm" property="resourceName" value="Default">
<html:text tabindex="1" disabled="false" property="resourceName" maxlength="32" />
</logic:notEqual>
</td>
</tr>
<tr class="formTextArea">
<td class="label">
<div class="required">
<bean:message key="createNetworkPlace.description.label" bundle="vfs" />
</div>
</td>
<td class="value">
<html:textarea tabindex="2" property="resourceDescription" cols="25" rows="5" />
</td>
</tr>
<tr class="formCheckbox">
<td class="label">
<bean:message key="editResource.addToFavorites" bundle="policyframework" />
</td>
<td class="value">
<html:checkbox tabindex="3" property="favorite"/>
</td>
</tr>
</tbody>
</table>
</tabs:tab>
<tabs:tab tabName="other">
<table class="dialog_form_table">
<tbody>
<tr class="formText">
<td class="label">
<div class="required">
<bean:message key="createNetworkPlace.uri.label" bundle="vfs" />
</div>
</td>
<td class="value">
<html:text styleId="uri" styleClass="threeQuartersWidth" tabindex="1" disabled="false" property="uri"/>
<input:variables inputId="uri"/>
</td>
</tr>
<tr class="formText">
<td class="label">
<bean:message key="createNetworkPlace.showHidden.label" bundle="vfs" />
</td>
<td class="value">
<logic:equal name="networkPlaceForm" property="showHidden" value="true">
<html:checkbox name="networkPlaceForm" property="showHidden" />
</logic:equal>
<logic:equal name="networkPlaceForm" property="showHidden" value="false">
<html:checkbox name="networkPlaceForm" property="showHidden" />
</logic:equal>
</td>
</tr>
<tr class="formText">
<td class="label">
<bean:message key="createNetworkPlace.readOnly.label" bundle="vfs" />
</td>
<td class="value">
<logic:equal name="networkPlaceForm" property="networkPlaceReadOnly" value="true">
<html:checkbox name="networkPlaceForm" property="networkPlaceReadOnly" />
</logic:equal>
<logic:equal name="networkPlaceForm" property="networkPlaceReadOnly" value="false">
<html:checkbox name="networkPlaceForm" property="networkPlaceReadOnly" />
</logic:equal>
</td>
</tr>
<tr class="formText">
<td class="label">
<bean:message key="createNetworkPlace.allowRecursive.label" bundle="vfs" />
</td>
<td class="value">
<logic:equal name="networkPlaceForm" property="allowResursive" value="true">
<html:checkbox name="networkPlaceForm" property="allowResursive" />
</logic:equal>
<logic:equal name="networkPlaceForm" property="allowResursive" value="false">
<html:checkbox name="networkPlaceForm" property="allowResursive" />
</logic:equal>
</td>
</tr>
<tr class="formText">
<td class="label">
<bean:message key="createNetworkPlace.noDelete.label" bundle="vfs" />
</td>
<td class="value">
<logic:equal name="networkPlaceForm" property="noDelete" value="true">
<html:checkbox name="networkPlaceForm" property="noDelete" />
</logic:equal>
<logic:equal name="networkPlaceForm" property="noDelete" value="false">
<html:checkbox name="networkPlaceForm" property="noDelete" />
</logic:equal>
</td>
</tr>
</tbody>
</table>
</tabs:tab>
<tabs:tab tabName="policies">
<input:multiSelectListBox tabindex="3" sourceTitleKey="policySelection.availablePolicies.title" targetTitleKey="policySelection.selectedPolicies.title" addKey="policySelection.addPolicy" removeKey="policySelection.removePolicy"
allowReordering="true" upKey="policySelection.moveUp" downKey="policySelection.moveDown" bundle="policyframework" styleClass="multiSelect" modelName="networkPlaceForm" modelProperty="policyModel" name="networkPlaceForm" property="selectedPolicies" />
</tabs:tab>
</tabs:tabSet>
<div class="button_bar">
<div class="formButton">
<html:submit styleClass="save" onclick="setActionTarget('commit'); return true">
<bean:message key="createNetworkPlace.commit" bundle="vfs" />
</html:submit>
</div>
<logic:notEmpty name="networkPlaceForm" property="referer">
<div class="formButton">
<html:submit styleClass="cancel" onclick="setActionTarget('cancel'); return true">
<bean:message key="createNetworkPlace.cancel" bundle="vfs" />
</html:submit>
</div>
</logic:notEmpty>
</div>
</explorer:form>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -