[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="storage" style="visibility:visible">
|
---|
| 17 | <ice:panelGrid columns="2">
|
---|
| 18 | <ice:form>
|
---|
| 19 | <ice:outputLabel for="storage.name" value="Name: " />
|
---|
| 20 | <ice:inputText id="storage.name" value="#{baum.selectedNode.storageItem.name}" />
|
---|
| 21 |
|
---|
| 22 | <ice:outputLabel for="storage.address" value="Address: " />
|
---|
| 23 | <ice:inputText id="storage.address" value="#{baum.selectedNode.storageItem.address}" />
|
---|
| 24 |
|
---|
| 25 | <ice:outputLabel for="storage.sdPort" value="SDPort: " />
|
---|
| 26 | <ice:inputText id="storage.sdPort" value="#{baum.selectedNode.storageItem.sdPort}" />
|
---|
| 27 |
|
---|
| 28 | <ice:outputLabel for="storage.password" value="Password: " />
|
---|
| 29 | <ice:inputText id="storage.password" value="#{baum.selectedNode.storageItem.password}" />
|
---|
| 30 |
|
---|
| 31 | <ice:outputLabel for="storage.device" value="Device: " />
|
---|
| 32 | <ice:inputText id="storage.device" value="#{baum.selectedNode.storageItem.device}" />
|
---|
| 33 |
|
---|
| 34 | <ice:outputLabel for="storage.mediaType" value="Media Type: " />
|
---|
| 35 | <ice:inputText id="storage.mediaType" value="#{baum.selectedNode.storageItem.mediaType}" />
|
---|
| 36 |
|
---|
| 37 | <ice:outputLabel for="storage.autochanger" value="Autochanger: " />
|
---|
| 38 | <ice:inputText id="storage.autochanger" value="#{baum.selectedNode.storageItem.autochanger}" />
|
---|
| 39 |
|
---|
| 40 | <ice:outputLabel for="storage.maximumConcurrentJobs" value="Maximum Current Jobs: " />
|
---|
| 41 | <ice:inputText id="storage.maximumConcurrentJobs" value="#{baum.selectedNode.storageItem.concurrentJobs}" />
|
---|
| 42 |
|
---|
| 43 | <ice:outputLabel for="storage.allowCompression" value="Allow Compression: " />
|
---|
| 44 | <ice:inputText id="storage.allowCompression" value="#{baum.selectedNode.storageItem.allowCompression}" />
|
---|
| 45 |
|
---|
| 46 | <ice:outputLabel for="storage.heartbeatInterval" value="Heartbeat Interval: " />
|
---|
| 47 | <ice:inputText id="storage.heartbeatInterval" value="#{baum.selectedNode.storageItem.heartbeatInterval}" />
|
---|
| 48 | </ice:form>
|
---|
| 49 | </ice:panelGrid>
|
---|
| 50 | </ice:panelGroup>
|
---|
| 51 |
|
---|
| 52 | </body>
|
---|
| 53 | </html>
|
---|
| 54 | </f:view>
|
---|
| 55 | </jsp:root> |
---|