1. 18 9月, 2014 1 次提交
  2. 15 9月, 2014 4 次提交
  3. 12 9月, 2014 1 次提交
  4. 07 9月, 2014 1 次提交
  5. 06 9月, 2014 2 次提交
  6. 01 9月, 2014 3 次提交
  7. 28 8月, 2014 1 次提交
    • H
      [FIXED JENKINS-23724] · f6ec318c
      Henrik Ygge 提交于
      For some reason IE10 craches when document.getElementsByName is called and there is an element with a name attribute but no value. In this case a button had a name attribute set with an empty string as the value.
      f6ec318c
  8. 25 8月, 2014 3 次提交
  9. 20 8月, 2014 1 次提交
    • A
      Remove unnecessary onblur call · e908219a
      anafke 提交于
      Right now, checker is being attached to both onblur and onchange.  The result is when the user changes input, and that input loses focus, the checker is being fired twice.  This can cause issues on non-trivial field changes (such as validating a groovy script).  If there is no change, the checker is still called once due to the onblur.
      
      The checker should only be called if the input is changed.
      e908219a
  10. 19 8月, 2014 3 次提交
  11. 13 8月, 2014 1 次提交
  12. 12 8月, 2014 9 次提交
  13. 11 8月, 2014 4 次提交
  14. 07 8月, 2014 2 次提交
  15. 05 8月, 2014 2 次提交
  16. 30 7月, 2014 2 次提交
    • T
      divification of pane tag · bced2c75
      tfennelly 提交于
      bced2c75
    • K
      Create a single point in which the basic authentication header is processed. · b2a98f6b
      Kohsuke Kawaguchi 提交于
      Previously, basic auth header was processed from two different servlet
      filters in a single filter chain.
      
      In case the 1st filter (ApiTokenFilter) manages to authenticate the
      request, the 2nd filter (BasicProcessingFilter) tries to avoid
      interpreting the API token as the password and failing authentication
      (see BasicProcessingFilter.authenticationIsRequired), but the check
      feels rather fragile.
      
      Although I did eventually discover that the original problem (ZD-19640)
      was not caused by this, I've already implemented & tested this change,
      and this feels like a good work to be wasted, so I'm pushing this in
      anyway.
      
      Refrence: ZD-19640
      b2a98f6b