Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

7/11 master -> stable #121

Merged
merged 39 commits into from
Jul 11, 2013
Merged

7/11 master -> stable #121

merged 39 commits into from
Jul 11, 2013

Commits on Jun 17, 2013

  1. Configuration menu
    Copy the full SHA
    05ae244 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2013

  1. Configuration menu
    Copy the full SHA
    84752bd View commit details
    Browse the repository at this point in the history
  2. Ensure getInstanceModel is only called when a new instance will be cr…

    …eated
    
    Note that this also allows for the common case of inserting an instance via a DocumentFragment. Only if there is a instanceCache hit, do we insert an array of nodes.
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/10361044
    rafaelw committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    694a411 View commit details
    Browse the repository at this point in the history
  3. Actually, this is fixing examples for browsers without <template> and…

    … Object.observe.
    
    Many were suffering from: #64 and also lack of calls to Platform.performMicrotaskCheckpoint().
    
    Also, the twitter rest API 1.0 is now gone and the 1.1 API requires auth, so I removed the example for now.
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/10383044
    rafaelw committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    ae8acf4 View commit details
    Browse the repository at this point in the history
  4. cleanup after howto fix

    rafaelw committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    6579420 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2013

  1. Configuration menu
    Copy the full SHA
    1d6de27 View commit details
    Browse the repository at this point in the history
  2. test: update karma config

    Yvonne Yip committed Jun 20, 2013
    Configuration menu
    Copy the full SHA
    2ab6e07 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2013

  1. bump ChangeSummary

    rafaelw committed Jun 21, 2013
    Configuration menu
    Copy the full SHA
    a5676b4 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2013

  1. Configuration menu
    Copy the full SHA
    0e601a6 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    ebidel committed Jun 24, 2013
    Configuration menu
    Copy the full SHA
    4d4966d View commit details
    Browse the repository at this point in the history
  3. bump ChangeSummary

    rafaelw committed Jun 24, 2013
    Configuration menu
    Copy the full SHA
    9c3de9f View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2013

  1. bump change summary

    rafaelw committed Jun 25, 2013
    Configuration menu
    Copy the full SHA
    4a91fdf View commit details
    Browse the repository at this point in the history
  2. remove extra argument to extractInstanceAt

    John Messerly committed Jun 25, 2013
    Configuration menu
    Copy the full SHA
    31326f0 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2013

  1. Merge pull request #113 from jmesserly/removeExtraArg

    remove extra argument to extractInstanceAt
    arv committed Jun 26, 2013
    Configuration menu
    Copy the full SHA
    888e677 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2013

  1. Initial MDV benchmarking

    Arv, this is more of an FYI, that a review. I'll let you decide how close you need to look at this code. Basically I wanted to just get something in place to start looking at MDV perf.
    
    TBR=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/10876045
    rafaelw committed Jul 2, 2013
    Configuration menu
    Copy the full SHA
    79b3d33 View commit details
    Browse the repository at this point in the history
  2. Simplified Mustache Parsing

    rafaelw committed Jul 2, 2013
    Configuration menu
    Copy the full SHA
    8843b72 View commit details
    Browse the repository at this point in the history
  3. 1 Configuration menu
    Copy the full SHA
    f1af6fe View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    783a488 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2013

  1. bump ChangeSummary and allow Observers to call unobserved

    This patch goes along with googlearchive/observe-js@75c4e83.
    
    The idea here is that chained observation needs a way to clean itself up. These two changes make this a concern of the observers rather than the bindings inside MDV.
    
    It is now the case that for all observed objects, if they have a .unobserved property which is a function, it is invoked when observation ends.
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/10924044
    rafaelw committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    907455b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    95c4eca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    853ef6e View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2013

  1. use build manifest

    dfreedm committed Jul 4, 2013
    Configuration menu
    Copy the full SHA
    2b9e586 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3a0d2f3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9681a79 View commit details
    Browse the repository at this point in the history
  4. Benchmarks: Pick more challanging default values of depth & decoratio…

    …n, and use a logorithmic density scale
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/10950043
    rafaelw committed Jul 4, 2013
    Configuration menu
    Copy the full SHA
    1d9dbdf View commit details
    Browse the repository at this point in the history
  5. Create an cached bindingMap for the first instance and re-use for sub…

    …sequent iterations. Collect bindings for quick destruction of instances
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/10935044
    rafaelw committed Jul 4, 2013
    3 Configuration menu
    Copy the full SHA
    2c868b4 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2013

  1. Remove modelValueToNode as required API for bindings

    I mostly did it this way so that all bindings can share hidden classes. Oh well.
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/11064043
    rafaelw committed Jul 9, 2013
    Configuration menu
    Copy the full SHA
    9fb4717 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2013

  1. Speed up ensureScheduled

    This is on the critical path if there are lots of compound bindings in iterated template.
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/11077043
    rafaelw committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    b01b486 View commit details
    Browse the repository at this point in the history
  2. bump ChangeSummary

    rafaelw committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    beef949 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    86c0d3d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    27b9cc6 View commit details
    Browse the repository at this point in the history
  5. Faster Impl of Side Table

    rafaelw committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    dd83a79 View commit details
    Browse the repository at this point in the history
  6. undo sync resolution of compound binding in setupBinding

    This broke the Polymer sandbox app somehow. Reverting this part until I can figure out why.
    
    R=arv
    BUG=
    
    Review URL: https://codereview.appspot.com/10949045
    rafaelw committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    cd91c9d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8794ead View commit details
    Browse the repository at this point in the history
  8. Revert "Faster Impl of Side Table"

    This reverts commit dd83a79.
    
    BUG=
    
    Review URL: https://codereview.appspot.com/10765045
    rafaelw committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    8fe159b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    aa5a54e View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2013

  1. Configuration menu
    Copy the full SHA
    140a29d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f916953 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'stable'

    Conflicts:
    	sample.html
    dfreedm committed Jul 11, 2013
    Configuration menu
    Copy the full SHA
    6691933 View commit details
    Browse the repository at this point in the history