comparison src/main/webapp/admin/admin.xhtml @ 60:4ec8d4cfad26 remove_escidoc

remove old PubMan/escidoc code.
author casties
date Mon, 30 Nov 2015 15:38:09 +0100
parents 764f47286679
children
comparison
equal deleted inserted replaced
59:403afc3d94eb 60:4ec8d4cfad26
24 style="margin-left: auto; margin-right: auto; text-align: center; width: 400px"> 24 style="margin-left: auto; margin-right: auto; text-align: center; width: 400px">
25 <h:commandButton value="Create User" 25 <h:commandButton value="Create User"
26 actionListener="#{adminBean.actionCreateUser}" /> 26 actionListener="#{adminBean.actionCreateUser}" />
27 <h:commandButton value="Show all users" 27 <h:commandButton value="Show all users"
28 actionListener="#{adminBean.actionGetAllUsers}" /> 28 actionListener="#{adminBean.actionGetAllUsers}" />
29 <h:commandButton value="Open ESciDoc Panel Control"
30 actionListener="#{adminBean.listenerOpenESciDocPanelControl}" />
31 </h:panelGrid> 29 </h:panelGrid>
32 30
33 <h:panelGrid columns="2" 31 <h:panelGrid columns="2"
34 rendered="#{adminBean.user != null}" 32 rendered="#{adminBean.user != null}"
35 styleClass="createPanel" 33 styleClass="createPanel"
103 onclick="#{ApplicationBean1.JSConfirmationDelete}" /> 101 onclick="#{ApplicationBean1.JSConfirmationDelete}" />
104 </h:column> 102 </h:column>
105 103
106 </rich:dataTable> 104 </rich:dataTable>
107 105
108 <!-- Attribute Editor -->
109 <h:panelGroup rendered="#{adminBean.showESciDocPanelControl}">
110 <div style="z-index: 100;" class="rf-pp-shade">
111 <button class="rf-pp-btn" tabindex="-1" accesskey="" />
112 </div>
113
114 <h:panelGrid columns="1" class="rf-pp-cntr"
115 style="height: 100px; left: 100px; position: fixed; top: 50px; width: 500px; z-index: 100;">
116
117 <div class="rf-pp-shdw"
118 style="height: 100px; left: 100px; left: 5px; top: 5px; bottom: -5px; opacity: 0.1;">
119 </div>
120 <div class="rf-pp-hdr " style="cursor: default;">
121 <div class="rf-pp-hdr-cnt">ESciDoc Panel Control</div>
122 </div>
123
124 <h:panelGrid columns="1" class="rf-pp-cnt-scrlr"
125 style="width: 500px; height: 329px;">
126 <h:panelGrid columns="1" class="rf-pp-cnt">
127 <h:panelGrid columns="2">
128 <h:outputLabel value="Last sychronization:" />
129 <h:outputLabel
130 value="#{ApplicationBean1.refCache.lastSynchronization}" />
131
132 <h:outputLabel value="Loading time [ms]:" />
133 <h:outputLabel
134 value="#{ApplicationBean1.refCache.lastSynchronizationTimeExec}" />
135
136 <h:outputLabel value="Server Status" />
137 <h:outputLabel
138 value="#{ApplicationBean1.refCache.serverStatus}" />
139
140 <h:outputLabel value="Items size" />
141 <h:outputLabel value="#{ApplicationBean1.refCache.itemsSize}" />
142
143 <h:outputLabel value="Max records used for last sychronization" />
144 <h:outputLabel
145 value="#{ApplicationBean1.refCache.lastSynchronizationMaxRecords}" />
146
147 <h:outputLabel value="Sychronize with Server" />
148 <h:panelGrid columns="3">
149
150 <h:selectOneMenu
151 value="#{ApplicationBean1.refCache.maxRecords}">
152 <f:selectItem itemLabel="50" itemValue="50" />
153 <f:selectItem itemLabel="100" itemValue="100" />
154 <f:selectItem itemLabel="1000" itemValue="1000" />
155 <f:selectItem itemLabel="5000" itemValue="5000" />
156 <f:selectItem itemLabel="10000" itemValue="10000" />
157 </h:selectOneMenu>
158
159 <h:commandButton value="submit"
160 actionListener="#{ApplicationBean1.refCache.listenerSynchronizeWithServer}" />
161
162 </h:panelGrid>
163
164 <h:commandButton value="Close"
165 actionListener="#{adminBean.listenerCloseESciDocPanelControl}" />
166 </h:panelGrid>
167 </h:panelGrid>
168 </h:panelGrid>
169 </h:panelGrid>
170
171 </h:panelGroup>
172
173 </h:panelGrid> 106 </h:panelGrid>
174 107
175 </ui:define> 108 </ui:define>
176 </ui:composition> 109 </ui:composition>
177 </body> 110 </body>