<?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui" xmlns:f="http://java.sun.com/jsf/core"> <h:head/> <h:body> <ui:composition template="#{root}/templates/PagesTemplate.xhtml"> <ui:param name="unsavedModifications" value="false"/> <ui:param name="projectName" value="#{currentCockpitBean.projectName}"/> <ui:param name="pagename" value="cockpit"/> <ui:param name="showProjectName" value="true"/> <ui:define name="metaData"> <f:metadata> <f:viewParam name="projectName" value="#{currentCockpitBean.projectName}"/> <f:event type="preRenderView" listener="#{currentCockpitBean.initalize()}" /> </f:metadata> </ui:define> <ui:define name="bundleIncludes"> <f:loadBundle var="localizedCockpitPageMessages" basename="lang.CockpitPage"/> </ui:define> <ui:define name="cssIncludes"> <link rel="stylesheet" type="text/css" href="#{root}/css/CockpitPage.css" /> </ui:define> <!-- Those are the menu bar entries left from the help-submenu. --> <ui:define name="furtherMenuBarEntries"> <p:submenu label="#{localizedMessages.file}"> <p:menuitem styleClass="element-with-whitespace" icon="ui-icon-reload" value=" #{localizedMessages.reloadProject}" ajax="false" url="cockpit?projectName=#{currentCockpitBean.projectName}" disabled="#{empty currentCockpitBean.project}" /> <p:separator/> <p:menuitem styleClass="element-with-whitespace" icon="ui-icon-settings" value=" #{localizedMessages.settings}" onclick="settingsDlg.show()" ajax="true"/> <p:separator /> <p:menuitem styleClass="element-with-whitespace" icon="ui-icon-close" value=" #{localizedMessages.closeProject}" action="ProjectOverviewPage.xhtml?faces-redirect=true" ajax="false"/> </p:submenu> </ui:define> <ui:define name="centerLayout"> <p:layoutUnit position="center"> <h:form id="centerForm"> <p:dashboard disabled="true" id="dynamicDashboard" binding="#{currentCockpitBean.dashboard}"/> </h:form> </p:layoutUnit> </ui:define> <ui:define name="furtherLayoutUnits"> <p:layoutUnit position="west" size="300" header="Views" resizable="true" collapsible="true"> <h:form id="viewForm"> <p:dataList value="#{currentCockpitBean.project.views}" var="currView"> <p:commandLink style="#{currView == currentCockpitBean.activeView ? 'font-weight:bold' : ''}" value="#{currView.name}" action="#{currentCockpitBean.setActiveView(currView)}" id="viewLink" update=":viewForm"/> <p:tooltip for="viewLink"> <b><h:outputText value="#{currView.name}"/></b> <br/> <h:outputText value="#{currView.description}" rendered="#{not empty currView.description}"/> <h:outputText value="No description available." rendered="#{empty currView.description}"/> <br/><br/> <b><h:outputText value="Displays"/></b> <p:dataList value="#{currView.displayConnectors}" var="connector"> #{connector.getName()} </p:dataList> </p:tooltip> </p:dataList> </h:form> </p:layoutUnit> <p:layoutUnit position="east" size="200" header="#{localizedMessages.state}" resizable="true" collapsible="true"> <div align="center"> <h:form id="ledsForm"> <h:panelGrid columns="2" cellpadding="15"> <h:graphicImage url="#{currentCockpitBean.isAnalysisNotAvailable() ? '../img/LEDs/Icon_LED_Red.png' : '../img/LEDs/Icon_LED_Gray.png'}" height="50px"/> <h:outputText value="#{localizedMessages.stateNA}"/> <h:graphicImage url="#{currentCockpitBean.isAnalysisReady() ? '../img/LEDs/Icon_LED_Yellow.png' : '../img/LEDs/Icon_LED_Gray.png'}" height="50px"/> <h:outputText value="#{localizedMessages.stateReady}"/> <h:graphicImage url="#{currentCockpitBean.isAnalysisRunning() ? '../img/LEDs/Icon_LED_Green.png' : '../img/LEDs/Icon_LED_Gray.png'}" height="50px"/> <h:outputText value="#{localizedMessages.stateRunning}"/> <h:graphicImage url="#{currentCockpitBean.isAnalysisTerminating() ? '../img/LEDs/Icon_LED_Yellow.png' : '../img/LEDs/Icon_LED_Gray.png'}" height="50px"/> <h:outputText value="#{localizedMessages.stateTerminating}"/> <h:graphicImage url="#{currentCockpitBean.isAnalysisTerminated() ? '../img/LEDs/Icon_LED_Red.png' : '../img/LEDs/Icon_LED_Gray.png'}" height="50px"/> <h:outputText value="#{localizedMessages.stateTerminated}"/> <h:graphicImage url="#{currentCockpitBean.isAnalysisFailed() ? '../img/LEDs/Icon_LED_Red.png' : '../img/LEDs/Icon_LED_Gray.png'}" height="50px"/> <h:outputText value="#{localizedMessages.stateFailed}"/> </h:panelGrid> </h:form> <h:form> <p:poll interval="1" listener="#{currentCockpitBean.updateDisplaysOfActiveView()}" update=":centerForm :ledsForm"/> </h:form> </div> </p:layoutUnit> </ui:define> </ui:composition> </h:body> </html>