iPhone App To Help You Learn Spanish Faster By Using Flashcards With Pictures

2012-10-30 Thread Spanish Flashcards with Pictures
http://on.fb.me/QCZQJv - Spanish Flashcards with Pictures is an iPhone app that will help you learn Spanish faster by using flashcards with pictures (learn over 300 most commonly used words in the English / Spanish language from A to Z), thanks.

Re: Request hosting - GitHub ID (JerryCai) , jenkins-ci.org account ID jerrycai

2012-10-30 Thread Jerry Cai
Thank you so quick response , But I found that CI job build failed , Could you tell me How to publish my Plugins , I can't understand or follow its hosting plugins documents , Regards! -Jerry Cai On Tuesday, October 30, 2012 5:09:33 AM UTC+8, nicolas de loof wrote: forked as

Having issues with configuring the selenium plugin (probably due to my not understanding)

2012-10-30 Thread Andrew Gray
Hi All, I am using: Windows Server 2003 SP2 Latest version of Jenkins Selenium plugin Visual Studio 2010 Latest version of NUnit I have a bunch of Selenium tests written with WebDriver framework. I used to have these tests running a treat in about Firefox 3.6 since then I have not been able to

Re: Request hosting - GitHub ID (JerryCai) , jenkins-ci.org account ID jerrycai

2012-10-30 Thread nicolas de loof
also, please create a wiki page for this plugin your pom.xml has a link to http://wiki.jenkins-ci.org/display/JENKINS/GSSH+Plugin that doesn't exist yet 2012/10/30 nicolas de loof nicolas.del...@gmail.com CI job failed cause you job uses JDK7 to build. do you really require Java7 ? Jenkins

Plugin as component in Jira

2012-10-30 Thread Leif Janzik
Hi, I just published my little plugin for CocoaPods yesterday. It's available in the plugin manager and I see the details on its wiki page, but I don't see a component in Jira, so no bugreports etc. can be created. Is there a automatic process for this and I just have to wait? Or do I have to

Re: Backports to LTS 1.480.1

2012-10-30 Thread Edward Cullen
On 21/10/12 21:54, Vojtech Juranek wrote: Hi, as agreed on the last Jenkins meeting [1], next LTS will be based on 1.480. I identified and backported following bug fixes: We've just hit this in our production environment: JENKINS-15369 - NPE from Jenkins.removeNode [1] Eddy [1]

Re: revert to esx snapshot in build step

2012-10-30 Thread xterm
thanks tom, but i think the problem is that i am not running launch synchronously and thats why jenkins/hudson still thinks the channel is open and then tries to close it. is there anyone out there that can point to an example that shows how to run launch synchronously? thanks, xterm On

env variables

2012-10-30 Thread Michael Hüttermann
Hello, could you please give me a pointer what the recommended way is to set environment variables in hudson.tasks.Builder#perform, which are in turn read in a later build step inside the same job? Thank you. Cheers Michael

Re: env variables

2012-10-30 Thread xterm
Hey Micheal, here is how i did it: i wanted to change my build name to our mercurial change set name, so i did this: 1. used the hg command to get the change set name: 123:abcdefghi 2. used a shell to echo the name i wanted to a file like so: 3. echo 123:abcdefghi

Re: env variables

2012-10-30 Thread xterm
Geez, sorry was in a hurry echo HG_CHANGESET=${HG_CHANGESET} /tmp/workspace/hgchangeset.properties where the variable ${HG_CHANGESET} contains the 123:abcdefghi value. xterm On Tuesday, October 30, 2012 8:10:38 AM UTC-5, Michael Hüttermann wrote: Hello, could you please give me a pointer

Re: env variables

2012-10-30 Thread Michael Hüttermann
thanks, but this solution has the indirection via another plugin. How can I directly set environment variables in the Jenkins plugin? Michael On Tuesday, October 30, 2012 2:40:06 PM UTC+1, xterm wrote: Geez, sorry was in a hurry echo HG_CHANGESET=${HG_CHANGESET}

Re: env variables

2012-10-30 Thread Michael Hüttermann
an environment variable such as WORKSPACE. actually it does not matter how to solve the task, which is to pass a variable from the Builder#perform to a different Builder that is executed later as another build step, in the same Jenkins build job. On Tuesday, October 30, 2012 4:30:17 PM UTC+1,

Re: env variables

2012-10-30 Thread AdvanTiSS
*String value = Hello env vars; build.addAction(new hudson.model.ParametersAction(new hudson.model.StringParameterValue(VAR_NAME, value));* variable VAR_NAME will be available by next build steps via standard variable tag $VAR_NAME On Tuesday, October 30, 2012 5:44:06 PM UTC+2, Michael

Wiki Installation count stale

2012-10-30 Thread Justin Ryan
I looks like the installations found count for plugins hasn't been updated since August (i.e. it's missing Sept and will be missing Oct soon). Can someone see if something is broken with the reporting?

Re: Plugin as component in Jira

