1. 20 2月, 2017 5 次提交
  2. 19 2月, 2017 4 次提交
  3. 18 2月, 2017 8 次提交
  4. 17 2月, 2017 1 次提交
  5. 16 2月, 2017 1 次提交
  6. 15 2月, 2017 6 次提交
  7. 14 2月, 2017 2 次提交
  8. 13 2月, 2017 6 次提交
  9. 12 2月, 2017 7 次提交
    • O
      [JENKINS-32820] Fix the last merge issues · 08a993d7
      Oleg Nenashev 提交于
      08a993d7
    • V
    • O
      Merge pull request #2737 from daniel-beck/JENKINS-41765 · 10c35e4c
      Oleg Nenashev 提交于
      [FIX JENKINS-41765] Allow groovy CLI command via SSH
      10c35e4c
    • O
      Merge pull request #2744 from stephenc/usage-stats-needs-a-section · abea5bed
      Oleg Nenashev 提交于
      [FIX JENKINS-32938] Usage Statistics needs a section otherwise it can be kind of hard to find
      abea5bed
    • O
      Merge branch 'JENKINS-32820' of https://github.com/atcarmo/jenkins into bug/JENKINS-32820 · 579a88d6
      Oleg Nenashev 提交于
      Conflicts:
      	core/src/main/java/hudson/WebAppMain.java
      	core/src/main/java/hudson/lifecycle/SolarisSMFLifecycle.java
      	core/src/main/java/hudson/lifecycle/UnixLifecycle.java
      579a88d6
    • J
      Spelling fixes in changelogs, Javadoc, logs and UI (#2718) · 496703d0
      Josh Soref 提交于
      * spelling: abstract
      
      * spelling: about
      
      * spelling: absolute
      
      * spelling: across
      
      * spelling: activity
      
      * spelling: actually
      
      * spelling: addition
      
      * spelling: allocating
      
      * spelling: ambiguous
      
      * spelling: analyzes
      
      * spelling: analysis
      
      * spelling: another
      
      * spelling: appear
      
      * spelling: arbitrary
      
      * spelling: artifact
      
      * spelling: assignment
      
      * spelling: associated
      
      * spelling: augment
      
      * spelling: authentication
      
      * spelling: automatically
      
      * spelling: available
      
      * spelling: availability
      
      * spelling: because
      
      * spelling: background
      
      * spelling: beginning
      
      * spelling: boolean
      
      * spelling: browsers
      
      * spelling: building
      
      * spelling: calculation
      
      * spelling: channel
      
      * spelling: column
      
      * spelling: concatenation
      
      * spelling: connect
      
      * spelling: contribute
      
      * spelling: convert
      
      * spelling: copied
      
      * spelling: couldn't
      
      * spelling: scrambled
      
      * spelling: creates-a
      
      * spelling: curr-entry
      
      * spelling: customize
      
      * spelling: diagnostic
      
      * spelling: contain
      
      * spelling: default
      
      * spelling: delimiter
      
      * spelling: descriptor
      
      * spelling: disambiguates
      
      * spelling: different
      
      * spelling: diligently
      
      * spelling: disabled
      
      * spelling: discovered
      
      * spelling: display
      
      * spelling: doesn't
      
      * spelling: dollar
      
      * spelling: downstream
      
      * spelling: dynamically
      
      * spelling: preemptively
      
      * spelling: encrypt
      
      * spelling: erroneous
      
      * spelling: examine
      
      * spelling: existence
      
      * spelling: value
      
      * spelling: february
      
      * spelling: handling
      
      * spelling: hostname
      
      * spelling: convenient
      
      * spelling: identify
      
      * spelling: implementation
      
      * spelling: incorrect
      
      * spelling: individual
      
      * spelling: initialization
      
      * spelling: initialized
      
      * spelling: inputstream
      
      * spelling: instantiated
      
      * spelling: instantiation
      
      * spelling: intended
      
      * spelling: interpreted
      
      * spelling: interrupted
      
      * spelling: invocations
      
      * spelling: kern
      
      * spelling: localization
      
      * spelling: logger
      
      * spelling: malfunctioning
      
      * spelling: methods
      
      * spelling: monitor
      
      * spelling: mutator
      
      * spelling: multiple
      
      * spelling: object
      
      * spelling: configured
      
      * spelling: optionally
      
      * spelling: option
      
      * spelling: overridden
      
      * spelling: parameterized
      
      * spelling: parent
      
      * spelling: permissions
      
      * spelling: plugin
      
      * spelling: potentially
      
      * spelling: preferable
      
      * spelling: problems like
      
      * spelling: programmatically
      
      * spelling: property
      
      * spelling: reallocate
      
      * spelling: recommended
      
      * spelling: redirected
      
      * spelling: registered
      
      * spelling: reliable
      
      * spelling: remember
      
      * spelling: recurrence
      
      * spelling: repeatable
      
      * spelling: repeated
      
      * spelling: resource
      
      * spelling: retrieve
      
      * spelling: returned
      
      * spelling: revision
      
      * spelling: sandwich
      
      * spelling: separator
      
      * spelling: serialization
      
      * spelling: settings
      
      * spelling: shadow
      
      * spelling: should
      
      * spelling: someone
      
      * spelling: source
      
      * spelling: specified
      
      * spelling: style
      
      * spelling: subversion
      
      * spelling: sufficient
      
      * spelling: supplementary
      
      * spelling: suppressing
      
      * spelling: synchronization
      
      * spelling: synchronized
      
      * spelling: this
      
      * spelling: transitioning
      
      * spelling: termination
      
      * spelling: trying
      
      * spelling: truncatable
      
      * spelling: unknown
      
      * spelling: undeployed
      
      * spelling: unnecessary
      
      * spelling: unparseable
      
      * spelling: update
      
      * spelling: upper
      
      * spelling: verify
      
      * spelling: visible
      
      * spelling: warning
      
      * spelling: we're
      
      * spelling: whitespace
      
      * spelling: wide
      
      * spelling: with
      
      * spelling: workspace
      
      * spelling: yielding
      
      * spelling: to
      
      * spelling: by
      
      * spelling: the
      
      * spelling: hours
      496703d0
    • J
      [JENKINS-41684] Ensure that PluginManager.dynamicLoad runs as SYSTEM (#2732) · 6fb9e91b
      Jesse Glick 提交于
      * [FIXED JENKINS-41684] Ensure that PluginManager.dynamicLoad runs as SYSTEM.
      Test plugin source:
      package test;
      import hudson.Plugin;
      import jenkins.model.Jenkins;
      public class ThePlugin extends Plugin {
          @Override
          public void postInitialize() throws Exception {
              Jenkins.getInstance().checkPermission(Jenkins.ADMINISTER);
          }
      }
      
      * @daniel-beck wants this all reindented.
      6fb9e91b