[832] | 1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
| 2 | <jsp:root version="1.2"
|
---|
| 3 | xmlns:jsp="http://java.sun.com/JSP/Page"
|
---|
| 4 | xmlns:f="http://java.sun.com/jsf/core"
|
---|
| 5 | xmlns:h="http://java.sun.com/jsf/html"
|
---|
| 6 | xmlns:ice="http://www.icesoft.com/icefaces/component">
|
---|
| 7 | <jsp:directive.page contentType="text/html;charset=utf-8" />
|
---|
| 8 | <f:view>
|
---|
| 9 | <ice:outputDeclaration doctypeRoot="HTML" doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN" doctypeSystem="http://www.w3.org/TR/html4/loose.dtd"/>
|
---|
| 10 | <html>
|
---|
| 11 | <head>
|
---|
| 12 | <title><ice:outputText value="ICEfaces, Ajax for Java EE" /></title>
|
---|
| 13 | <ice:outputStyle href="./xmlhttp/css/rime/rime.css" />
|
---|
| 14 | </head>
|
---|
| 15 | <body>
|
---|
| 16 |
|
---|
| 17 | <ice:outputText value="Thank you for using ICEfaces." />
|
---|
| 18 | <ice:form>
|
---|
| 19 | <ice:messages />
|
---|
| 20 |
|
---|
| 21 | </ice:form>
|
---|
| 22 | <ice:panelGroup id="client" style="visibility:visible">
|
---|
| 23 | <ice:panelGrid columns="2">
|
---|
| 24 | <ice:form>
|
---|
| 25 | <ice:outputLabel for="client.name" value="Name: " />
|
---|
[848] | 26 | <ice:inputText id="client.name" value="#{configurationBean.selectedNode.userObject.name}" />
|
---|
[832] | 27 | <ice:outputLabel for="client.address" value="Address: " />
|
---|
[848] | 28 | <ice:inputText id="client.address" value="#{configurationBean.selectedNode.userObject.address}" />
|
---|
[832] | 29 | <ice:outputLabel for="client.fdPort" value="FDPort: " />
|
---|
[848] | 30 | <ice:inputText id="client.fdPort" value="#{configurationBean.selectedNode.userObject.FDPort}" />
|
---|
[832] | 31 | <ice:outputLabel for="client.catalog" value="Catalog: " />
|
---|
[848] | 32 | <ice:inputText id="client.catalog" value="#{configurationBean.selectedNode.userObject.catalog}" />
|
---|
[832] | 33 | <ice:outputLabel for="client.password" value="Password: " />
|
---|
[848] | 34 | <ice:inputText id="client.password" value="#{configurationBean.selectedNode.userObject.password}" />
|
---|
[832] | 35 | <ice:outputLabel for="client.fileRetention" value="FileRetention: " />
|
---|
[848] | 36 | <ice:inputText id="client.fileRetention" value="#{configurationBean.selectedNode.userObject.fileRetention}" />
|
---|
[832] | 37 | <ice:outputLabel for="client.jobRetention" value="JobRetention: " />
|
---|
[848] | 38 | <ice:inputText id="client.jobRetention" value="#{configurationBean.selectedNode.userObject.jobRetention}" />
|
---|
[832] | 39 | <ice:outputLabel for="client.autoPrune" value="AutoPrune: " />
|
---|
[848] | 40 | <ice:inputText id="client.autoPrune" value="#{configurationBean.selectedNode.userObject.autoPrune}" />
|
---|
[832] | 41 | <ice:outputLabel for="client.maximumConcurrentJobs" value="MaximumConcurrentJobs: " />
|
---|
[848] | 42 | <ice:inputText id="client.maximumConcurrentJobs" value="#{configurationBean.selectedNode.userObject.maximumConcurrentJobs}" />
|
---|
[832] | 43 | <ice:outputLabel for="client.priority" value="Priority: " />
|
---|
[848] | 44 | <ice:inputText id="client.priority" value="#{configurationBean.selectedNode.userObject.priority}" />
|
---|
[832] | 45 | </ice:form>
|
---|
| 46 | </ice:panelGrid>
|
---|
| 47 | </ice:panelGroup>
|
---|
| 48 | </body>
|
---|
| 49 | </html>
|
---|
| 50 | </f:view>
|
---|
| 51 | </jsp:root> |
---|