1. 15 10月, 2015 1 次提交
  2. 02 10月, 2015 1 次提交
  3. 29 9月, 2015 1 次提交
  4. 24 8月, 2015 1 次提交
  5. 07 8月, 2015 1 次提交
  6. 01 8月, 2015 1 次提交
  7. 07 7月, 2015 1 次提交
  8. 01 7月, 2015 1 次提交
  9. 30 6月, 2015 1 次提交
  10. 23 6月, 2015 1 次提交
  11. 09 6月, 2015 1 次提交
  12. 31 5月, 2015 2 次提交
  13. 27 5月, 2015 1 次提交
  14. 20 4月, 2015 1 次提交
  15. 01 2月, 2015 2 次提交
  16. 29 1月, 2015 1 次提交
  17. 27 1月, 2015 1 次提交
  18. 09 1月, 2015 1 次提交
  19. 08 1月, 2015 1 次提交
  20. 23 12月, 2014 1 次提交
  21. 03 12月, 2014 1 次提交
  22. 17 11月, 2014 1 次提交
  23. 07 11月, 2014 1 次提交
  24. 06 11月, 2014 1 次提交
  25. 02 11月, 2014 1 次提交
  26. 31 10月, 2014 1 次提交
  27. 30 10月, 2014 1 次提交
  28. 11 10月, 2014 1 次提交
  29. 09 10月, 2014 1 次提交
  30. 30 9月, 2014 1 次提交
    • M
      This change converts several optionalBlock's wrapping a single field to inline="true". · eec43983
      Matt Moore 提交于
      By converting several optionalBlock entries to use inline="true", we convert the submitted JSON from:
         "hasPropertyFoo": {
           "propertyFoo": "value"
         },
      
      which is a somewhat unnatural naming scheme, to:
         "hasPropertyFoo": true,
         "propertyFoo": "value",
      
      This enables us to use the pattern:
         if(json.optBoolean("hasPropertyFoo", json.has("propertyFoo"))) {
           ...
         }
      
      To permit either of the following as JSON blobs, for specifying a value for "propertyFoo":
      1) "hasPropertyFoo": true,            # What comes through from jelly
         "propertyFoo": "value",
      
      2) "propertyFoo": "value",
      
      It also allows any of the following as JSON blobs, for NOT specifying a value for "propertyFoo":
      3) "hasPropertyFoo": false,           # What comes through from jelly
         "propertyFoo": "value",
      
      4) "hasPropertyFoo": false,
      
      5) (nothing specified)
      
      NOTE: The main interest in flexibility in what JSON comes through is in support of: https://wiki.jenkins-ci.org/display/JENKINS/YAML+Project+Plugin, this is also the purpose of the couple renames that are mixed in with this.
      eec43983
  31. 29 9月, 2014 2 次提交
  32. 24 9月, 2014 1 次提交
  33. 30 8月, 2014 1 次提交
  34. 19 8月, 2014 1 次提交
  35. 18 8月, 2014 1 次提交
  36. 13 8月, 2014 1 次提交
  37. 12 8月, 2014 1 次提交