diff --git a/core/src/main/java/hudson/model/Descriptor.java b/core/src/main/java/hudson/model/Descriptor.java index ee866dc9d992db032ca5ed7329952d237909c4b0..8a4db66865b334821abbeb47ca992ab1f44b9273 100644 --- a/core/src/main/java/hudson/model/Descriptor.java +++ b/core/src/main/java/hudson/model/Descriptor.java @@ -554,7 +554,7 @@ public abstract class Descriptor> implements Saveable { private InputStream getHelpStream(Class c, String suffix) { Locale locale = Stapler.getCurrentRequest().getLocale(); - String base = c.getName().replace('.', '/') + "/help"+suffix; + String base = c.getName().replace('.', '/').replace('$','/') + "/help"+suffix; ClassLoader cl = c.getClassLoader(); if(cl==null) return null; diff --git a/core/src/main/java/hudson/model/Hudson.java b/core/src/main/java/hudson/model/Hudson.java index 3b50a9f74d290666e699a7e415082b410705afe1..2411c95b6613d125f395dc4c26071163121bef62 100644 --- a/core/src/main/java/hudson/model/Hudson.java +++ b/core/src/main/java/hudson/model/Hudson.java @@ -3102,27 +3102,6 @@ public final class Hudson extends Node implements ItemGroup, Stapl return System.getProperty("os.name").startsWith("mac"); } - /** - * Returns all {@code CVSROOT} strings used in the current Hudson installation. - * - *

- * Ideally this shouldn't be defined in here - * but EL doesn't provide a convenient way of invoking a static function, - * so I'm putting it here for now. - */ - public Set getAllCvsRoots() { - Set r = new TreeSet(); - for( AbstractProject p : getAllItems(AbstractProject.class) ) { - SCM scm = p.getScm(); - if (scm instanceof CVSSCM) { - CVSSCM cvsscm = (CVSSCM) scm; - r.add(cvsscm.getCvsRoot()); - } - } - - return r; - } - /** * Rebuilds the dependency map. */ diff --git a/core/src/main/java/hudson/scm/CVSSCM.java b/core/src/main/java/hudson/scm/CVSSCM.java index 72b2cbacca2ec3571452825a27adcadc1ec0ebb1..3d7c326b3077ad251ac74ad304bda3ca80d1a388 100644 --- a/core/src/main/java/hudson/scm/CVSSCM.java +++ b/core/src/main/java/hudson/scm/CVSSCM.java @@ -32,6 +32,7 @@ import hudson.Util; import hudson.Extension; import static hudson.Util.fixEmpty; import static hudson.Util.fixNull; +import static hudson.Util.fixEmptyAndTrim; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; import hudson.model.BuildListener; @@ -40,6 +41,8 @@ import hudson.model.ModelObject; import hudson.model.Run; import hudson.model.TaskListener; import hudson.model.TaskThread; +import hudson.model.Describable; +import hudson.model.Descriptor; import hudson.org.apache.tools.ant.taskdefs.cvslib.ChangeLogTask; import hudson.remoting.Future; import hudson.remoting.RemoteOutputStream; @@ -148,12 +151,12 @@ public class CVSSCM extends SCM implements Serializable { private String excludedRegions; @DataBoundConstructor - public CVSSCM(String cvsRoot, String module,String branch,String cvsRsh,boolean canUseUpdate, boolean legacy, boolean isTag, String excludedRegions) { + public CVSSCM(String cvsRoot, String allModules,String branch,String cvsRsh,boolean canUseUpdate, boolean legacy, boolean isTag, String excludedRegions) { if(fixNull(branch).equals("HEAD")) branch = null; this.cvsroot = fixNull(cvsRoot).trim(); - this.module = module.trim(); + this.module = allModules.trim(); this.branch = nullify(branch); this.cvsRsh = nullify(cvsRsh); this.canUseUpdate = canUseUpdate; @@ -1113,8 +1116,8 @@ public class CVSSCM extends SCM implements Serializable { } public boolean configure( StaplerRequest req, JSONObject o ) { - cvsPassFile = fixEmpty(req.getParameter("cvs_cvspass").trim()); - cvsExe = fixEmpty(req.getParameter("cvs_exe").trim()); + cvsPassFile = fixEmptyAndTrim(req.getParameter("cvspassFile")); + cvsExe = fixEmptyAndTrim(o.getString("cvsExe")); noCompression = req.getParameter("cvs_noCompression")!=null; save(); @@ -1126,11 +1129,27 @@ public class CVSSCM extends SCM implements Serializable { return x.getCvsRoot().equals(y.getCvsRoot()); } + /** + * Returns all {@code CVSROOT} strings used in the current Hudson installation. + */ + public Set getAllCvsRoots() { + Set r = new TreeSet(); + for( AbstractProject p : Hudson.getInstance().getAllItems(AbstractProject.class) ) { + SCM scm = p.getScm(); + if (scm instanceof CVSSCM) { + CVSSCM cvsscm = (CVSSCM) scm; + r.add(cvsscm.getCvsRoot()); + } + } + + return r; + } + // // web methods // - public FormValidation doCvsPassCheck(@QueryParameter String value) { + public FormValidation doCheckCvspassFile(@QueryParameter String value) { // this method can be used to check if a file exists anywhere in the file system, // so it should be protected. if(!Hudson.getInstance().hasPermission(Hudson.ADMINISTER)) @@ -1155,7 +1174,7 @@ public class CVSSCM extends SCM implements Serializable { /** * Checks if cvs executable exists. */ - public FormValidation doCvsExeCheck(@QueryParameter String value) { + public FormValidation doCheckCvsExe(@QueryParameter String value) { return FormValidation.validateExecutable(value); } @@ -1307,7 +1326,7 @@ public class CVSSCM extends SCM implements Serializable { /** * Action for a build that performs the tagging. */ - public final class TagAction extends AbstractScmTagAction { + public final class TagAction extends AbstractScmTagAction implements Describable { /** * If non-null, that means the build is already tagged. @@ -1489,7 +1508,7 @@ public class CVSSCM extends SCM implements Serializable { boolean isDir = path.isDirectory(); ArgumentListBuilder cmd = new ArgumentListBuilder(); - cmd.add(getDescriptor().getCvsExeOrDefault(),"tag"); + cmd.add(CVSSCM.this.getDescriptor().getCvsExeOrDefault(),"tag"); if(isDir) { cmd.add("-R"); } @@ -1532,6 +1551,21 @@ public class CVSSCM extends SCM implements Serializable { this.tagName = tagName; this.workerThread = null; } + + public Descriptor getDescriptor() { + return Hudson.getInstance().getDescriptor(getClass()); + } + } + + @Extension + public static final class TagActionDescriptor extends Descriptor { + public TagActionDescriptor() { + super(TagAction.class); + } + + public String getDisplayName() { + return ""; + } } public static final class TagWorkerThread extends TaskThread { diff --git a/core/src/main/resources/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly b/core/src/main/resources/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly index 290240e3119ea5a126f91d2ec4307f47060933e5..8bc57a56427a5722cc0bf98775304890494f87fc 100644 --- a/core/src/main/resources/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly +++ b/core/src/main/resources/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly @@ -35,7 +35,7 @@ THE SOFTWARE. + items="${it.allCvsRoots}" /> diff --git a/war/resources/help/_cvs/tagAll.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll.html similarity index 100% rename from war/resources/help/_cvs/tagAll.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll.html diff --git a/war/resources/help/_cvs/tagAll_de.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html similarity index 100% rename from war/resources/help/_cvs/tagAll_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html diff --git a/war/resources/help/_cvs/tagAll_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html similarity index 100% rename from war/resources/help/_cvs/tagAll_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html diff --git a/war/resources/help/_cvs/tagAll_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html similarity index 100% rename from war/resources/help/_cvs/tagAll_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html diff --git a/war/resources/help/_cvs/tagAll_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html similarity index 100% rename from war/resources/help/_cvs/tagAll_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html diff --git a/war/resources/help/_cvs/tagAll_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/tagAll_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html diff --git a/war/resources/help/_cvs/tagAll_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html similarity index 100% rename from war/resources/help/_cvs/tagAll_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html diff --git a/war/resources/help/_cvs/tagAll_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html similarity index 100% rename from war/resources/help/_cvs/tagAll_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html diff --git a/core/src/main/resources/hudson/scm/CVSSCM/TagAction/tagForm.jelly b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/tagForm.jelly index 61c386c85645bd632896bfb439096273766b8519..55df55c35d02bb547a38428b6114e06b473b8e55 100644 --- a/core/src/main/resources/hudson/scm/CVSSCM/TagAction/tagForm.jelly +++ b/core/src/main/resources/hudson/scm/CVSSCM/TagAction/tagForm.jelly @@ -32,6 +32,8 @@ THE SOFTWARE.

+ + ${%Choose the CVS tag name for this build}: @@ -41,7 +43,7 @@ THE SOFTWARE. - + - - + + - - + + - - + +
- - + + - + ${%legacyModeDescription} - + - + diff --git a/core/src/main/resources/hudson/scm/CVSSCM/global.jelly b/core/src/main/resources/hudson/scm/CVSSCM/global.jelly index a77977571b2257eb210f37688fc7551bf9ae9c30..a33075ce6b99d65c91bafc467fedf2553e4e26f6 100644 --- a/core/src/main/resources/hudson/scm/CVSSCM/global.jelly +++ b/core/src/main/resources/hudson/scm/CVSSCM/global.jelly @@ -29,14 +29,11 @@ THE SOFTWARE. ${%Check CVS version} - - + + - - + + diff --git a/war/resources/help/_cvs/modules.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules.html similarity index 100% rename from war/resources/help/_cvs/modules.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules.html diff --git a/war/resources/help/_cvs/modules_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules_de.html similarity index 100% rename from war/resources/help/_cvs/modules_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules_de.html diff --git a/war/resources/help/_cvs/modules_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules_fr.html similarity index 100% rename from war/resources/help/_cvs/modules_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules_fr.html diff --git a/war/resources/help/_cvs/modules_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules_ja.html similarity index 100% rename from war/resources/help/_cvs/modules_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules_ja.html diff --git a/war/resources/help/_cvs/modules_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules_nl.html similarity index 100% rename from war/resources/help/_cvs/modules_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules_nl.html diff --git a/war/resources/help/_cvs/modules_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/modules_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules_pt_BR.html diff --git a/war/resources/help/_cvs/modules_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules_ru.html similarity index 100% rename from war/resources/help/_cvs/modules_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules_ru.html diff --git a/war/resources/help/_cvs/modules_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-allModules_tr.html similarity index 100% rename from war/resources/help/_cvs/modules_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-allModules_tr.html diff --git a/war/resources/help/_cvs/branch.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch.html similarity index 100% rename from war/resources/help/_cvs/branch.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch.html diff --git a/war/resources/help/_cvs/branch_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch_de.html similarity index 100% rename from war/resources/help/_cvs/branch_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch_de.html diff --git a/war/resources/help/_cvs/branch_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch_fr.html similarity index 100% rename from war/resources/help/_cvs/branch_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch_fr.html diff --git a/war/resources/help/_cvs/branch_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch_ja.html similarity index 100% rename from war/resources/help/_cvs/branch_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch_ja.html diff --git a/war/resources/help/_cvs/branch_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch_nl.html similarity index 100% rename from war/resources/help/_cvs/branch_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch_nl.html diff --git a/war/resources/help/_cvs/branch_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/branch_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch_pt_BR.html diff --git a/war/resources/help/_cvs/branch_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch_ru.html similarity index 100% rename from war/resources/help/_cvs/branch_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch_ru.html diff --git a/war/resources/help/_cvs/branch_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-branch_tr.html similarity index 100% rename from war/resources/help/_cvs/branch_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-branch_tr.html diff --git a/war/resources/help/_cvs/update.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate.html similarity index 100% rename from war/resources/help/_cvs/update.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate.html diff --git a/war/resources/help/_cvs/update_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_de.html similarity index 100% rename from war/resources/help/_cvs/update_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_de.html diff --git a/war/resources/help/_cvs/update_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_fr.html similarity index 100% rename from war/resources/help/_cvs/update_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_fr.html diff --git a/war/resources/help/_cvs/update_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_ja.html similarity index 100% rename from war/resources/help/_cvs/update_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_ja.html diff --git a/war/resources/help/_cvs/update_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_nl.html similarity index 100% rename from war/resources/help/_cvs/update_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_nl.html diff --git a/war/resources/help/_cvs/update_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/update_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html diff --git a/war/resources/help/_cvs/update_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_ru.html similarity index 100% rename from war/resources/help/_cvs/update_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_ru.html diff --git a/war/resources/help/_cvs/update_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_tr.html similarity index 100% rename from war/resources/help/_cvs/update_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-canUseUpdate_tr.html diff --git a/war/resources/help/_cvs/cvsexe.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe.html similarity index 100% rename from war/resources/help/_cvs/cvsexe.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe.html diff --git a/war/resources/help/_cvs/cvsexe_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_de.html similarity index 100% rename from war/resources/help/_cvs/cvsexe_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_de.html diff --git a/war/resources/help/_cvs/cvsexe_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_fr.html similarity index 100% rename from war/resources/help/_cvs/cvsexe_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_fr.html diff --git a/war/resources/help/_cvs/cvsexe_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_ja.html similarity index 100% rename from war/resources/help/_cvs/cvsexe_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_ja.html diff --git a/war/resources/help/_cvs/cvsexe_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_nl.html similarity index 100% rename from war/resources/help/_cvs/cvsexe_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_nl.html diff --git a/war/resources/help/_cvs/cvsexe_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/cvsexe_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html diff --git a/war/resources/help/_cvs/cvsexe_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_ru.html similarity index 100% rename from war/resources/help/_cvs/cvsexe_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_ru.html diff --git a/war/resources/help/_cvs/cvsexe_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_tr.html similarity index 100% rename from war/resources/help/_cvs/cvsexe_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsExe_tr.html diff --git a/war/resources/help/_cvs/cvsroot.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot.html similarity index 100% rename from war/resources/help/_cvs/cvsroot.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot.html diff --git a/war/resources/help/_cvs/cvsroot_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_de.html similarity index 100% rename from war/resources/help/_cvs/cvsroot_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_de.html diff --git a/war/resources/help/_cvs/cvsroot_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_fr.html similarity index 100% rename from war/resources/help/_cvs/cvsroot_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_fr.html diff --git a/war/resources/help/_cvs/cvsroot_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_ja.html similarity index 100% rename from war/resources/help/_cvs/cvsroot_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_ja.html diff --git a/war/resources/help/_cvs/cvsroot_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_nl.html similarity index 100% rename from war/resources/help/_cvs/cvsroot_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_nl.html diff --git a/war/resources/help/_cvs/cvsroot_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/cvsroot_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html diff --git a/war/resources/help/_cvs/cvsroot_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_ru.html similarity index 100% rename from war/resources/help/_cvs/cvsroot_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_ru.html diff --git a/war/resources/help/_cvs/cvsroot_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_tr.html similarity index 100% rename from war/resources/help/_cvs/cvsroot_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRoot_tr.html diff --git a/war/resources/help/_cvs/cvs-rsh.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh.html diff --git a/war/resources/help/_cvs/cvs-rsh_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_de.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_de.html diff --git a/war/resources/help/_cvs/cvs-rsh_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_fr.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_fr.html diff --git a/war/resources/help/_cvs/cvs-rsh_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_ja.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_ja.html diff --git a/war/resources/help/_cvs/cvs-rsh_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_nl.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_nl.html diff --git a/war/resources/help/_cvs/cvs-rsh_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html diff --git a/war/resources/help/_cvs/cvs-rsh_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_ru.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_ru.html diff --git a/war/resources/help/_cvs/cvs-rsh_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_tr.html similarity index 100% rename from war/resources/help/_cvs/cvs-rsh_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvsRsh_tr.html diff --git a/war/resources/help/_cvs/cvspass.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile.html similarity index 100% rename from war/resources/help/_cvs/cvspass.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile.html diff --git a/war/resources/help/_cvs/cvspass_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile_de.html similarity index 100% rename from war/resources/help/_cvs/cvspass_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile_de.html diff --git a/war/resources/help/_cvs/cvspass_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile_fr.html similarity index 100% rename from war/resources/help/_cvs/cvspass_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile_fr.html diff --git a/war/resources/help/_cvs/cvspass_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile_ja.html similarity index 100% rename from war/resources/help/_cvs/cvspass_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-cvspassFile_ja.html diff --git a/war/resources/help/_cvs/excludedRegions.html b/core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions.html similarity index 100% rename from war/resources/help/_cvs/excludedRegions.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions.html diff --git a/war/resources/help/_cvs/excludedRegions_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions_de.html similarity index 100% rename from war/resources/help/_cvs/excludedRegions_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions_de.html diff --git a/war/resources/help/_cvs/excludedRegions_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions_fr.html similarity index 100% rename from war/resources/help/_cvs/excludedRegions_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions_fr.html diff --git a/war/resources/help/_cvs/excludedRegions_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions_ja.html similarity index 100% rename from war/resources/help/_cvs/excludedRegions_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-excludedRegions_ja.html diff --git a/war/resources/help/_cvs/legacy.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy.html similarity index 100% rename from war/resources/help/_cvs/legacy.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy.html diff --git a/war/resources/help/_cvs/legacy_de.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy_de.html similarity index 100% rename from war/resources/help/_cvs/legacy_de.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy_de.html diff --git a/war/resources/help/_cvs/legacy_fr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy_fr.html similarity index 100% rename from war/resources/help/_cvs/legacy_fr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy_fr.html diff --git a/war/resources/help/_cvs/legacy_ja.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy_ja.html similarity index 100% rename from war/resources/help/_cvs/legacy_ja.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy_ja.html diff --git a/war/resources/help/_cvs/legacy_nl.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy_nl.html similarity index 100% rename from war/resources/help/_cvs/legacy_nl.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy_nl.html diff --git a/war/resources/help/_cvs/legacy_pt_BR.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy_pt_BR.html similarity index 100% rename from war/resources/help/_cvs/legacy_pt_BR.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy_pt_BR.html diff --git a/war/resources/help/_cvs/legacy_ru.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy_ru.html similarity index 100% rename from war/resources/help/_cvs/legacy_ru.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy_ru.html diff --git a/war/resources/help/_cvs/legacy_tr.html b/core/src/main/resources/hudson/scm/CVSSCM/help-legacy_tr.html similarity index 100% rename from war/resources/help/_cvs/legacy_tr.html rename to core/src/main/resources/hudson/scm/CVSSCM/help-legacy_tr.html diff --git a/core/src/main/resources/lib/form/expandableTextbox.jelly b/core/src/main/resources/lib/form/expandableTextbox.jelly index de42c3e6914c52dfa06bdabbe2279fb016734462..1be1e0bd9cb1016ddf4a4a48c78efbecbb899445 100644 --- a/core/src/main/resources/lib/form/expandableTextbox.jelly +++ b/core/src/main/resources/lib/form/expandableTextbox.jelly @@ -54,6 +54,7 @@ THE SOFTWARE. which is the recommended approach. +