[JIRA] (JENKINS-24277) BUILD_USER_ID not available for build-name-setter plugin.

2020-04-24 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma edited a comment on  JENKINS-24277  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: BUILD_USER_ID not available for build-name-setter plugin.   
 

  
 
 
 
 

 
 The BUILD_USER_* variables were init  by plugin "Jenkins user build vars plugin",   this plugin execute after plugin " Build Name and Description Setter".when you configure the plugin "Build Name and Description Setter",  you can choose "Set build name before build starts" or "Set build name after build ends".The two plugin execution sequence maybe like this: ①"Build Name and Description Setter" if you choose "Set build name before build starts"  -->  ②"Jenkins user build vars plugin" init BUILD_USER_* variables --> ③"Build Name and Description Setter" if you choose "Set build name after build ends". The order of execution is determined by "Extension ordinal value", but the two plugin set this value is zero. so the order is determined by getDisplayName() value.the displayname one is "Set Build Name"  another is  "Set jenkins user build variables".the source code is here {code:java}  /** * Sort {@link ExtensionComponent}s in the descending order of {@link #ordinal()}. */public int compareTo(ExtensionComponent that) {double a = this.ordinal();double b = that.ordinal();if (a>b)return -1;if (aif (this.instance instanceof Descriptor && that.instance instanceof Descriptor) {try {return Util.fixNull(((Descriptor)this.instance).getDisplayName()).compareTo(Util.fixNull(((Descriptor)that.instance).getDisplayName()));} catch (RuntimeException | LinkageError x) {LOG.log(Level.WARNING, null, x);}}return this.instance.getClass().getName().compareTo(that.instance.getClass().getName());}{code}  Is my analysis correct ???    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 
  

[JIRA] (JENKINS-24277) BUILD_USER_ID not available for build-name-setter plugin.

2020-04-24 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma commented on  JENKINS-24277  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: BUILD_USER_ID not available for build-name-setter plugin.   
 

  
 
 
 
 

 
 The BUILD_USER_* variables were init  by plugin "Jenkins user build vars plugin",   this plugin execute after plugin " Build Name and Description Setter". when you configure the plugin "Build Name and Description Setter",  you can choose "Set build name before build starts" or "Set build name after build ends". The two plugin execution sequence maybe like this:  ①"Build Name and Description Setter" if you choose "Set build name before build starts"  -->  ②"Jenkins user build vars plugin" init BUILD_USER_* variables --> ③"Build Name and Description Setter" if you choose "Set build name after build ends".   The order of execution is determined by "Extension ordinal value", but the two plugin set this value is zero. so the order is determined by getDisplayName() value. the displayname one is "Set Build Name"  another is  "Set jenkins user build variables".      the source code is here   

 



/**
 * Sort {@link ExtensionComponent}s in the descending order of {@link #ordinal()}.
 */
public int compareTo(ExtensionComponent that) {
double a = this.ordinal();
double b = that.ordinal();
if (a>b)return -1;
if (areturn 1;// make the order bit more deterministic among extensions of the same ordinal
if (this.instance instanceof Descriptor && that.instance instanceof Descriptor) {
try {
return Util.fixNull(((Descriptor)this.instance).getDisplayName()).compareTo(Util.fixNull(((Descriptor)that.instance).getDisplayName()));
} catch (RuntimeException | LinkageError x) {
LOG.log(Level.WARNING, null, x);
}
}
return this.instance.getClass().getName().compareTo(that.instance.getClass().getName());
}







 

     Is my analysis correct ???      
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

  

[JIRA] (JENKINS-60435) shell scripts file permission set the default value to 0600

2019-12-11 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-60435  
 
 
  shell scripts file permission set the default value to 0600   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 -rw-rw-r-- 1 buildfarm buildfarm 71 Dec 11 15:33 /tmp/jenkins2989735420931240305.sh-rw-rw-r-- 1 buildfarm buildfarm 71 Dec 11 15:32 /tmp/jenkins4366322686308396837.sh-rw-rw-r-- 1 buildfarm buildfarm 563 Dec 11 15:32 /tmp/jenkins6911470318430213229.shI found the jenkins save the shell script in the /tmp path on ubuntu linux,  and the file permission is 644.there are security risks.on the same server other linux account can access these shell script files, maybe he/she will get password from   these files (if i save the password into these  hell  shell  script files).so I suggest that set these scripts file permission to 0600. (or give a way to set  permission for these script )    like ssh-slaves-plugin set the remote working directory permission to 0700.    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.6#713006-sha1:cc4451f)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this me

[JIRA] (JENKINS-60435) shell scripts file permission set the default value to 0600

2019-12-11 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-60435  
 
 
  shell scripts file permission set the default value to 0600   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 core  
 
 
Created: 
 2019-12-11 08:21  
 
 
Environment: 
 Jenkins ver. 2.176.1  master is ubuntu 16.04.  all slaves is ubuntu 14.04.   
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Minghui Ma  
 

  
 
 
 
 

 
 rw-rw-r- 1 buildfarm buildfarm 71 Dec 11 15:33 /tmp/jenkins2989735420931240305.sh rw-rw-r- 1 buildfarm buildfarm 71 Dec 11 15:32 /tmp/jenkins4366322686308396837.sh rw-rw-r- 1 buildfarm buildfarm 563 Dec 11 15:32 /tmp/jenkins6911470318430213229.sh I found the jenkins save the shell script in the /tmp path on ubuntu linux, and the file permission is 644. there are security risks. on the same server other linux account can access these shell script files, maybe he/she will get password from these files (if i save the password into these hell script files). so I suggest that set these scripts file permission to 0600. like ssh-slaves-plugin set the remote working directory permission to 0700.      
 

  
 
 
 
 

 
 
 

 
 
 

[JIRA] (JENKINS-58157) "delete build" button is to long

2019-06-27 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma commented on  JENKINS-58157  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: "delete build" button is to long   
 

  
 
 
 
 

 
 edit the "build info" set the title  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200205.1561341295000.11184.1561701180166%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58157) "delete build" button is to long

2019-06-24 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58157  
 
 
  "delete build" button is to long   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 after upgrade to 2.176.1, "delete build" button is to long. see my attachment picture at bleow. h1. JENKINS-55848  https://github.com/jenkinsci/jenkins/pull/3871  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200205.1561341295000.7808.1561438560066%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58157) "delete build" button is to long

2019-06-24 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58157  
 
 
  "delete build" button is to long   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 after upgrade to 2.176.1, "delete build" button is to long. see my attachment picture at bleow.  h1. JENKINS-55848  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200205.1561341295000.7807.1561438500065%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma assigned an issue to Minghui Ma  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Assignee: 
 zhao xx Minghui Ma  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200204.1561340855000.6880.1561348440108%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma assigned an issue to zhao xx  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Assignee: 
 zhao xx  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200204.1561340855000.6878.1561348380166%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 after upgrade to 2.176.1, some string translate to chinese missing.for example: "Manage Jenkins",   What's new in 2.176 (2019-05-05) Migrate all Chinese localization resources into Localization: Chinese (Simplified) plugin. (pull 4008)中文的本地翻译都移到 插件里面了https://plugins.jenkins.io/localization-zh-cn  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200204.1561340855000.6876.1561348380108%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated  JENKINS-58156  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Status: 
 Fixed but Unreleased Closed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200204.1561340855000.6875.1561348320192%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated  JENKINS-58156  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Status: 
 Open Fixed but Unreleased  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200204.1561340855000.6874.1561348320134%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated  JENKINS-43120  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Status: 
 Fixed but Unreleased Closed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.180234.149059217.6815.1561342680355%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma assigned an issue to Minghui Ma  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Assignee: 
 Minghui Ma  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.180234.149059217.6813.1561342680325%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 jenkins 2.32.2 userbuild vars plugin 1.5 when rebuild one job started by timer the user build vars are empty.  by 2019/06/24i modify the code see https://github.com/mamh-java/build-user-vars-plugin/commits/master  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.180234.149059217.6812.1561342680213%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated  JENKINS-43120  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Status: 
 Open Fixed but Unreleased  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.180234.149059217.6814.1561342680344%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma commented on  JENKINS-43120  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
 see https://github.com/mamh-java/build-user-vars-plugin/commits/master  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.180234.149059217.6811.1561342620043%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58157) "delete build" button is to long

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58157  
 
 
  "delete build" button is to long   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 after upgrade to 2.176.1, "delete build" button is to long.see my attachment  png  picture at bleow.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200205.1561341295000.6810.1561341600270%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58157) "delete build" button is to long

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58157  
 
 
  "delete build" button is to long   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Attachment: 
 2.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200205.1561341295000.6809.1561341600120%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58157) "delete build" button is to long

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58157  
 
 
  "delete build" button is to long   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Attachment: 
 2.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200205.1561341295000.6808.1561341420069%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58157) "delete build" button is to long

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58157  
 
 
  "delete build" button is to long   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 2.png  
 
 
