1. 27 8月, 2012 1 次提交
  2. 24 8月, 2012 3 次提交
  3. 23 8月, 2012 3 次提交
  4. 22 8月, 2012 3 次提交
  5. 19 8月, 2012 1 次提交
  6. 17 8月, 2012 2 次提交
  7. 16 8月, 2012 3 次提交
  8. 09 8月, 2012 4 次提交
  9. 04 8月, 2012 1 次提交
    • J
      [FIXED JENKINS-14495] Hetero lists not working correctly after adding elements. · dbb100da
      Jesse Glick 提交于
      Unlike [JENKINS-14514] this is a true fix rather than a workaround (now removed), and is more general.
      cjo9900 discovered that behaviors were being redundantly registered (as of 1.474 the monolithic JS is broken up);
      this caused some behaviors to be run repeatedly on the same elements, breaking reasonable expectations of some behaviors.
      The ideal fix would be to change Behavior.register to be idempotent: for example, key it by selector, then maintain a set of distinct behavior functions for each.
      Unfortunately some adjuncts directly call Behavior.list.unshift, bypassing register(...), which would be tricky to intercept (would need to make a mock of Array).
      The known one cases are in core, but it is possible plugin adjuncts do this too, in which case it would be incompatible to (say) change the Array<Map<String,Behavior>> to a Map<String,Array<Behavior>>.
      Instead, permitting redundant registrations as before, and just silently skipping all but the first at runtime when applying behaviors.
      Beware that since adjuncts are loaded from multiple places, different JS function objects are registered each time, so a naive set of behavior functions does not work;
      have to identify functions by their toString in order to ensure that each is run only once.
      (Currently once _per selector_, conceivably >1x per element; could if necessary be refined to make sure a given behavior is only run once on a given element during one call to applySubtree even if the element matches multiple selectors.)
      dbb100da
  10. 02 8月, 2012 2 次提交
  11. 31 7月, 2012 12 次提交
  12. 30 7月, 2012 1 次提交
  13. 28 7月, 2012 1 次提交
  14. 25 7月, 2012 1 次提交
  15. 24 7月, 2012 2 次提交