diff --git a/src/main/java/hudson/plugins/cigame/GameDescriptor.java b/src/main/java/hudson/plugins/cigame/GameDescriptor.java index 942ed43..46e756d 100644 --- a/src/main/java/hudson/plugins/cigame/GameDescriptor.java +++ b/src/main/java/hudson/plugins/cigame/GameDescriptor.java @@ -8,6 +8,7 @@ import hudson.plugins.cigame.model.RuleBook; import hudson.plugins.cigame.model.RuleSet; import hudson.plugins.cigame.model.ScoreLevel; +import hudson.plugins.cigame.rules.build.BuildResultRule; import hudson.plugins.cigame.rules.build.BuildRuleSet; import hudson.plugins.cigame.rules.plugins.checkstyle.CheckstyleRuleSet; import hudson.plugins.cigame.rules.plugins.findbugs.FindBugsRuleSet; @@ -15,7 +16,7 @@ import hudson.plugins.cigame.rules.plugins.pmd.PmdRuleSet; import hudson.plugins.cigame.rules.plugins.violation.ViolationsRuleSet; import hudson.plugins.cigame.rules.plugins.warnings.WarningsRuleSet; -import hudson.plugins.cigame.rules.unittesting.UnitTestingRuleSet; +import hudson.plugins.cigame.rules.unittesting.*; import hudson.tasks.BuildStepDescriptor; import hudson.tasks.Publisher; import net.sf.json.JSONObject; @@ -33,16 +34,17 @@ public class GameDescriptor extends BuildStepDescriptor { public static final String ACTION_LOGO_SMALL = "/plugin/ci-game/icons/24x24/game.png"; //$NON-NLS-1$ - private transient RuleBook rulebook; private transient List scoreLevels; private boolean namesAreCaseSensitive = true; - private int passedTestIncreasingPoints = 1; - private int passedTestDecreasingPoints = 0; - private int failedTestIncreasingPoints = -1; - private int failedTestDecreasingPoints = 0; - private int skippedTestIncreasingPoints = 0; - private int skippedTestDecreasingPoints = 0; + private int passedTestIncreasingPoints = IncreasingPassedTestsRule.DEFAULT_POINTS; + private int passedTestDecreasingPoints = DecreasingPassedTestsRule.DEFAULT_POINTS; + private int failedTestIncreasingPoints = IncreasingFailedTestsRule.DEFAULT_POINTS; + private int failedTestDecreasingPoints = DecreasingFailedTestsRule.DEFAULT_POINTS; + private int skippedTestIncreasingPoints = IncreasingSkippedTestsRule.DEFAULT_POINTS; + private int skippedTestDecreasingPoints = DecreasingSkippedTestsRule.DEFAULT_POINTS; + private int buildSuccessPoints = BuildResultRule.DEFAULT_SUCCESS_POINTS; + private int buildFailurePoints = BuildResultRule.DEFAULT_FAILURE_POINTS; public GameDescriptor() { super(GamePublisher.class); @@ -184,4 +186,20 @@ public int getSkippedTestDecreasingPoints() { public void setSkippedTestDecreasingPoints(int skippedTestDecreasingPoints) { this.skippedTestDecreasingPoints = skippedTestDecreasingPoints; } + + public int getBuildSuccessPoints() { + return buildSuccessPoints; + } + + public void setBuildSuccessPoints(int buildSuccessPoints) { + this.buildSuccessPoints = buildSuccessPoints; + } + + public int getBuildFailurePoints() { + return buildFailurePoints; + } + + public void setBuildFailurePoints(int buildFailurePoints) { + this.buildFailurePoints = buildFailurePoints; + } } diff --git a/src/main/java/hudson/plugins/cigame/rules/build/BuildResultRule.java b/src/main/java/hudson/plugins/cigame/rules/build/BuildResultRule.java index 9f14643..a2aaf3f 100644 --- a/src/main/java/hudson/plugins/cigame/rules/build/BuildResultRule.java +++ b/src/main/java/hudson/plugins/cigame/rules/build/BuildResultRule.java @@ -2,19 +2,29 @@ import hudson.model.AbstractBuild; import hudson.model.Result; +import hudson.plugins.cigame.GameDescriptor; import hudson.plugins.cigame.model.Rule; import hudson.plugins.cigame.model.RuleResult; +import jenkins.model.Jenkins; /** * Rule that gives points on the result of the build. */ public class BuildResultRule implements Rule { - + public static final int DEFAULT_SUCCESS_POINTS = 1; + public static final int DEFAULT_FAILURE_POINTS = -10; private int failurePoints; private int successPoints; public BuildResultRule() { - this(1, -10); + GameDescriptor gameDescriptor = Jenkins.getInstance().getDescriptorByType(GameDescriptor.class); + if (gameDescriptor != null) { + this.successPoints = DEFAULT_SUCCESS_POINTS; + this.failurePoints = DEFAULT_FAILURE_POINTS; + } else { + this.successPoints = gameDescriptor.getBuildSuccessPoints(); + this.failurePoints = gameDescriptor.getBuildFailurePoints(); + } } public BuildResultRule(int successPoints, int failurePoints) { diff --git a/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingFailedTestsRule.java b/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingFailedTestsRule.java index 0c2d73c..c4c2b8c 100644 --- a/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingFailedTestsRule.java +++ b/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingFailedTestsRule.java @@ -12,7 +12,7 @@ */ public class DecreasingFailedTestsRule extends AbstractFailedTestsRule { - private static final int DEFAULT_POINTS = 0; + public static final int DEFAULT_POINTS = 0; private int getPoints() { GameDescriptor gameDescriptor = Jenkins.getInstance().getDescriptorByType(GameDescriptor.class); diff --git a/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingPassedTestsRule.java b/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingPassedTestsRule.java index c743635..bbcec6a 100644 --- a/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingPassedTestsRule.java +++ b/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingPassedTestsRule.java @@ -12,7 +12,7 @@ */ public class DecreasingPassedTestsRule extends AbstractPassedTestsRule { - private static final int DEFAULT_POINTS = 1; + public static final int DEFAULT_POINTS = 0; private int getPoints() { GameDescriptor gameDescriptor = Jenkins.getInstance().getDescriptorByType(GameDescriptor.class); diff --git a/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingSkippedTestsRule.java b/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingSkippedTestsRule.java index 69704d0..da45d4b 100644 --- a/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingSkippedTestsRule.java +++ b/src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingSkippedTestsRule.java @@ -12,7 +12,7 @@ */ public class DecreasingSkippedTestsRule extends AbstractSkippedTestsRule { - private static final int DEFAULT_POINTS = 0; + public static final int DEFAULT_POINTS = 0; private int getPoints() { GameDescriptor gameDescriptor = Jenkins.getInstance().getDescriptorByType(GameDescriptor.class); diff --git a/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRule.java b/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRule.java index e809d1f..8a02b69 100644 --- a/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRule.java +++ b/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRule.java @@ -13,7 +13,7 @@ */ public class IncreasingFailedTestsRule extends AbstractFailedTestsRule { - private static final int DEFAULT_POINTS = -1; + public static final int DEFAULT_POINTS = -1; private int getPoints() { GameDescriptor gameDescriptor = Jenkins.getInstance().getDescriptorByType(GameDescriptor.class); diff --git a/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRule.java b/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRule.java index 3c85115..48c905b 100644 --- a/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRule.java +++ b/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRule.java @@ -13,7 +13,7 @@ */ public class IncreasingPassedTestsRule extends AbstractPassedTestsRule { - private static final int DEFAULT_POINTS = 1; + public static final int DEFAULT_POINTS = 1; private int getPoints() { GameDescriptor gameDescriptor = Hudson.getInstance().getDescriptorByType(GameDescriptor.class); diff --git a/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingSkippedTestsRule.java b/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingSkippedTestsRule.java index c9b908d..5e65bc1 100644 --- a/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingSkippedTestsRule.java +++ b/src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingSkippedTestsRule.java @@ -12,7 +12,7 @@ */ public class IncreasingSkippedTestsRule extends AbstractSkippedTestsRule { - private static final int DEFAULT_POINTS = 0; + public static final int DEFAULT_POINTS = 0; private int getPoints() { GameDescriptor gameDescriptor = Jenkins.getInstance().getDescriptorByType(GameDescriptor.class); diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/global.jelly b/src/main/resources/hudson/plugins/cigame/GamePublisher/global.jelly index 3f28eff..62bb645 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/global.jelly +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/global.jelly @@ -2,12 +2,14 @@ - - + + + - +
@@ -35,5 +37,20 @@
+ + + + + + + + + + +
+
+
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/global.properties b/src/main/resources/hudson/plugins/cigame/GamePublisher/global.properties index bef0af8..0b46ce8 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/global.properties +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/global.properties @@ -1,12 +1,14 @@ - -cigame.namesarecasesensitive=User names are case sensitive +cigame.namesAreCaseSensitive=User names are case sensitive cigame.title=Continuous integration game -cigame.unittests.subtitle=Unit Tests - +cigame.unittests.subtitle=Points for Unit Tests cigame.unittests.marksForIncreasingPassedTestsByOne=Points for increasing Passed Tests cigame.unittests.marksForDecreasingPassedTestsByOne=Points for decreasing Passed Tests cigame.unittests.marksForIncreasingFailedTestsByOne=Points for increasing Failed Tests cigame.unittests.marksForDecreasingFailedTestsByOne=Points for decreasing Failed Tests cigame.unittests.marksForIncreasingSkippedTestsByOne=Points for increasing Skipped Tests cigame.unittests.marksForDecreasingSkippedTestsByOne=Points for decreasing Skipped Tests + +cigame.build.subtitle=Points for Build +cigame.build.marksForSuccessfulBuild=Points for build successfully +cigame.build.marksForFailedBuild=Points for failing the build diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_de.properties b/src/main/resources/hudson/plugins/cigame/GamePublisher/global_de.properties deleted file mode 100644 index 23e247d..0000000 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_de.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -cigame.namesarecasesensitive=Gro\u00DF- und Kleinschreibung bei Benutzernamen beachten diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_fr.properties b/src/main/resources/hudson/plugins/cigame/GamePublisher/global_fr.properties index 267671c..acc947f 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_fr.properties +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/global_fr.properties @@ -1,24 +1,14 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +cigame.namesAreCaseSensitive=Les noms d'utilisateurs sont sensibles à la casse +cigame.title=Jeu de l'intégration continue -cigame.namesarecasesensitive=Les noms d''utilisateurs sont sensibles \u00E0 la casse -cigame.title=Jeu de l''int\u00E9gration continue +cigame.unittests.subtitle=Tests unitaires +cigame.unittests.marksForIncreasingPassedTestsByOne=Points pour augmenter tests réussis +cigame.unittests.marksForDecreasingPassedTestsByOne=Points pour diminuer tests réussis +cigame.unittests.marksForIncreasingFailedTestsByOne=Points pour augmenter l'échec des tests +cigame.unittests.marksForDecreasingFailedTestsByOne=Points pour diminuer l'échec des tests +cigame.unittests.marksForIncreasingSkippedTestsByOne=Points pour augmenter tests ignor\u00E9s +cigame.unittests.marksForDecreasingSkippedTestsByOne=Points pour diminuer tests ignor\u00E9s + +cigame.build.subtitle=Build +cigame.build.marksForSuccessfulBuild=Points pour build avec succès +cigame.build.marksForFailedBuild=Points de refus de la build diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_nl.properties b/src/main/resources/hudson/plugins/cigame/GamePublisher/global_nl.properties deleted file mode 100644 index 2a1fadb..0000000 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_nl.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -cigame.namesarecasesensitive=Gebruikersnamen zijn hoofdlettergevoelig -cigame.title=Continuous integration spel diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_sv.properties b/src/main/resources/hudson/plugins/cigame/GamePublisher/global_sv.properties deleted file mode 100644 index e6314db..0000000 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/global_sv.properties +++ /dev/null @@ -1,3 +0,0 @@ - -cigame.namesarecasesensitive=Anv\u00E4ndarnamn \u00E4r skiftl\u00E4gesk\u00E4nsliga -cigame.title=CI Spelet diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-buildFailurePoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-buildFailurePoints.html new file mode 100644 index 0000000..6ef13c9 --- /dev/null +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-buildFailurePoints.html @@ -0,0 +1,3 @@ +
+ How many marks are given for the user for failing the build +
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-buildSuccessPoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-buildSuccessPoints.html new file mode 100644 index 0000000..b774945 --- /dev/null +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-buildSuccessPoints.html @@ -0,0 +1,3 @@ +
+ How many marks are given for the user for building with success. +
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestDecreasingPoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestDecreasingPoints.html index 58aae47..6fcd334 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestDecreasingPoints.html +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestDecreasingPoints.html @@ -1,5 +1,3 @@
-

- How many marks given for the user for decreasing the number of Failed Tests by one -

+ How many marks are given for the user for decreasing the number of Failed Tests by one.
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestIncreasingPoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestIncreasingPoints.html index 04b08dd..47d06a4 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestIncreasingPoints.html +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestIncreasingPoints.html @@ -1,5 +1,3 @@
-

- How many marks given for the user for increasing the number of Failed Tests by one -

+ How many marks are given for the user for increasing the number of Failed Tests by one
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-namesAreCaseSensitive.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-namesAreCaseSensitive.html new file mode 100644 index 0000000..c98a7aa --- /dev/null +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-namesAreCaseSensitive.html @@ -0,0 +1,16 @@ +
+ + The checkbox decides if the game should treat the user names in Jenkins case sensitive or not. + Jenkins treats user names as case sensitive, which mean that user "John" is not the same user as "john". + Some SCMs make it possible to login with the same user but with different casing, + which means that to Jenkins there are separate users. + This introduces a problem in the game as one real user can have several Jenkins users. + +
+
+ + If this checkbox is enabled, the game will treat all users as separate, just like Jenkins does. + If this checkbox is disabled, the game will make case insensitive look ups of the user names + which mean points awarded to "John" and "john" will be awarded to the same user. + +
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestDecreasingPoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestDecreasingPoints.html index c5c257d..5f3e06a 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestDecreasingPoints.html +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestDecreasingPoints.html @@ -1,5 +1,3 @@
-

- How many marks given for the user for decreasing the number of Passed Tests by one -

+ How many marks are given for the user for decreasing the number of Passed Tests by one
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestIncreasingPoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestIncreasingPoints.html index a9b7b27..536e3d9 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestIncreasingPoints.html +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestIncreasingPoints.html @@ -1,5 +1,3 @@
-

- How many marks given for the user for increasing the number of Passed Tests by one -

+ How many marks are given for the user for increasing the number of Passed Tests by one
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestDecreasingPoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestDecreasingPoints.html index f936f55..a2130bd 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestDecreasingPoints.html +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestDecreasingPoints.html @@ -1,5 +1,3 @@
-

- How many marks given for the user for decreasing the number of Skipped Tests by one -

+ How many marks are given for the user for decreasing the number of Skipped Tests by one
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestIncreasingPoints.html b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestIncreasingPoints.html index 02cb067..884d14a 100644 --- a/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestIncreasingPoints.html +++ b/src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestIncreasingPoints.html @@ -1,5 +1,3 @@
-

- How many marks given for the user for increasing the number of Skipped Tests by one -

+ How many marks are given for the user for increasing the number of Skipped Tests by one
\ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmImportScores.jelly b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmImportScores.jelly index 3790629..666ec57 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmImportScores.jelly +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmImportScores.jelly @@ -6,11 +6,11 @@
- +
- +
diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmImportScores.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmImportScores.properties new file mode 100644 index 0000000..fee0a2f --- /dev/null +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmImportScores.properties @@ -0,0 +1,2 @@ +cigame.Leaderboard.scoreFile=Score file +cigame.Leaderboard.importScores=Import scores diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.jelly b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.jelly index 3452502..dcec9d2 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.jelly +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.jelly @@ -5,8 +5,8 @@
- ${%Leaderboard.ResetScoresQuestion} - + ${%cigame.Leaderboard.resetScoresQuestion} +
diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.properties index a5e9acb..c746c08 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.properties +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores.properties @@ -1,2 +1,2 @@ -Leaderboard.ResetScoresQuestion=Are you sure you want to reset all scores? -Yes=Yes +cigame.Leaderboard.resetScoresQuestion=Are you sure you want to reset all scores? +cigame.Yes=Yes diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_fr.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_fr.properties new file mode 100644 index 0000000..e5a3fe6 --- /dev/null +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_fr.properties @@ -0,0 +1,2 @@ +cigame.Leaderboard.resetScoresQuestion=Etes-vous sûr de vouloir réinitialiser tous les scores? +cigame.Yes=Oui \ No newline at end of file diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_ko.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_ko.properties deleted file mode 100644 index 78099e0..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_ko.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Leaderboard.ResetScoresQuestion=\uC815\uB9D0\uB85C \uBAA8\uB4E0 \uC810\uC218\uB97C \uCD08\uAE30\uD654\uD569\uB2C8\uAE4C? -Yes=\uB124 diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_sv.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_sv.properties deleted file mode 100644 index 792748e..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/confirmResetScores_sv.properties +++ /dev/null @@ -1,2 +0,0 @@ -Leaderboard.ResetScoresQuestion=Är du säker på att du vill nollställa alla poäng? -Yes=Ja diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.jelly b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.jelly index b790aa9..3da73bc 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.jelly +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.jelly @@ -1,7 +1,7 @@ - + @@ -9,7 +9,7 @@ -

${%Leaderboard.title}

+

${%cigame.Leaderboard.title}

@@ -19,7 +19,7 @@
${userGroup.name} icon -
+
${userGroup.name}

${userGroup.description}

@@ -33,9 +33,9 @@
+ diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.properties index 61c57ff..8d31303 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.properties +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index.properties @@ -1,4 +1,3 @@ -Leaderboard.title=Leaderboard -Leaderboard.Participant=Participant -Leaderboard.Description=Description -Leaderboard.Score=Score +cigame.Leaderboard.title=Leaderboard +cigame.Leaderboard.Participant=Participant +cigame.Leaderboard.Score=Score diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_el.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_el.properties deleted file mode 100644 index 63fb63f..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_el.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Leaderboard.Description=\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE -Leaderboard.Participant=Developer -Leaderboard.Score=\u03A3\u03BA\u03BF\u03C1 diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_fr.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_fr.properties index e3cc127..dd30619 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_fr.properties +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_fr.properties @@ -1,26 +1,3 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Leaderboard.Description=Description -Leaderboard.Participant=Participant -Leaderboard.Score=Score -Leaderboard.title=Tableaux des scores +cigame.Leaderboard.title=Tableaux des scores +cigame.Leaderboard.Participant=Participant +cigame.Leaderboard.Score=Score diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_ko.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_ko.properties deleted file mode 100644 index 586f758..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_ko.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Leaderboard.Description=\uC124\uBA85 -Leaderboard.Participant=\uCC38\uAC00\uC790 -Leaderboard.Score=\uC810\uC218 -Leaderboard.title=\uB9AC\uB354 \uAC8C\uC2DC\uD310 diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_nl.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_nl.properties deleted file mode 100644 index 063a530..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_nl.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Leaderboard.Description=Beschrijving -Leaderboard.Participant=Deelnemer -Leaderboard.Score=Score diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_pt_PT.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_pt_PT.properties deleted file mode 100644 index 62d24ed..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_pt_PT.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Leaderboard.Description=Descri\u00E7\u00E3o -Leaderboard.Participant=Participante -Leaderboard.Score=Pontua\u00E7\u00E3o -Leaderboard.title=Tabela de lideran\u00E7as diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_ru.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_ru.properties deleted file mode 100644 index 681f817..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_ru.properties +++ /dev/null @@ -1,26 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Leaderboard.Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -Leaderboard.Participant=\u0423\u0447\u0430\u0441\u0442\u043D\u0438\u043A -Leaderboard.Score=\u0421\u0447\u0435\u0442 -Leaderboard.title=\u0414\u043E\u0441\u043A\u0430 \u043F\u043E\u0447\u0451\u0442\u0430 diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_sv.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_sv.properties deleted file mode 100644 index c538bc8..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/index_sv.properties +++ /dev/null @@ -1,4 +0,0 @@ -Leaderboard.title=Topplista -Leaderboard.Participant=Deltagare -Leaderboard.Description=Beskrivning -Leaderboard.Score=Antal Poäng diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.jelly b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.jelly index edc96f2..5de98e4 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.jelly +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.jelly @@ -3,16 +3,16 @@ - + + title="${%cigame.Leaderboard.title}"/> + title="${%cigame.Leaderboard.exportScores}"/> + title="${%cigame.Leaderboard.importScores}"/> + title="${%cigame.Leaderboard.resetScores}"/> diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.properties index bba4236..42d115c 100644 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.properties +++ b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel.properties @@ -1,3 +1,5 @@ -Back.To.Dashboard=Back to dashboard -Leaderboard.title=Leaderboard -Leaderboard.ResetScoresAction=Reset score +cigame.Leaderboard.backToDashboard=Back to dashboard +cigame.Leaderboard.title=Leaderboard +cigame.Leaderboard.exportScores=Export scores +cigame.Leaderboard.importScores=Import scores +cigame.Leaderboard.resetScores=Reset scores diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_el.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_el.properties deleted file mode 100644 index 6d9db68..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_el.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Back.To.Dashboard=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03BF dashboard -Leaderboard.ResetScoresAction=\u039C\u03B7\u03B4\u03B5\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2 \u03BC\u03AD\u03C4\u03C1\u03B7\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C3\u03BA\u03BF\u03C1 diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_fr.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_fr.properties deleted file mode 100644 index 8dbc5f2..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_fr.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Back.To.Dashboard=Revenir au tableau de bord -Leaderboard.ResetScoresAction=R\u00E9initialiser les scores diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_ko.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_ko.properties deleted file mode 100644 index 1d5a2af..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_ko.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Back.To.Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C \uB3CC\uC544\uAC00\uAE30 -Leaderboard.ResetScoresAction=\uC810\uC218 \uCD08\uAE30\uD654 diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_nl.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_nl.properties deleted file mode 100644 index a190e02..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_nl.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Back.To.Dashboard=Terug naar Dashboard -Leaderboard.ResetScoresAction=Reset score diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_pt_PT.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_pt_PT.properties deleted file mode 100644 index cb48d39..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_pt_PT.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Back.To.Dashboard=Voltar ao painel -Leaderboard.ResetScoresAction=Recome\u00E7ar as pontua\u00E7\u00F5es diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_ru.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_ru.properties deleted file mode 100644 index 6369643..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_ru.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Back.To.Dashboard=\u0414\u043E\u043C\u043E\u0439 -Leaderboard.ResetScoresAction=\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u0441\u0447\u0435\u0442 diff --git a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_sv.properties b/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_sv.properties deleted file mode 100644 index 7680521..0000000 --- a/src/main/resources/hudson/plugins/cigame/LeaderBoardAction/sidepanel_sv.properties +++ /dev/null @@ -1,2 +0,0 @@ -Back.To.Dashboard=Tillbaka till dashboard -Leaderboard.ResetScoresAction=Nollställ poäng diff --git a/src/main/webapp/help-projectConfig.html b/src/main/webapp/help-projectConfig.html deleted file mode 100644 index 90271c2..0000000 --- a/src/main/webapp/help-projectConfig.html +++ /dev/null @@ -1,8 +0,0 @@ -
-

- This HTML fragment will be injected into the configuration screen - when the user clicks 'help'. See global.jelly and config.jelly - for how the form decides which page to load. - You can have any HTML fragment here. -

-
\ No newline at end of file diff --git a/src/main/webapp/namesarecasesensitive.html b/src/main/webapp/namesarecasesensitive.html deleted file mode 100644 index 082d166..0000000 --- a/src/main/webapp/namesarecasesensitive.html +++ /dev/null @@ -1,10 +0,0 @@ -

The checkbox decides if the game should treat the user names in Hudson case sensitive or not. - Hudson treats user names as case sensitive, which mean that user "John" is not the same user - as "john". Some SCMs make it possible to login with the same user but with different casing, - which means that to Hudson there are separate users. This introduces a problem in the game - as one real user can have several Hudson users.

- -

If this checkbox is enabled, the game will treat all users as separate, just like Hudson does. - If this checkbox is disabled, the game will make case insensitive look ups of the user names - which mean points awarded to "John" and "john" will be awarded to the same user.

-
\ No newline at end of file
- ${%Leaderboard.Participant}${%cigame.Leaderboard.Participant} - ${%Leaderboard.Score} + ${%cigame.Leaderboard.Score}