Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/jenkins
  Commit: d72a9a2bc54147332de8c72194c02cadfab1adcf
      
https://github.com/jenkinsci/jenkins/commit/d72a9a2bc54147332de8c72194c02cadfab1adcf
  Author: Kohsuke Kawaguchi <[email protected]>
  Date:   2012-06-05 (Tue, 05 Jun 2012)

  Changed paths:
    M war/src/main/webapp/scripts/hudson-behavior.js

  Log Message:
  -----------
  fixed a bug in the neighbor field discovery.

Previously, the code was "find the nearby element of the expected @name,
then make sure it has gotten the right parent."

So if the structure is like:

  {/* outer object */
      name: "parent-name",  /* A */

      child1: {/* inner object */
  name: "child-name" /* B */
      },

      child2: {/* inner object */
  name: "child-name" /* C */
      }
  }

... and if we are looking for "../name", it finds B, and it gets
rejected, so we won't be able to find A, which is what we are supposed
to find.

With this change, we keep trying until we find the right one,
so the above case will correctly return A.


  Commit: 17317bb4ca92183cbca48557d09455b2a16605fb
      
https://github.com/jenkinsci/jenkins/commit/17317bb4ca92183cbca48557d09455b2a16605fb
  Author: Kohsuke Kawaguchi <[email protected]>
  Date:   2012-06-05 (Tue, 05 Jun 2012)

  Changed paths:
    M core/src/main/java/hudson/RelativePath.java
    M war/src/main/webapp/scripts/hudson-behavior.js

  Log Message:
  -----------
  supported more complex relative path


  Commit: 99b11d0df29ba6428a64486a8335a8f55a2c3d27
      
https://github.com/jenkinsci/jenkins/commit/99b11d0df29ba6428a64486a8335a8f55a2c3d27
  Author: Kohsuke Kawaguchi <[email protected]>
  Date:   2012-06-05 (Tue, 05 Jun 2012)

  Changed paths:
    A 
ui-samples-plugin/src/main/java/jenkins/plugins/ui_samples/FormFieldValidationWithContext.java
    A 
ui-samples-plugin/src/main/resources/jenkins/plugins/ui_samples/FormFieldValidationWithContext/City/config.groovy
    A 
ui-samples-plugin/src/main/resources/jenkins/plugins/ui_samples/FormFieldValidationWithContext/State/config.groovy
    A 
ui-samples-plugin/src/main/resources/jenkins/plugins/ui_samples/FormFieldValidationWithContext/index.groovy
    A 
ui-samples-plugin/src/main/resources/jenkins/plugins/ui_samples/FormFieldValidationWithContext/index.properties

  Log Message:
  -----------
  added UI sample fo contextual form field validation


Compare: https://github.com/jenkinsci/jenkins/compare/ec5812c...99b11d0

Reply via email to