- May 31, 2012
-
-
Kohsuke Kawaguchi authored
Going beyond this requires CSS animation.
-
Kohsuke Kawaguchi authored
-
- May 30, 2012
-
-
Kohsuke Kawaguchi authored
... since they didn't go to RC.
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
Previously, the presence of the xpath parameter suppressed the tree parameter processing. This change fixes that so that the tree parameter can be used for building small DOM, then XPath to manipulate the data further.
-
Kohsuke Kawaguchi authored
-
fma1977 authored
Added test whether the currently checked slave computer actually can take the buildable item before flagging it as needed (avoids powering up and connecting to slaves for jobs they can't build).
-
murank authored
-
- May 29, 2012
-
-
Kohsuke Kawaguchi authored
-
- May 25, 2012
-
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
It uses Diffie Hellman to come up with one-time session key, then have the server sign this session key to allow the client to verify that there's no man in the middle.
-
- May 24, 2012
-
-
Kohsuke Kawaguchi authored
Until now, Jenkins.overallNodeProvisioner was tracking an inconsistent pair of numbers. On one hand, it was tracking all the executors in the system, but then it was also only tracking the # of free-roaming label-unassigned jobs as the queue length. So if all your slaves are set with Node.Mode.EXCLUSIVE and you have some free-roaming jobs, then it'll never tickle NodePrivisioner. In other words, the # of executors weren't reflecting the actual # of executors that can execute what's counted as the queue length. See the problem report at https://groups.google.com/forum/?fromgroups#!topic/jenkinsci-dev/bUwGEgOwv4Q To fix this, I introduced another LoadStatistics that only counts the # of executors that can execute free-roaming jobs, and # of free-roaming jobs as the queue length. In this way, two pairs of numbers are consistent. This now allows us to use overallLoadStatistics for really the entire system, including all executors and the total queue length. This is primarily for administrators to see the resource utilization, and it is not useful for NodeProvisioner input because it's mixing too many different things. The semantics change in OverallLoadStatistics.queueLength allows us to deprecate its totalQueueLength field.
-
Kohsuke Kawaguchi authored
-
- May 23, 2012
-
-
Kohsuke Kawaguchi authored
Fall back in non-JNA case wasn't working.
-
Dave Hunt authored
-
Vincent Latombe authored
Backward compatibility is preventing the View.READ permission to apply correctly. It actually overrides the View.READ instead of complementing it. This change only applies default READ right if the View.READ is not available, and the user has View.CONFIGURE + the view is not empty.
-
Eric Dalquist authored
Include the file system path that was checked in the low disk space error message
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
The actual fix was in c86aa679
-
Kohsuke Kawaguchi authored
The previous implementation was always appending the per-configuration unique suffix, making it impossible for different configuration builds to share workspaces. In this fix, we introduce a secondary field to control the workspace of sub-builds (which can be either absolute or relative to the matrix head workspace.)
-
- May 22, 2012
-
-
Olivier Lamy authored
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
exposed data about installed plugins, installable plugins, update center jobs, etc., to the REST API
-
Kohsuke Kawaguchi authored
-
- May 16, 2012
-
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
-
- May 14, 2012
-
-
Kohsuke Kawaguchi authored
-
- May 09, 2012
-
-
David Reiss authored
Previously, the untar code tries to set the last modified time and mode on every untarred file. However, if the tar contains a broken symlink, or a symlink that points to a file that has not been untarred yet, the time/mode setting would fail on the broken symlink. Symlinks don't have meaningful modified times or modes of their own, so only set these values on non-symlinks. Rename the file "a" in the test to expose the bug.
-
- May 08, 2012
-
-
Kohsuke Kawaguchi authored
-
- May 07, 2012
-
-
Kohsuke Kawaguchi authored
-
- May 06, 2012
-
-
Seiji Sogabe authored
-
- May 05, 2012
-
-
Fred G authored
-
Kohsuke Kawaguchi authored
-
- May 04, 2012
-
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
If a resource with 'Set-Cookie' header is cached (either by intermediary like HTTP proxy and reverse proxy, or by the browser), it'll cause identity swap / session mix-up as discussed in this ticket. I suspect this was caused by HttpSessionContextIntegrationFilter2, which is the only code path that attempts to create a session when a request to a static resource is made. So I'm disabling the creation of session in HttpSessionContextIntegrationFilter2. This in turn requires that we have sessions already created when the authentication was successful and people need to login (or else the login will have no effect.) We already do so in layout.jelly, so any request that renders a Jenkins page would have a session, but I've also added it in AuthenticationProcessingFilter2, which ensures that a successful login does have a session.
-
- May 03, 2012
-
-
Olivier Lamy authored
-
- Apr 30, 2012
-
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
-