2012-10-30 Thread Michael Clarke
Leif, What's your Jira username? Thanks, Michael On 30 October 2012 09:06, Leif Janzik leif.jan...@gmail.com wrote: Hi, I just published my little plugin for CocoaPods yesterday. It's available in the plugin manager and I see the details on its wiki page, but I don't see a component in

Re: Plugin as component in Jira

2012-10-30 Thread Leif Janzik
ljanzik Regards, Leif Am Dienstag, 30. Oktober 2012 schrieb Michael Clarke : Leif, What's your Jira username? Thanks, Michael On 30 October 2012 09:06, Leif Janzik leif.jan...@gmail.comjavascript:_e({}, 'cvml', 'leif.jan...@gmail.com'); wrote: Hi, I just published my little

Re: env variables

2012-10-30 Thread lvoty...@redhat.com
You can try to use the class hudson.model.EnvironmentContributor too.

Re: Plugin as component in Jira

2012-10-30 Thread Michael Clarke
Created On 30 October 2012 20:15, Leif Janzik leif.jan...@gmail.com wrote: ljanzik Regards, Leif Am Dienstag, 30. Oktober 2012 schrieb Michael Clarke : Leif, What's your Jira username? Thanks, Michael On 30 October 2012 09:06, Leif Janzik leif.jan...@gmail.com wrote: Hi, I just

Re: Backports to LTS 1.480.1

2012-10-30 Thread Jesse Glick
On 10/30/2012 05:48 AM, Edward Cullen wrote: We've just hit this in our production environment: JENKINS-15369 - NPE from Jenkins.removeNode Do you have any idea how to reproduce? If so, do 300bfc4 87d9a6e help? CloudBees encountered this NPE in our hosted Jenkins instances, we are guessing

Re: Re: Re: Backports to LTS 1.480.1

2012-10-30 Thread Kohsuke Kawaguchi
Grr, my bad. The new mainline release on Sunday flushed the queue and pushed everything to the site properly. 2012/10/27 Vojtech Juranek vjura...@redhat.com: On Wednesday 24 October 2012 21:01:24 Kohsuke Kawaguchi wrote: RC posted. unfortunately it's not propagated to the mirrors and cannot

Re: Move filesystem_scm to GitHub

2012-10-30 Thread Kohsuke Kawaguchi
All the plugins in the Subversion repository are automatically mirrored in Git already. The filesystem SCM plugin is in https://github.com/jenkinsci/filesystem_scm-plugin Since you are willing to maintain it and no commit has been made since last December, please consider it moved. You can just

Re: Move filesystem_scm to GitHub

2012-10-30 Thread Kohsuke Kawaguchi
Tombstone posted. 2012/10/30 Kohsuke Kawaguchi k...@kohsuke.org: All the plugins in the Subversion repository are automatically mirrored in Git already. The filesystem SCM plugin is in https://github.com/jenkinsci/filesystem_scm-plugin Since you are willing to maintain it and no commit has

Re: Move filesystem_scm to GitHub

2012-10-30 Thread Andrew Gray
thanks. I wasn't aware they were being mirrored On 31 October 2012 12:23, Kohsuke Kawaguchi k...@kohsuke.org wrote: Tombstone posted. 2012/10/30 Kohsuke Kawaguchi k...@kohsuke.org: All the plugins in the Subversion repository are automatically mirrored in Git already. The filesystem

Displaying Images with Jelly

2012-10-30 Thread LordShacks
Hi I am new to Jenkins and am writing a custom plugin similar to CppCheck that takes in XML files from a test unit and displays the results as a graph. I have successfully created a graph from my XML file and saved this to disk as a .png file. I am now trying to get my ProjectAction's

Re: Build parameterization

2012-10-30 Thread LordShacks
Apologies for the delay in responding to my original post. I think my original question may have been somewhat unclear as to what I wanted to accomplish with Jenkins and the plugin I am trying to develop. I will try to clarify: At the moment I am using Jenkins simply to kick off a series of

Move filesystem_scm to GitHub

2012-10-30 Thread Andrew Gray
Hi All, I have grabbed the latest of the filesystem_scm plugin from its current Svn repo. It does not appear to be being maintained ATM It is here: GitHub.com/agray/filesystem_scm Could someone please move it to the Jenkins Could someone please (as I don't have access): 1. Move this repo

Re: [ANN] Korean meet-up help/attendance wanted!

2012-10-30 Thread Jiwon Kim
Hi Kohsuke. It's very interesting! I want to attend. How it's going? What do I do? Sincerely, Jiwon 2012. 10. 25. 오후 12:55에 Kohsuke Kawaguchi k...@kohsuke.org님이 작성: Hi, I'm talking to several Korean friends of Jenkins to attempt to get a meet-up going in Seoul. If you are interested in

Re: Request hosting for global-variable-string-parameter

2012-10-30 Thread Patrick McKeown
Not sure if replying to myself will bump this thread but I'm trying it anyways. On Thursday, October 18, 2012 10:31:25 PM UTC-7, Patrick McKeown wrote: Hi, I'd like to host a simple plugin I wrote to substitute global node properties in string parameters. Github -