Components: 
 core  
 
 
Created: 
 2019-06-24 01:54  
 
 
Environment: 
 2.176.1  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Minghui Ma  
 

  
 
 
 
 

 
 after upgrade to 2.176.1, "delete build" button is to long. see my attachment png picture at bleow.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
 

[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 after upgrade to 2.176.1, some string translate to chinese missing. for example: "Manage Jenkins",    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200204.1561340855000.6806.1561341120062%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Attachment: 
 1.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.200204.1561340855000.6805.1561341060054%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-58156) jenkins chinese translate missing

2019-06-23 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-58156  
 
 
  jenkins chinese translate missing   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 core  
 
 
Created: 
 2019-06-24 01:47  
 
 
Environment: 
 2.176.1  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Minghui Ma  
 

  
 
 
 
 

 
 after upgrade to 2.176.1, some string translate to chinese missing.    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 

[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2019-02-21 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma commented on  JENKINS-43120  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
 https://github.com/jenkinsci/build-user-vars-plugin/pull/16   you can build by your self: mvn -DskipTests=true -s $PWD/../jenkins-core/settings-azure.xml package $PWD/../jenkins-core/settings-azure.xml this file  is from jenkins-core git    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54509) gerrit trigger parameters description show 'null' on the web

2018-11-07 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54509  
 
 
  gerrit trigger parameters description show 'null' on the web   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 I download the [https://github.com/jenkinsci/gerrit-trigger-plugin] code , rev .revision  is  at    "* 34313a6e - Merge pull request #382 from eryksz/fix_synchronisation ? Robert Sandell (HEAD -> master, origin/master, origin/HEAD) - (5 days ago)" ,   compile cmd is : ~/opt/apache-maven-3.5.4/bin/mvn -DskipTests=true   package hpi:run but I found  this issue:  gerrit trigger parameters description show 'null' on the web!1.png! I only modify pom.xml file so it can compile success on my local: * 1.609.3 + 2.138.2   - 6 + 8    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54509) gerrit trigger parameters description show 'null' on the web

2018-11-07 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54509  
 
 
  gerrit trigger parameters description show 'null' on the web   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 
 
Labels: 
 plugins  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54509) gerrit trigger parameters description show 'null' on the web

2018-11-07 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54509  
 
 
  gerrit trigger parameters description show 'null' on the web   
 

  
 
 
 
 

 
Change By: 
 Minghui Ma  
 

  
 
 
 
 

 
 I download the [https://github.com/jenkinsci/gerrit-trigger-plugin] code, rev is at "* 34313a6e - Merge pull request #382 from eryksz/fix_synchronisation ? Robert Sandell (HEAD -> master, origin/master, origin/HEAD) - (5 days ago)" ,compile cmd is : ~/opt/apache-maven-3.5.4/bin/mvn -DskipTests=true   package hpi:rungerrit trigger parameters description show 'null' on the web   !1.png! I only modify pom.xml  file  so it can compile success  on my local : * 1.609.3+ 2.138.2 - 6+ 8  *      
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54509) gerrit trigger parameters description show 'null' on the web

2018-11-07 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Minghui Ma created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54509  
 
 
  gerrit trigger parameters description show 'null' on the web   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 rsandell  
 
 
Attachments: 
 1.png  
 
 
Components: 
 gerrit-trigger-plugin  
 
 
Created: 
 2018-11-07 08:37  
 
 
Environment: 
 Jenkins ver. 2.138.2  openjdk version "1.8.0_181"  Ubuntu 18.04.1 LTS  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Minghui Ma  
 

  
 
 
 
 

 
 I download the https://github.com/jenkinsci/gerrit-trigger-plugin code, rev is at "* 34313a6e - Merge pull request #382 from eryksz/fix_synchronisation ? Robert Sandell (HEAD -> master, origin/master, origin/HEAD) - (5 days ago)" , compile cmd is : ~/opt/apache-maven-3.5.4/bin/mvn -DskipTests=true   package hpi:run gerrit trigger parameters description show 'null' on the web    I only modify pom.xml so it can compile success: 
 
1.609.3 + 2.138.2 2.5-SNAPSHOT-> 
 
 
6 + 8 
 
 
 
      
 

  
 
 

[JIRA] (JENKINS-42903) HTML in description is always escaped

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma edited a comment on  JENKINS-42903  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: HTML in description is always escaped   
 

  
 
 
 
 

 
 i met this issue on my jenkins. jenkins 2.32.3    !image-2017-03-27-13-47-34-456.png!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-42903) HTML in description is always escaped

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma edited a comment on  JENKINS-42903  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: HTML in description is always escaped   
 

  
 
 
 
 

 
 i met this issue on my jenkins. jenkins 2.32.3  extensible-choice-parameter-  1.3.4   !image-2017-03-27-13-47-34-456.png!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-42903) HTML in description is always escaped

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42903  
 
 
  HTML in description is always escaped   
 

  
 
 
 
 

 
