Re: list jenkinsci repos

2013-06-25 Thread Joey Jiao
Benjamin and Kohsuke, Thanks for your reply, I did in my previous way to make a script to download all github.com/jenkinsci repos easily. Herewith it in case anyone want it. Just modify the username to yours. Usage: python download_all_jenkins_projects.py Which will download these +1000 projects o

Re: list jenkinsci repos

2013-06-25 Thread Kohsuke Kawaguchi
You might find this easier to deal with: https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Repositories This is machine updated daily. On 06/24/2013 08:25 PM, Joey Jiao wrote: Hi, I use this cmd to list jenkinsci all repos, but it didn't list all, any suggestion? $curl https://api.github.

Re: How can I get control of the generation process of config.xml file for a jenkins job?

2013-06-25 Thread oliver gondža
It depends on what kind of control do you want. Parts of the config file and the config form are managed by other extension points (builders, publishers, ...) and their processing is usually delegated.[1] I dare to say that most of the implementations adhere to this scheme. If you need dire

Re: How to add a checkbox to the Jenkins main config layer {instance}/configure?

2013-06-25 Thread Ognjen Bubalo
Can you help me, where can I check if it is checked or not? I tried with DataBoundConstructor but did not work. Thanks, Ogi On Mon, Jun 24, 2013 at 10:25 PM, Ognjen Bubalo wrote: > Thank you Jesse! The global.jelly worked. > > > On Wednesday, June 19, 2013 1:08:37 AM UTC+2, Jesse Glick wrote: >

Re: How can I get control of the generation process of config.xml file for a jenkins job?

2013-06-25 Thread Mengqi
Thank you so much, Oliver! Actually I've extended the "hudson.model.Project" which is an implementation of "hudson.model.Project". My current problem is I want to get control of the config.xml generation process for my job, which maybe implemented throught the function "submit"? But I have no i

Re: How can I get control of the generation process of config.xml file for a jenkins job?

2013-06-25 Thread oliver gondža
Hi, hudson.model.Job[1] extension point and its implementations may be a good start. The source of most of them can be found at github. [1] https://wiki.jenkins-ci.org/display/JENKINS/Extension+points#Extensionpoints-hudson.model.Job HTH -- oliver -- You received this message because you a

How can I get control of the generation process of config.xml file for a jenkins job?

2013-06-25 Thread 张梦琪
Hi all, I'm new to Jenkins and now I'm supposed to develop a jenkins plugin. In the plugin will create a new job type, and generate the configuration page of this job type. I've finish this one by extending the class "hudson.model.Project" ; For now, when I click "save", nothing goes into the

Re: additional verification for sign-up request

2013-06-25 Thread Larry Shatzer, Jr.
Created. It should have sent you an email. -- Larry On Tue, Jun 25, 2013 at 12:24 PM, Matt Gumbel wrote: > Hi All, > > I tried to register for a Jenkins Jira account but received the following > error from the system: > > Oops! Due to the spam problem, we need additional verification for your

additional verification for sign-up request

2013-06-25 Thread Matt Gumbel
Hi All, I tried to register for a Jenkins Jira account but received the following error from the system: Oops! Due to the spam problem, we need additional verification for your sign-up request. Please contact jenkinsci-dev@googlegroups.com

few fixes for dbCharts plugin and svn repo in jenkins-ci.org/trunk

2013-06-25 Thread Roman
Hi, I made few fixes for dbCharts plugin. Several moths I got agreement from Piotr Tabor to push fixes. he also said that don't have time for continue support it. How I could do it if it hosted on https://svn.jenkins-ci.org/trunk/hudson/plugins/dbCharts ? Where should I get user/pass for commit?

Re: Executing Remote Tests

2013-06-25 Thread Kohsuke Kawaguchi
>From my perspective, it doesn't necessarily have to go into Gradle core. My fix does work with the unmodified Gradle. And for Gradle, the current strategy of bundling every plugins into one distribution just isn't going to be sustainable. So they should encourage more of these things as true "plu

Re: list jenkinsci repos

2013-06-25 Thread Benjamin Lau
You misunderstand. That's the http response header. If you look at the Link: header notice that it has two values. The first is labeled next and is the next page. The second is labeled last and is the last page. With this data you can now iterate through all of the pages using the next link. So w

Re: Why st:include not support relative path at Jenkins 1.519?

2013-06-25 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
You can also do something like this: You'll probably need to specify the fully-qualified name of the class that owns the Jelly file. - Original Message - From: jenkinsci-dev@googlegroups.com To: jenkinsci-dev@googlegroups.com At: Jun 25 2013 05:44:50 Hi James, do these classes have

Re: List of installed JDKs

2013-06-25 Thread Daniel Beck
I'm guessing here, but jenkins.model.Jenkins.getInstance().getJDKs() looks good. On 25.06.2013, at 12:36, Baris Batiege wrote: > Hey, I’m developing a simple plugin to make a JDK parameter, where the user > can pick a JDK to be used for this build without having to go into the > configuration

List of installed JDKs

2013-06-25 Thread Baris Batiege
Hey, I'm developing a simple plugin to make a JDK parameter, where the user can pick a JDK to be used for this build without having to go into the configuration page. I'm having trouble populating the list of selectable JDKs though. At first I thought I could use JDKInstaller.JDKList, but this

Re: Why st:include not support relative path at Jenkins 1.519?

2013-06-25 Thread Ulli Hafner
Hi James, do these classes have a super type in common? Then you can place the jelly files there. If not you can either consider using a tag lib or use a import with absolute url: Ulli Am 25.06.2013 um 10:35 schrieb James Yin : > Hi, Ulli > > Thanks your reply. > I reused ajaxBacku

Re: Why st:include not support relative path at Jenkins 1.519?

2013-06-25 Thread James Yin
Hi, Ulli Thanks your reply. I reused ajaxBackupTask.jelly in two class, because we need show same content in two view, file stuctre: src/main/java/org/jvnet/hudson/plugins/backup/BackupLink.java src/main/java/org/jvnet/hudson/plugins/backup/BackupWidget.java src/main/resources/org/jvnet/hudson/p

Pull request - can somebody take a look?

2013-06-25 Thread Toomas Römer
Hola, https://github.com/jenkinsci/jenkins/pull/822 I'm not sure what is wrong. My patches are into the ui-sample-plugin project and look quite safe but pull request builds fail. I thought I'm doing something wrong with git but as this is my second try for a pull request maybe I just need some

Re: Why st:include not support relative path at Jenkins 1.519?

2013-06-25 Thread Ulli Hafner
Hi James, in Jenkins 1.519 class loading has been changed. Now all classes and resources are stored in a classes.jar file. For details see: https://issues.jenkins-ci.org/browse/JENKINS-15120 I think using relative paths does not make much sense in jelly views, since actually the class loader i

Why st:include not support relative path at Jenkins 1.519?

2013-06-25 Thread James Yin
Hi, Guys I have a Jenkins plugin, it works find form jenkins 1.3 to 1.517, but after the Jenkins is update to 1.519, the plugin can't work and throw follow exception: javax.servlet.ServletException: org.apache.commons.jelly.JellyTagException: jar:file:/var/lib/jenkins/plugins/backup/WEB-INF/li