Handling GET /jenkins/ : resin-port-8080-45} Caught exception evaluating: h.advertiseHeaders(response) in /jenkins/. Reason: java.lang.NullPointerException

2014-04-18 Thread William Damage
Running Jenkins under Resin (4.0.39 Pro) works fine in the sense that the builds and web UI are ok, I just can't get rid of these errors in the log: Anyone spot what's wrong please? Thanks. [14-04-18 12:20:17.369] {Handling GET /jenkins/ : resin-port-8080-45} Caught exception evaluating:

Re: Subversion Exclusion revprop name - trying to use this to ignore certain svn commits, but can't seem to get this to work

2014-04-18 Thread Daniel Beck
(Re-sending to the list -- sorry Robert!) On 17.04.2014, at 22:50, Robert Mackin robert.mac...@gmail.com wrote: Does that mean this feature doesn't really exist? No, it just means you didn't see the 'Advanced' button a few options down. Repository URL Credentials Local module directory

New build flow seems to break many things

2014-04-18 Thread Greg Dickie
Hi, We updated to the latest build flow without workspaces and all of the change reporting seems to have broken. In addition builds are no longer finding the latest git commit on branches. This is quite a setback for us. What was the rational for those changes and is there an alternative

turn off html escaping of email content?

2014-04-18 Thread stephanl
Howdy, I am trying to embed a base64 img src in the body/content of an ext-email notification, like so: img src='data:image/png;base64, ${FILE, path=my-base64-encoded-png.b64}' width=900 height=550/ The email I receive has all '+' characters in the included base64 string escaped as #43;. I

Re: turn off html escaping of email content?

2014-04-18 Thread Slide
Are you using a groovy or jelly template, or generating the HTML yourself? On Fri, Apr 18, 2014 at 10:20 AM, stephanl stephan.l...@gmail.com wrote: Howdy, I am trying to embed a base64 img src in the body/content of an ext-email notification, like so: img src='data:image/png;base64,

Re: turn off html escaping of email content?

2014-04-18 Thread stephanl
Not using templates. Tried using img src='data:image/png;base64, ${FILE, path=my-base64-encoded-png.b64}' width=900 height=550/ in the 'Default Content' section/field of the ext-email plugin. Also tried using def reportPath = build.getWorkspace().child(my-base64-encoded-png.b64)

How can Jenkins on Linux server to trigger PowerShell script on a window server?

2014-04-18 Thread Lily Fu
Hi, I have a Jenkins server running on Redhat Linux server. Wants to trigger a PowerShell script on a remote window’s server. Can this be done? Did some research, 1. Install PowerShellWebAccess on the windows’ server, a client (such as web brower) can have a PowerShell console But, I

Re: turn off html escaping of email content?

2014-04-18 Thread Slide
What is your content type set to in the settings? On Fri, Apr 18, 2014 at 12:52 PM, stephanl stephan.l...@gmail.com wrote: Not using templates. Tried using img src='data:image/png;base64, ${FILE, path=my-base64-encoded-png.b64}' width=900 height=550/ in the 'Default Content'

Re: turn off html escaping of email content?

2014-04-18 Thread stephanl
HTML (text/html). For grins, I tried Plain Text (text/plain), in which case the base64 string was included un-escaped, but (of course) not recognized/rendered as image when the containing email was viewed. In the configuration section of the ext-email plugin these are the only two options

Re: turn off html escaping of email content?

2014-04-18 Thread Slide
There is no capability to add a different content type. On Fri, Apr 18, 2014 at 1:16 PM, stephanl stephan.l...@gmail.com wrote: HTML (text/html). For grins, I tried Plain Text (text/plain), in which case the base64 string was included un-escaped, but (of course) not recognized/rendered as

Re: How can Jenkins on Linux server to trigger PowerShell script on a window server?

2014-04-18 Thread Les Mikesell
On Fri, Apr 18, 2014 at 2:57 PM, Lily Fu lily...@nesassociates.com wrote: Hi, I have a Jenkins server running on Redhat Linux server. Wants to trigger a PowerShell script on a remote window’s server. Can this be done? Did some research, 1. Install PowerShellWebAccess on the

Re: turn off html escaping of email content?

2014-04-18 Thread stephanl
So then, do you know if there is a way to send a base64 as-is in an email? E.g. without being html-escaped implicitly? Looks like some macro tokens support this, through the escapeHtml attribute. I did not see anything in the ext-email code base suggesting there is a global option/switch, or

Editable Email Notification - BUILD_NUMBER - quick question

2014-04-18 Thread mpc8250
Hi All In Editable Email Notification plugin, it allows for $BUILD_NUMBER of the job to be printed. We have 2 jobs that are chained together. We like to use the first job's build number in the 2nd job. How can we cause Editable Email Notification plugin to use our parameterized BUILD_NUMBER

Re: turn off html escaping of email content?

2014-04-18 Thread Slide
Can you try using a groovy template instead of just trying to generate the HTML yourself? I'm not sure why the text is being encoded like you mention. I can try and recreate if you send the file you are using and the template. On Apr 18, 2014 5:48 PM, stephanl stephan.l...@gmail.com wrote: So

Re: Editable Email Notification - BUILD_NUMBER - quick question

2014-04-18 Thread Slide
Does the first job trigger the second job? If so, pass the build number from the first to the second as a parameter and then it will be available as $YOUR_PARAMETER. On Apr 18, 2014 5:51 PM, mpc8250 mpc8...@gmail.com wrote: Hi All In Editable Email Notification plugin, it allows for