From 09bfb83237b04ac8bedcb818ad126e4ccd6f4941 Mon Sep 17 00:00:00 2001 From: Nils Christian Ehmke <nie@informatik.uni-kiel.de> Date: Fri, 19 Oct 2012 00:29:01 +0200 Subject: [PATCH] #680 --- Kieker.WebGUI/bin/Kieker.WebGUI.bat | 2 +- Kieker.WebGUI/bin/Kieker.WebGUI.sh | 2 +- Kieker.WebGUI/nb-configuration.xml | 7 +++--- Kieker.WebGUI/nbactions.xml | 1 - Kieker.WebGUI/pom.xml | 1 + .../application/GlobalPropertiesBean.java | 3 ++- .../session/CurrentConfigurationBean.java | 3 ++- .../kieker/webgui/beans/session/UserBean.java | 4 +++- .../view/CurrentAnalysisEditorGraphBean.java | 6 ++--- .../src/main/webapp/AnalysisEditorPage.xhtml | 12 +++++----- .../src/main/webapp/CockpitEditorPage.xhtml | 6 ++--- .../src/main/webapp/CockpitPage.xhtml | 6 ++--- .../src/main/webapp/ControllerPage.xhtml | 22 +++++++++---------- Kieker.WebGUI/src/main/webapp/LoginPage.xhtml | 6 ++--- .../src/main/webapp/ProjectOverviewPage.xhtml | 6 ++--- .../src/main/webapp/WEB-INF/faces-config.xml | 12 +++++----- .../src/main/webapp/WEB-INF/pretty-config.xml | 14 ++++++------ Kieker.WebGUI/src/main/webapp/WEB-INF/web.xml | 4 ++-- .../src/main/webapp/dialogs/AboutDialog.xhtml | 2 +- 19 files changed, 62 insertions(+), 57 deletions(-) diff --git a/Kieker.WebGUI/bin/Kieker.WebGUI.bat b/Kieker.WebGUI/bin/Kieker.WebGUI.bat index 38e5062f..43f71488 100644 --- a/Kieker.WebGUI/bin/Kieker.WebGUI.bat +++ b/Kieker.WebGUI/bin/Kieker.WebGUI.bat @@ -1,6 +1,6 @@ @echo off REM @author Nils Christian Ehmke -java -jar ..\lib\jetty-runner-*.jar ..\target\Kieker.WebGUI-*.war +java -jar ..\lib\jetty-runner-*.jar --path /Kieker.WebGUI ..\target\Kieker.WebGUI-*.war @echo on \ No newline at end of file diff --git a/Kieker.WebGUI/bin/Kieker.WebGUI.sh b/Kieker.WebGUI/bin/Kieker.WebGUI.sh index 7bc0a824..82a5cab6 100644 --- a/Kieker.WebGUI/bin/Kieker.WebGUI.sh +++ b/Kieker.WebGUI/bin/Kieker.WebGUI.sh @@ -2,4 +2,4 @@ # @author Nils Christian Ehmke -java -jar ../lib/jetty-runner-*.jar ../target/Kieker.WebGUI-*.war \ No newline at end of file +java -jar ../lib/jetty-runner-*.jar --path /Kieker.WebGUI ../target/Kieker.WebGUI-*.war \ No newline at end of file diff --git a/Kieker.WebGUI/nb-configuration.xml b/Kieker.WebGUI/nb-configuration.xml index b8e9f278..3e1840f8 100644 --- a/Kieker.WebGUI/nb-configuration.xml +++ b/Kieker.WebGUI/nb-configuration.xml @@ -6,6 +6,9 @@ The configuration is intended to be shared among all the users of project and therefore it is assumed to be part of version control checkout. Without this configuration present, some functionality in the IDE may be limited or fail altogether. --> + <spellchecker-wordlist xmlns="http://www.netbeans.org/ns/spellchecker-wordlist/1"> + <word>xml</word> + </spellchecker-wordlist> <properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1"> <!-- Properties that influence various parts of the IDE, especially code formatting and the like. @@ -14,8 +17,6 @@ That way multiple projects can share the same settings (useful for formatting ru Any value defined here will override the pom.xml file value but is only applicable to the current project. --> <netbeans.compile.on.save>all</netbeans.compile.on.save> + <org-netbeans-modules-projectapi.jsf_2e_language>Facelets</org-netbeans-modules-projectapi.jsf_2e_language> </properties> - <spellchecker-wordlist xmlns="http://www.netbeans.org/ns/spellchecker-wordlist/1"> - <word>xml</word> - </spellchecker-wordlist> </project-shared-configuration> diff --git a/Kieker.WebGUI/nbactions.xml b/Kieker.WebGUI/nbactions.xml index 83c07bc9..cada5c04 100644 --- a/Kieker.WebGUI/nbactions.xml +++ b/Kieker.WebGUI/nbactions.xml @@ -4,7 +4,6 @@ <actionName>run</actionName> <goals> <goal>jetty:run</goal> - </goals> </action> </actions> diff --git a/Kieker.WebGUI/pom.xml b/Kieker.WebGUI/pom.xml index a6f3ea9a..c669e890 100644 --- a/Kieker.WebGUI/pom.xml +++ b/Kieker.WebGUI/pom.xml @@ -14,6 +14,7 @@ <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kieker.jar>kieker-1.6_emf.jar</kieker.jar> + <netbeans.hint.deploy.server>gfv3ee6</netbeans.hint.deploy.server> </properties> <repositories> diff --git a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/application/GlobalPropertiesBean.java b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/application/GlobalPropertiesBean.java index 2a540050..c1e8774c 100644 --- a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/application/GlobalPropertiesBean.java +++ b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/application/GlobalPropertiesBean.java @@ -17,6 +17,7 @@ package kieker.webgui.beans.application; import java.io.IOException; +import java.io.Serializable; import java.util.Properties; import java.util.ResourceBundle; @@ -39,7 +40,7 @@ import kieker.common.logging.LogFactory; */ @ManagedBean @ApplicationScoped -public final class GlobalPropertiesBean { +public final class GlobalPropertiesBean implements Serializable { private static final Log LOG = LogFactory.getLog(GlobalPropertiesBean.class); diff --git a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentConfigurationBean.java b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentConfigurationBean.java index 02994fee..d178c9c9 100644 --- a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentConfigurationBean.java +++ b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentConfigurationBean.java @@ -16,6 +16,7 @@ package kieker.webgui.beans.session; +import java.io.Serializable; import java.util.Map; import javax.annotation.PostConstruct; @@ -36,7 +37,7 @@ import kieker.webgui.beans.application.GlobalPropertiesBean; */ @ManagedBean @SessionScoped -public final class CurrentConfigurationBean { +public final class CurrentConfigurationBean implements Serializable { private String lookAndFeel; private String gridColor; diff --git a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/UserBean.java b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/UserBean.java index 6a718e06..65656549 100644 --- a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/UserBean.java +++ b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/UserBean.java @@ -16,6 +16,8 @@ package kieker.webgui.beans.session; +import java.io.Serializable; + import javax.faces.bean.ManagedBean; import javax.faces.bean.ManagedProperty; import javax.faces.bean.SessionScoped; @@ -30,7 +32,7 @@ import kieker.webgui.beans.application.GlobalPropertiesBean; */ @ManagedBean @SessionScoped -public final class UserBean { +public final class UserBean implements Serializable { private String userName; private String password; diff --git a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/view/CurrentAnalysisEditorGraphBean.java b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/view/CurrentAnalysisEditorGraphBean.java index bb3d0bd5..9907337d 100644 --- a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/view/CurrentAnalysisEditorGraphBean.java +++ b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/view/CurrentAnalysisEditorGraphBean.java @@ -169,9 +169,9 @@ public final class CurrentAnalysisEditorGraphBean { */ public void declareGraph() { RequestContext.getCurrentInstance().execute(CurrentAnalysisEditorGraphBean.JS_CMD_CREATE_GRAPH_VAR); - RequestContext.getCurrentInstance().execute("graph.setNodeIcon('Filter', '../img/graphIcons/FilterIcon.png');"); - RequestContext.getCurrentInstance().execute("graph.setNodeIcon('Reader', '../img/graphIcons/ReaderIcon.png');"); - RequestContext.getCurrentInstance().execute("graph.setNodeIcon('Repository', '../img/graphIcons/RepositoryIcon.png');"); + RequestContext.getCurrentInstance().execute("graph.setNodeIcon('Filter', './img/graphIcons/FilterIcon.png');"); + RequestContext.getCurrentInstance().execute("graph.setNodeIcon('Reader', './img/graphIcons/ReaderIcon.png');"); + RequestContext.getCurrentInstance().execute("graph.setNodeIcon('Repository', './img/graphIcons/RepositoryIcon.png');"); } /** diff --git a/Kieker.WebGUI/src/main/webapp/AnalysisEditorPage.xhtml b/Kieker.WebGUI/src/main/webapp/AnalysisEditorPage.xhtml index 2c6db586..67124a1e 100644 --- a/Kieker.WebGUI/src/main/webapp/AnalysisEditorPage.xhtml +++ b/Kieker.WebGUI/src/main/webapp/AnalysisEditorPage.xhtml @@ -19,14 +19,14 @@ <h:head> <title>Kieker.WebGUI</title> <!-- Load the necessary CSS files. --> - <link rel="stylesheet" type="text/css" href="../css/FlowEditor.css" /> - <link rel="stylesheet" type="text/css" href="../css/Common.css" /> - <link rel="stylesheet" type="text/css" href="../css/Icons.css" /> - <link rel="stylesheet" type="text/css" href="../css/AnalysisEditorPage.css" /> + <link rel="stylesheet" type="text/css" href="./css/FlowEditor.css" /> + <link rel="stylesheet" type="text/css" href="./css/Common.css" /> + <link rel="stylesheet" type="text/css" href="./css/Icons.css" /> + <link rel="stylesheet" type="text/css" href="./css/AnalysisEditorPage.css" /> <!-- Load the necessary JS files. --> - <script language="javascript" type="text/javascript" src="../js/jit.js"></script> - <script language="javascript" type="text/javascript" src="../js/flowEditor.js"></script> + <script language="javascript" type="text/javascript" src="./js/jit.js"></script> + <script language="javascript" type="text/javascript" src="./js/flowEditor.js"></script> <script> nodeClickListener = function(node, info, e) { diff --git a/Kieker.WebGUI/src/main/webapp/CockpitEditorPage.xhtml b/Kieker.WebGUI/src/main/webapp/CockpitEditorPage.xhtml index 8bf9df80..c6b6908f 100644 --- a/Kieker.WebGUI/src/main/webapp/CockpitEditorPage.xhtml +++ b/Kieker.WebGUI/src/main/webapp/CockpitEditorPage.xhtml @@ -16,9 +16,9 @@ <h:head> <title>Kieker.WebGUI</title> - <link rel="stylesheet" type="text/css" href="../css/Common.css" /> - <link rel="stylesheet" type="text/css" href="../css/Icons.css" /> - <link rel="stylesheet" type="text/css" href="../css/CockpitEditorPage.css" /> + <link rel="stylesheet" type="text/css" href="./css/Common.css" /> + <link rel="stylesheet" type="text/css" href="./css/Icons.css" /> + <link rel="stylesheet" type="text/css" href="./css/CockpitEditorPage.css" /> </h:head> <h:body> diff --git a/Kieker.WebGUI/src/main/webapp/CockpitPage.xhtml b/Kieker.WebGUI/src/main/webapp/CockpitPage.xhtml index b23ccda2..16f15e87 100644 --- a/Kieker.WebGUI/src/main/webapp/CockpitPage.xhtml +++ b/Kieker.WebGUI/src/main/webapp/CockpitPage.xhtml @@ -16,9 +16,9 @@ <h:head> <title>Kieker.WebGUI</title> - <link rel="stylesheet" type="text/css" href="../css/Common.css" /> - <link rel="stylesheet" type="text/css" href="../css/Icons.css" /> - <link rel="stylesheet" type="text/css" href="../css/CockpitPage.css" /> + <link rel="stylesheet" type="text/css" href="./css/Common.css" /> + <link rel="stylesheet" type="text/css" href="./css/Icons.css" /> + <link rel="stylesheet" type="text/css" href="./css/CockpitPage.css" /> </h:head> <h:body> diff --git a/Kieker.WebGUI/src/main/webapp/ControllerPage.xhtml b/Kieker.WebGUI/src/main/webapp/ControllerPage.xhtml index a822a454..b31a1e29 100644 --- a/Kieker.WebGUI/src/main/webapp/ControllerPage.xhtml +++ b/Kieker.WebGUI/src/main/webapp/ControllerPage.xhtml @@ -15,9 +15,9 @@ <h:head> <title>Kieker.WebGUI</title> - <link rel="stylesheet" type="text/css" href="../css/Common.css" /> - <link rel="stylesheet" type="text/css" href="../css/Icons.css" /> - <link rel="stylesheet" type="text/css" href="../css/ControllerPage.css" /> + <link rel="stylesheet" type="text/css" href="./css/Common.css" /> + <link rel="stylesheet" type="text/css" href="./css/Icons.css" /> + <link rel="stylesheet" type="text/css" href="./css/ControllerPage.css" /> </h:head> <h:body> @@ -98,17 +98,17 @@ <hr/> <h:form id="ledsForm"> <div align="center"> - <h:graphicImage id="iconLEDRed1" url="../img/LEDs/Icon_LED_Red.png" height="50px" rendered="#{currentControllerBean.isAnalysisNotAvailable()}"/> - <h:graphicImage id="iconLEDRed1_2" url="../img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not currentControllerBean.isAnalysisNotAvailable()}"/> + <h:graphicImage id="iconLEDRed1" url="./img/LEDs/Icon_LED_Red.png" height="50px" rendered="#{currentControllerBean.isAnalysisNotAvailable()}"/> + <h:graphicImage id="iconLEDRed1_2" url="./img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not currentControllerBean.isAnalysisNotAvailable()}"/> <p:spacer height="0" width="15px"/> - <h:graphicImage id="iconLEDYellow" url="../img/LEDs/Icon_LED_Yellow.png" height="50px" rendered="#{currentControllerBean.isAnalysisReady()}"/> - <h:graphicImage id="iconLEDYellow_2" url="../img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not currentControllerBean.isAnalysisReady()}"/> + <h:graphicImage id="iconLEDYellow" url="./img/LEDs/Icon_LED_Yellow.png" height="50px" rendered="#{currentControllerBean.isAnalysisReady()}"/> + <h:graphicImage id="iconLEDYellow_2" url="./img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not currentControllerBean.isAnalysisReady()}"/> <p:spacer height="0" width="15px"/> - <h:graphicImage id="iconLEDGreen" url="../img/LEDs/Icon_LED_Green.png" height="50px" rendered="#{currentControllerBean.isAnalysisRunning()}"/> - <h:graphicImage id="iconLEDGreen_2" url="../img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not currentControllerBean.isAnalysisRunning()}"/> + <h:graphicImage id="iconLEDGreen" url="./img/LEDs/Icon_LED_Green.png" height="50px" rendered="#{currentControllerBean.isAnalysisRunning()}"/> + <h:graphicImage id="iconLEDGreen_2" url="./img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not currentControllerBean.isAnalysisRunning()}"/> <p:spacer height="0" width="15px"/> - <h:graphicImage id="iconLEDRed2" url="../img/LEDs/Icon_LED_Red.png" height="50px" rendered="#{currentControllerBean.isAnalysisTerminated() or currentControllerBean.isAnalysisFailed()}"/> - <h:graphicImage id="iconLEDRed2_2" url="../img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not (currentControllerBean.isAnalysisTerminated() or currentControllerBean.isAnalysisFailed())}"/> + <h:graphicImage id="iconLEDRed2" url="./img/LEDs/Icon_LED_Red.png" height="50px" rendered="#{currentControllerBean.isAnalysisTerminated() or currentControllerBean.isAnalysisFailed()}"/> + <h:graphicImage id="iconLEDRed2_2" url="./img/LEDs/Icon_LED_Gray.png" height="50px" rendered="#{not (currentControllerBean.isAnalysisTerminated() or currentControllerBean.isAnalysisFailed())}"/> <p:tooltip for="iconLEDRed1" value="#{localizedControllerPageMessages.analysisControllerMsgNotInstantiated}"/> <p:tooltip for="iconLEDYellow" value="#{localizedControllerPageMessages.analysisControllerMsgReady}"/> diff --git a/Kieker.WebGUI/src/main/webapp/LoginPage.xhtml b/Kieker.WebGUI/src/main/webapp/LoginPage.xhtml index 6837dde8..2941f218 100644 --- a/Kieker.WebGUI/src/main/webapp/LoginPage.xhtml +++ b/Kieker.WebGUI/src/main/webapp/LoginPage.xhtml @@ -11,15 +11,15 @@ <h:head> <title>Kieker.WebGUI</title> - <link rel="stylesheet" type="text/css" href="../css/Common.css" /> - <link rel="stylesheet" type="text/css" href="../css/LoginPage.css" /> + <link rel="stylesheet" type="text/css" href="./css/Common.css" /> + <link rel="stylesheet" type="text/css" href="./css/LoginPage.css" /> </h:head> <!-- The javascript code in the onload-part of the body shows a localized welcome message via the growl-component. --> <h:body onload="growlComp.renderMessage({summary : '#{localizedLoginMessages.msgWelcomeShort}', detail : '#{localizedLoginMessages.msgWelcome}', severity: 'info'});"> <div align="center" > - <img src="../img/kieker-header.jpg"/> + <img src="./img/kieker-header.jpg"/> </div> <div align="center" class="stretch"> diff --git a/Kieker.WebGUI/src/main/webapp/ProjectOverviewPage.xhtml b/Kieker.WebGUI/src/main/webapp/ProjectOverviewPage.xhtml index 5afba6b3..b1bc5d09 100644 --- a/Kieker.WebGUI/src/main/webapp/ProjectOverviewPage.xhtml +++ b/Kieker.WebGUI/src/main/webapp/ProjectOverviewPage.xhtml @@ -11,9 +11,9 @@ <h:head> <title>Kieker.WebGUI</title> - <link rel="stylesheet" type="text/css" href="../css/Common.css" /> - <link rel="stylesheet" type="text/css" href="../css/Icons.css" /> - <link rel="stylesheet" type="text/css" href="../css/ProjectOverviewPage.css" /> + <link rel="stylesheet" type="text/css" href="./css/Common.css" /> + <link rel="stylesheet" type="text/css" href="./css/Icons.css" /> + <link rel="stylesheet" type="text/css" href="./css/ProjectOverviewPage.css" /> </h:head> <h:body> diff --git a/Kieker.WebGUI/src/main/webapp/WEB-INF/faces-config.xml b/Kieker.WebGUI/src/main/webapp/WEB-INF/faces-config.xml index 195b7785..1dd24bc6 100644 --- a/Kieker.WebGUI/src/main/webapp/WEB-INF/faces-config.xml +++ b/Kieker.WebGUI/src/main/webapp/WEB-INF/faces-config.xml @@ -15,42 +15,42 @@ <navigation-rule> <navigation-case> <from-outcome>projectOverview</from-outcome> - <to-view-id>ProjectOverviewPage.xhtml</to-view-id> + <to-view-id>/ProjectOverviewPage.xhtml</to-view-id> </navigation-case> </navigation-rule> <navigation-rule> <navigation-case> <from-outcome>analysisEditor</from-outcome> - <to-view-id>AnalysisEditorPage.xhtml</to-view-id> + <to-view-id>/AnalysisEditorPage.xhtml</to-view-id> </navigation-case> </navigation-rule> <navigation-rule> <navigation-case> <from-outcome>cockpitEditor</from-outcome> - <to-view-id>CockpitEditorPage.xhtml</to-view-id> + <to-view-id>/CockpitEditorPage.xhtml</to-view-id> </navigation-case> </navigation-rule> <navigation-rule> <navigation-case> <from-outcome>cockpit</from-outcome> - <to-view-id>CockpitPage.xhtml</to-view-id> + <to-view-id>/CockpitPage.xhtml</to-view-id> </navigation-case> </navigation-rule> <navigation-rule> <navigation-case> <from-outcome>controller</from-outcome> - <to-view-id>ControllerPage.xhtml</to-view-id> + <to-view-id>/ControllerPage.xhtml</to-view-id> </navigation-case> </navigation-rule> <navigation-rule> <navigation-case> <from-outcome>login</from-outcome> - <to-view-id>LoginPage.xhtml</to-view-id> + <to-view-id>/LoginPage.xhtml</to-view-id> </navigation-case> </navigation-rule> </faces-config> \ No newline at end of file diff --git a/Kieker.WebGUI/src/main/webapp/WEB-INF/pretty-config.xml b/Kieker.WebGUI/src/main/webapp/WEB-INF/pretty-config.xml index cec5a14c..ed35f3fe 100644 --- a/Kieker.WebGUI/src/main/webapp/WEB-INF/pretty-config.xml +++ b/Kieker.WebGUI/src/main/webapp/WEB-INF/pretty-config.xml @@ -3,37 +3,37 @@ xsi:schemaLocation="http://ocpsoft.com/prettyfaces/3.3.2 http://ocpsoft.com/xml/ns/prettyfaces/ocpsoft-pretty-faces-3.3.2.xsd"> <url-mapping id="home"> - <pattern value="/Kieker.WebGUI/" /> + <pattern value="/" /> <view-id value="/faces/ProjectOverviewPage.xhtml" /> </url-mapping> <url-mapping id="projectOverview"> - <pattern value="/Kieker.WebGUI/projectOverview" /> + <pattern value="/projectOverview" /> <view-id value="/faces/ProjectOverviewPage.xhtml" /> </url-mapping> <url-mapping id="analysisEditor"> - <pattern value="/Kieker.WebGUI/analysisEditor" /> + <pattern value="/analysisEditor" /> <view-id value="/faces/AnalysisEditorPage.xhtml" /> </url-mapping> <url-mapping id="cockpitEditor"> - <pattern value="/Kieker.WebGUI/cockpitEditor" /> + <pattern value="/cockpitEditor" /> <view-id value="/faces/CockpitEditorPage.xhtml" /> </url-mapping> <url-mapping id="controller"> - <pattern value="/Kieker.WebGUI/controller" /> + <pattern value="/controller" /> <view-id value="/faces/ControllerPage.xhtml" /> </url-mapping> <url-mapping id="cockpit"> - <pattern value="/Kieker.WebGUI/cockpit" /> + <pattern value="/cockpit" /> <view-id value="/faces/CockpitPage.xhtml" /> </url-mapping> <url-mapping id="login"> - <pattern value="/Kieker.WebGUI/login" /> + <pattern value="/login" /> <view-id value="/faces/LoginPage.xhtml" /> </url-mapping> diff --git a/Kieker.WebGUI/src/main/webapp/WEB-INF/web.xml b/Kieker.WebGUI/src/main/webapp/WEB-INF/web.xml index c58433e5..eb854765 100644 --- a/Kieker.WebGUI/src/main/webapp/WEB-INF/web.xml +++ b/Kieker.WebGUI/src/main/webapp/WEB-INF/web.xml @@ -56,13 +56,13 @@ </session-config> <welcome-file-list> - <welcome-file>faces/ProjectOverview.xhtml</welcome-file> + <welcome-file>faces/ProjectOverviewPage.xhtml</welcome-file> </welcome-file-list> <listener> <listener-class>com.sun.faces.config.ConfigureListener</listener-class> </listener> - + <!-- This filter will be used by Pretty Filter.--> <filter> <filter-name>Pretty Filter</filter-name> diff --git a/Kieker.WebGUI/src/main/webapp/dialogs/AboutDialog.xhtml b/Kieker.WebGUI/src/main/webapp/dialogs/AboutDialog.xhtml index 7e93862e..96ae706e 100644 --- a/Kieker.WebGUI/src/main/webapp/dialogs/AboutDialog.xhtml +++ b/Kieker.WebGUI/src/main/webapp/dialogs/AboutDialog.xhtml @@ -8,7 +8,7 @@ <p:dialog header="#{localizedMessages.about}" resizable="false" modal="true" widgetVar="aboutDlg"> <h:form> - <img src="../img/kieker-logo-transparent.png" alt="Kieker-Logo" width="491" height="150" /> + <img src="./img/kieker-logo-transparent.png" alt="Kieker-Logo" width="491" height="150" /> <hr/> <h:outputText value="Kieker.WebGUI" /> <br /> -- GitLab