Change By: 
 琴挑文君 Ma  
 
 
Attachment: 
 image-2017-03-27-13-47-34-456.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-42903) HTML in description is always escaped

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma commented on  JENKINS-42903  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: HTML in description is always escaped   
 

  
 
 
 
 

 
   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
Change By: 
 琴挑文君 Ma  
 

  
 
 
 
 

 
 jenkins 2.32.2userbuild vars plugin 1.5 when rebuild one job  started by timer  the user build vars are empty.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild job started by timer, user build vars are empty

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild job started by timer, user build vars are empty   
 

  
 
 
 
 

 
Change By: 
 琴挑文君 Ma  
 
 
Summary: 
 when rebuild  job started by timer,   user build vars are empty  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild user build vars are empty

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild user build vars are empty   
 

  
 
 
 
 

 
Change By: 
 琴挑文君 Ma  
 
 
Attachment: 
 1.png  
 
 
Attachment: 
 2.png  
 
 
Attachment: 
 3.png  
 
 
Attachment: 
 4.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-43120) when rebuild user build vars are empty

2017-03-26 Thread mmh19891...@qq.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 琴挑文君 Ma created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-43120  
 
 
  when rebuild user build vars are empty   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 build-user-vars-plugin  
 
 
Created: 
 2017/Mar/27 5:22 AM  
 
 
Environment: 
 jenkins 2.32.2  userbuild vars plugin 1.5
 
 
Priority: 
  Minor  
 
 
Reporter: 
 琴挑文君 Ma  
 

  
 
 
 
 

 
 jenkins 2.32.2 userbuild vars plugin 1.5   when rebuild one job the user build vars are empty.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment