[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 | <ice:panelGroup id="Schedule" style="visibility:visible">
|
---|
| 17 | <ice:panelGrid coulumns="2">
|
---|
| 18 | <ice:form>
|
---|
| 19 | <ice:outputLabel for="sdStorage.name" value="Name: " />
|
---|
| 20 | <ice:inputText id="sdStorage.name" value="#{baum.selectedNode.sdStorageItem.name}" />
|
---|
| 21 |
|
---|
| 22 | <ice:outputLabel for="sdStorage.workingDirectory" value="WorkingDirectory: " />
|
---|
| 23 | <ice:inputText id="sdStorage.workingDirectory" value="#{baum.selectedNode.sdStorageItem,workingDirectory}" />
|
---|
| 24 |
|
---|
| 25 | <ice:outputLabel for="sdStorage.pidDirectory" value="PidDirectory: " />
|
---|
| 26 | <ice:inputText id="sdStorage.pidDirectory" value="#{baum.selectedNode.sdStorageItem.pidDirectory}" />
|
---|
| 27 |
|
---|
| 28 | <ice:outputLabel for="sdStorage.heartbeatInterval" value="HeartbeatInterval: " />
|
---|
| 29 | <ice:inputText id="sdStorage.heartbeatInterval" value="#{baum.selectedNode.sdStorageItem.heartbeatInterval}$" />
|
---|
| 30 |
|
---|
| 31 | <ice:outputLabel for="sdStorage.clientConnectWait" value="ClientConnectWait: " />
|
---|
| 32 | <ice:inputText id="sdStorage.clientConnectWait" value="#{baum.selectedNode.sdStorageItem.clientConnectWait}$" />
|
---|
| 33 |
|
---|
| 34 | <ice:outputLabel for="sdStorage.maximumConcurrentJobs" value="MaximumConcurrentJobs: " />
|
---|
| 35 | <ice:inputText id="sdStorage.maximumConcurrentJobs" value="#{baum.selectedNode.sdStorageItem.maximumConcurrentJobs}$" />
|
---|
| 36 |
|
---|
| 37 | <ice:outputLabel for="sdStorage.sdAddresses" value="SdAddresses: " />
|
---|
| 38 | <ice:inputText id="sdStorage.sdAddresses" value="#{baum.selectedNode.sdStorageItem.sdAddresses}$" />
|
---|
| 39 |
|
---|
| 40 | <ice:outputLabel for="sdStorage.sdPort" value="SdPort: " />
|
---|
| 41 | <ice:inputText id="sdStorage.sdPort" value="#{baum.selectedNode.sdStorageItem.sdPort}" />
|
---|
| 42 |
|
---|
| 43 | <ice:outputLabel for="sdStorage.sdAddress" value="SdAddress: " />
|
---|
| 44 | <ice:inputText id="sdStorage.sdAddress" value="#{baum.selectedNode.sdStorageItem.sdAddress}" />
|
---|
| 45 | </ice:form>
|
---|
| 46 | </ice:panelGrid>
|
---|
| 47 | </ice:panelGroup>
|
---|
| 48 | </body>
|
---|
| 49 | </html>
|
---|
| 50 | </f:view>
|
---|
| 51 | </jsp:root>
|
---|