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: " />
|
---|
26 | <ice:inputText id="client.name" value="#{baum.selectedNode.clientItem.name}" />
|
---|
27 | <ice:outputLabel for="client.address" value="Address: " />
|
---|
28 | <ice:inputText id="client.address" value="#{baum.selectedNode.clientItem.address}" />
|
---|
29 | <ice:outputLabel for="client.fdPort" value="FDPort: " />
|
---|
30 | <ice:inputText id="client.fdPort" value="#{baum.selectedNode.clientItem.fdPort}" />
|
---|
31 | <ice:outputLabel for="client.catalog" value="Catalog: " />
|
---|
32 | <ice:inputText id="client.catalog" value="#{baum.selectedNode.clientItem.catalog}" />
|
---|
33 | <ice:outputLabel for="client.password" value="Password: " />
|
---|
34 | <ice:inputText id="client.password" value="#{baum.selectedNode.clientItem.password}" />
|
---|
35 | <ice:outputLabel for="client.fileRetention" value="FileRetention: " />
|
---|
36 | <ice:inputText id="client.fileRetention" value="#{baum.selectedNode.clientItem.fileRetention}" />
|
---|
37 | <ice:outputLabel for="client.jobRetention" value="JobRetention: " />
|
---|
38 | <ice:inputText id="client.jobRetention" value="#{baum.selectedNode.clientItem.jobRetention}" />
|
---|
39 | <ice:outputLabel for="client.autoPrune" value="AutoPrune: " />
|
---|
40 | <ice:inputText id="client.autoPrune" value="#{baum.selectedNode.clientItem.autoPrune}" />
|
---|
41 | <ice:outputLabel for="client.maximumConcurrentJobs" value="MaximumConcurrentJobs: " />
|
---|
42 | <ice:inputText id="client.maximumConcurrentJobs" value="#{baum.selectedNode.clientItem.maximumConcurrentJobs}" />
|
---|
43 | <ice:outputLabel for="client.priority" value="Priority: " />
|
---|
44 | <ice:inputText id="client.priority" value="#{baum.selectedNode,clientItem.priority}" />
|
---|
45 | </ice:form>
|
---|
46 | </ice:panelGrid>
|
---|
47 | </ice:panelGroup>
|
---|
48 | </body>
|
---|
49 | </html>
|
---|
50 | </f:view>
|
---|
51 | </jsp:root> |
---|