- Feb 23, 2013
-
-
Kohsuke Kawaguchi authored
Added the -noCertificateCheck option (the option name is consistent with the slave.jar) that lets users bypass the HTTPS certificate check. This allows trivial man-in-the-middle attack, so HTTPS will no longer be HTTPS.
-
Jesse Glick authored
-
- Feb 22, 2013
-
-
Jesse Glick authored
[FIXED JENKINS-16844] MenuItem.post allows context menu items like Build Now to send a POST request. Currently just shows a hover notification; TBD if there are use cases for displaying the response.
-
Jesse Glick authored
Not observed in actual usage, but reproducible (for me at least, though apparently not ci.jenkins-ci.org) in a test: java.lang.AssertionError: null at jenkins.model.lazy.AbstractLazyLoadRunMap.load(AbstractLazyLoadRunMap.java:628) at jenkins.model.lazy.AbstractLazyLoadRunMap.all(AbstractLazyLoadRunMap.java:581) at jenkins.model.lazy.AbstractLazyLoadRunMap.entrySet(AbstractLazyLoadRunMap.java:243) at java.util.AbstractMap$2$1.<init>(AbstractMap.java:378) at java.util.AbstractMap$2.iterator(AbstractMap.java:377) at hudson.util.RunList.iterator(RunList.java:103) at hudson.util.RunList.size(RunList.java:114) at hudson.maven.MavenProjectTest.testDeleteSetBuildDeletesModuleBuilds(MavenProjectTest.java:159)
-
- Feb 21, 2013
-
-
Jesse Glick authored
[JENKINS-16917] hudson.plugins.downstream_ext.DownstreamTrigger.DescriptorImpl should not be extending BuildTrigger.DescriptorImpl since it does not produce a BuildTrigger from newInstance. (Generally there is no reason to subclass a Descriptor type which is already an @Extension rather than an explicit abstract supertype, but this is a bit more conservative change than just making it final.)
-
Jesse Glick authored
-
- Feb 20, 2013
-
-
Jesse Glick authored
translation cleanup
-
Harald Albers authored
purged some dislocated messages that survived my former cleanups
-
Harald Albers authored
removed translations from GlobalSecurityConfiguration and jenkins/model/Jenkins that should only exist in GlobalCloudConfiguration
-
Harald Albers authored
removed translations from GlobalSecurityConfiguration and jenkins/model/Jenkins that should only exist in GlobalQuietPeriodConfiguration and config-quietPeriod added translations based on messages from corresponding locations
-
Harald Albers authored
removed translations from GlobalSecurityConfiguration and jenkins/model/Jenkins that should only exist in GlobalSCMRetryCountConfiguration and config-retryCount added translation based on messages from corresponding locations corrected wrong property names
-
- Feb 17, 2013
-
-
Christoph Kutzinski authored
-
Christoph Kutzinski authored
[FIXED JENKINS-16630] Human readable file size method returns ",00" for files with byte length 0
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
-
- Feb 16, 2013
-
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
Conflicts: core/src/main/java/jenkins/model/Jenkins.java test/src/test/java/hudson/bugs/JnlpAccessWithSecuredHudsonTest.java
-
Christoph Kutzinski authored
-
John McNally authored
* core/src/main/resources/lib/form/combobox/combobox.js Increase index to 100, so that parent form elements can be initialized before parameters in fillDependsOn are extracted. * test/src/test/java/lib/form/ComboBoxTest.java * test/src/test/resources/lib/form/ComboBoxTest/CompoundField/config.jelly * test/src/test/resources/lib/form/ComboBoxTest/CompoundFieldComboBoxBuilder/config.jelly New test to confirm null is not passed for relative dependent arguments
-
Kohsuke Kawaguchi authored
Traditionally, matrix axis values are only exposed as "build variables", and it was up to individual build steps and others to treat them equally like environment variables. However, in practice, this distinction between environment variables vs build variables didn't serve any useful purposes, and the down side (of some plugins only expanding env vars in the ${VAR} notation and not build variables) was probably bigger than whatever benefit this distinction was supposed to bring. In this fix, we are exposing matrix axis values also as environment variables. This will make them recognizable from plugins that only expand environment variables, such as parameterized trigger plugins as indicated in the original bug report. This was motivated by pull request #701 but fix was made differently.
-
Kohsuke Kawaguchi authored
This change is safe because (i) those actions are read-only and (ii) if they produce data that's bit old, that isn't really noticeable.
-
joeljohnson authored
The Actionable#getActions() method only needs to be synchronized when lazy loading. After that, the synchronization is superfluous and impacts performance. Since the field is volatile, the double-check block works in JDK5+. See http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html for more in Analyzing various thread dumps, many threads and requests stall on this method waiting for the lock. Since the lock isn't necessary in most cases anyway,
-
Richard Mortimer authored
-
Jesse Glick authored
Fixed to pass basic auth to HTTP connections when included in user info portion of URL (e.g. as API token).
-
Kohsuke Kawaguchi authored
- Environment variables are by convention upper case, so I'm switching to upper case. This was what the original ticket requested anyway. - Since the ".jobName" was never documented to begin with, let's not promote that and stick to "_JOBNAME" as the official version.
-
gcummings authored
-
gcummings authored
-
gcummings authored
-
Harald Albers authored
added missing translations (save), adjusted an entry to match existing occurrences corrected missing backslash escapes deleted dislocated russian property file
-
Harald Albers authored
removed some translations from GlobalSecurityConfiguration and jenkins/model/Jenkins that should only exist in MasterComputer, DumbSlave & MasterBuildConfiguration
-
Harald Albers authored
-
cynipe authored
-
Kohsuke Kawaguchi authored
Introduced ${ITEM_FULL_NAME} to address the ticket without causing the backward compatibility problem.
-
Kohsuke Kawaguchi authored
-
Jesse Glick authored
-
Jesse Glick authored
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
-
Kohsuke Kawaguchi authored
This is done by introducing a new base type 'BuildDiscarder' that's extensible. Plugins can implement their own logics.
-