Pawel Kozlowski 
							
						 
					 
					
						
						
						
						
							
						
						
							bf7933714a 
							
						 
					 
					
						
						
							
							chore(rename): rename View and Template concepts for  #1244  
						
						
						
						
					 
					
						2015-04-10 12:00:37 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							50098767fc 
							
						 
					 
					
						
						
							
							refactor(render): use render layer fully  
						
						... 
						
						
						
						Introduces angular2/src/core/compiler/ViewFactory which
extracts ProtoView.instantiate and replaces ViewPool.
Note: This is a work in progress commit to unblock other commits.
There will be follow ups to add unit tests, remove TODOs, … 
						
						
					 
					
						2015-04-08 20:51:31 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							52c55d0ee8 
							
						 
					 
					
						
						
							
							test: convert to using TestBed  
						
						
						
						
					 
					
						2015-04-06 10:30:16 +02:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							1d4d18d9db 
							
						 
					 
					
						
						
							
							refactor(render): user render compiler  
						
						
						
						
					 
					
						2015-04-03 23:41:00 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							c1aa65239e 
							
						 
					 
					
						
						
							
							refactor(render): move services to render folder  
						
						... 
						
						
						
						property_setter_factory
selector
style_inliner
style_url_resolver
shadow_css 
						
						
					 
					
						2015-04-02 14:40:49 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							4f56628566 
							
						 
					 
					
						
						
							
							refactor(render): move services to right location  
						
						... 
						
						
						
						core/compiler/events -> render/dom/events
core/compiler/url_resolver -> services/url_resolver
core/compiler/xhr/* -> services/* 
						
						
					 
					
						2015-04-02 10:35:27 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							a16954d3a5 
							
						 
					 
					
						
						
							
							refactor(view): separate context and locals  
						
						
						
						
					 
					
						2015-03-17 14:25:57 -07:00 
						 
				 
			
				
					
						
							
							
								Yegor Jbanov 
							
						 
					 
					
						
						
						
						
							
						
						
							70c875ee14 
							
						 
					 
					
						
						
							
							refactor(shadow dom): do not use injectors nor directives  
						
						... 
						
						
						
						This prepares us for the app/render split in the compiler. 
						
						
					 
					
						2015-03-16 16:58:38 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							33b5ba863e 
							
						 
					 
					
						
						
							
							feat(tests): add a test injector  
						
						... 
						
						
						
						fixes  #614 
Asynchronous test should inject an AsyncTestCompleter:
Before:
  it("async test", (done) => {
    // ...
    done();
  });
After:
  it("async test", inject([AsyncTestCompleter], (async) => {
    // ...
    async.done();
  }));
Note: inject() is currently a function and the first parameter is the
array of DI tokens to inject as the test function parameters. This
construct is linked to Traceur limitations. The planned syntax is:
  it("async test", @Inject (async: AsyncTestCompleter) => {
    // ...
    async.done();
  }); 
					
						2015-03-13 18:20:02 +01:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							951a808e0e 
							
						 
					 
					
						
						
							
							refactor(PropertySetter): use the global reflector  
						
						
						
						
					 
					
						2015-03-12 19:49:34 +01:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							b349c35678 
							
						 
					 
					
						
						
							
							feat(ElementInjector): implement @PropertySetter  
						
						... 
						
						
						
						relates to #621  
						
						
					 
					
						2015-03-09 18:28:39 +01:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							03793d0714 
							
						 
					 
					
						
						
							
							feat(CssProcessor): add support for CssTransformers  
						
						... 
						
						
						
						Closes  #860  
					
						2015-03-03 11:24:08 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							9982520a23 
							
						 
					 
					
						
						
							
							refactor(Compiler): make shadow DOM stragegy support more flexible  
						
						
						
						
					 
					
						2015-03-03 11:24:08 -08:00 
						 
				 
			
				
					
						
							
							
								Yegor Jbanov 
							
						 
					 
					
						
						
						
						
							
						
						
							757eae8ad3 
							
						 
					 
					
						
						
							
							feat(compiler): DOM adapters + html5lib implementation; misc fixes  
						
						
						
						
					 
					
						2015-02-27 16:49:14 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							929fc65493 
							
						 
					 
					
						
						
							
							refactor(template loading): add support for base URLs, css rewriting  
						
						... 
						
						
						
						fixes  #654  
					
						2015-02-26 09:36:04 +01:00 
						 
				 
			
				
					
						
							
							
								Pawel Kozlowski 
							
						 
					 
					
						
						
						
						
							
						
						
							908a0aa7dc 
							
						 
					 
					
						
						
							
							test: introduce TemplateResolver mock  
						
						... 
						
						
						
						Closes  #768  
					
						2015-02-24 10:34:52 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							e6c8bde808 
							
						 
					 
					
						
						
							
							feat(Compiler): Multiple template per component  
						
						... 
						
						
						
						fixes  #596 
- TemplateConfig becomes Template
- introduce a TemplateResolver to pick the cmp template,
- @Component and @Template are disociated 
					
						2015-02-13 18:07:08 +01:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							8844671c8d 
							
						 
					 
					
						
						
							
							feat(EventManager): implement the EventManager  
						
						
						
						
					 
					
						2015-02-12 10:46:11 +01:00 
						 
				 
			
				
					
						
							
							
								Marc Laval 
							
						 
					 
					
						
						
						
						
							
						
						
							6bfa48bc64 
							
						 
					 
					
						
						
							
							refactor(directives): Drop ng- prefix from all angular directives and rename NgRepeat to Foreach  
						
						... 
						
						
						
						fixes  #532 
Closes  #539  
					
						2015-02-06 09:24:50 -08:00