From 778fff9cd1e8ea1f8416e2afc95bdea5a1bbc195 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 8 Sep 2011 10:40:37 -0700 Subject: [PATCH] Splitting Javadoc into its own plugin. --- .../java/hudson/tasks/JavadocArchiver.java | 228 ------------------ .../java/hudson/util/FormFieldValidator.java | 3 +- .../hudson/tasks/JavadocArchiver/config.jelly | 36 --- .../tasks/JavadocArchiver/config.properties | 24 -- .../JavadocArchiver/config_da.properties | 25 -- .../JavadocArchiver/config_de.properties | 25 -- .../JavadocArchiver/config_es.properties | 25 -- .../JavadocArchiver/config_fr.properties | 25 -- .../JavadocArchiver/config_ja.properties | 25 -- .../JavadocArchiver/config_nl.properties | 23 -- .../JavadocArchiver/config_pt_BR.properties | 25 -- .../JavadocArchiver/config_ru.properties | 24 -- .../JavadocArchiver/config_tr.properties | 25 -- 13 files changed, 1 insertion(+), 512 deletions(-) delete mode 100644 core/src/main/java/hudson/tasks/JavadocArchiver.java delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config.jelly delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_da.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_de.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_es.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_fr.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_ja.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_nl.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_pt_BR.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_ru.properties delete mode 100644 core/src/main/resources/hudson/tasks/JavadocArchiver/config_tr.properties diff --git a/core/src/main/java/hudson/tasks/JavadocArchiver.java b/core/src/main/java/hudson/tasks/JavadocArchiver.java deleted file mode 100644 index 145055268a..0000000000 --- a/core/src/main/java/hudson/tasks/JavadocArchiver.java +++ /dev/null @@ -1,228 +0,0 @@ -/* - * The MIT License - * - * Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Martin Eigenbrodt, Peter Hayes - * - * 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. - */ -package hudson.tasks; - -import hudson.FilePath; -import hudson.Launcher; -import hudson.Util; -import hudson.Extension; -import hudson.EnvVars; -import hudson.model.*; -import hudson.util.FormValidation; - -import org.kohsuke.stapler.DataBoundConstructor; -import org.kohsuke.stapler.QueryParameter; -import org.kohsuke.stapler.StaplerRequest; -import org.kohsuke.stapler.StaplerResponse; -import org.kohsuke.stapler.AncestorInPath; - -import javax.servlet.ServletException; -import java.io.File; -import java.io.IOException; -import java.util.Collection; -import java.util.Collections; - -/** - * Saves Javadoc for the project and publish them. - * - * @author Kohsuke Kawaguchi - */ -public class JavadocArchiver extends Recorder { - /** - * Path to the Javadoc directory in the workspace. - */ - private final String javadocDir; - /** - * If true, retain javadoc for all the successful builds. - */ - private final boolean keepAll; - - @DataBoundConstructor - public JavadocArchiver(String javadoc_dir, boolean keep_all) { - this.javadocDir = javadoc_dir; - this.keepAll = keep_all; - } - - public String getJavadocDir() { - return javadocDir; - } - - public boolean isKeepAll() { - return keepAll; - } - - /** - * Gets the directory where the Javadoc is stored for the given project. - */ - private static File getJavadocDir(AbstractItem project) { - return new File(project.getRootDir(),"javadoc"); - } - - /** - * Gets the directory where the Javadoc is stored for the given build. - */ - private static File getJavadocDir(Run run) { - return new File(run.getRootDir(),"javadoc"); - } - - public boolean perform(AbstractBuild build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException { - listener.getLogger().println(Messages.JavadocArchiver_Publishing()); - - EnvVars env = build.getEnvironment(listener); - - FilePath javadoc = build.getWorkspace().child(env.expand(javadocDir)); - FilePath target = new FilePath(keepAll ? getJavadocDir(build) : getJavadocDir(build.getProject())); - - try { - if (javadoc.copyRecursiveTo("**/*",target)==0) { - if(build.getResult().isBetterOrEqualTo(Result.UNSTABLE)) { - // If the build failed, don't complain that there was no javadoc. - // The build probably didn't even get to the point where it produces javadoc. - listener.error(Messages.JavadocArchiver_NoMatchFound(javadoc,javadoc.validateAntFileMask("**/*"))); - } - build.setResult(Result.FAILURE); - return true; - } - } catch (IOException e) { - Util.displayIOException(e,listener); - e.printStackTrace(listener.fatalError(Messages.JavadocArchiver_UnableToCopy(javadoc,target))); - build.setResult(Result.FAILURE); - return true; - } - - // add build action, if javadoc is recorded for each build - if(keepAll) - build.addAction(new JavadocBuildAction(build)); - - return true; - } - - @Override - public Collection getProjectActions(AbstractProject project) { - return Collections.singleton(new JavadocAction(project)); - } - - public BuildStepMonitor getRequiredMonitorService() { - return BuildStepMonitor.NONE; - } - - protected static abstract class BaseJavadocAction implements Action { - public String getUrlName() { - return "javadoc"; - } - - public String getDisplayName() { - File dir = dir(); - if (dir != null && new File(dir, "help-doc.html").exists()) - return Messages.JavadocArchiver_DisplayName_Javadoc(); - else - return Messages.JavadocArchiver_DisplayName_Generic(); - } - - public String getIconFileName() { - File dir = dir(); - if(dir != null && dir.exists()) - return "help.png"; - else - // hide it since we don't have javadoc yet. - return null; - } - - /** - * Serves javadoc. - */ - public void doDynamic(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException { - new DirectoryBrowserSupport(this, new FilePath(dir()), getTitle(), "help.png", false).generateResponse(req,rsp,this); - } - - protected abstract String getTitle(); - - protected abstract File dir(); - } - - public static class JavadocAction extends BaseJavadocAction implements ProminentProjectAction { - private final AbstractItem project; - - public JavadocAction(AbstractItem project) { - this.project = project; - } - - protected File dir() { - // Would like to change AbstractItem to AbstractProject, but is - // that a backwards compatible change? - if (project instanceof AbstractProject) { - AbstractProject abstractProject = (AbstractProject) project; - - Run run = abstractProject.getLastSuccessfulBuild(); - if (run != null) { - File javadocDir = getJavadocDir(run); - - if (javadocDir.exists()) - return javadocDir; - } - } - - return getJavadocDir(project); - } - - protected String getTitle() { - return project.getDisplayName()+" javadoc"; - } - } - - public static class JavadocBuildAction extends BaseJavadocAction { - private final AbstractBuild build; - - public JavadocBuildAction(AbstractBuild build) { - this.build = build; - } - - protected String getTitle() { - return build.getDisplayName()+" javadoc"; - } - - protected File dir() { - return getJavadocDir(build); - } - } - - @Extension - public static class DescriptorImpl extends BuildStepDescriptor { - public String getDisplayName() { - return Messages.JavadocArchiver_DisplayName(); - } - - /** - * Performs on-the-fly validation on the file mask wildcard. - */ - public FormValidation doCheck(@AncestorInPath AbstractProject project, @QueryParameter String value) throws IOException, ServletException { - FilePath ws = project.getSomeWorkspace(); - return ws != null ? ws.validateRelativeDirectory(value) : FormValidation.ok(); - } - - public boolean isApplicable(Class jobType) { - return true; - } - } -} diff --git a/core/src/main/java/hudson/util/FormFieldValidator.java b/core/src/main/java/hudson/util/FormFieldValidator.java index 9e99c5033f..9261588bf8 100644 --- a/core/src/main/java/hudson/util/FormFieldValidator.java +++ b/core/src/main/java/hudson/util/FormFieldValidator.java @@ -28,7 +28,6 @@ import hudson.EnvVars; import hudson.FilePath; import hudson.ProxyConfiguration; import hudson.Util; -import hudson.tasks.JavadocArchiver; import hudson.model.AbstractProject; import jenkins.model.Jenkins; import hudson.model.Item; @@ -400,7 +399,7 @@ public abstract class FormFieldValidator { * the current workspace. * @since 1.116 * @deprecated as of 1.294. Use {@link FilePath#validateRelativeDirectory(String, boolean)} - * (see {@link JavadocArchiver.DescriptorImpl#doCheck(AbstractProject, String)} + * (see javadoc plugin for the example) */ public static class WorkspaceDirectory extends WorkspaceFilePath { public WorkspaceDirectory(StaplerRequest request, StaplerResponse response, boolean errorIfNotExist) { diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config.jelly b/core/src/main/resources/hudson/tasks/JavadocArchiver/config.jelly deleted file mode 100644 index fce9e41c1b..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config.jelly +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config.properties deleted file mode 100644 index c85eecdc44..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi -# -# 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. - -description=Directory relative to the root of the workspace, such as ''myproject/build/javadoc'' -keepAll=Keep Javadoc output for all successful builds diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_da.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_da.properties deleted file mode 100644 index 291b846cf8..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_da.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# 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. - -Javadoc\ directory=Javadoc direktorie -description=Direktorie relativt til roden af arbejdsomr\u00e5det, s\u00e5som ''mitprojekt/byg/javadoc'' -Retain\ Javadoc\ for\ each\ successful\ build=Gem Javadoc for hvert succesfuldt byg diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_de.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_de.properties deleted file mode 100644 index 35b3037f6e..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_de.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# 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. - -Javadoc\ directory=Javadoc-Verzeichnis -description=Javadoc-Verzeichnis, relativ zum Arbeitsbereich, z.B. 'myproject/build/javadoc'. -Retain\ Javadoc\ for\ each\ successful\ build=Javadocs für alle erfolgreichen Builds aufbewahren. diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_es.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_es.properties deleted file mode 100644 index 0540d8746f..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_es.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi -# -# 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. - -description=Directorio relativo al ''workspace'' del proyecto, ejemplo: ''myproject/build/javadoc'' -Javadoc\ directory=Directorio para los javadoc -Retain\ Javadoc\ for\ each\ successful\ build=Conservar los javadoc para todas las ejecuciones correctas diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_fr.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_fr.properties deleted file mode 100644 index 9eb7380c34..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_fr.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant -# -# 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. - -Javadoc\ directory=Répertoire des javadocs -description=Répertoire relatif à la racine du répertoire de travail, par exemple ''myproject/build/javadoc'' -Retain\ Javadoc\ for\ each\ successful\ build=Conserve les javadocs à chaque build qui passe avec succès diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_ja.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_ja.properties deleted file mode 100644 index b1bff1f546..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_ja.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe -# -# 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. - -Javadoc\ directory=Javadoc\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA -description=Javadoc\u304C\u51FA\u529B\u3055\u308C\u308B\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u304B\u3089\u306E\u76F8\u5BFE\u30D1\u30B9\u3067\u3002\u4F8B\uFF1Amyproject/build/javadoc -Retain\ Javadoc\ for\ each\ successful\ build=\u6210\u529F\u3057\u305F\u30D3\u30EB\u30C9\u3054\u3068\u306BJavadoc\u3092\u4FDD\u5B58 diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_nl.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_nl.properties deleted file mode 100644 index 2b68f9adb1..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_nl.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh -# -# 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. - -description=Pad relatief t.o.v. het pad van de werkplaats, zoals 'myproject/build/javadoc' \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_pt_BR.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_pt_BR.properties deleted file mode 100644 index 09fea17cd9..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_pt_BR.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva -# -# 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. - -description=Diret\u00f3rio relativo \u00e9 raiz do workspace, tal como 'meuprojeto/construcao/javadoc' -Retain\ Javadoc\ for\ each\ successful\ build=Manter Javadoc para cada constru\u00e7\u00e3o realizada com sucesso -Javadoc\ directory=Diret\u00f3rio do Javadoc diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_ru.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_ru.properties deleted file mode 100644 index 10b98efd68..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_ru.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov -# -# 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. - -Javadoc\ directory=\u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f Javadoc -description=\u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043a\u043e\u0440\u043d\u044f \u0441\u0431\u043e\u0440\u043e\u0447\u043d\u043e\u0439, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, ''myproject/build/javadoc''. diff --git a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_tr.properties b/core/src/main/resources/hudson/tasks/JavadocArchiver/config_tr.properties deleted file mode 100644 index 813cd96a7f..0000000000 --- a/core/src/main/resources/hudson/tasks/JavadocArchiver/config_tr.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag -# -# 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. - -Javadoc\ directory=Javadoc dizini -description=a\u00e7\u0131klama -Retain\ javadoc\ for\ each\ successful\ build=Her ba\u015far\u0131l\u0131 yap\u0131land\u0131rma i\u00e7in javadoc tut -- GitLab