From 0950eff4750adee541b57d71b7bfc605538acbea Mon Sep 17 00:00:00 2001 From: Nelson Tavares de Sousa <ntd@informatik.uni-kiel.de> Date: Mon, 26 Jan 2015 18:20:30 +0100 Subject: [PATCH] changed badges and highlighting style --- run-configurations/Generate Homepage.launch | 2 +- src/site/site.xml | 18 ++++++++++-------- .../teetime/framework/pipe/SpScPipeTest.java | 10 +++------- 3 files changed, 14 insertions(+), 16 deletions(-) diff --git a/run-configurations/Generate Homepage.launch b/run-configurations/Generate Homepage.launch index ff0a6fc1..68e8e64f 100644 --- a/run-configurations/Generate Homepage.launch +++ b/run-configurations/Generate Homepage.launch @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType"> <booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/> -<stringAttribute key="M2_GOALS" value="site"/> +<stringAttribute key="M2_GOALS" value="clean site"/> <booleanAttribute key="M2_NON_RECURSIVE" value="false"/> <booleanAttribute key="M2_OFFLINE" value="false"/> <stringAttribute key="M2_PROFILES" value=""/> diff --git a/src/site/site.xml b/src/site/site.xml index 58026ed9..12e9aa09 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -13,7 +13,10 @@ </name> <href>http://teetime.sourceforge.net</href> </bannerLeft> - + <poweredBy> + <logo name="Maven" href="http://maven.apache.org/" + img="http://maven.apache.org/images/logos/maven-feather.png" /> + </poweredBy> <body> <head> <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png" /> @@ -45,7 +48,6 @@ <meta name="msapplication-TileImage" content="/mstile-144x144.png" /> <meta name="application-name" content="TeeTime" /> </head> - <links> <item name="News" href="news.html" /> <item name="Download" href="download.html" /> @@ -67,8 +69,7 @@ <item name="Home" href="index.html" /> <item name="News" href="news.html" /> <item name="Download" href="download.html" /> - <item name="Wiki" - href="https://build.se.informatik.uni-kiel.de/gitlab/chw/teetime/wikis/home" /> + <item name="Wiki" href="wiki/" /> <item name="Release notes" href="changes-report.html" /> </menu> <!-- <menu ref="modules"/> --> @@ -85,7 +86,7 @@ </absoluteResourceURL> <theme>default</theme> <highlightJs>true</highlightJs> - <highlightJsTheme>github</highlightJsTheme> + <highlightJsTheme>Sunburst</highlightJsTheme> <brand> <name> TeeTime @@ -105,11 +106,12 @@ </bottomNav> <bottomDescription> <![CDATA[ - <a href="https://sourceforge.net/p/teetime/" rel="nofollow"><img alt="Download TeeTime" src="https://sourceforge.net/sflogo.php?type=11&group_id=2244303"></a> - <br /> - <a href="http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22net.sourceforge.teetime%22%20AND%20a%3A%22teetime%22"><img alt="Maven Central Repository" src="https://img.shields.io/maven-central/v/net.sourceforge.teetime/teetime.svg?style=flat-square"></a> + Snapshot state: <br /> <a href="https://build.se.informatik.uni-kiel.de/jenkins/view/TeeTime/job/teetime-nighly-release/"><img alt="Jenkins build status" src="https://img.shields.io/jenkins/s/https/build.se.informatik.uni-kiel.de/jenkins/view/TeeTime/teetime-nighly-release.svg?style=flat-square"></a> + <br /> + <a href="https://build.se.informatik.uni-kiel.de/jenkins/view/TeeTime/job/teetime-nighly-release/"><img alt="Jenkins build status" src="https://img.shields.io/jenkins/t/https/build.se.informatik.uni-kiel.de/jenkins/view/TeeTime/teetime-nighly-release.svg?style=flat-square"></a> + <br /><br /><a href="https://sourceforge.net/p/teetime/" rel="nofollow"><img alt="Download TeeTime" src="https://sourceforge.net/sflogo.php?type=11&group_id=2244303"></a> ]]> </bottomDescription> <pages> diff --git a/src/test/java/teetime/framework/pipe/SpScPipeTest.java b/src/test/java/teetime/framework/pipe/SpScPipeTest.java index 78313ed5..89842f3b 100644 --- a/src/test/java/teetime/framework/pipe/SpScPipeTest.java +++ b/src/test/java/teetime/framework/pipe/SpScPipeTest.java @@ -3,10 +3,6 @@ package teetime.framework.pipe; import java.util.ArrayList; import java.util.List; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; - import teetime.framework.AbstractInterThreadPipe; import teetime.framework.InputPort; import teetime.framework.OutputPort; @@ -17,9 +13,9 @@ import teetime.framework.signal.ValidatingSignal; public class SpScPipeTest { - @Ignore + // @Ignore // ignore as long as this test passes null ports to SpScPipe - @Test + // @Test public void testSignalOrdering() throws Exception { OutputPort<Object> sourcePort = null; InputPort<Object> targetPort = null; @@ -48,6 +44,6 @@ public class SpScPipeTest { } secondList.add(temp); } - Assert.assertEquals(list, secondList); + // Assert.assertEquals(list, secondList); } } -- GitLab