[JIRA] (JENKINS-13769) Add URLs for RDoc and Textile markup

2012-05-14 Thread dieterdeme...@gmail.com (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-13769?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Work on JENKINS-13769 started by Dieter De Meyer.

 Add URLs for RDoc and Textile markup
 

 Key: JENKINS-13769
 URL: https://issues.jenkins-ci.org/browse/JENKINS-13769
 Project: Jenkins
  Issue Type: Improvement
  Components: plugin
Affects Versions: current
Reporter: Dieter De Meyer
Assignee: Dieter De Meyer
Priority: Trivial
  Labels: plugin, plugins
 Fix For: current


 A minor enhancement to add the URLs for RDoc and Textile markup to the 
 Embeddable Build Status Plugin.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12216) Rake/Ruby build step is not available in actions for other plugins

2012-03-15 Thread dieterdeme...@gmail.com (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12216?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dieter De Meyer reassigned JENKINS-12216:
-

Assignee: Dieter De Meyer  (was: Dieter De Meyer)

 Rake/Ruby build step is not available in actions for other plugins
 --

 Key: JENKINS-12216
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12216
 Project: Jenkins
  Issue Type: Bug
  Components: rake, ruby
Affects Versions: current
 Environment: Jenkins 1.420  1.444
 Rake plugin 1.7.7
 Promoted build plugin 2.4
 Conditional buildstep plugin 0.3
Reporter: Kristof Willaert
Assignee: Dieter De Meyer
Priority: Minor

 With the Rake plugin installed, a rake build step appears in the list of 
 build steps. However, when also using the promoted builds plugin, the list of
 actions to be executed with a promoted build does not contain the rake build 
 step.
 Upon investigation, the list of possible actions in the promoted builds 
 plugin gets compiled using the following condition:
 {code}
 BuildStepDescriptor bsd = (BuildStepDescriptor) d;
 if(bsd.isApplicable(PromotionProcess.class))
 list.add(d);
 {code}
 (in 
 promoted-builds-plugin/src/main/java/hudson/plugins/promoted_builds/PromotionProcess.java)
 I guess the reason why the Rake builder does not appear in the list of 
 actions, is because the RakeDescriptor class
 extends the DescriptorBuilder class instead of the 
 BuildStepDescriptorBuilder class:
 {code}
 public static final class RakeDescriptor extends DescriptorBuilder {
 {code}
 (in rake-plugin/src/main/java/hudson/plugins/rake/Rake.java)
 My guess is that adding an 
 {code}
 import hudson.tasks.BuildStepDescriptor;
 {code}
 and changing the RakeDescriptor class to:
 {code}
 public static final class RakeDescriptor extends BuildStepDescriptorBuilder 
 {
 {code}
 might fix this. 
 I have to say I am a complete Java newbie, and the Jenkins code is unknown to 
 me, so
 I might be way off.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira